<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

 <title>jonathan.is</title>
 <link href="http://jedahan.com/blog/atom.xml" rel="self"/>
 <link href="http://jedahan.com/blog"/>
 <updated>2013-05-23T11:35:21-07:00</updated>
 <id>http://jedahan.com</id>
 <author>
   <name>Jonathan Dahan</name>
   <email>jonathan@jedahan.com</email>
 </author>

 
 <entry>
   <title>ArtHackDay.net GOD MODE</title>
   <link href="http://jedahan.com/2013/03/16/arthackday-god-mode.html"/>
   <updated>2013-03-16T00:00:00-07:00</updated>
   <id>http://jedahan.com/2013/03/16/arthackday-god-mode</id>
   <content type="html">&lt;p&gt;I participated in &lt;a href=&quot;http://arthackday.net/god_mode/&quot;&gt;ArtHackDay: God Mode&lt;/a&gt;. The four projects I helped work on were&lt;/p&gt;

&lt;h3&gt;&lt;a href=&quot;http://arthackday.net/god_mode/57/&quot;&gt;Messenger of God&lt;/a&gt;&lt;/h3&gt;

&lt;p&gt;Wherein your cell phone automagically connected to our rogue network, and recieved text messages from &amp;#39;god&amp;#39;. If you walked up to our terminal, you could send messages from a website, as god.&lt;/p&gt;

&lt;h3&gt;&lt;a href=&quot;http://iconoclashes.com&quot;&gt;Iconoclashes&lt;/a&gt;&lt;/h3&gt;

&lt;p&gt;Wherein a photoshop script built by Erik and Clement mashed up artwork of different dieties, pulled from my &lt;a href=&quot;http://scrAPI.org&quot;&gt;unofficial metropolitan museum api&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;&lt;a href=&quot;http://arthackday.net/god_mode/65/&quot;&gt;Twetr&lt;/a&gt;&lt;/h3&gt;

&lt;p&gt;Wherein we provided an official unofficial app that had some very interesting backdoors...&lt;/p&gt;

&lt;h3&gt;&lt;a href=&quot;http://arthackday.net/god_mode/45/&quot;&gt;Hand of God&lt;/a&gt;&lt;/h3&gt;

&lt;p&gt;Wherein &lt;a href=&quot;https://vine.co/v/bXDIriYizLE&quot;&gt;a video&lt;/a&gt; may explain better than text&lt;/p&gt;

&lt;p&gt;ArtHackDay was amazing, as always. Another one is coming up in April in Stockholm!&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>How to use SmartOS / Joyent Cloud to deploy and run a fast, easily introspectable and debuggable hypermedia api.</title>
   <link href="http://jedahan.com/2013/01/28/buzzwords.html"/>
   <updated>2013-01-28T00:00:00-08:00</updated>
   <id>http://jedahan.com/2013/01/28/buzzwords</id>
   <content type="html">&lt;p&gt;How to use SmartOS / Joyent Cloud to deploy and run a fast, easily introspectable and debuggable hypermedia api.&lt;/p&gt;

&lt;p&gt;So you are making a sweet new hypermedia api, and wanna use node cuz its hip with the kids. And since its going to be just an api, restify seems a lot more attractive than express. You deploy to heroku, and the api is beautiful. It is self-documenting, has a decent suite of tests, and is fast.&lt;/p&gt;

&lt;p&gt;But since you are on herokus free plan and the free redis instance is running out of cache and is way more expensive than you can afford, you look for alternative hosting. And linode has great support and is certainly cheaper than heroku and easier and more performant and cheaper than S3 (according to people smarter than me). But you miss &lt;code&gt;heroku push&lt;/code&gt;. In comes &lt;a href=&quot;https://github.com/gerhard/deliver&quot;&gt;deliver&lt;/a&gt;, which is exactly what you want. It even comes with a node.js strategy that just works (thanks to foreman). Config is easy. Hooray Open Source!&lt;/p&gt;

&lt;p&gt;So your api is EVEN FASTER and you have 250x the cache for 1/5 the price.&lt;/p&gt;

&lt;p&gt;Until you start to hammer it with requests, and they start to time out.&lt;/p&gt;

&lt;p&gt;And you realize unlike gdb in C or decoda for lua, you are new to debugging with node. Well nipster tells you about node-inspector, which helps you plug a memory leak, awesome. But it didn&amp;#39;t exactly help fix the timeouts. &lt;/p&gt;

&lt;p&gt;The restify framework has DTrace support in its core, but it looks complicated so you search google for ways to see how much time is spent in each function. Again and again, result after result points to DTrace, flamegraphs. Even nodejs.org mentions &lt;code&gt;node-stackvis&lt;/code&gt;, which is a flamegraph port. Developing in OSX, you figure it will work since you have DTrace, except for the not-so-teensy issue that Apple does not support the Node.js ustack helper, which was mentioned in a few other blog posts. However illumos does. And Joyent, the main company behind node.js has a Cloud, and that Cloud runs SmartOS, which is an illumos distro.&lt;/p&gt;

&lt;p&gt;Now, you take a drink, because you have to make a decision. You have sheared sheep before. But this is full-blown yak shaving territory.&lt;/p&gt;

&lt;p&gt;You are learning a new operating system, to run a specific profiling tool supported by a particular framework so that you can help debug. The framework will almost certainly be gone in 5 years, probably even node.js will be replaced in that time by better stuff. DTrace will probably be around for a while longer, and its always good to be familiar with a range of operating systems, and DTrace + Zones (not to mention KVM and ZFS) look particularly interesting.&lt;/p&gt;

&lt;p&gt;So you bite the bullet, and realize this isn&amp;#39;t &lt;em&gt;just&lt;/em&gt; about getting your api performant - that is an end goal, but not the only goal. Its goal creep.&lt;/p&gt;

&lt;p&gt;Fortunately, your API is a personal project, and that is the best place to learn. You are invested in making your API kickass in all the possible ways, and to grow your skills.&lt;/p&gt;

&lt;p&gt;So thats the fluff, heres the crunch:&lt;/p&gt;

&lt;p&gt;Your &lt;a href=&quot;http://mcavage.github.com/node-restify&quot;&gt;restify&lt;/a&gt; api is too slow, almost certainly because of &lt;a href=&quot;https://github.com/jedahan/collections-api&quot;&gt;poor code&lt;/a&gt;.
  You want more powerful profiling, debugging and the ability to scale.&lt;/p&gt;

&lt;p&gt;So learn &lt;a href=&quot;http://en.wikipedia.org/wiki/DTrace&quot;&gt;DTrace&lt;/a&gt;, which will help debugging across a range of applications.
  And you begin with &lt;a href=&quot;http://dtrace.org/blogs/brendan/2011/12/16/flame-graphs&quot;&gt;flamegraphs&lt;/a&gt; to start profiling your api.&lt;/p&gt;

&lt;p&gt;Scaling / massive provisining from &lt;a href=&quot;wiki.illumos.org&quot;&gt;illumos&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/Solaris_Zones&quot;&gt;Zones&lt;/a&gt;
  You love the ease &lt;a href=&quot;http://www.heroku.com&quot;&gt;heroku&lt;/a&gt;, but need more control to debug and its expensive.
  So learn &lt;a href=&quot;https://github.com/gerhard/deliver&quot;&gt;Deliver&lt;/a&gt; and &lt;a href=&quot;https://github.com/ddollar/foreman&quot;&gt;foreman&lt;/a&gt;, so deployments are just as easy on any vps.&lt;/p&gt;

