August 31, 2014

Useful links for python programmers


Plots in Python:

August 30, 2014

Useful ubuntu help links for beginners


  • Show only the current directory in terminal: link
  • Vi Cheat Sheet: link link2
  • Select-Cut-Copy-Paste text in vi: link
  • Set vi indentation for python or other plugins: uncomment a few lines in /etc/vim/vimrc.
  • Switch windows of the current application: link
  • Install/uninstall programs locally without any administrative (sudo) privilege: link  link
  • Install Eclipse from command line: link
  • keep linux process running after ssh session expired: serverfault IBM tutorial
  • Unix/Linux cheat sheet: fosswire.com
  • Keyboard does not respond after resuming: restart lightdm. You may add the following script in a file in /etc/pm/sleep.d/ which will be called on every resume. askubuntu1 askubuntu2 askubuntu3

    case "${1}" in
        resume|thaw)
        sudo service lightdm restart
    ;;
    esac
  • Wine installation: youtube
  • Adobe reader installation in wine: winehq
  • Reload ~/.bash_profile: source ~/.bash_profile