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

  <title>monkinetic weblog</title>
  <link href="http://monkinetic.com//atom.xml" rel="self"/>
  <link href="http://monkinetic.com//"/>
  <updated>2012-03-01T14:51:29-07:00</updated>
  <id>http://monkinetic.com//</id>
  <author>
    <name>Steve Ivy</name>
    
  </author>

  
  <entry>
    <title>Intercom.io and feature discovery</title>
    <link href="http://monkinetic.com//2012/03/01/intercom-dot-io-and-feature-discovery.html"/>
    <updated>2012-03-01T14:50:00-07:00</updated>
    <id>http://monkinetic.com//2012/03/01/intercom-dot-io-and-feature-discovery</id>
    <content type="html">&lt;p&gt;&lt;em&gt;This is really a two-part post squished into one post, and it&amp;rsquo;s pretty nerdy&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;After a recent &amp;ndash; really good &amp;ndash; customer experience with &lt;a href=&quot;http://sprint.ly&quot;&gt;sprint.ly&lt;/a&gt; that was started over their Support channel, I looked around and discovered they were using &lt;a href=&quot;https://intercom.io&quot;&gt;Intercom&lt;/a&gt; for their support/outreach tool. I created an account (free while in beta!) and started messing with it for &lt;a href=&quot;https://pushco.de&quot;&gt;Pushcode&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Intercom does a &lt;em&gt;fabulous&lt;/em&gt; job introducing you to new features byt doing three things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tease you at the bottom of the screen with a message: &amp;ldquo;You should &lt;u&gt;enable secure mode to protect your users&lt;/u&gt;&amp;rdquo;. There&amp;rsquo;s a &amp;ldquo;No thanks&amp;rdquo; link to make it go away, and a progress bar based on how many of these recommendations you&amp;rsquo;ve actually implemented.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/intercom_io_enticer-20120301-143245.png&quot; alt=&quot;intercom.io teaser&quot; /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you click: Intercom pops you to a screen that shows you exactly the javascript code (even customized with your app-specific ids) to add to your page to enable the suggested feature.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/intercom_snippet-20120301-143859.png&quot; alt=&quot;intercom snippet&quot; /&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Finally: when you&amp;rsquo;ve got the code implemented they can tell from the traffic coming from your site that you implemented it, and they adjust that little progress bar.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;It&amp;rsquo;s amazing. I &lt;em&gt;want&lt;/em&gt; to implement every feature they throw at me. More, please.&lt;/p&gt;

&lt;h2&gt;The nerdy part&lt;/h2&gt;

&lt;p&gt;Intercom provides PHP and Ruby sample code for generating the MD5 hash required by one of their security features:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  user_hash: &#8216;&amp;lt;%= Digest::SHA1.hexdigest(&#8216;randstring&#8217; + current_user.email) %&amp;gt;&#8217;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Pushcode is written in Django and Python, and of course I know how to MD5 a string in python, but it&amp;rsquo;s doing so in a template is not a built-in. I implemented a simple template filter that does it for you:&lt;/p&gt;

&lt;script src=&quot;https://gist.github.com/1953457.js&quot;&gt; &lt;/script&gt;


