<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 
 <title>Nicholas Studt</title>
 <link href="http://nicholasstudt.com/atom.xml" rel="self"/>
 <link href="http://nicholasstudt.com"/>
 <updated>2023-06-29T14:03:12-04:00</updated>
 <id>http://nicholasstudt.com</id>
 <author>
   <name>Nihcolas Studt</name>
   <email>nicholas@nicholasstudt.com</email>
  </author>

 
 <entry>
   <title>Boom Boom</title>
   <link href="http://nicholasstudt.com/posts/2013-07-07/boom-boom"/>
   <updated>2013-07-07T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/posts/2013-07-07/boom-boom</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2013/20130704-7041072-600px.jpg&quot; alt=&quot;Boom&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I attempted to take pictures of the Lawrence fireworks again this year.
It worked slightly better than it had on previous occasions, but mostly
because I had a working tripod and had spent a couple minutes reading
the camera manual before going out. The hardest part about the entire
event was convincing Zooey that the tripod was not a footrest.&lt;/p&gt;

&lt;p&gt;This was also the first year that we watched the fireworks from the
riverfront rather than the bridge. I have no doubt that we'll be down by
the riverfront again next year, unless Karen really does buy a kayak.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Adventure Time</title>
   <link href="http://nicholasstudt.com/posts/2013-06-29/adventure-time"/>
   <updated>2013-06-29T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/posts/2013-06-29/adventure-time</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2013/20130628-6280906-600px.jpg&quot; alt=&quot;Adventure Time&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://www.game-nut.com/&quot;&gt;Game Nut&lt;/a&gt; in downtown Lawrence creates
elaborate window displays, currently it's characters from Adventure
Time. Previously, scenes from Zelda and Rampage spent time in the
display window.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Tiny fists of fury!</title>
   <link href="http://nicholasstudt.com/posts/2013-05-13/tiny-fists"/>
   <updated>2013-05-13T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/posts/2013-05-13/tiny-fists</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2013/20130512-5120625-600px.jpg&quot; alt=&quot;Tiny&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Trapped on the soup can he can only shake his tiny fists of fury.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Baby Its Cold Outside</title>
   <link href="http://nicholasstudt.com/posts/2013-01-29/baby-its-cold"/>
   <updated>2013-01-29T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/posts/2013-01-29/baby-its-cold</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2013/20130129-7129-600px.jpg&quot; alt=&quot;Brr&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Yesterday it was 76, tonight we are expecting snow.&lt;/p&gt;

&lt;p&gt;Ah but it's cold outside.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>This is fancy</title>
   <link href="http://nicholasstudt.com/posts/2013-01-02/fancy"/>
   <updated>2013-01-02T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/posts/2013-01-02/fancy</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2013/20130101-7287-600px.jpg&quot; alt=&quot;Fancy&quot; /&gt;&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Installing ruby, rake, and jekyll</title>
   <link href="http://nicholasstudt.com/blog/2012-12-17/jekyll"/>
   <updated>2012-12-17T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/blog/2012-12-17/jekyll</id>
   <content type="html">&lt;p&gt;This is how to install rbev, rake, and jekyll on an OS X, or *nix,
machine to create a local testing version of your jekyll based website.
The process was pretty simple once I stopped trying to deal with the
local system ruby.&lt;/p&gt;

&lt;h2&gt;Install rbenv&lt;/h2&gt;

&lt;p&gt;Pull both the rbenv and ruby-build source.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
git clone git://github.com/sstephenson/ruby-build.git \
    ~/.rbenv/plugins/ruby-build
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Update your bash to include rbev and local gem files.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;echo 'export PATH=&quot;$HOME/.rbenv/bin:$HOME/.gem/ruby/1.9.1/bin/:$PATH&quot;' \
     &amp;gt;&amp;gt; ~/.bash_profile
echo 'eval &quot;$(rbenv init -)&quot;' &amp;gt;&amp;gt; ~/.bash_profile
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Actually install ruby and change the global ruby, if you don't do this
today you should probably &lt;a href=&quot;http://www.ruby-lang.org/en/downloads/&quot;&gt;pick a newer version&lt;/a&gt;.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rbenv install 1.9.3-p327
rbenv global  1.9.3-p327
&lt;/code&gt;&lt;/pre&gt;

&lt;h2&gt;Install jekyll&lt;/h2&gt;

&lt;pre&gt;&lt;code&gt;$ gem install --user-install rake
$ gem install --user-install jekyll
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Assuming all of this completed successfully you should now have a system
with a working version of jekyll, rake, and ruby that is independant of
the system ruby.&lt;/p&gt;

