Sprint Airave Review

Without a doubt out of all the carriers I have used in the past, Verizon Wireless has had the best coverage out of them all. However, I couldn’t resist the Sprint SERO plans and their tempting low prices, so last summer I broke down and jumped on the deal. $30/month for 500 minutes for unlimited data unlimited texting. Sounds too good to be true right?

Continue Reading

MixRiot.com Music Ripper

Here’s a lazy liner that I cooked up to rip music from MixRiot.com – simply replace the URL variable with the page that contains the music and it will dump the music using wget with an MP3 extension!

url=”http://www.mixriot.com/category/essential-mix/browse-show/broadcasts/bbc/radio-1/2009″; IFS=$’\n’;title=();id=();for i in `GET $url | grep FlashVars | egrep -o “mixriot.com%2Faudio%2Fplay%2F[0-9]{4}” | cut -b 30-`; do id=( “${id[@]}” “$i” ); done; for j in `GET $url | egrep -o “<h2><a href=[[:print:]]{1,} title=[[:print:] ]{1,}>[[:print:] ]{1,}</a></h2>” | cut -d\” -f4`; do title=( “${title[@]}” “$j”); done; for (( k = 0 ; k < “${#id[@]}” ; k++ )); do wget -O”${title[$k]}.mp3″ http://www.mixriot.com/audio/play/${id[$k]}; done;

Continue Reading

Changing the default resolution of a Logitech webcam

I found myself needing to take some photos with my webcam because it was a simple setup and had excellent image quality when given enough light. However, when using the default webcam application in Windows XP/Vista/7, it will only capture images in 320×240; hugely disappointing when the webcam will do up to 2MP. Enter the DefResCh tool – which I found in this thread on the Logitech developer forums. Of note, you will need to install the Logitech webcam drivers to make this tool work; the default drivers that Windows installs does not work with this tool.

Continue Reading
1 8 9 10 11 12 16