&lt;p&gt;Feel free to grab the code and improve on it (though it&amp;rsquo;s pretty stinkin&amp;#8217; simple).&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Sparklines from Graphite</title>
    <link href="http://monkinetic.com//2012/02/16/sparklines-from-graphite.html"/>
    <updated>2012-02-16T14:25:00-07:00</updated>
    <id>http://monkinetic.com//2012/02/16/sparklines-from-graphite</id>
    <content type="html">&lt;p&gt;I decided I wanted &lt;a href=&quot;http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR&quot;&gt;sparklines&lt;/a&gt; for an app dashboard I&amp;rsquo;m working on, and wondered if I could get them straight from &lt;a href=&quot;http://readthedocs.org/docs/graphite/en/latest/url-api.html&quot;&gt;Graphite&amp;rsquo;s URL API&lt;/a&gt;. Turns out you can:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/etsy_404_sparkline-20120216-142723.png&quot; alt=&quot;Data Courtesy of Etsy&quot; /&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;http://your.graphite.example.com/render\
?from=-2hours\
&amp;amp;height=20\
&amp;amp;until=now\
&amp;amp;width=120\
&amp;amp;hideGrid=true\
&amp;amp;hideLegend=true\
&amp;amp;hideAxes=true\
&amp;amp;bgcolor=white
&amp;amp;fgcolor=black\
&amp;amp;margin=0\
&amp;amp;colorList=black\
&amp;amp;target=alias(stats.your.metric.here)
&lt;/code&gt;&lt;/pre&gt;
</content>
  </entry>
  
  <entry>
    <title>Life Hacks</title>
    <link href="http://monkinetic.com//2012/01/17/life-hacks.html"/>
    <updated>2012-01-17T13:26:00-07:00</updated>
    <id>http://monkinetic.com//2012/01/17/life-hacks</id>
    <content type="html">&lt;p&gt;A short collection of tips &amp;amp; hacks I&amp;rsquo;ve been implementing lately:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Move the Sugar: When I decided to go ahead and add a single teaspoon of sugar to my coffee, I had to move the sugar to a new location so that I could disassociate it from my previous tablespoon-plus regime in the old location.&lt;/li&gt;
&lt;li&gt;Working-from-home Hack #1: Wear Shoes: Bare feet, socks, and slippers (I&amp;rsquo;ve done all three) put me in a chill-out mode. Switching to my newly purhcased hiking shoes makes me feel like I can stomp on anything, including software bugs. Weird, but &lt;acronym title=&quot;Works For Me&quot;&gt;WFM&lt;/acronym&gt;.&lt;/li&gt;
&lt;li&gt;Working-from-home Hack #2: Turn On Some Lights: Sitting in a dim room staring at a monitor just makes me want to play MineCraft. A couple lights brighten my mood and my productivity.&lt;/li&gt;
&lt;li&gt;Do It Now: I&amp;rsquo;m a fabulous procrastinator. Right now when I see something needing doing, I&amp;rsquo;m trying to do it &amp;mdash; and that&amp;rsquo;s easier to do if I implement point 2.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;More as the situation develops.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Habits Update</title>
    <link href="http://monkinetic.com//2012/01/17/habit-update.html"/>
    <updated>2012-01-17T09:35:00-07:00</updated>
    <id>http://monkinetic.com//2012/01/17/habit-update</id>
    <content type="html">&lt;p&gt;I posted a week or so ago that I was starting to work on my health, cutting a lot of carbs and sugar out of my diet, and focusing on foods that were actually profitable for my body. Here&amp;rsquo;s an update:&lt;/p&gt;

&lt;h2&gt;Say What?&lt;/h2&gt;

&lt;blockquote class=&quot;twitter-tweet&quot;&gt;&lt;p&gt;So apparently the scale thinks I&amp;#8217;ve lost 7 pounds this last week. &lt;a href=&quot;https://twitter.com/search/%2523lowcarbs&quot;&gt;#lowcarbs&lt;/a&gt;&lt;/p&gt;&amp;mdash; Steve Ivy (@steveivy) &lt;a href=&quot;https://twitter.com/steveivy/status/159254744077049856&quot; data-datetime=&quot;2012-01-17T12:44:24+00:00&quot;&gt;January 17, 2012&lt;/a&gt;&lt;/blockquote&gt;


&lt;script src=&quot;http://monkinetic.com///platform.twitter.com/widgets.js&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;


&lt;p&gt;As I mentioned on &lt;a href=&quot;https://twitter.com/steveivy/status/159254744077049856&quot;&gt;Twitter earlier&lt;/a&gt;, my scale seems to believe that I&amp;rsquo;ve dropped 7 pounds in the last week, after cutting out most sugar and a lot of the carbs I was existing on. I have no reason so far to doubt it. I don&amp;rsquo;t know that those pounds missing are visible yet, but I feel much better. My energy level isn&amp;rsquo;t peaking and diving all day &amp;ndash; I&amp;rsquo;m more consistent. This is making me more productive &amp;ndash; both in front of the computer and not.&lt;/p&gt;

&lt;p&gt;Changing habits, and making new ones, is the name of the game here. In my first post I talked about my coffee (more, my cream and sugar) habit, and how it was killing me slowly. Since then, I first cut back to unflavored, unsweeted heavy cream, and no sugar. That simply wasn&amp;rsquo;t tenable, so I&amp;rsquo;ve gone back to unflavored half and half (the flavored ones are sweetened to the tune of over a teaspoon per tablespoon of creamer &amp;ndash; 1/3 the mass is sugar!!) with a flat teaspoon of sugar.&lt;/p&gt;

&lt;p&gt;For a week I was avoiding the sugar container in the cupboard, and had almost trained myself to reach around it for the coffee. But when I decided that I wanted to start using some sugar, I knew I&amp;rsquo;d have to make sure I didn&amp;rsquo;t fall back into the Old Ways. So I moved the sugar container to the pantry, and told myself &amp;ldquo;one teaspoon&amp;rdquo; &amp;ndash; I even used the measuring spoon. Must make new habits!&lt;/p&gt;

&lt;p&gt;This would have been awful just 3 weeks ago &amp;ndash; I was inured to the taste of sugar and it would have tasted terrible. But now I can taste the sweetness in just a teaspoon (4g) of sugar. I&amp;rsquo;ve also cut out a lot of other foods with &amp;ldquo;hidden&amp;rdquo; sugars (goodbye orange chicken :&amp;ndash;( ).&lt;/p&gt;

&lt;h2&gt;Go Outside!&lt;/h2&gt;

&lt;p&gt;In addition to the food changes, I&amp;rsquo;ve started working on getting more active. I finally found a pair of hiking boots that work for me &amp;mdash; &lt;a href=&quot;http://amzn.to/ys8iIu&quot;&gt;Merrell Moab Ventilators&lt;/a&gt; (wide) &amp;mdash; so yesterday the family and I tackled &lt;a href=&quot;&quot;&gt;Piestewa Peak&lt;/a&gt;, a brutal climb up 1.2 miles of, basically, stairs. The Summit trail starts at 1400 ft., and ends at 2608 ft., for a 1200&amp;#8217; rise.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/piestewa_peak_map-20120117-101619.png&quot; alt=&quot;Piestewa Peak&quot; /&gt;&lt;/p&gt;

&lt;p&gt;While Jodi and the girls turned around at the 2/3 mark, my 8yo son and I pushed up to the top, and he made it like a champ. I feel great today but imagine that my body will have it&amp;rsquo;s revenge soon enough!&lt;/p&gt;

&lt;p&gt;Nevertheless, I&amp;rsquo;ve got several hikes planned in the near future at some of our favorite spots, and I&amp;rsquo;m going to get out on the bike more as well. I&amp;rsquo;m off to a good start, and I&amp;rsquo;m going to make this year count.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Yelling at Kastner</title>
    <link href="http://monkinetic.com//2012/01/10/yelling-at-kastner.html"/>
    <updated>2012-01-10T16:45:00-07:00</updated>
    <id>http://monkinetic.com//2012/01/10/yelling-at-kastner</id>
    <content type="html">&lt;p&gt;&lt;a href=&quot;http://metaatem.com&quot;&gt;Erik Kastner&lt;/a&gt; and I have a sort of running gag going where I try and come up with some awful pun or cultural reference to greet him with in the morning, with a screeam of &amp;ldquo;KAAASSTNNEEEERRRRRRR&amp;rdquo; somehow worked in. Sometimes they work and sometimes they&amp;hellip; don&amp;rsquo;t.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://kaaaaastneeeerrr.tumblr.com/&quot;&gt;Now you can decide&lt;/a&gt;.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Habit Breakpoints</title>
    <link href="http://monkinetic.com//2012/01/09/habit-breakpoints.html"/>
    <updated>2012-01-09T10:40:00-07:00</updated>
    <id>http://monkinetic.com//2012/01/09/habit-breakpoints</id>
    <content type="html">&lt;p&gt;One of the results I want to see from this year is to drop about 15 pounds from my &amp;ldquo;I-sit-at-a-computer-all-day&amp;rdquo; belly. I&amp;rsquo;ve never been a &amp;ldquo;dieter&amp;rdquo;, and I&amp;rsquo;ve scorned traditional diet foods / drinks, especially those with the artificial sweeteners in them, and prided myself on my commitment to good old-fashioned American refined sugar. Oh, I do love my sugar (and likewise, the sugars-in-waiting, carbs).&lt;/p&gt;

&lt;p&gt;But over the last year I&amp;rsquo;ve grown forwards at a much faster rate then, say, upwards. Sideways hasn&amp;rsquo;t fared a lot better. I still enjoy the occasional hike or bike ride, but I haven&amp;rsquo;t got the energy, stamina, or interest to do the outdoorsy stuff Jodi and I used to love. This started to bug me, as did the decidedly forward thrust of my various American Apparel nerd shirts.&lt;/p&gt;

&lt;p&gt;So after talking to some friends in the medical profession about it, Jodi and I decided to check out Jorge Cruise&amp;rsquo;s &lt;a href=&quot;http://amzn.to/wx4ome&quot;&gt;Belly Fat Cure&lt;/a&gt; book. Now, I know. It pains me to even link to a possibly faddish diet book with the words &amp;ldquo;belly&amp;rdquo; and &amp;ldquo;cure&amp;rdquo; in it. But the research we have been doing lends credence to the main idea behind the book: that sugar and carbs (including hidden sugars in all kinds of foods) are the thing that trigger our bodies into storing fat (via the insulin produced by the body in response to sugar in the bloodstream).&lt;/p&gt;

&lt;p&gt;So, while we may or may not stick to the exact plan outlined in the book, we&amp;rsquo;re definitely starting already to reduce the amount of sugars we intake, and carefully checking foods we already have for those grams of sugar (4g of sugar is about a teaspoon of granulated refined sugar). And the thing that&amp;rsquo;s making it tough is the collection of unconscious processes we&amp;rsquo;ve developed for living life without having to think too much: habits.&lt;/p&gt;

&lt;h2&gt;Morning Coffee Notes&lt;/h2&gt;

&lt;p&gt;Take my morning coffee, for example &amp;ndash; this is one that&amp;rsquo;s killing me. I&amp;rsquo;m no hipster. I like my coffee &lt;em&gt;sweet&lt;/em&gt; and de-bittered with an artificially-flavored store-bought creamer. Getting a cup of coffee for me looks like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Take down a mug&lt;/li&gt;
&lt;li&gt;Pour &amp;frac34; full with coffee (brewed dark with about 2 Tbsp of grounds/cup)&lt;/li&gt;
&lt;li&gt;Reach up to coffee cupboard&lt;/li&gt;
&lt;li&gt;Take down Tupperware&amp;trade; container of sugar&lt;/li&gt;
&lt;li&gt;Add a ludicrous scoop of sugar&lt;/li&gt;
&lt;li&gt;Snap lid back on sugar container&lt;/li&gt;
&lt;li&gt;Close cupboard&lt;/li&gt;
&lt;li&gt;Carry mug to kitchen island (I work from home)&lt;/li&gt;
&lt;li&gt;Open refrigerator&lt;/li&gt;
&lt;li&gt;Remove large container of creamer&lt;/li&gt;
&lt;li&gt;Cream-ify coffee&lt;/li&gt;
&lt;li&gt;Close creamer&lt;/li&gt;
&lt;li&gt;Replace in fridge&lt;/li&gt;
&lt;li&gt;Stir coffee&lt;/li&gt;
&lt;li&gt;Place spoon in sink&lt;/li&gt;
&lt;li&gt;Enjoy!&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;This all takes about 45 seconds max, and can be accompished while checking email on the iPhone, talking with Jodi about the day, or humming Prodigy tunes, and I can be back at my desk going &amp;ldquo;where did this coffee come from?&amp;rdquo;. It&amp;rsquo;s engrained. The human mind has an incredible capacity to store repetitive tasks in some kind of highly optimized, opaque data structure that can be played back without any input from the higher-order brain.&lt;/p&gt;

&lt;p&gt;As a nerd, I love this. The times I&amp;rsquo;m paying attention, it&amp;rsquo;s a little rush going through this ritual with precision and efficiency. No time is wasted between getting a mug and that first sip. But&amp;hellip; now I look at that ludicrous scoop of sugar I&amp;rsquo;ve been using, and get a little sick to my stomach. I have little doubt that this insidious &amp;ndash; and oh so delicious &amp;ndash; ingredient has been contributing to my expanding circumference.&lt;/p&gt;

&lt;h2&gt;Breaking Point&lt;/h2&gt;

&lt;p&gt;My morning routine obviously needs some changing, and with it being so ingrained, I need some ways to break up the routine so my higher-order brain can make some decisions. In programming we call these &amp;ldquo;breakpoints&amp;rdquo;, and when debugging, the program will pause at the breakpoint and let us examine the state of the decision tree and what the program is going to do next. So, I&amp;rsquo;m doing some simple life-hacking.&lt;/p&gt;

&lt;p&gt;My first step was to put a small thing of &lt;a href=&quot;http://amzn.to/xS3kHW&quot;&gt;Truvia&lt;/a&gt; (a sugar substitute based on Stevia) next to the malicious sugar container in the cupboard. It&amp;rsquo;s in the bright white and green packaging it came in, so it draws my attention and triggers a decision &amp;ndash; proceed to the normal ludicrous scoop of the blissfully evil sugar, or try switching to something less likely to asplode my waistline and push me into diabetes?&lt;/p&gt;

&lt;p&gt;Seeing as I don&amp;rsquo;t much care for the taste of Stevia (and by extension Truvia), I&amp;rsquo;ve tried (by steps):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reducing my application of sugar by 2/3&lt;/li&gt;
&lt;li&gt;replacing &amp;frac12; of that with Truvia&lt;/li&gt;
&lt;li&gt;not using sugar altogether&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;So far step 3 is working the best: only reducing the sugar to 1/3 my previous amount still adds enough to trigger my craving for more. Truvia is sweeter than the equivalent amount of sugar, so reducing the sugar yet again by half and adding Truvia made it sweeter, but still had the strange taste I associate with artificial sweeteners, and the added sweetness seems to still trigger my sweet tooth.&lt;/p&gt;

&lt;p&gt;Getting rid of the sugar completely has been a hard adjustment, but in the long run is going to be the best for me. And the habits die &lt;em&gt;hard&lt;/em&gt;: I still reach for the sugar container when fixing a cup, then have to put it back. Perhaps the next breakpoint will be to just remove it from the cabinet.&lt;/p&gt;

&lt;h2&gt;Life-Hacking&lt;/h2&gt;

&lt;p&gt;Ultimately, this whole quitting-sugar thing is one huge life-hack: we&amp;rsquo;re trying to disrupt lifetimes of sugar addiction and do some major mental and physical re-wiring. It&amp;rsquo;s too early for me to know if it&amp;rsquo;s working, but I&amp;rsquo;ll probably post on my progress over the next few months. &lt;em&gt;Have any eating habit hacks to share? Ping me at &lt;a href=&quot;http://twitter.com/steveivy&quot;&gt;@steveivy&lt;/a&gt; on Twitter or Google mail.&lt;/em&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Accounting for Web Services</title>
    <link href="http://monkinetic.com//2012/01/02/accounting-for-web-services.html"/>
    <updated>2012-01-02T13:22:00-07:00</updated>
    <id>http://monkinetic.com//2012/01/02/accounting-for-web-services</id>
    <content type="html">&lt;p&gt;Heading into the new year, Jodi and I have been working with our &lt;a href=&quot;http://www.dasmahacct.com/&quot;&gt;bookkeeper&lt;/a&gt; to re-categorize some of our expenses, and we&amp;rsquo;re realizing that some of the costs associated with running a web service don&amp;rsquo;t fit easily into standard accounting categories. If you&amp;rsquo;re running a small business / web services company, how do you categorize the following?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Subscription services like Github?&lt;/li&gt;
&lt;li&gt;Hosting services like Linode&lt;/li&gt;
&lt;li&gt;Domain name purchases&lt;/li&gt;
&lt;li&gt;SSL Certificate costs&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Any guidance or ideas would be appreciated! Ping me &lt;a href=&quot;http://twitter.com/steveivy&quot;&gt;@steveivy&lt;/a&gt; on Twitter or steveivy at google mail, and I&amp;rsquo;ll post a followup with the results.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Merry Christmas 2011</title>
    <link href="http://monkinetic.com//2011/12/24/merry-christmas-2011.html"/>
    <updated>2011-12-24T12:22:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/24/merry-christmas-2011</id>
    <content type="html">&lt;p&gt;See you next year!&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Sickie</title>
    <link href="http://monkinetic.com//2011/12/15/sickie.html"/>
    <updated>2011-12-15T13:29:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/15/sickie</id>
    <content type="html">&lt;p&gt;Our sick 10yo watching Land Before Time movies, right outside my office.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/sickie-20111215-132913.png&quot; alt=&quot;Sickie&quot; /&gt;&lt;/p&gt;

&lt;p&gt;At least it&amp;rsquo;s better than listening to the 6yo watching Barbie movies. Barely.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>What it is is beautiful</title>
    <link href="http://monkinetic.com//2011/12/15/what-it-is-is-beautiful.html"/>
    <updated>2011-12-15T10:48:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/15/what-it-is-is-beautiful</id>
    <content type="html">&lt;p&gt;This brings a tear to my eye, for what was, and what is.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/LEGO_ad_1970s-20111215-133240.png&quot; alt=&quot;What it is is beautiful&quot; /&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>The Daring Fireball App</title>
    <link href="http://monkinetic.com//2011/12/14/the-daring-fireball-app.html"/>
    <updated>2011-12-14T14:12:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/14/the-daring-fireball-app</id>
    <content type="html">&lt;blockquote&gt;&lt;p&gt;Maybe someday there will be a Daring Fireball app, but I still haven’t thought
of a reason to make one that would be better than just reading DF on the web.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;When I read John&amp;rsquo;s comments in his
&lt;a href=&quot;http://daringfireball.net/linked/2011/12/14/winer-native-apps&quot;&gt;latest Fireball post&lt;/a&gt;, my initial reaction was to completely agree. Daring Fireball is a well written, simply designed, and great blog. Almost immediately thereafter, however, I had a thought: what if there was an app that, once purchased, allowed you to comment on Fireball posts? Sort of pay-for-play if you will. The app would:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Handle some kind of authentication&lt;/li&gt;
&lt;li&gt;Send push notifications of new Fireball posts&lt;/li&gt;
&lt;li&gt;Allow the user to comment on posts&lt;/li&gt;
&lt;li&gt;Send push notifications of new comments for any post that the user commented on&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Importantly, the comments would only be available in the app, not on the public web,  similarly to how Instagram works. I think this would raise the bar on who is going to  comment and what they say, in that 1) only other paying DF App users would be participating in the conversation, and 2) no publicly-visible comment view to attract trolls.&lt;/p&gt;

