Processing math: 100%

MathJax

Wednesday, July 21, 2021

Redoing a reverted merge

The consequence of reverting a merge and how it should be handled when the re-merging.

https://stackoverflow.com/questions/1078146/re-doing-a-reverted-merge-in-git

http://blog.jdwyah.com/2015/07/dealing-with-git-merge-revisions.html

Official source

https://mirrors.edge.kernel.org/pub/software/scm/git/docs/howto/revert-a-faulty-merge.txt

Monday, July 19, 2021

Reverting a sequence of commits in git

This command lets you revert to any commit in the branch without modifying git history.  It appends the modifications to the current head of the branch.

$ git reset --hard A
$ git reset --soft D # (or ORIG_HEAD or @{1} [previous location of HEAD]), all of which are D
$ git commit

https://stackoverflow.com/questions/1463340/how-to-revert-multiple-git-commits/1470452#1470452

Tuesday, October 08, 2019

Return to blogging

Return to blogging

I just found an awesome way to publish file that can support all the things I wanted to do with relative ease… This is so amazing, where were you all these years. Check out this awesome tool in the link below.

Written with StackEdit.

Friday, March 16, 2018

Notable courses Spring 2018

ECE271C Deep Learning 

  • TuTh 11a-12:20p CENTR 214

ECE272B Stocastic Proc/Dynamic Systems

  • ThTh 11a-12:20p WLH 2115

Monday, April 24, 2017

Notable IEEE conferences on signal processing and Communications

Communications
  • GLOBECOM - Global communications conference. US (Dec.)
  • ICC - International conference on communications (May)
  • ISWCS - International symposium on wireless communication systems.  (Sept)
  • WINCOM - International conference on wireless networks and mobile communications.  (Nov.)
  • VNC - Vehicular networking conference (Nov.)
  • ICSPCS - International conference on signal processing and communication systems (Dec.)
  • WCNC - Wireless communications and networking conference (March)
Signal Processing
  • ICASSP - International conference on acoustics speech and signal processing (March)
  • GlobalSIP - Global conference on signal and information processing (Dec.)
  • MLSP - Workshop on machine learning for signal processing (Sep.)
  • SPAWC - Workshop on signal processing advances in wireless communications (July)
---------------------------
  • WCSP - International conference on wireless communications and signal processing (China)


Monday, December 12, 2016

Definition of a distribution function

A function F:R[0,1] satisfying the following properties is a distribution function.

  1. F is right continous;
  2. F is monotone non-decreasing,
  3. F has limits at ±
    F():=limxF(x)=1F():=limxF(x)=0

Wednesday, October 19, 2016

VMWare disk activity reduction methods

See this forum link

and also vmware knowledge base

Also try disabling swap in Linux guest (sudo swapoff -a)