Animate.css
I stumbled on Animate.css today. It contains a bunch of pure CSS animations for use in your own projects.
iOS Text Editors Compared
I found this very comprehensive comparison of iOS text editors today. I’m still not happy editing without a filesystem, but perhaps one of these apps handles it in a non-shitty-cloud-syncing way.
Railsconf Links
Railsconf was a blast. Here are just a few links I gathered during the various talks: https://gist.github.com/2495211
Railsconf, ho!
Beyond excited to be attending Railsconf in Austin, TX this year! Can’t wait to finally meet the rest of Site5 Engineering team in person. If you’re at any of the bars afterward, make sure to flag down Site5 for a drink!
Prince of Persia Open Sourced!
This was a pretty cool story about how the developer of the original Prince of Persia game was able to recover it’s source code after 20 years. It almost makes me wish I had kept my pile of floppy disks!
All the reasons PHP sucks
This is a pretty comprehensive article that discusses the overall shittiness of PHP. Many of the points listed here are reasons I love Ruby over PHP.
TIL gifs can have more than 256 colors
Today I learned that gifs can have more than 256 colors. Using more seems unpractical, but it’s still a cool trick.
Fun with vector icons
This was an interesting article about resizing vector icons — in short, the details count, and SVG is no replacement for a designer’s keen eye.
A Test, from Heroku!
This is just a test post from Heroku :)
Splitting git repos with git filter-branch
While working on a project managed with Git, I needed to split some files into
a new repository. In order to maintain the git history on these files, I used
git filter-branch. Here are two methods I used.