&lt;p&gt;Good idea? Bad idea? Too much like the &amp;ldquo;get our app&amp;rdquo; popups on the big media sites?&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Obnoxious</title>
    <link href="http://monkinetic.com//2011/12/07/obnoxious.html"/>
    <updated>2011-12-07T20:10:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/07/obnoxious</id>
    <content type="html">&lt;p&gt;&lt;a href=&quot;http://term.ly/obnoxious&quot;&gt;Term.ly defines &amp;ldquo;obnoxious&amp;rdquo;&lt;/a&gt; as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;obnoxious&lt;/strong&gt; &lt;em&gt;adjective&lt;/em&gt; causing disapproval or protest; &lt;em&gt;“a vulgar and objectionable person”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Around our house we&amp;rsquo;ve taken to defining it for the kids as &amp;ldquo;annoying, on purpose&amp;rdquo;. Everyone knows what that means.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Raising a Leftie</title>
    <link href="http://monkinetic.com//2011/12/04/raising-a-leftie.html"/>
    <updated>2011-12-04T18:09:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/04/raising-a-leftie</id>
    <content type="html">&lt;p&gt;My 8 year-old son is left-handed in a family of right-handers, and I&amp;rsquo;m looking for tips to help him make the most of it without feeling like the odd-man-out. Neither of his siblings care, so I&amp;rsquo;m not worried about him taking flak at home, but he&amp;rsquo;s picked up a variety of techniques for doing things and I want to know how to best help him. He writes and eats left-handed, but kicks right-footed. He throws a frisbee ambidextrously (though throws stronger left-handed, but prefers right-handed). He plays violin right-handed. It&amp;rsquo;s very strange.&lt;/p&gt;

