Home
Cool Mac App!
Monday, 11 August 2008

My friend Ali introduced me to an app in Linux that allows you to fadeout everything except the active window. Meaning only the current window is in focus and everything else is either completely hidden or blurred. I can see the value in this, especially when I scripting with MacVim or in the Terminal. So today I sought out - and found - a mac program to do the same. It's called Isolator and it's currently in relase 3.3. Using a preset keyboard shortcut of shift-command-i it will fade everything to black. You can also change the options to allow transparency and/or blur. Check out the below screenshot!

 

Terminal Thumb

Download it here: http://willmore.eu/software/isolator/

 
Good compilation of dietary advice.
Monday, 28 July 2008

Found a great article on cancer fighting foods. A good amount of these we all know about, but some I didn't. Like brazil nuts!

http://www.rd.com/living-healthy/31-simple-ways-to-prevent-cancer/article16072.html

 

 

brocolli

 

 
It's about time - iPhone Streaming Radio
Saturday, 01 March 2008

Somebody finally finished creating a good internet radio streaming application for the iPhone. Surprised it took so long but it seems that it was worth it. It works over wifi and Edge and has plenty of selection (90+). I like the "Chill" station under the dance genre the most. There is also a couple good New Age Jazz stations, as well as NPR, WUSF, etc.

 

Check it out at flytunes.fm - it's still beta so membership is supposedly limited. It has a great ICO for the iPhone's desktop too! 

 

flytunesgif


 

 
Starting vsftpd using daemontools
Sunday, 13 January 2008

So You Want to Run VSFTPD Using DaemonTools! 

 

After discovering the beauty of Mr. Bernsteins daemontools - when I was learning about qmail - I decided to use it with vsftpd as well. I just thought I would jot down a quick note for anyone that plans on using daemontools with vsftpd. I initially had some issues getting the daemontools "svc" command to properly terminate the vsftpd process.

svc -d /service/vsftpd/
svc -d -k /service/vsftpd/
svc -d -t /service/vsftpd/

None of the above commands would successfully kill vsftpd! 

Svscan and supervise had no issues starting and restarting a terminated vsftpd process but I could not terminate the running vsftpd process using svc.

My simple run file in /service/vsftpd/run originally looked like this:

==========================

#!/bin/sh
/usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf

========================== 

 

This run script alone is enough to make svc -d not work correctly. You have to launch the program using "exec" in order to make that program run in the same shell that the ./run file is originally launched in. Don't stop reading yet!! With vsftpd it is by default configured to background itself. If it backgrounds then it will not terminate correctly using svc. To use vsftpd with daemontools you must tell it too not background.

 echo 'background=NO' >> /etc/vsftpd/vsftpd.conf

 

To Conclude: 

background=NO

and

use exec in all your /service/*/run files! 

 
Monday...
Saturday, 08 December 2007
Ahh...now that's what a Monday should be.

 
<< Start < Prev 1 2 3 Next > End >>

Results 7 - 12 of 16