&lt;h1&gt;So here comes the Yak shaving:&lt;/h1&gt;

&lt;h2&gt;Getting deployment to SmartOS as easy as Heroku&lt;/h2&gt;

&lt;p&gt;The Deliver node.js &lt;a href=&quot;https://github.com/gerhard/deliver/tree/master/strategies&quot;&gt;strategy&lt;/a&gt; only supports upstart, which is not on SmartOS.
  No matter what process monitor we use, Deliver will need to be extended. This is easy because its just bash.&lt;/p&gt;

&lt;p&gt;Deliver uses foreman, which can export to a number of different init services, but again, SMF, SmartOS&amp;#39; init of choice is not one of them.&lt;/p&gt;

&lt;p&gt;Foreman does support exporting service definitions to bluepill, which is a rubygem, and since pkgsrc, SmartOS&amp;#39; package repository of choice, supports ruby, we hope it will work.&lt;/p&gt;

&lt;p&gt;So we change the .deliver/config to set SUPERVISOR to bluepill, and &lt;code&gt;gem install bluepill&lt;/code&gt; on illumos.&lt;/p&gt;

&lt;p&gt;Now extend the deliver node.js strategy by adding 3 lines of code to stop and reload the pill created by foreman.&lt;/p&gt;

&lt;p&gt;Also make sure your user SHELL is set to BASH, as deliver is bash-only.&lt;/p&gt;

&lt;h2&gt;More about Deliver&lt;/h2&gt;

&lt;p&gt;Should deliver just use foreman start and foreman stop? Should launch() be in libexec/common() and support all the foreman exports directly?&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Rasperry Pi Internet of Things Trafficlight</title>
   <link href="http://jedahan.com/2012/09/20/raspberry-pi-iot-trafficlight.html"/>
   <updated>2012-09-20T00:00:00-07:00</updated>
   <id>http://jedahan.com/2012/09/20/raspberry-pi-iot-trafficlight</id>
   <content type="html">&lt;p&gt;Hello from raspberry pi/adafruit/nycresistor!
Documentation for the internet of things traffic light can be found on &lt;a href=&quot;http://jonathan.is/524416&quot;&gt;my portfolio&lt;/a&gt; and on my partner in crime &lt;a href=&quot;http://terg.is&quot;&gt;Andrew Tergis&amp;#39; blog&lt;/a&gt;.
Feel free to control the trafficlight by going to http://terg.is/tl/ and view its status on http://bugcommunity.com/raspberrypi/&lt;/p&gt;

&lt;p&gt;The best way to contact us is through twitter &lt;a href=&quot;http://twitter.com/jedahan&quot;&gt;@jedahan&lt;/a&gt; and &lt;a href=&quot;http://twitter.com/theterg&quot;&gt;@theterg&lt;/a&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Dumbrella</title>
   <link href="http://jedahan.com/2012/06/15/dumbrella.html"/>
   <updated>2012-06-15T00:00:00-07:00</updated>
   <id>http://jedahan.com/2012/06/15/dumbrella</id>
   <content type="html">&lt;h1&gt;Dumbrella&lt;/h1&gt;

&lt;p&gt;So after chatting with a few wonderful campers I decided to tackle an umbrella that lets you know when you should bring it along.&lt;/p&gt;

&lt;p&gt;Design considerations in order of importance is speed of development, ease of use, durability, size of solution, power consumption,  price and name.&lt;/p&gt;

&lt;p&gt;Ideally, the dumbrella v0 will&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;be done by camp’s end&lt;/li&gt;
&lt;li&gt;be standalone&lt;/li&gt;
&lt;li&gt;accurately indicate if it is going to rain in your zip code that day&lt;/li&gt;
&lt;li&gt;survive in the rain&lt;/li&gt;
&lt;li&gt;fit inside an umbrella handle&lt;/li&gt;
&lt;li&gt;have batteries that last a while unattended&lt;/li&gt;
&lt;li&gt;have easily replaceable batteries&lt;/li&gt;
&lt;li&gt;cost me less than $100&lt;/li&gt;
&lt;li&gt;have a better name, possible related to PR Nelson&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The current thought is a hollow wooden handle, with a wi-fi enabled microcontroller that polls every 30 minutes some website to check if its going to rain in the next 24 hours based on its geoip location. If the forecast says rain, it lights up all sorts of crazy.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Museums And The Web 2012</title>
   <link href="http://jedahan.com/2012/04/12/museums-and-the-web-2012.html"/>
   <updated>2012-04-12T00:00:00-07:00</updated>
   <id>http://jedahan.com/2012/04/12/museums-and-the-web-2012</id>
   <content type="html">&lt;h2&gt;Day 1&lt;/h2&gt;

&lt;p&gt;arrived around noon in san diego, great weather
tried to checkin to hotel but was too early
walked to downtown (35 minutes)
ate first meal of the day at anthonys
rented a bike for the weekend
biked to gaslight district
checked out pamphlets at hostel, stole cookie
been 5 hours, checked into hotel
spent some time figuring out where people were - craft and commerce
met up with Erin at craft and commerce
introduced to Susan, Bruce, Ed, some others
ended up chatting with some locals telling me to go to Cherry Bomb &amp;amp; Tijuana
went to another bar with Ed &amp;amp; friends and got more drunk
Met with Perian at Princess Pub?
cabbed back, passed out&lt;/p&gt;

&lt;h2&gt;Day 2&lt;/h2&gt;

&lt;p&gt;9:15 mwhackathon
signed up for way too many projects :)
introduced to koven via susan
arduino + kinect workshop
Bruce is here
Met Miriam (ArduinoGrrl) and Liz Neely both of whom are awesome
Tried to get wekinator working
got advice to retry SimpleOpenNI the libraries have gotten a lot better
5pm, met with Erin, Susan, Leo, Ed, Ryan, 5 more for visualisation event @ calit2
calit2 vis stuff is super fucking awesome, holy shit its Lev Manovich!
giant screens with excellent visualisations of art - I am so compelled to learn about Rothko
met with virtual art group / experience people who were livestreaming to japan, documentary, awesome stuff
lots of talk of sharing data, compelling stories&lt;/p&gt;

&lt;h2&gt;Night 3&lt;/h2&gt;

&lt;p&gt;tooo much
karoake + dancing after balboa park after great talks&lt;/p&gt;

&lt;h2&gt;Night 4&lt;/h2&gt;

&lt;p&gt;connect with hackers, make research a necessity. REAL research - do not worry about deliverables but really
    be free to do pure experimentation for true cutting edge stuff
curation and semantics changing
a site about open data myths and evidence to sway&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Arduino Code</title>
   <link href="http://jedahan.com/2012/01/15/arduino-code.html"/>
   <updated>2012-01-15T00:00:00-08:00</updated>
   <id>http://jedahan.com/2012/01/15/arduino-code</id>
   <content type="html">&lt;p&gt;I have spent way too much time trying to program an attiny25/45/85 using an arduino as the ISP, both with Arduino 1.0 and avrdude on OSX Lion.
  I finally got an Arduino Nano v2.3 acting as an ISP for the attiny25 with avrdude on OSX Lion.
  Here is what I learned.&lt;/p&gt;