&lt;h2&gt;The Payoff&lt;/h2&gt;

&lt;pre&gt;&lt;code&gt;$ git clone git@github.com:nicholasstudt/nicholasstudt.com.git
$ cd nicholasstudt.com
$ rake preview
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Visit &lt;a href=&quot;http://localhost:8080&quot;&gt;http://localhost:8080&lt;/a&gt;&lt;a href=&quot;This&quot;&gt;^neverworks&lt;/a&gt; to view a local version of the site. Yes,
I know, jekyll defaults to port 4000 but 8080 calls to me like a siren song.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Simpler</title>
   <link href="http://nicholasstudt.com/blog/2012-12-12/simpler"/>
   <updated>2012-12-12T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/blog/2012-12-12/simpler</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2012/20121122-7054-600px.jpg&quot; alt=&quot;Simple and Bold&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I've switched how I deal with this site again, hopefully simplifying for the
better. Rather than using my simple Django based blog, file-manager and template expander I've moved the whole thing to &lt;a href=&quot;http://jekyllrb.com/&quot;&gt;jekyll&lt;/a&gt;. In theory this would allow me to host the site on &lt;a href=&quot;http://pages.github.com/&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Zooey has been creating an unbelievable amount of paintings, drawings,
and sculptures at preschool. The picture above is one of these
masterpieces. Several weeks ago, we took pictures of each piece so we
could save the ones we liked and delight the city sanitation staff with
the rest.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>I'm Coloring</title>
   <link href="http://nicholasstudt.com/blog/2012-09-27/im-coloring"/>
   <updated>2012-09-27T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2012-09-27/im-coloring</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2012/20120927-6780-600px.jpg&quot; alt=&quot;Watching&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I had the camera out tonight. When the camera was down she was bouncing around and smiling, each time I lifted the camera she put her head down and started to pout.&lt;/p&gt;

&lt;p&gt;You will also have noticed that she upgraded from a sock to a glove, we get slightly fewer stange looks now.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Y-O-D-A, Yoda</title>
   <link href="http://nicholasstudt.com/blog/2012-08-26/y-o-d-yoda"/>
   <updated>2012-08-26T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2012-08-26/y-o-d-yoda</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2012/20120825-6731-600px.jpg&quot; alt=&quot;Yoda&quot; /&gt;&lt;/p&gt;

&lt;p&gt;This past Saturday we made it down to Wichita to see the Star Wars
exhibit. It seemed like they had all of the props used in the original
trilogy and even some from the lesser set. It was a pretty cool, except
for being trapped in line for the &quot;Millennium Falcon Experience&quot; near a
noisy couple that had the most entertaining opinions about how video
games were the devils work.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>X-Toddler</title>
   <link href="http://nicholasstudt.com/blog/2012-07-07/x-toddler"/>
   <updated>2012-07-07T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2012-07-07/x-toddler</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2012/20120707-6487-600px.jpg&quot; alt=&quot;X-Toddler&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The water was completely calm until the tantrum started. This was
definitely not a fountain. In her defense it was very hot outside, and
completely worthy of a tantrum.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>The elusive weresmirk</title>
   <link href="http://nicholasstudt.com/blog/2011-10-31/elusive-weresmirk"/>
   <updated>2011-10-31T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2011-10-31/elusive-weresmirk</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2011/10/were-smirk.jpg&quot; alt=&quot;The weresmirk&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Tonight we took Zooey downtown for her second trick-or-treat event. We
even remembered to get down there earlier so there was still candy.&lt;/p&gt;

&lt;p&gt;At each shop she approached the staff and very quietly said, &quot;Trick or
treat.&quot; She even remembered to say thank you to everyone who gave her
candy. No stopping at two suckers this year.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Status: Delayed</title>
   <link href="http://nicholasstudt.com/blog/2011-10-09/status-delayed"/>
   <updated>2011-10-09T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2011-10-09/status-delayed</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2011/10/lincoln.jpg&quot; alt=&quot;Lincoln&quot; /&gt;&lt;/p&gt;

&lt;p&gt;It seems I may have forgotten to mention that Karen and I went on a trip
to Washington, DC in May. I attended the Liferay East Coast Symposium
while Karen ran all over the city. The convention was held at &lt;a href=&quot;http://en.wikipedia.org/wiki/The_National_Conference_Center&quot;&gt;The
National Conference
Center&lt;/a&gt;
which was made in the 1970s for Xerox and looks like an aztec temple in
the middle of a forest.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>You know I'm two, right?</title>
   <link href="http://nicholasstudt.com/blog/2011-02-27/you-know-im-two-right"/>
   <updated>2011-02-27T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/blog/2011-02-27/you-know-im-two-right</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2011/02/im_two.jpg&quot; alt=&quot;I'm Two&quot; /&gt;&lt;/p&gt;