&lt;p&gt;For Christmas, we&amp;rsquo;re getting him a 36&amp;#8221; student guitar that I could get strung left or right handed. I&amp;rsquo;ll teach him to play, but I&amp;rsquo;m not sure whether to encourage him to play leftie or rightie. Thoughts?&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Swan Swan H</title>
    <link href="http://monkinetic.com//2011/12/03/swan-swan-h.html"/>
    <updated>2011-12-03T10:44:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/03/swan-swan-h</id>
    <content type="html">&lt;p&gt;Derek Powazek &lt;a href=&quot;http://powazek.com/posts/2981&quot;&gt;remembers&lt;/a&gt;, and offers a strange, beautiful explanation for, one of my favorite R.E.M. songs, &lt;em&gt;Swan Swan H&lt;/em&gt;. (It&amp;rsquo;s listed as &amp;lsquo;Swan Swan H&amp;rsquo; on the album tracklist, but everyone calls it &amp;lsquo;Swan Swan Hummingbird&amp;rsquo; after the first three lyrics.) I too learned to play the song, and while I don&amp;rsquo;t have the same associations Derek does with the tune (it can only be described as haunting), it is one that has always touched me deeply.&lt;/p&gt;

&lt;p&gt;And damn, Derek:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;I jumped out of bed and drew this on the whiteboard in the hallway,&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Whiteboard in the hallway: what a nerd. *jealous*&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ll leave you with a teaser for Derek&amp;rsquo;s theory on the meaning of the song title:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://static.monkinetic.com/images/swan_swan_h-20111203-105947.png&quot; alt=&quot;Swan Swan H&quot; /&gt;&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>LOUDER Dubstep</title>
    <link href="http://monkinetic.com//2011/12/02/louder-dubstep.html"/>
    <updated>2011-12-02T12:26:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/02/louder-dubstep</id>
    <content type="html">&lt;p&gt;Enjoying this track quite a bit, and the dancing is &lt;em&gt;incredible&lt;/em&gt;.&lt;/p&gt;

