Two weeks ago I decided to try an email client instead of the web email interface I've always been used to. There were a couple of reasons for this, one was that I wished to have a copy of my mail on one of my machines, as I don't trust Google (as I have an @gmail.com account) entirely to keep my mail safe, the second reason was so that I could read and write replies to emails while not connected to the Internet (this came about as I recently got a laptop, which could be used in places without an Internet connection).
dylunio's blog
A Fortnight of Evolution
Submitted by dylunio on Mon, 2007-08-13 13:56.Ctrl-R in the Bash Shell
Submitted by dylunio on Sat, 2007-05-12 16:52.Recently I came across the command Ctrl-R in the bash shell. It allows you to search and browse your bash history.
For instance you ssh into your server every day, in between each ssh you do a bunch of other things, this makes in impractical to use the Up arrow key to go through your history to find the command. Instead hit Ctrl-R, and start typing ss, it will search your bash history for the last time you used a command with ss in it:
(reverse-i-search)`ss': ssh foo.servername.com
You hit 'Enter' and the line will be executed.
The Middle Button and Scrolling in Gtk+
Submitted by dylunio on Sun, 2007-04-29 16:02.While using Gtk+ based applications you can use the middle mouse button on the scrollbar to move directly to that point, instead of moving to the point a page at a time.
Curly Braces are Damn Useful Things
Submitted by dylunio on Sun, 2007-03-25 16:52.In the bash shell curly braces { and } are surprisingly useful things to reduce typing.
With the mkdir command they help you create trees of directories in one command. For instance:











