Home
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.

 
Free IPs Script!
Thursday, 06 December 2007

So IP management can be difficult and accidentally assigning an IP that is aleady being used is easy to do. I created a script that - for me - acts as a first step in determining what IPs are not in use. I run the script choose an ip from the list and further verify it's availability using my works internal systems.

Check out the below screen shot and download the script for your own use...

 

Read more...
 
Crazy Trials Vid
Thursday, 06 December 2007

Check out this crazy vid of Danny MacaSKILL! He has that endo fakie down! Check out the other videos of him on youtube! 

 

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

Results 1 - 6 of 8