&lt;p&gt;TL;DR for those who just want to party&lt;/p&gt;

&lt;hr&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;1. Install Arduino 1.0
2. Wire up your board
3. Open ArduinoISP, and change `Serial.begin(19200)` to `Serial.begin(9600)`
4. Upload sketch to the arduino, make sure the heartbeat led on pin 9 is pulsing
5. Put a 110-&amp;gt;220 Ohm resistor between +5v and reset
6. `cd /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr/bin`
7. `./avrdude -c stk500v1 -p attiny25 -P /dev/tty.usbserial-* -C ../etc/avrdude.conf -b 9600`
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Why all this work?&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;The baudrate workaround is needed because the serial buffer size was halved between Arduino 023 to 1.0.
  It is already in the trunk version of ArduinoISP.&lt;/p&gt;

&lt;p&gt;The resistor is required to disable auto-reset on the arduino. If you are using a different board, make
  sure to learn how to disable auto-reset safely on that particular board. Also make sure to re-enable
  auto-reset when you want to put different firmware on the arduino.&lt;/p&gt;

&lt;p&gt;Can it be improved?&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;If you have [homebrew][] installed, you can use [homebrew-alt][] to install a newer version of avrdude,
  which supports &amp;#39;arduino&amp;#39; as a programmer, making the command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;avrdude -c arduino -b 9600 -p attiny25 -P /dev/tty.usbserial-*&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This can be simplified further by telling avrdude to remember 9600 baud for arduino programming. Just add
  add &lt;code&gt;baudrate = 9600;&lt;/code&gt; underneath &lt;code&gt;type = arduino;&lt;/code&gt; in &lt;code&gt;/usr/local/etc/avrdude.conf&lt;/code&gt;. Now its just:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;avrdude -c arduino -p attiny25 -P /dev/tty.usbserial-*&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Hopefully avrdude.conf will be updated to 9600 baud for the arduino programmer, as that seems to be
  the official fix.&lt;/p&gt;

&lt;p&gt;It would be even better if the libraries were updated so that 19200 baud would work with ArduinoISP.&lt;/p&gt;

&lt;p&gt;What about ATTiny support in the Arduino IDE?&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;There is an unofficial project that adds attiny entries to the Arduino IDE.&lt;/p&gt;

&lt;p&gt;To get this working, make sure to change the 19200 in &lt;code&gt;$ARDUINO_DIR/hardware/arduino/programmers.txt&lt;/code&gt; to 9600.&lt;/p&gt;

&lt;p&gt;I will probably submit a patch to do this for you :)&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Things Done Since Last Post</title>
   <link href="http://jedahan.com/2011/10/18/things-done-since-last-post.html"/>
   <updated>2011-10-18T00:00:00-07:00</updated>
   <id>http://jedahan.com/2011/10/18/things-done-since-last-post</id>
   <content type="html">&lt;p&gt;Heres a bunch of shit thats happened since last post. Hooray for jekyll meaning I can make a MVBlogPost.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open Hardware Summit 2011&lt;/li&gt;
&lt;li&gt;World Maker Faire 2011&lt;/li&gt;
&lt;li&gt;Chaos Communications Congress #???
Fucking amazing. I am always down to talking about all the crazy stuff that happened&lt;/li&gt;
&lt;li&gt;Internet of Things meetup&lt;/li&gt;
&lt;li&gt;ESC Boston&lt;/li&gt;
&lt;li&gt;started job @buglabs&lt;/li&gt;
&lt;li&gt;&lt;p&gt;moved to south slope&lt;/p&gt;

&lt;h2&gt;Todo&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;link out to relevant websites&lt;/li&gt;
&lt;li&gt;describe one cool think that happened&lt;/li&gt;
&lt;li&gt;split CCC to new post&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
 <entry>
   <title>West Coast Week Three</title>
   <link href="http://jedahan.com/2011/02/13/west-coast-week-three.html"/>
   <updated>2011-02-13T00:00:00-08:00</updated>
   <id>http://jedahan.com/2011/02/13/west-coast-week-three</id>
   <content type="html">&lt;p&gt;For more details, check the &lt;a href=&quot;http://www.flickr.com/photos/37234044@N07/&quot;&gt;pics&lt;/a&gt;, &lt;a href=&quot;http://www.youtube.com/jedahan&quot;&gt;videos&lt;/a&gt; and &lt;a href=&quot;http://foursquare.com/jedahan&quot;&gt;travelog&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Saturday&lt;/h2&gt;

&lt;p&gt;Morning farmers market in silver lake, the bussed to santa monica pier. Walked around a bit, got food at the local mall, and then headed to LAX.
  Went to a burlesque rave in Oakland - not sure where it was but we met at 2020 and the shuttle was about a fifteen minute ride. Had to dress up, so borrowed some outfit Kim had. Two main dance floors with some good DJs, lots of beds and blindfolds and ropes. Naked sushi, all benefiting a non-for-profit hotline in Oakland. It was a blast - we stayed out till around 5.
  Once back at the hostel chatted it up with Mickey, big EDC backstage festival-hopper.&lt;/p&gt;

&lt;h2&gt;Sunday&lt;/h2&gt;

&lt;p&gt;Slept late, then went to a roller-skating birthday party at cellspace. Spent two hours skating and generally having fun, but had a small anxiety attack and got up and left :/ Chilled at the hostel, tried to find contact info for Richard.&lt;/p&gt;

&lt;h2&gt;Monday&lt;/h2&gt;

&lt;p&gt;Woke up early, thinking I was supposed to be at Yammer at 10am. Turns out I was 4 hours early, so got some work done on the dining table. Spent the afternoon hacking at noisebridge until 5am, brought adam there.&lt;/p&gt;

&lt;h2&gt;Tuesday&lt;/h2&gt;

&lt;h2&gt;Wednesday&lt;/h2&gt;

&lt;p&gt;2 bottles of wine after a long chat with the shopkeep of Napa Valley Wines.
 Took the tram up to chinatown, checked out a museum there, ate the goat cheese sandwich at La Bolounge, then hopped back on towards the wharf.
 Checked out laughing sal and watched naughty movies and took pictures at Musee de Mecanique.
 Got another bottle of wine, finished it at the hostel
 Stayed in the hostel until midnight, went out to cellar for shots and beers.&lt;/p&gt;

&lt;h2&gt;Thursday&lt;/h2&gt;

&lt;p&gt;Getting to the exploratorium was a very difficult journey in all the rain, but the bus ride there was great, and exploratorium was amazing. apple still frame, skipping girl, audio room. Getting to the lockers and back was also intensly difficult. Spent a lot of time getting close to friends.&lt;/p&gt;

&lt;h2&gt;Friday&lt;/h2&gt;