&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/2_0dLDsc-Vw&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

</content>
  </entry>
  
  <entry>
    <title>A little more Responsive</title>
    <link href="http://monkinetic.com//2011/12/01/a-little-more-responsive.html"/>
    <updated>2011-12-01T23:10:00-07:00</updated>
    <id>http://monkinetic.com//2011/12/01/a-little-more-responsive</id>
    <content type="html">&lt;p&gt;Erik &lt;a href=&quot;http://metaatem.com&quot;&gt;Kastner&lt;/a&gt; was kind enough to &lt;a href=&quot;https://github.com/kastner/monkinetic-blog&quot;&gt;fork my blog&lt;/a&gt; and help me fix the layout of this site at iPhone sizes (thanks Erik!). Behold the power of the open-source weblog.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>I really need to understand Responsive Design</title>
    <link href="http://monkinetic.com//2011/11/30/i-really-need-to-understand-responsive-design.html"/>
    <updated>2011-11-30T21:57:00-07:00</updated>
    <id>http://monkinetic.com//2011/11/30/i-really-need-to-understand-responsive-design</id>
    <content type="html">&lt;p&gt;&amp;lsquo;Cause this site looks like crap at less than 700px wide.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>New site: kinda like the old site</title>
    <link href="http://monkinetic.com//2011/11/30/new-site-like-the-old-site.html"/>
    <updated>2011-11-30T13:38:00-07:00</updated>
    <id>http://monkinetic.com//2011/11/30/new-site-like-the-old-site</id>
    <content type="html">&lt;p&gt;After procrastinating for many months, I&amp;rsquo;ve finally moved &lt;a href=&quot;http://monkinetic.com&quot;&gt;this site&lt;/a&gt; off of Typepad and into &lt;a href=&quot;http://octopress.com&quot;&gt;Octopress&lt;/a&gt; the fancy-pants &lt;a href=&quot;https://github.com/mojombo/jekyll&quot;&gt;Jekyll&lt;/a&gt; variant. This is no means any kind of indictment of Typepad &amp;mdash; it&amp;rsquo;s a great platform that has served me well for a few years. But it was time for a change: the hacker, poker, and pusher-of-buttons in me needed a new platform to hack, poke, and push on.&lt;/p&gt;

