Posts

Showing posts with the label itunes

Changing the email address on your Nike + iPod acount

These directions worked on a Mac running 10.5.8. I recently changed the email address on my Nike+ account. Getting to sync properly with iTunes again was a tad challenging. I basically followed the steps here but I did not reset my iPod. I lost a few runs because I didn't do things in the proper order. 1. Uncheck the automatically send workout data to nikeplus.com in the Nike + iPod tab in iTunes and sync your iPod (in iTunes) without new workouts on your iPod. 2. Get a new workout recorded on your iPod. It can simply be walking around for 5 or 10 seconds. 3. Log in to Nike+ using Safari. 4. Connect your iPod with an unsynced run/walk 5. Recheck the automatically send workout data to nikeplus.com in the Nike + iPod in iTunes and click Apply. Your new Login ID is hopefully now showing in iTunes.

rsync from iTunes dir to SD card

So I'm using rsync to get music from my Mac to the SD card in my Samsung Intercept. I don't want all my music, I want to pick and choose. I'm using the following as my rsync command: rsync -hrltvz --modify-window=1 --exclude-from=exclude-from-file My exclude-from-file looks like this: - *.m4p - *.wav - *.DS_Store + Blue October/*** - * The final - * tells rsync to skip everything. The only thing that is copied over is the Blue October directory and everything under that directory. Any .m4p, .wav, and .DS_Store files are also excluded. To add a new artist for syncing I just add a line + artist/*** to the exclude file.

rsync to SD card recopying files

I was trying to rsync some iTunes music to an SD card from my Mac. All was working well but all the files were being synced each time. Turns out it's an issue with a Microsoft(FAT32) formatted card, which my Samsung Intercept has. Answer was to add --modify-window=1 as an rsync option. Solution here .