Random notes from mg

a blog by Marius Gedminas

Marius is a Python hacker. He works for Programmers of Vilnius, a small Python/Zope 3 startup. He has a personal home page at http://gedmin.as. His email is marius@gedmin.as. He does not like spam, but is not afraid of it.

Fri, 16 Sep 2005

Running your own server

Colin Walters says that running your own server isn't worth it, unless you have really specialized needs.

I was just thinking about getting a domain of my own, dusting off my old desktop and setting it up as a server for my email and website. Plus assorted revision control repositories for my toy projects, backups, etc.

I think I'll do it. Perhaps a year later I'll be able to tell if it was worth it.

posted at 22:08 | tags: | permanent link to this entry | 0 comments

Thu, 15 Sep 2005

Using Jabber with X-Chat

Bitlbee is the best thing ever! apt-get install bitlbee, open a new server tab in X-Chat, connect to localhost and there's a friendly bot that walks you through the configuration of this incredible IRC to instant messaging gateway. I can now use Jabber painlessly!

Screenshot of X-Chat connected to the Bitlbee gateway

posted at 15:35 | tags: | permanent link to this entry | 0 comments

Sun, 11 Sep 2005

GNOME Terminal text shadow

Before:

GNOME Terminal screenshot with no text shadows

After:

GNOME Terminal screenshot with text shadows

Patch: libvte4-drop-shadows.patch.

Inspiration: Eterm, Keith Packard's xterm hack.

posted at 19:34 | tags: , | permanent link to this entry | 0 comments

Sun, 04 Sep 2005

xsel: the power of Unix

There's a nice litte program called xsel. It lets you access the X Window System selection and clipboard from the command line. It is incredibly useful for a Unix geek like me.

$ xsel|grep -i error

The above shows me all the lines that mention 'error' from my selection. Useful when a command produces oodles of output after several minutes of intense computation, and you realize that you should've redirected the output to a file.

posted at 15:38 | tags: | permanent link to this entry | 0 comments