Jinamp is what I use to play music on my computer. It is aimed at console junkies that want to be able to set some music playing without requiring X or tying up a console. It does everything in the background, although there is a program to do a few simple things like go to next track.
Jinamp can be downloaded from Sourceforge.
BuGLe is a utility I use for debugging OpenGL software development. It is also quite handy for graphics research (which is I what I do) since it does things like video capture. It is still somewhat alpha, but you can download it from Sourceforge or view the project web page.
There are some odds and ends patches to address needs I've had. Some of these I've submitted to the original authors, so you might not even need them in future versions.
I have an ancient (well, 1996 era) keyboard that doesn't issue the SysRq sequence quite right: it sends a press/release pair as soon as you press it. That makes the Magic-SysRq feature in Linux impossible to use in older kernels, so I've hacked the keyboard driver to support it. Note that recent 2.6 kernels work around this problem already (I've first noticed this in 2.6.20, but it has probably been fixed for a while).
If you want to check whether your keyboard has this problem, run showkey -s and press and hold Alt-SysRq. If you see scancode 0x54 immediately followed by 0xd4, then you need this patch to use Magic-SysRq on older kernels. If the 0xd4 code only appears when you release the keys, you don't need it.
Wherever possible, I tunnel my IMAP connections over ssh connections. This allows ssh to deal with authentication and means that I can read my mail without ever typing in my password, nor storing it in a file. Here is what I have discovered about support in various clients and servers:
In general, servers provide a binary (generally imapd) that can be directly invoked by users and which then speaks IMAP on stdin/stdout.
/path/to/imapd $HOME/Maildir 2>/dev/nullRemember to protect the redirect from the shell invoking ssh if necessary. Alternatively, create a wrapper script on the server to do this.
account-hook 'bmerry@alfonzo' 'set tunnel="ssh alfonzo /usr/sbin/imapd"'This assumes a friendly server; see above for possible extra arguments.
# Sets the format of the command used to open a UNIX secure # shell connection. The default is "%s %s -l %s exec /etc/r%sd" # NOTE: the 4 (four) "%s" entries MUST exist in the provided command # where the first is for the command's path, the second is for the # host to connect to, the third is for the user to connect as, and the # fourth is for the connection method (typically "imap") ssh-command= # Sets the name of the command used to open a UNIX secure shell connection. # Typically this is /usr/bin/ssh. ssh-path= # Sets the time in seconds that Pine will attempt to open a UNIX secure # shell connection. The default is 15, min is 5, and max is unlimited. # Zero disables ssh altogether. ssh-open-timeout=
{mail.somewhere.com/user=bmerry/tunnel="/home/bruce/bin/imapd-wrapper"}
The script is a wrapper around an ssh invocation, because mailsync
doesn't like spaces in mailbox names.
Years and years ago, in the dawn of time, I wrote a mod for Quake. Yes, the original Quake, in all its software-rendered 320x240 glory. It mainly adds a super-rocket, which does evil things like home in on people, but it also suffered some creeping featurism.