&lt;p&gt;The site is now hosted on &lt;a href=&quot;http://linode.com&quot;&gt;Linode&lt;/a&gt;, who are &lt;em&gt;awesome&lt;/em&gt;, the blog is simple to update and snappy to serve. There are some differences, visual and otherwise. The design is more responsive now (through the small sizes are not perfect yet). I&amp;rsquo;m also not linking to the monthly archives any more in the sidebar, though you can access them through the Archives link in the main nav. I&amp;rsquo;m also including recent tweets and a list of some of my github repositories, since they came standard with Octopress and they&amp;rsquo;re kinda neat, in a nerdy way.&lt;/p&gt;

&lt;p&gt;This is also a bit of a life-hack: by switching platforms I&amp;rsquo;m hoping to get back to the heart of why I started blogging. It was simply about having a platform for sharing my life and interests, regardless of what everyone else was doing, and that&amp;rsquo;s where I want to get back to.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>I Need a New Coffee Maker.</title>
    <link href="http://monkinetic.com//2011/11/22/i-need-a-new-coffee-maker.html"/>
    <updated>2011-11-22T07:04:00-07:00</updated>
    <id>http://monkinetic.com//2011/11/22/i-need-a-new-coffee-maker</id>
    <content type="html">&lt;p&gt;For Christmas this year, &lt;a href=&quot;http://wallrazer.com&quot;&gt;the &amp;ldquo;office&amp;rdquo;&lt;/a&gt; will be buying me a new coffee maker. I love my coffee. Like any nerd, caffeine is a staple of my pre-2:30pm routine. However, I do &lt;strong&gt;not&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Feel the need to either &amp;ldquo;simplify&amp;rdquo; or &amp;ldquo;purify&amp;rdquo; my coffee-making &amp;ldquo;experience&amp;rdquo; &amp;ndash; IE, spend 25 minutes making a contemplatively pure cup of slow-dripped, organically-grown, fertilized-by-unicorns, hand-ground coffee.&lt;/li&gt;
