Posts from July 2011

Syncing a generic MP3 player on OS X

Jul-16-2011 5:08 PM

As it turns out, there’s not always an obvious, easy way to do something in OS X if you don’t subscribe to Apple’s ecosystem.

I had a Sansa e200 for a couple years running Rockbox. It’s a dependable and flexible player. It’s not an iPod though, so no native iTunes sync. I tried Synkron, arRsync, Grsync, and a couple other tools. Everything was just… clunky.

I decided to just write my own shell script that uses rsync. Here it is.

#! /bin/sh

# sync the Music folder to Sansa microSDHC card

# -v makes it verbose so you can see what files and folders are getting copied or deleted
# -r means recursive, which means it looks in all the subfolders
# -t preserves the timestamp so the file doesn't get copied again next time
# --delete gets rid of files I deleted on my hard drive
# --modify-window=3 is used because of FAT filesystem time inaccuracy
rsync -vrt --delete --modify-window=3 /Users/nat/Music/ /Volumes/SANSASD/Music/

# sync the Nonmusic folder to Sansa microSDHC card
rsync -vrt --delete --modify-window=3 /Users/nat/Nonmusic/ /Volumes/SANSASD/Nonmusic/

echo "Sansa is synced."

Works great. Just don’t forget to make it executable. Also, it can be launched straight from Finder or Spotlight if you change the file extension to .command.

Now I have an iPod. Natch.

The Problem with Instapaper

Jul-02-2011 9:13 PM

The problem with Instapaper is the distraction. Must get through my reading que. (So I can add more? So I’m done? So I’m well read?). So I hop from one item to another. While I read an article, there’s a buzzing feeling in the back of my head about something else I could be reading.

Instapaper is not for meditating. Instapaper does not have flow.

It’s TV for digital readers.

Off to finish that article I’m half interested in but should know because I said so to myself.