Software As She’s Developed

Mahemoff’s Podcast/Blog – Web, Programming, Usability from the Author of ‘Ajax Design Patterns’ (AjaxPatterns.org)

Software As She’s Developed header image 4

Entries Tagged as 'Bash'

BashPodder mod – add podcasts to iTunes

December 4th, 2008 · 4 Comments · SoftwareDev

As a podcatcher (among other things), iTunes sucks. Badly. iPodder is nicer, mainly because I can keep my follow list in the cloud at PodNova. However, it (or the combination with podnova) often ends up downloading gigs of old stuff, on some particular feeds. Worse, it consumes obscene quantities of memory and CPU, with its [...]

[Read more →]

Tags: ······

OSX Screenshot Script

December 27th, 2005 · 1 Comment · SoftwareDev

Let's say you wanted to capture a few images for a fade effect, which means you need a sequence of rapid screenshots. Here's a script I've been using:

i=0 ; while [ 1 ] ; do i=expr $i + 1 ; screencapture -C $i.png ; sleep 0.1; done

Hit ctrl-c to kill it, then [...]

[Read more →]

Tags: ···