&lt;p&gt;last day??? not last in SF but last for now.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>California Two Weeks Later</title>
   <link href="http://jedahan.com/2011/02/11/california-two-weeks-later.html"/>
   <updated>2011-02-11T00:00:00-08:00</updated>
   <id>http://jedahan.com/2011/02/11/california-two-weeks-later</id>
   <content type="html">&lt;p&gt;&lt;strong&gt;Warning&lt;/strong&gt; this is a WIP, some things will be incomplete/incorrect and generally very sketchbook like. It will be a lot easier to review later and make more sense of things.&lt;/p&gt;

&lt;p&gt;I am on the flight back from the City of Angels to San Francisco.
  First of all, Los Angeles is super polluted. If you are walking around, expect to be breathing in exhaust at least half the time. Also, people dont clean up after themselves or thier dogs.
  This is the most spread-out city I have been to, and it is difficult to get around walking.
  Try to use the rail and big blue bus / rapid lines over regular buses.&lt;/p&gt;

&lt;p&gt;Transit and cleanliness difficulties aside, the weather, art, dogs and fashion in LA are beautiful.
  I am fortunate enough to be crashing at a friends place in Silver Lake, which is only 15 minutes away from downtown.&lt;/p&gt;

&lt;p&gt;Check out my &lt;a href=&quot;http://www.flickr.com/photos/37234044@N07/&quot;&gt;flickr&lt;/a&gt;, &lt;a href=&quot;http://www.youtube.com/jedahan&quot;&gt;youtube&lt;/a&gt; and &lt;a href=&quot;http://foursquare.com/jedahan&quot;&gt;foursquare&lt;/a&gt; for all that good stuff.&lt;/p&gt;

&lt;h2&gt;Saturday&lt;/h2&gt;

&lt;p&gt;First time sailing - hell yeah! We spent about half the day trying to get one motor started - the batteries were too low. So I blew up a raft and attempted to pull the boat into another slip so we could sail out. Just then Chad, the owner of the slip we wanted to borrow sailed in and offered us his boat. So we hung out while Chad piloted the beautiful yellow ship. The bay is super busy, saw some cargo ships and tall &amp;#39;pirate&amp;#39; ships. Sailing is not too hard, just takes some diligence in maintaining. We played ukelele and had some nice winds.&lt;/p&gt;

&lt;p&gt;Later in the afternoon there were sea shanties on Hyde pier - very fun but you probably want to be pretty inebriated to enjoy it to the fullest. Still, cool ships and a fun time. San Francisco is super-bikable, just get ready for some serious strength training with these hills.&lt;/p&gt;

&lt;h2&gt;Sunday&lt;/h2&gt;

&lt;p&gt;...to be filled in when i can check back with my notes&lt;/p&gt;

&lt;h2&gt;Monday&lt;/h2&gt;

&lt;p&gt;Met with Ben for lunch in Bryant park; ate a burger that rivals the ones from Jackson Hole.
  Chilled at noisebridge in the evening, talked to Mitch about the musical capabilities of the atmega chips, if it really makes sense to run them at 22Mhz or if settling for a 20Mhz ceramic oscillator is fine.&lt;/p&gt;

&lt;h2&gt;Tuesday&lt;/h2&gt;

&lt;p&gt;Up until 6am coding my business card. No typo there, just wrote a little script to generate qrcode urls with base64 encoded uuids attached to the end. Gonna do some weird interactive/augmented stuff with that. Wondering if rails routes can do fuzzy matching, or match from a database.&lt;/p&gt;

&lt;h2&gt;Wednesday&lt;/h2&gt;

&lt;p&gt;Yeah projectfresh! Government 2.0 talks were a lot more interesting and less political than I had anticipated. Very good panel assembly by Burt. Realized that any business cards are better than none
  Gonna work with Richard Monday night at noisebridge doing a little 3d-led-cube action!
  Kurt, one of the panelists gave me a ride home, we had a super-excellent chat about destroying the ego.
  Rob showed me his pad, I am pretty jealous of his book collection. And brought me to an excellent Taco truck, tacozone.&lt;/p&gt;

&lt;h2&gt;Thursday&lt;/h2&gt;

&lt;p&gt;Art Walk! Go around 6pm, any earlier and a lot of the galleries are closed or not ready. Downtown becomes packed, which is rare out in Cali. Bacon-wrapped dirty-dogs were clutch. Bar 107 had an excellent dj lots of eclectic good rock music. Daisy and Janet showed me a good time around town, thanks!&lt;/p&gt;

&lt;h2&gt;Friday&lt;/h2&gt;

&lt;p&gt;25 and sunny, hell yeah. Took a bus to Beverly Hills, checked out the shops near the miracle mile and went to the mall. Got some really delicious sushi in Little Tokyo, then got a shirt at some rediculous botique.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>San Francisco One Week Later Edited</title>
   <link href="http://jedahan.com/2011/02/04/san-francisco-one-week-later-edited.html"/>
   <updated>2011-02-04T00:00:00-08:00</updated>
   <id>http://jedahan.com/2011/02/04/san-francisco-one-week-later-edited</id>
   <content type="html">&lt;p&gt;Ive been in Fog City for a week now, and it flew by really fast. The first generalization I can make is that here you do not need to make plans to do a lot of fun stuff. Without any research or planning Ive been super busy every day. This post will be updated with better grammer and more details as I sort through it all.&lt;/p&gt;

&lt;p&gt;Check out my &lt;a href=&quot;http://www.flickr.com/photos/37234044@N07/&quot;&gt;flickr&lt;/a&gt;, &lt;a href=&quot;http://www.youtube.com/jedahan&quot;&gt;youtube&lt;/a&gt; and &lt;a href=&quot;http://foursquare.com/jedahan&quot;&gt;foursquare&lt;/a&gt; for all that good stuff.&lt;/p&gt;

&lt;h2&gt;Friday&lt;/h2&gt;

&lt;p&gt;Landed in SFO, took the BART to Tenderloin, checked into adelaide hostel
  Had sushi with Ben for dinner - Toro is really, really good&lt;/p&gt;

&lt;h2&gt;Saturday&lt;/h2&gt;

&lt;p&gt;Took a walking tour of the city, went to coit tower, the cable car museum,
  beat museum, Fog City tours are excellent.
  House party in Civic center, 23rd floor. Christian had too much to drink.&lt;/p&gt;

&lt;h2&gt;Sunday&lt;/h2&gt;

&lt;p&gt;Tuesday description might be sunday actually. Or Saturdays description might be sunday. Must check 4S.&lt;/p&gt;

&lt;h2&gt;Monday&lt;/h2&gt;

&lt;p&gt;Four hour interviews with Yammer. Very cool people, company, product, atmosphere.
  Walked around SoMa a bit and had some tea at epicenter cafe.
  First guy I asked about breaking into the industry runs a newsletter of startup meetups. Go Figure.&lt;/p&gt;

&lt;h2&gt;Tuesday&lt;/h2&gt;

&lt;p&gt;Free museums - checked out the MoMA and Yerba Bueno. MoMA has 2 floors closed, the main exhibit was
  &amp;#39;how wine became modern&amp;#39; and that was kind of boring. The space feels weirdly curated.
  The top exhibit was all about photography, mostly black-and-white and not very inspirational.
  There was one sound sculpture at the tiny white bridge on the fifth floor that was neat.
  The secondary store on the fifth floor was all local artists, and much more interesting.&lt;/p&gt;

