These are mainly from this thread:
gt5 -- cli gui for du
autojump -- jumping to most used dirs
iptraf -- network monitor
Vengeance Is Mine, I Shall Repay
This is a quick tip:
addpath(genpath(pwd))
adds the current dir and its subfolders (recursively) to the path in MATLAB.
I don't use git gui much, I mainly prefer the command line or magit or GitX, but git gui might be useful sometimes, especially with the OpenInGitGui Finder extension.
When installed, git gui by default doesn't work (at least on my Macbook running Leopard); and fails with the message:
dyld: Library not loaded: /Library/Frameworks/Tk.framework/Versions/8.5/Tk Referenced from: /usr/local/git/share/git-gui/lib/Git Gui.app/Contents/MacOS/Wish Reason: image not found error: git-gui died of signal 5
Clearly, the Tk framework 8.5 is missing and can be downloaded from here. (Also see here) Once that is installed, everything works properly.
If you are running your ssh server on a port different than 21, for example 22, you can connect to the machine like this:
ssh mymachineip:22
or
ssh mymachineip -p 22
However, there is an easier way:
Create the file ~/.ssh/config, then fill it like this:
Host mymachineip
Port 22
Now you can just ssh to the machine: ssh mymachine
When there is only one screen session, screen -raAD attaches to the running screen. So far so good.
However, if for some reason, there are more than one screen sessions, (screen -ls should give you those), screen suggests that you need to do screen -r [[pid.]tty[.host]] to reattach.
However, this simply doesn't work at first and yields weird errors like:
There is a screen on: 5541.pts-1.shannon (11/02/2009 04:40:02 PM) (Attached) There is no screen to be resumed matching 5541.pts-1.shannon.
This is utterly confusing, since it first says that there is a screen, but there is no screen to be resumed. What this means actually is just that however: one first has to detach that screen in order to attach to it. So, yes, there is a screen and that screen is not a screen one can connect directly.
The solution is to give the -d parameter to detach it at first, so
screen -d -r 5541.pts-1.shannon
should work. In fact, I guess screen -r -d 554 works too. That 554 portion has to be unique though, so screen -r -d 5 works too if no other screen session starts with a 5.