Saturday, September 29th, 2007

Audio Lectures for Free

In the never-ending search for commuting content, I stumbled upon listening to words. It has a decent collection of interesting video and audio lectures available for free. Give it a listen.

/web   〆   permalink

Saturday, September 29th, 2007

Blueprint CSS

A CSS framework that “gives you a solid CSS foundation to build your project on top of, with an easy-to-use grid, sensible typography, and even a stylesheet for printing.” Check it out. By the way, Google Code is starting to host some great stuff lately …

/web   〆   permalink

Saturday, September 29th, 2007

Web File Sharing Services

Sometimes it is nice to be able to send huge files to people over the web without hosting a server. pando and YouSendIt are both good solutions for doing that. Pando gives 1GB free while YouSendIt gives 2GB.

/web   〆   permalink

Saturday, September 29th, 2007

ninja words

I love the tagline “A really fast dictionary … fast like a ninja.” ninja words really is litening fast with instant results that show up in your browser window without reloading.

Nice use of AJAX.

/web   〆   permalink

Monday, September 24th, 2007

Why Rewrites Can Go Wong

Good article series from Chad Fowler on why rewriting software often goes bad if you do it as a Big Rewrite. Kevin Barnes also has some thoughts.

/developer   〆   permalink

Monday, September 3rd, 2007

Read and Write NTFS on Mac

I was having trouble mounting, reading, or writing to an external USB hard drive on my Mac. Trouble was it is formatted with NTFS and I didn’t want to reformat. Solution: install macfuse and ntfs-3g then go to Terminal and type

diskutil list | grep Windows_NTFS

to find your NTFS disk matching /dev/disks, then mount the disk

mkdir /Volumes/ntfs
ntfs-3g /dev/disk3s1 /Volumes/ntfs -ovolname="Fuse Drive"

Also, if you’d like to graphically mount a SSH or FTP share as a drive, install MacFusion. Now I wish MacFusion worked with NTFS too …

/mac   〆   permalink