&lt;p&gt;Yerba Bueno was very cool - just 3 artists galleries and one general exhibition.
  The exhibition was about audiences, but most films were too long for my attention span
  The galleries were all good - one on counterpoint was the best. The video installations were
  enjoyable. The audience clapping one was really scary, and the old guy acting like a mouse was good too.
  Yen explained the beach bum video that came from regression therapy which made it that much better.&lt;/p&gt;

&lt;p&gt;Yerba Bueno has a beautiful garden too.&lt;/p&gt;

&lt;p&gt;Took the bus to the presidio to meet with ben, but my phone died so I ended up walking to the Exploratorium.
  Fucking awesome. All interactive science exhibits, some trippy as hell most very smile-inducing.&lt;/p&gt;

&lt;h2&gt;Wednesday&lt;/h2&gt;

&lt;p&gt;Exploratorium with Thomas and Alex, checked out the beach and went back to the hostel then mission district.&lt;/p&gt;

&lt;h2&gt;Thursday&lt;/h2&gt;

&lt;p&gt;In the afternoon hung out at Rachels before going to the Exploratorium After Dark Surrealist party.
  Wrote &amp;#39;ce nest pas une chemise&amp;#39; on a shirt while looking in a mirror. Rachels friend works at the Exploratorium, and she introduced me to Dale Dougherty!
  Went to the super-fun tactile dome, and had some tea with tea at the mad hatter party.
  Then drove in the back of a small truck to a view of the golden gate bridge by the presidio with some friends.
  Steve (noise music to break from representational music), Moxy (nuero-linguistic programmer), and stuart (moving from crazy house to less normal house).
  Stuart and Rachel went to CMU too!&lt;/p&gt;

&lt;p&gt;Im super stoked for sailing and sea shanties this Saturday with Steve, Stuart and some others!&lt;/p&gt;

&lt;h2&gt;Friday&lt;/h2&gt;

&lt;p&gt;Gonna check out a coworking space to get some programming done before beers and dinner tonight.
  WTF san francisco. I just happen to come in on NextSpace Free Day + 4pm happy hour.
  Living here with no plans is just tooooo easy.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>open source hardware conference</title>
   <link href="http://jedahan.com/2010/11/15/oshw.html"/>
   <updated>2010-11-15T00:00:00-08:00</updated>
   <id>http://jedahan.com/2010/11/15/oshw</id>
   <content type="html">&lt;p&gt;This is first a response to &lt;a href=&quot;http://twitter.com/jxa&quot;&gt;@JxA&lt;/a&gt;&amp;#39;s &lt;a href=&quot;http://www.outdoortechnologist.com/2010/11/12/open-x-x-protohardware-hardware-product-module-block-y/&quot;&gt;post&lt;/a&gt; about the &lt;a href=&quot;http://www.openhardwaresummit.com&quot;&gt;OSHW Definition
Draft&lt;/a&gt; and second just general thoughts brewing post-&lt;a href=&quot;http://www.openhardwaresummit.com&quot;&gt;OSHW&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href=&quot;http://twitter.com/jxa&quot;&gt;@JxA&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Your definition of proto-hardware and hardware could be boiled down to &amp;#39;when do
I start inviting the world to collaborate?&amp;#39; .  It is a gray area that you
probably saw a lot more sharing of at OSHW due to the mutual understanding and
passion of the attendees (seriously OSHW was such an awesome time!). Your
&amp;#39;proto&amp;#39; seems close to platform, &amp;#39;hardware&amp;#39; close proto + documentation, and
&amp;#39;product&amp;#39; close to hardware +  usable software + full documentation. At such
early stages in design these blur, as there is another type of consumer that has
different expectations of &amp;#39;the product&amp;#39;.&lt;/p&gt;

&lt;p&gt;A while ago my father asked why open source wasn&amp;#39;t advertised. To make a long
story short and relevant to this conversation, we agreed that the maker-consumer
cares most about the hackability of a product - to the point that the product
doesn&amp;#39;t really have to do anything out of the box. Seeing OSHW-stamped boxes
would inform the maker &amp;#39;hey do not worry about hacking this thing its gonna be
easier and we encourage you to do so!&amp;#39;. This stamp should mean the same thing
regardless of the stage of development of the product.&lt;/p&gt;