&lt;li&gt;Need a $600 espresso machine with its own water supply, 14-stage carbon filter, and included barista named Pablo.&lt;/li&gt;
&lt;li&gt;Want a machine that requires individually-packaged, multi-flavored &amp;ldquo;capsules&amp;rdquo; of coffee to do its job. I have an &lt;a href=&quot;http://www.bergiescoffee.com/&quot;&gt;excellent coffee shop&lt;/a&gt; that imports and roasts their own beans &amp;ndash; daily &amp;ndash; a mere 2 miles away.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;So, while the &lt;a href=&quot;http://aerobie.com/products/aeropress.htm&quot;&gt;Aeropress&lt;/a&gt; may be the stuff of coffee purists&amp;#8217; dreams, I just want a good-quality automatic coffee maker that can take a reusable filter, and preferably (better yet, optionally) can dispense straight into a cup (I&amp;rsquo;m sick of coffee pots).&lt;/p&gt;

&lt;p&gt;Any recommendations? Ping me &lt;a href=&quot;http://twitter.com/steveivy&quot;&gt;on Twitter&lt;/a&gt; or steveivy at google&amp;rsquo;s email service dot com.&lt;/p&gt;
</content>
  </entry>
  
  <entry>
    <title>Porting from Jekyll To Octopress</title>
    <link href="http://monkinetic.com//2011/09/24/jekyll-to-octopress.html"/>
    <updated>2011-09-24T00:00:00-07:00</updated>
    <id>http://monkinetic.com//2011/09/24/jekyll-to-octopress</id>
    <content type="html">&lt;p&gt;Step one, ask &lt;a href=&quot;https://github.com/imathis&quot;&gt;Imathis&lt;/a&gt; to clone your blog and convert it for you. :&amp;ndash;)&lt;/p&gt;
</content>
  </entry>
  
</feed>

