-
"Yesterday was the inaugural papercamp in London, alongside its big sister bookcamp. I presented a half bookish half paperish presentation about travel guides. What I forgot to mention or make explicit: how there are totally different stages and needs for guide books – especially pre-booking, pre-travel, during travel, during holiday. So here is, from memory, what I talked about, with a few additions:" This was jolly good, an a neat branching point between the Paper and the Books.
-
Lots of corrections. addenda, and general props from John Romero (who has a sweet personal domain) about the Game Developer article from 1994 linked to recently. Some interesting stuff, including commentary on the NeXTStep screengrab, some of the internal toolchain, and a few clarifications about the id/Apogee/Softdisk relationship.
-
"We aim to re-start production of analog INTEGRAL FILM for vintage Polaroid cameras in 2010. We have acquired Polaroid's old equipment, factory and seek your support." They're serious. Wow.
-
"A Ruby library that wraps the Viapost SOAP API, providing an easy way of sending post (you know, real letter box post) from your applications."
-
"FeedTools is a simple Ruby library for handling rss, atom, and cdf parsing, generation, and translation as well as caching. It attempts to adhere to Postel’s law—i.e. a liberal parsing and conservative generation policy." Wasn't aware of this until now, remarkably.
-
I would kill to be 14 and to be taught by David. Other than this: wow, what a line-up of casual talks, and what a wake-up call about how kids use the internet.
-
Gmap of all the Sam Smiths pub in London. Or, at least, a lot of them. The Cardinal isn't on there, for starters.
-
"I’m really typecasting myself here. If there were an international “Person most likely to write a Spectrum emulator in Javascript” award, I’d have taken it for the last five years running. So here it is – probably the most stereotypical project I’ll ever come up with." Blimey.
-
"Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc."
-
"Losing is an opportunity that individuals deserve, and allowing the state to sweep in and save you from the consequences of your own actions robs you of a certain kind of agency." Fantastic article about the difference between win/lose and quit/finish. Lots of good stuff in here – a must-read.
Ruminant 0.9.5: making Moo Stickers in Ruby
26 September 2008
Last night, I took a look at James Darling‘s Ruminant library for Ruby. It’s a little Ruby library that lets you assembled designs and orders and send them to the Moo API for printing. It’s really nicely designed, but it’s only in the very early stages of development; it only supported creation of Minicards.
For various reasons, I’m looking at creating stickers through the API, and decided that it only seemed right to add sticker support to Ruminant.
As of last night, I’ve done exactly that. This is in part down to the joy that is GitHub. I forked James’ original code, and started work on my own Ruminant fork. I’ve added support for stickers, and have issued a pull request so that hopefully it’ll get merged back into James’ branch.
To install it, you’ll need Hpricot installed (sudo gem install hpricot
). Once you’ve done that, you can install it as a gem directly from my Github code. First, add Github to the list of sources rubygems supports:
gem sources -a http://gems.github.com
and then install my gem:
sudo gem install infovore-ruminant
and follow the instructions in the README.
More to come, along these lines…