&lt;p&gt;I am not quite sure where I am going with this, just that although I like the
direction your thoughts are going, describing something clearly that is complex
necessarily requires complex description. It is why this definition is taking a
while to solidify (though it has &amp;#39;gelled&amp;#39; a whole lot in the past few months).&lt;/p&gt;

&lt;p&gt;Defining the goals of the definition will bring about a clearer scope, which can
definitely be found through discussion like this.&lt;/p&gt;

&lt;p&gt;If you don&amp;#39;t mind, I would like to link to this post and yours in the forums.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;TL;DR&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Outlining the goals of the OSHW definition will make it easier to describe
complex things in a clear manner&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;One goal is that compliance should alert makers &amp;#39;Hack Me!&amp;#39; ( though really,
shouldn&amp;#39;t everything? )&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
 <entry>
   <title>arduino buyers guide</title>
   <link href="http://jedahan.com/2010/07/21/arduino-buyers-guide.html"/>
   <updated>2010-07-21T00:00:00-07:00</updated>
   <id>http://jedahan.com/2010/07/21/arduino-buyers-guide</id>
   <content type="html">&lt;p&gt;Some recommendations since they avr scene has exploded, and arduino-compatable
boards rock. I recommend supporting the manufacturer by buying direct if you
have that option.
Shield compatability is very useful when starting out. Choose one from the basic
list if you are not sure where to start, but be sure to check out the neat
features in the alternative boards too.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;$40&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://www.littlebirdelectronics.com/products/Freetronics-TwentyTen.html&quot;&gt;Basic: The Freetronics TwentyTen&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Duemilanove + mini usb connector + built in proto board&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://www.liquidware.com/shop/show/ILL/Illuminato::Genesis&quot;&gt;Alternative: Illuminato Genesis&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;42 I/O pins, sweet black pcb with 10 bright white leds, 64K of code space&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;$30&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://www.arduino.cc&quot;&gt;Basic: Uno&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The official board is more flexible, since you can change the atmel chip&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://seeedstudio.com&quot;&gt;Alternative: Seeeduino&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Improved form factor than the uno, but the chip is not swappable&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;$20&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://www.arduino.cc&quot;&gt;Basic: Arduino Pro&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Smaller and cheaper, but is serial only (a serial to usb cable is ~$15)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href=&quot;http://www.moderndevice.com/products/bbb-kit&quot;&gt;Alternative: BBB&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;$4 cheaper than the pro, and you get to build it yourself!&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
 <entry>
   <title>systems</title>
   <link href="http://jedahan.com/2010/07/05/systems.html"/>
   <updated>2010-07-05T00:00:00-07:00</updated>
   <id>http://jedahan.com/2010/07/05/systems</id>
   <content type="html">&lt;p&gt;Reduce friction for contribution and consumption
  * see open source development 
Offer alternatives to asymmetric balance of information
  * insurance vs. savings communes
Keep in mind the elasticity and &lt;em&gt;limit&lt;/em&gt; the numbers
  * private trackers, constitution&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>notes</title>
   <link href="http://jedahan.com/2010/07/02/notes.html"/>
   <updated>2010-07-02T00:00:00-07:00</updated>
   <id>http://jedahan.com/2010/07/02/notes</id>
   <content type="html">&lt;p&gt;Going through the speaker list at &lt;a href=&quot;http://hope.net&quot;&gt;thenexthope&lt;/a&gt;, and seeing how many notes I
have written in tasque made me realize I consume way more than I can follow up
on. Prioritization aside, just getting this down for posterity is important, and
what better way than to public random notes on the internet? (Seriously, I need
a better scheme than this, preferrable one that following the &lt;a href=&quot;antihacking.html&quot;&gt;antihacking&lt;/a&gt;
idea I posted earlier. This post will probably be split into a few ones later,
but its better to push early and often, before this stuff slips away.&lt;/p&gt;

&lt;h2&gt;FossCon&lt;/h2&gt;

&lt;p&gt;Great convention, organized by JonathanD&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Lots of talks involved open education, not just in using FOSS technologies
for IT infrastructure, but to take advantage of real world excercises,
contributing to code/documentation/art/testing in projects that people will
actually use.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;hkcmp&lt;/li&gt;
&lt;li&gt;freebay / nomoola&lt;/li&gt;
&lt;li&gt;collectivefoundation&lt;/li&gt;
&lt;li&gt;aaaarg.org&lt;/li&gt;
&lt;li&gt;publiccollectors&lt;/li&gt;
&lt;li&gt;collectivefoundation&lt;/li&gt;
&lt;li&gt;thepublicschool.org&lt;/li&gt;
&lt;li&gt;learningsite.info&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;From the talk on community management given by kloeri&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;define what you want from the community early on&lt;/li&gt;
&lt;li&gt;changing direction is ok as long as everyone is moving in the same
direction&lt;/li&gt;
&lt;li&gt;leave trivial bugs as low hanging fruit&lt;/li&gt;
&lt;li&gt;be open about exploitation of users to turn them into contributors&lt;/li&gt;
&lt;li&gt;take &amp;quot;bad&amp;quot; patches to illustrate ease of contribution&lt;/li&gt;
&lt;li&gt;attribute contributions even if the contributor did not do any of the real
work&lt;/li&gt;
&lt;li&gt;upstream gets contributors &amp;lt;&amp;gt; contributors get credit and learning&lt;/li&gt;
&lt;li&gt;users can socially engineer the developers to do work for them! (just pose
the question as an interesting problem)&lt;/li&gt;
&lt;li&gt;for another good example, see BFS from Con Kovilas&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;POSSE&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;productively lost is a good thing, stumbling around means you have a
greater learning potential&lt;/li&gt;
&lt;li&gt;RiT has a good FOSS movement going on, check out the foss@rit projects
page!

&lt;ul&gt;
&lt;li&gt;Professor Stephen rocks, and so does the OLPC&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Openhatch - job site++ for FOSSheads&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Would be cool to add mission badges, integration with statusnet&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Civx.net  - git history of laws!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Both built on pygears &amp;lt; turbogears2 &amp;lt; moksha&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Music&lt;/h2&gt;

&lt;p&gt;Music to check out - stuff that sounds good at first glance but I should
  consider putting into my regular rotation / radio show.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fabriclive 50&lt;/li&gt;
&lt;li&gt;faded paper figures&lt;/li&gt;
&lt;li&gt;clermont&lt;/li&gt;
&lt;li&gt;frog eyes&lt;/li&gt;
&lt;li&gt;slothbeat kids&lt;/li&gt;
&lt;li&gt;icarus himself&lt;/li&gt;
&lt;li&gt;hyperbubble&lt;/li&gt;
&lt;li&gt;the humms might have a song that flaming lips took the chord progression for
&amp;#39;I dont know where the sunbeams end and the starlight begins...&amp;#39;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Projects&lt;/h2&gt;

&lt;p&gt;Its important to document work - really, &lt;em&gt;really&lt;/em&gt; important. Here is a crappy
  start.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get pics from Prof. Jose&lt;/li&gt;
&lt;li&gt;Fix arduinome&lt;/li&gt;
&lt;li&gt;Build Problem Light (have a good chassis...)&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
 <entry>
   <title>anti-lifehacking</title>
   <link href="http://jedahan.com/2010/04/10/antihacking.html"/>
   <updated>2010-04-10T00:00:00-07:00</updated>
   <id>http://jedahan.com/2010/04/10/antihacking</id>
   <content type="html">&lt;p&gt;This is the anti-lifehack.&lt;/p&gt;

&lt;p&gt;By eschewing organization schemes this design pattern forces immediate action.&lt;/p&gt;

&lt;p&gt;No tags, folders or priorities allowed - either deal with item X now, or place
it on the bottom of the queue.&lt;/p&gt;

&lt;p&gt;If it seems overwhelming, try determining how much time you would like to work
on anything, and find an item that can have measurable progress in that period.
I have applied this to my email inbox, rss feeds, and todo lists.&lt;/p&gt;

&lt;p&gt;When applied to my email, I realized I had too many messages incoming. It forced
me to unsubscribe from at least a dozen mailing lists, and over 99% of my emails
are archived (which means they are dealt with). Zero inbox is attainable but not
necessary - set small goals, like reducing the net amount by 5 every day.&lt;/p&gt;

&lt;p&gt;When applied to my rss reader, I realized I had too many feeds, and would really
only read a few anyway. I bookmarked the sites that I loved but rarely read, and
decided to return to them later. Also, I hid item counts.&lt;/p&gt;

&lt;p&gt;When applied to my todo list, I realized I had more stuff than time to do it in,
which forced me to get very good at prioritizing, and picking what needed to be
done immediately. This required a bit more dilligence about actually adding
stuff to the todo list, though its great to cross off items.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>awesome island labs meeting</title>
   <link href="http://jedahan.com/2009/11/10/awesome-island-labs-meeting.html"/>
   <updated>2009-11-10T00:00:00-08:00</updated>
   <id>http://jedahan.com/2009/11/10/awesome-island-labs-meeting</id>
   <content type="html">&lt;p&gt;So we had three new faces at &lt;a href=&quot;http://islandlabs.org&quot;&gt;Island Labs&lt;/a&gt; today. &lt;a href=&quot;http://narobo.com/&quot;&gt;Eric Forkosh&lt;/a&gt;
is an experienced inventor who brought a cool gsm development board. &lt;a href=&quot;http://maryellenwalshwriter.com/&quot;&gt;Mary Ellen
Walsh&lt;/a&gt; is a charming writer who came to observe our group to help research
hackerspaces for Newsday. And Kent (whose last name I cannot remember!) is a
friendly and inquisitive photo/videographer that captured the meeting also for
Newsday.&lt;/p&gt;

&lt;p&gt;Our &lt;a href=&quot;http://islandlabs.org/wiki/project:corn_starch_experiments&quot;&gt;corn starch experiments&lt;/a&gt; have finally paid off! Laurie donated a
speaker that kupo and Tony wrapped with seran wrap. Jonathan hooked up the synth
and with the help of justin and kupo got some really crazy shapes and tendrils
to dance! Bill explained how non-newtonian fluids work and talked a bit about
the &lt;a href=&quot;http://islandlabs.org/wiki/project:near_space_launch&quot;&gt;near space launch&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Justin and Jonathan got the arduino to run a test program for a hobby servo,
while Jan and Eric worked out some equations on how much torque would be needed
to turn the doorknob for the &lt;a href=&quot;http://islandlabs.org/wiki/project:magic_door&quot;&gt;magic door&lt;/a&gt; project.&lt;/p&gt;

&lt;p&gt;In the holiday spirit, Chris soldered together an LED electric christmas tree!&lt;/p&gt;

&lt;p&gt;Thanks for everyone who came out, with special thanks to Mary and Kent, who
really just let us do our thing, and were great company.&lt;/p&gt;

&lt;p&gt;Pics will be posted soon!&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>random technology update</title>
   <link href="http://jedahan.com/2009/09/27/random-technology-thoughts.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/random-technology-thoughts</id>
   <content type="html">&lt;ul&gt;
&lt;li&gt;CK&amp;#39;s BFS patches apply cleanly to the nouveau tree. No idea if the desktop is
more responsive or not.&lt;/li&gt;
&lt;li&gt;More and more projects are moving away from traditional version numbers, going
scm. This is good, but they should tag versions as stable more often (i&amp;#39;m
looking at you, &lt;a href=&quot;http://subforge.org&quot;&gt;subtle&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Is there any way to remove ~/Desktop permanently and tell all xdg-aware apps
to use ~/ as ~/Desktop?&lt;/li&gt;
&lt;li&gt;OpenSSH setup on openWRT, will cover configuration in a separate post.&lt;/li&gt;
&lt;li&gt;Interviewed Scott Shawcroft of OSWatershed.org . Maybe an exherbo scraper
could be whipped up.&lt;/li&gt;
&lt;/ul&gt;
</content>
 </entry>
 
 <entry>
   <title>openssh and openwrt</title>
   <link href="http://jedahan.com/2009/09/27/openssh.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/openssh</id>
   <content type="html">&lt;p&gt;Success! Unrestricted, encrypted internet access from my laptop to a linksys
wrt54g running openwrt. The OpenSSH documentation and irc channel bot were
especially helpful - follow them for generating the keys, and use a
configuration like the one below if you want all your internet traffic routed
through a tunnel. The firewall.user I would not copy directly, since it is
overly open. Since I have almost no clue to how IPTables works, any help on
simplifying it would be appreciated.&lt;/p&gt;

&lt;p&gt;client.conf:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;client
dev tun
proto udp
pull # new for 2.1

remote fayth.ath.cx 1194
nobind

ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/fayth.crt
key /etc/openvpn/keys/fayth.key
dh /etc/openvpn/keys/dh2048.pem

comp-lzo
verb 3
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;server.conf:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;### connection
port 1194 
proto udp
dev tun
client-to-client

# security
user nobody
group nobody

### keys
ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/server.crt
key /etc/openvpn/keys/server.key
dh /etc/openvpn/keys/dh2048.pem

### routing
server 10.8.0.0 255.255.255.0
### make sure to include def1
push &amp;quot;redirect-gateway def1&amp;quot;
push &amp;quot;dhcp-option DNS 10.8.0.1&amp;quot;

### logging
comp-lzo
keepalive 10 120
status /tmp/openvpn.status
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;/etc/firewall.user:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;iptables -I FORWARD -j ACCEPT

### OpenVPN
iptables -A OUTPUT  -o tun+ -j ACCEPT
iptables -A INPUT   -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -j ACCEPT
iptables -A FORWARD -o tun+ -j ACCEPT
iptables -I OUTPUT  -o tun+ -j ACCEPT
iptables -I INPUT   -i tun+ -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -I FORWARD -o tun+ -j ACCEPT
iptables -I FORWARD -i tun+ -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t nat -I POSTROUTING -o tun+ -j MASQUERADE
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content>
 </entry>
 
 <entry>
   <title>jekyll, or why blogging is not the same as publishing</title>
   <link href="http://jedahan.com/2009/09/27/jekyll-or-why-blogging-is-not-the-same-as-publishing.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/jekyll-or-why-blogging-is-not-the-same-as-publishing</id>
   <content type="html">&lt;p&gt;Jekyll&amp;#39;s workflow means I am pushing out medium quality writing faster, as
opposed to trying to perfect every post I do. This is a good and bad thing. The
good is that I am writing more, the bad is that I can and will change my posts
as my thoughts clear up (whether through introspection or discussion). Normally
changing anything outside of an tpyo edit is &lt;em&gt;bad&lt;/em&gt; practice, but having a git
backend means that nothing is truly lost. What is does mean is that if people
reply to a thread, maybe there should be some jekyll-magic that shows what
revision a person replied to, just in case major changes happen. I believe all
content should be up for discussion, and there is no use separating blog posts
from static pages.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>island labs robot army</title>
   <link href="http://jedahan.com/2009/09/27/island-labs-robot-army.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/island-labs-robot-army</id>
   <content type="html">&lt;p&gt;Over thirty people showed up to the Robot Army event hosted by &lt;a href=&quot;http://islandlabs.org&quot;&gt;Island Labs&lt;/a&gt;.
Posters work amazingly well on campus. Thanks for everyone who joined us!&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>getting things done</title>
   <link href="http://jedahan.com/2009/09/27/gtd.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/gtd</id>
   <content type="html">&lt;p&gt;If you are the type of person who likes systems design and optimization, you may
have a tendency to overanalyze and overcomplicate things. At least in the realm
of GTD, the simpler your system, the more you will get done. A single todo list,
devoid of symbols or colored pens representing priorities or even timelines has
served me very well lately. Every time I find myself with a few minutes to
spare, I spend time working on projects instead of working on stuff that is
meta-project (a.k.a. procrastinating). By the way, I consider blogging a project
;), not procrastination.&lt;/p&gt;

&lt;p&gt;This is just a small example of a reoccurring theme I am noticing more and more
in other projects, for example in Exherbo. It&amp;#39;s the theme of self-organization
from chaos. The less rules there are, the easier it is for people with similar
goals to work together. The less strict those rules, that is when they are
guidelines, and not absolute rules, the easier those guidelines are to enforce.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>eat your medicine</title>
   <link href="http://jedahan.com/2009/09/27/eat-your-medicine.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/eat-your-medicine</id>
   <content type="html">&lt;p&gt;In a stronger effort to give applications the trial they deserve, I have
uninstalled my old standbys.&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;paludis --uninstall vim; paludis --install diakonos gedit
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;I am looking for something between nano and vim with the suckless philosophy&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;good: consistent keybindings for most of my apps&lt;/li&gt;
&lt;li&gt; bad: feel less productive, especially missing &amp;#39;cw&amp;#39; and &amp;#39;dw&amp;#39;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;ugly: missing exheres-syntax.vim&lt;/p&gt;

&lt;p&gt;paludis --uninstall firefox; paludis --install chromium-bin&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This was a much easier switch.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;good: blazingly fast&lt;/li&gt;
&lt;li&gt;more good: don&amp;#39;t miss any firefox features&lt;/li&gt;
&lt;li&gt;good,good: greasemonkey scripts, google bookmarks integration&lt;/li&gt;
&lt;li&gt;amazing: flash doesn&amp;#39;t stutter or crash!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The &lt;em&gt;only&lt;/em&gt; problem was nss reporting all certificates as revoked, but that was a
clock issue, fixed with the following commands:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;text language-text&quot; data-lang=&quot;text&quot;&gt;echo &amp;quot;TZ=\&amp;quot;America\/New_York\&amp;quot; &amp;gt;&amp;gt; /etc/env.d/00basic
sudo eclectic env update
ntpdate tick.stonybrook.edu
hwclock --systohc # dual boot with bad OS means clock is set to local
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;It was actually chromium&amp;#39;s strictness denying access to sites with revoked
certificates that forced me to fix my clock. FYI firefox doesn&amp;#39;t have this bug
because they work around it.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>distrology</title>
   <link href="http://jedahan.com/2009/09/27/distrology.html"/>
   <updated>2009-09-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/27/distrology</id>
   <content type="html">&lt;p&gt;OSWatershed should grab the most popular projects in ohloh&amp;#39;s stacks and use that
for distro freshness ratings. Its a great way to see what applications people
care about. The next logical feature would be recommended a distro based on what
applications have the latest versions available for a particular stack. If a
script could be written to build an automatic stack (that would be edited later) 
this system could effectively replace projects like popcon, giving upstream and
downstream a better understanding of what people use.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>licensing</title>
   <link href="http://jedahan.com/2009/09/05/on-licensing.html"/>
   <updated>2009-09-05T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/09/05/on-licensing</id>
   <content type="html">&lt;p&gt;I started hacking on code that I want to publish soon, so I read enough to get a
simple introduction to the various &lt;a href=&quot;http://en.wikipedia.org/wiki/Free_software_license&quot;&gt;free software licences&lt;/a&gt;. The GPL
&lt;a href=&quot;http://www.gnu.org/licenses/old-licenses/gpl-2.0.html&quot;&gt;v2&lt;/a&gt; and &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;v3&lt;/a&gt; and &lt;a href=&quot;http://www.apache.org/licenses/LICENSE-2.0&quot;&gt;apache&lt;/a&gt; licenses all seemed needlessly
complicated. The MIT and BSD licences were nice and short, and very similar.
Someone else noticed the similarities and merged those two to the &lt;a href=&quot;http://en.wikipedia.org/wiki/ISC_license&quot;&gt;ISC&lt;/a&gt;
license, which is what I am settling for now. It is very permissible (read: not
&lt;a href=&quot;http://en.wikipedia.org/wiki/Copyleft&quot;&gt;copyleft&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;The choice was influenced by &lt;a href=&quot;http://www.informit.com/articles/article.aspx?p=1390172&quot;&gt;The Failure of the GPL&lt;/a&gt;, which examines a
particular case which looked like a win for the GPL but in the author&amp;#39;s opinion
was not. My inner pragmatist and idealist were arguing over &lt;a href=&quot;http://en.wikipedia.org/wiki/Copyleft&quot;&gt;copyleft&lt;/a&gt;, but
changes in how I act ( favoring simplicity and faith in the natural order of
things) meant the idealist won. One downside to the &lt;a href=&quot;http://en.wikipedia.org/wiki/ISC_license&quot;&gt;ISC&lt;/a&gt; is that it does not
enforce anyone using my code to show me any improvements they make on it. The
other downside is that it falls under the OSI category of &amp;#39;&lt;a href=&quot;http://www.opensource.org/proliferation-report&quot;&gt;Licenses that are
redundant with more popular licenses&lt;/a&gt;&amp;#39;, but it&amp;#39;s so simple that if anyone
wanted to use my code could do so easily.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>convergence</title>
   <link href="http://jedahan.com/2009/07/27/convergence.html"/>
   <updated>2009-07-27T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/07/27/convergence</id>
   <content type="html">&lt;p&gt;&lt;a href=&quot;http://github.com&quot;&gt;Github&lt;/a&gt; and &lt;a href=&quot;http://github.com/mojombo/jekyll/tree/master&quot;&gt;Jekyll&lt;/a&gt; really have made it easier to make quick edits and
posts. It isn&amp;#39;t really about the effort, but the perceived effort. I &lt;em&gt;feel&lt;/em&gt; like
Wordpress is a heavy, slow moving piece of software even though it isn&amp;#39;t. Being
in the console makes it fast and fun to improve on old content and write new
stuff. It is one of the reasons microblogging services took off. Now if I could
only find a way to write my resume in markdown and get output half as nice as
latex. A  resume is the perfect example of the value of separating content and
presentation.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Blog trial the second</title>
   <link href="http://jedahan.com/2009/07/25/blog-trial-the-second.html"/>
   <updated>2009-07-25T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/07/25/blog-trial-the-second</id>
   <content type="html">&lt;p&gt;I had a &lt;a href=&quot;http://destructivesynthesis.org&quot;&gt;wordpress blog&lt;/a&gt;. I didn&amp;#39;t really use it. &lt;a href=&quot;http://github.com/mojombo/jekyll/tree/master&quot;&gt;Jekyll&lt;/a&gt; looks great,
especially since it is automagically set up on &lt;a href=&quot;http://github.com&quot;&gt;github&lt;/a&gt;. Hopefully I will post
more because of it.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>chromium os</title>
   <link href="http://jedahan.com/2009/06/19/chromium-os.html"/>
   <updated>2009-06-19T00:00:00-07:00</updated>
   <id>http://jedahan.com/2009/06/19/chromium-os</id>
   <content type="html">&lt;p&gt;So I downloaded chromium os using google&amp;#39;s depot tools.&lt;/p&gt;

&lt;p&gt;If webpages/extensions can safely run system calls, you might even be able to
develop code on chromium os.&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Exherbo works!</title>
   <link href="http://jedahan.com/2009/02/07/exherbo-works.html"/>
   <updated>2009-02-07T00:00:00-08:00</updated>
   <id>http://jedahan.com/2009/02/07/exherbo-works</id>
   <content type="html">&lt;p&gt;Anyone following &lt;a href=&quot;http://exherbo.org&quot;&gt;exherbo&lt;/a&gt; or &lt;a href=&quot;http://kloeri.livejournal.com/&quot;&gt;Bryan Østergaard&amp;#39;s blog&lt;/a&gt; will have
noticed the recent trend of user-centered updates. I decided it was indication
enough to try and install exherbo this weekend. To my mild surprise, not only
did everything work, but pretty much every important piece of software (to me)
was already in the repositories - no importare or writing exheres just yet!&lt;/p&gt;

&lt;p&gt;After writing a basic install checklist, I contacted Bryan and started writing
some documentation that will hopefully be good enough to go official. The
markdown formatted docs and other scripts are up on &lt;a href=&quot;https://github.com/jedahan/exherbo/tree&quot;&gt;github&lt;/a&gt;. I also
registered an &lt;a href=&quot;https://www.ohloh.net/accounts/jedahan&quot;&gt;ohloh&lt;/a&gt; account just for fun.&lt;/p&gt;
</content>
 </entry>
 

</feed>