&lt;p&gt;You know I'm two now, right?&lt;/p&gt;

&lt;p&gt;Tonight we had Zooey's second birthday party. She spent a lot of time
directing everyone to their proper seating assignments. I think she gets
that from Karen, though she seems to disagree with me.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Dubious</title>
   <link href="http://nicholasstudt.com/blog/2010-10-31/dubious"/>
   <updated>2010-10-31T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2010-10-31/dubious</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2010/10/cookie_monster.jpg&quot; alt=&quot;Cookie Monster&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Zooey was originally dubious about her costume. However, she was
persuaded to tolerate it when presented with cookies and candy.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Django Blog 1.3.1</title>
   <link href="http://nicholasstudt.com/blog/2010-09-11/django-blog-131"/>
   <updated>2010-09-11T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2010-09-11/django-blog-131</id>
   <content type="html">&lt;p&gt;Version 1.3.1 of the blog is now available for &lt;a href=&quot;http://code.nicholasstudt.com/wiki/DjangoBlog&quot;&gt;download&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This release fixes several problems that multi-site enabled blogs were
facing and problems with the tag feed displaying the wrong content. A
new template was added for the display of listing entries by tag, along
with a new setting to specify the pagination size of the tag list.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Ouchie</title>
   <link href="http://nicholasstudt.com/blog/2010-08-14/ouchie"/>
   <updated>2010-08-14T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2010-08-14/ouchie</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2010/08/ouchie.jpg&quot; alt=&quot;Ouchie&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Last week Zooey got an ouchie on her wrist. Several times since then
when she finds a sticker she puts it on the ouchie like a bandaid, like
she's doing here. It's terribly cute, I wonder if it makes her feel
better.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Django Blog 1.3</title>
   <link href="http://nicholasstudt.com/blog/2010-07-20/django-blog-13"/>
   <updated>2010-07-20T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2010-07-20/django-blog-13</id>
   <content type="html">&lt;p&gt;Version 1.3 of the blog is now available for
&lt;a href=&quot;http://code.nicholasstudt.com/wiki/DjangoBlog&quot;&gt;download&lt;/a&gt;.  The latest
version includes RPC support for Blogger, MetaWeblog and Moveable Type;
a template tag to display months linked into the archive; and rss feeds
by tag.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Moving again</title>
   <link href="http://nicholasstudt.com/blog/2010-06-07/moving-again"/>
   <updated>2010-06-07T00:00:00-04:00</updated>
   <id>http://nicholasstudt.com/blog/2010-06-07/moving-again</id>
   <content type="html">&lt;p&gt;It's time to update the bookmarks, I've moved domains again. This
should be the last time I move domains baring unforeseen name changes.
The photodwarf will not go away completely until the domain expires at
the beginning of September.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Zooey's First Birthday</title>
   <link href="http://nicholasstudt.com/blog/2010-02-28/zooeys-first-birthday"/>
   <updated>2010-02-28T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/blog/2010-02-28/zooeys-first-birthday</id>
   <content type="html">&lt;p&gt;&lt;img src=&quot;/media/2010/02/birthday.jpg&quot; alt=&quot;Birthday :: Nikon D90&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I think she liked her cake.&lt;/p&gt;
</content>
 </entry>

 <entry>
   <title>Recently Updated</title>
   <link href="http://nicholasstudt.com/blog/2010-01-24/recently-updated"/>
   <updated>2010-01-24T00:00:00-05:00</updated>
   <id>http://nicholasstudt.com/blog/2010-01-24/recently-updated</id>
   <content type="html">&lt;p&gt;Earlier this month I moved this domain and Karen's domain from a real
server to a VPS. So now everything should be endowed with cloudy
goodness, milk and honey.&lt;/p&gt;

&lt;p&gt;As a result there are now updated version of
&lt;a href=&quot;http://code.nicholasstudt.com/wiki/KrKit&quot;&gt;KrKit&lt;/a&gt;,
&lt;a href=&quot;http://code.nicholasstudt.com/wiki/AlchemyWebMail&quot;&gt;WebMail&lt;/a&gt;, and the
&lt;a href=&quot;http://code.nicholasstudt.com/wiki/DjangoBlog&quot;&gt;Blog&lt;/a&gt;.&lt;/p&gt;
</content>
 </entry>

</feed>
