going west

Going west involved an airplane. The sun was coming up as the plane was taking off, and since we were going west fairly quickly, golden hour lasted through most of the flight. I got these shooting out the window of the plane; really great light.
Posted by Matt on 2012-11-01 17:43:29 -0600

a few days at home

Or a week... something like that. Things happened, laundry was done, and then I took off again. I got to say, "I'll see you in Barcelona." Then I went west for a bit.
Posted by Matt on 2012-11-01 17:35:26 -0600

camping (aka the start of the travel season)

I went camping with a bunch of cool folks at the end of September. This was simple car camping, not anything involving crazy hikes with a giant backpack or mountains (as if oklahoma had any). It rained on us all weekend, more or less; there was time to get the tents set up, and a little time for breakfast on saturday, and the rest of the weekend was spent under a tarp or inside our tents. Protip: tents are not sound proof. When I say the travel season, I mean the time when I personally find myself going all over the place for a period of about 6 weeks, biannually. This time, it was Camping, San Fransisco, Barcelona, and in tomorrow, I fly to Denver. As Tim told me, 'The game been good to me'.
Posted by Matt on 2012-10-30 13:06:48 -0500

Mr. Penumbra's 24 hour book store

My normal readers should note that what follows is incredibly nerdy; part book review and part cryptanalysis, and no pretty pictures. You have been warned. I read "Mr. Penumbra's 24 Hour Book Store":http://www.robinsloan.com/penumbra/ on the plane to SF, and it was a wonderful book. I devoured it, really; it's got great pacing and mystery and all the things I like in a book. The characters are engaging, and I found myself rooting for the protagonist and the quest. Except... One of the plot points of the book is a code that remains unbroken for ~500 years. It's called a substitution cypher in the book, and without revealing too many details, I just couldn't believe that any substitution cypher would remain unbroken for that long. It was a bit of a let down. So, I did what any programmer would do: I built the thing. My somewhat incomplete implementation of cypher is "here":https://github.com/mattmills/penumbra-code. Having built it, it's a bit more clever than I thought. Because there are only 26 letters (less in latin, but I don't have any latin text to work from), and because there are a lot of glyphs (I stopped myself at 88 latin symbols that might be in a typeset), you can actually make english look like noise with this code, more or less. Once you know what you're up against, though, it is breakable. I haven't coded it yet, but there's at least a brute force method, and maybe something more clever is possible. It sort of depends on how much noise there is in the signal; minimally, you need 80 glyphs to make a flat distribution over a large text, but with a larger character set you could have random noise inserted to confuse the signal. The more glyphs in the typeface, the more noisy you can make it. If you had, say, 200 glyphs, and only 80 of them meaningful, then that would confuse codebreakers pretty well. If anyone has suggestions, I'd love to hear them. Pull requests too. I have a transatlantic flight on Tuesday, when I plan on getting this made into a gem and maybe even hacking together a little sinatra-based web form that will do encoding and decoding.
Posted by Matt on 2012-10-21 14:35:18 +0200