Netflix started auto-playing TV shows on the iPad last year — if you have episodes left in the series, it would cut out about 30 seconds early from the end credits of your show, and jump to start playing the next episode (often also skipping the “previouslies” at the start of the next episode, which…
Category: howto
Xcoders Seattle: How to App Video
These are the “show notes” from my How to App Video talk at Seattle Xcoders, on May 21, 2014 at 7:00 pm. Slides, AV Script Format, and Videos My Xcoders talk was recorded and now available on Seattle Xcoders Vimeo account (and embedded above)! My Slide Deck — not sure how helpful this is without…
Copy File Path as Text in Mac OS X
Posting this here because I keep needing to recreate it whenever I start using a new machine: Open Automator. Select the Service template. Set options at the top to “Service receives selected files or folders in Finder.” Drag over “Copy to Clipboard.” Save the service with a name like “Copy Path.” That’s it! Now you…
Django MultiRangeField and MultiRangeFormField
I’m building a website, and needed a way to save a list of pages and page ranges from a book or magazine. I wanted to to be a little more strict than just saving it as a string without any cleanup or validation, so I wrote a custom Django model field (and accompanying form field)….
Renaissance 2014 — How to App Video
These are the “show notes” from my half of the Master Video talk at Renaissance 2014, on January 21, 2014 at 10:30 am. Slides, AV Script Format, and Videos My Slide Deck — not sure how helpful this is without the talk, but there it is. AV Format Markdown CSS (on GitHub) to use in…
FeedPress Subscribers for Panic Status Board
Since the launch of my new podcast, I’ve been trying to keep track of stats on podcast downloads and subscribers. FeedPress has been my feed tracker of choice recently, and seems to work very smoothly (even if they only update stats once a day). I’m also a big fan of Panic’s Status Board iPad app…
Get BBEdit HTML preview to print background colors
I realize this is probably something that only I want, but just in case, here it is for Google (and for future me, who has forgotten how to do it). Run this in the Terminal: defaults write com.barebones.bbedit WebKitShouldPrintBackgroundsPreferenceKey -bool YES Thanks to my pal Jim Correia for figuring that out! He asked me to…