This post originated from an RSS feed registered with Web Buzz
by Stuart Langridge.
Original Post: Little things
Feed Title: as days pass by
Feed URL: http://feeds.feedburner.com/kryogenix
Feed Description: scratched tallies on the prison wall
I rather like Stephen Watson's NetStat applet for the ROX panel, although I need to hack it so that it shows the window first and populates it afterwards when you ask it to show sockets, rather than hanging until the window's populated.
On the subject of ROX applets, I've got two vaguely useful ones in the software section -- a rough clock and yet another "have you got mail" one. The mail one is nice because it displays how much mail you have and how much is unread. It probably only works if you use mutt like I do, though; Stephen has one that's nice and configurable but doesn't show your unread mail count.
More little scripty bits: since the MPlayer people refuse to take jwz's advice and make MPlayer shell out once a minute to tell xscreensaver to not display (which stops the screensaver popping up while you're watching films), I wrote a (very) little script. This is mpl, which is the default run action for all movies when clicked on:
#!/bin/bash
while true; do
sleep 59
xscreensaver-command -deactivate &
done
That tells the screensaver every 59 seconds to reset its inactivity timer, which works fine.
I've tried using the excellent Sweep audio editor to edit an mp3; specifically, an mp3 of a whole album, so I can select bits of it and save them separately to break up the album into separate songs. However, it doesn't work; Sweep can't open a file that big on that particular machine (presumably it runs out of memory). Has anybody got any other suggestions for easy-to-use graphical audio editors that can load bigger-than-memory mp3s and then save a selected bit of them as a separate audio file? I know about mp3splt which fails both the "easy to use" and the "works all the time" test. I don't want something that will do it automatically based on silence points, and I don't want something that'll go away to the CDDB and get the timings and do it that way, because none of them work properly. I'm quite happy to select the bits I want out of the waveform and save them as separate files and set the id3 tags myself. Any suggestions for software that can handle it? Sweep's a really nice audio editor, except for this one small thing.