<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nozell, rhymes with Oh Hell</title>
	<atom:link href="http://nozell.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://nozell.com/blog</link>
	<description>Marc Nozell's random stuff -- mostly GNU/Linux, technology, genealogy, family</description>
	<lastBuildDate>Fri, 22 Mar 2013 02:50:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>HOWTO get your Raspberry Pi running owncloud, tt-rss and thinkup</title>
		<link>http://nozell.com/blog/2013/03/21/howto-get-your-raspberry-pi-running-owncloud-tt-rss-and-thinkup/</link>
		<comments>http://nozell.com/blog/2013/03/21/howto-get-your-raspberry-pi-running-owncloud-tt-rss-and-thinkup/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 02:33:38 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[emacs]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1167</guid>
		<description><![CDATA[Today a case for my Raspberry Pi arrived from Adafruit arrived and it is time for some spring cleaning. I was running the XBMC distro on the pi, but found it cumbersome to listen to music in the home office that way. So time to start with a fresh Raspbian install. Here are my notes: [...]]]></description>
			<content:encoded><![CDATA[<p>Today a <a href="https://www.adafruit.com/products/1037">case for my Raspberry Pi</a> arrived from Adafruit arrived and it is time for some spring cleaning.</p>
<p>I was running the XBMC distro on the pi, but found it cumbersome to listen to music in the home office that way.  So time to start with a fresh Raspbian install.</p>
<p>Here are my notes:</p>
<ul>
<li> Get the current Raspbian release from <a href="http://www.raspbian.org/">Raspbian.org</a> and install it on a<br />
  4GB flash disk.</li>
<li>Boot the new disk and make the following configurations using<br />
  <code>raspi-config</code> which is run the first time it starts up.</p>
<p>  &#8211; Use only 16M for GPU since I&#8217;m not running an X desktop<br />
  &#8211; set appropriate timezone<br />
  &#8211; set appropriate locale<br />
  &#8211; expand fs to use entire 4GB disk<br />
  &#8211; change pi passwd<br />
  &#8211; enable ssh access<br />
  &#8211; update<br />
  &#8211; reboot
</li>
<li>Now some miscellaneous setup to make life easier later on. Both tt-rss and thinkup require MySQL, but I&#8217;ll also want to use it for<br />
owncloud too.  So install MySQL server:</p>
<p><code>  sudo apt-get install mysql-server </code></p>
<p>Avahi (aka bonjour) is a very nice network tool that is a DNS-less way<br />
to announcing your hostname on the local network.  Most (all) linux<br />
tools support it, but you&#8217;ll need Apple&#8217;s Bonjour kit for Windows.<br />
That means you can just &#8216;<code>ssh raspberrypi.local</code>&#8216; or browse to<br />
<code>http://raspberrypi.local/</code></p>
<p> <code>sudo apt-get install avahi-utils</code></p>
<p>I like emacs and screen is useful. </p>
<p><code> sudo apt-get install emacs23-nox screen</code></p>
<p>At this point I stop using the keyboard/monitor connected to the Raspberry Pi and use an ssh session from my laptop to do the rest.</p>
</li>
<li>First install <a href="https://owncloud.org">ownCloud</a> by taking a look here: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community&#038;package=owncloud">http://software.opensuse.org/download/package?project=isv:ownCloud:community&#038;package=owncloud</a>.  Then connect to your Raspberry Pi:
<p><code>ssh pi@raspberrypi.local<br />
sudo -i</code></p>
<p>Now run this script which I slightly modified from their page:</p>
<p><code>  wget http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_6.0/Release.key<br />
  apt-key add - < Release.key  </p>
<p>  echo 'deb http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_6.0/ /' >> /etc/apt/sources.list.d/owncloud.list<br />
  apt-get update<br />
  apt-get install owncloud</code></p>
<p>At this point you&#8217;ll have all the required packages are installed. Now point a browser to <a href="http://raspberrypi.local/owncloud">http://raspberrypi.local/owncloud</a></p>
<p>You will need to create an owncloud admin account and will want to then expand the Advanced tab and to use a MySQL server instead of SQLite.  Fill in root, mysql root password (I didn&#8217;t bother to set an mysql admin password, so null in my case).  For the database, use <code>owncloud</code> and database host <code>localhost</code>.  It may take a couple minutes to be complete, so be patient.
</li>
<li>Now install <a href="http://tt-rss.org">tt-rss</a> doing the following steps:
<p><code>cd /var/www/</code></p>
<p><code>wget -c <a href="https://github.com/gothfox/Tiny-Tiny-RSS/archive/1.7.4.tar.gz">https://github.com/gothfox/Tiny-Tiny-RSS/archive/1.7.4.tar.gz</a></code></p>
<p>And follow the instructions here <a href="http://tt-rss.org/redmine/projects/tt-rss/wiki/InstallationNotes">http://tt-rss.org/redmine/projects/tt-rss/wiki/InstallationNotes</a> which are essentially:</p>
<p><code>tar zxvf 1.7.4.tar.gz<br />
mv Tiny-Tiny-RSS-1.7.4 tt-rss</code></p>
<p><code>chown -R www-data:www-data tt-rss</code></p>
<p>You will have to manually create a mysql database and import the schema</p>
<p><code>mysql -u root </code><br />
mysql> <code>create database ttrss;</code><br />
mysql> <code>quit</code></p>
<p>Now import the database schema (a fancy way to say the database tables and some initial data)</p>
<p> <code> cd tt-rss/schema<br />
  mysql -u root ttrss < ttrss_schema_mysql.sql </code></p>
<p>And a little editing the configuration file...</p>
<p></code><code>  cd /var/www/tt-rss </p>
<p>  cp config.php-dist config.php</code></p>
<p>  <code>emacs config.php</code> (or use vi, nano, etc)</p>
<p>  I made the following edits:<br />
<code><br />
        define('DB_TYPE', "mysql");<br />
        define('DB_HOST', "localhost");<br />
        define('DB_USER', "root");<br />
        define('DB_NAME', "ttrss");<br />
        define('DB_PASS', "");</p>
<p>        define('SELF_URL_PATH', 'http://raspberrypi.local/tt-rss/');<br />
        define('SINGLE_USER_MODE', true);</code></p>
<p>Point a browser to <a href="http://raspberrypi.local/tt-rss">http://raspberrypi.local/tt-rss</a></p>
<p>From there login with default login/password of admin/password and you are done.
</li>
<li>Finally install <a href="https://www.thinkup.com/>ThinkUp app to track your social media.  I&#8217;m just going to describe getting ThinkUp installed, you are on your own configuring the plugins for SoMe sites.  It isn&#8217;t that hard.
<p>Start by reading the info here: <a href="http://www.thinkupapp.com/docs/install/quickstart.html">http://www.thinkupapp.com/docs/install/quickstart.html</a></p>
<p>The one package you&#8217;ll need that isn&#8217;t already installed at this point is php5-curl.</p>
<p><code>  apt-get install php5-curl </code></p>
<p>Now get the kit.  I used wget and the site provided the kit, but with an unusual name.</p>
<p>   <code><br />
cd /var/www<br />
wget -c http://thinkupapp.com/download/<br />
mv index.html thinkup-1.3.1.zip<br />
unzip thinkup-1.3.1<br />
chown -R www-data:www-data thinkup</code></p>
<p>Almost done.  Point a browser to <a href="http://raspberrypi.local/thinkup">http://raspberrypi.local/thinkup</a> and complete the configuration.</p>
<p>  database host: <code>localhost</code></p>
<p>  database name: <code>thinkup</code></p>
<p>  user: <code>root</code></p>
<p>  password: blank, in my case or whatever you set the mysql root password to.</p>
<p>I (and probably you) don&#8217;t have a smtp server configured, so in order to activate your account, you&#8217;ll need to do this: <a href="http://www.thinkupapp.com/docs/troubleshoot/common/advanced/directdb.html">http://www.thinkupapp.com/docs/troubleshoot/common/advanced/directdb.html</a></p>
<p><code># mysql -u root thinkup</code></p>
<p>mysql> <code>select id,full_name,is_activated from tu_owners;</code><br />
+&#8212;-+&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| id | full_name   | is_activated |<br />
+&#8212;-+&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
|  1 | Marc Nozell |            0 |<br />
+&#8212;-+&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
1 row in set (0.00 sec)</p>
<p>mysql> <code>update tu_owners set is_activated=1 where id=1;</code><br />
mysql> quit</p>
<p>Done! Now go back to <a href="http://raspberrypi.local/thinkup">http://raspberrypi.local/thinkup</a> and configure the plugins to your favorite social media sites.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2013/03/21/howto-get-your-raspberry-pi-running-owncloud-tt-rss-and-thinkup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trevor @ NH Mens&#8217; Gymnastics Championships 2013</title>
		<link>http://nozell.com/blog/2013/03/18/trevor-nh-mens-gymnastics-championships-2013/</link>
		<comments>http://nozell.com/blog/2013/03/18/trevor-nh-mens-gymnastics-championships-2013/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 16:48:50 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[gymnastics]]></category>
		<category><![CDATA[nh]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1162</guid>
		<description><![CDATA[Back from the NH Mens&#8217; Gymnastics Championships &#8212; Trevor placed 2nd All Around and 1st in Floor, Rings and PBars. Nice way to end his gymnastics career. Except for the New England Regionals the beginning of April of course. Still Rings Pommel Horse Floor High Bar Parallel Bars Vault]]></description>
			<content:encoded><![CDATA[<p>Back from the NH Mens&#8217; Gymnastics Championships &#8212; Trevor placed 2nd All Around and 1st in Floor, Rings and PBars. Nice way to end his gymnastics career. </p>
<p>Except for the New England Regionals the beginning of April of course.</p>
<ul>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/xWCPuwQtXIo" frameborder="0" allowfullscreen></iframe><br />
<strong>Still Rings</strong>
</li>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/zmk8VAnOgh0" frameborder="0" allowfullscreen></iframe><br />
<strong>Pommel Horse</strong></li>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/t75H3QFa8Sw" frameborder="0" allowfullscreen></iframe><br />
<strong>Floor</strong></li>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/3oRBBjl2xSc" frameborder="0" allowfullscreen></iframe><br />
<strong>High Bar</strong></li>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/Gnr2J6kvH5o" frameborder="0" allowfullscreen></iframe><br />
<strong>Parallel Bars</strong></li>
<li><iframe width="560" height="315" src="https://www.youtube.com/embed/CiOVCqZAVIo" frameborder="0" allowfullscreen></iframe><br />
<strong>Vault</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2013/03/18/trevor-nh-mens-gymnastics-championships-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 hours of engineering pit from New Hampshire GSR FIRST Robotics competition compressed to 83 seconds</title>
		<link>http://nozell.com/blog/2013/03/02/7-hours-of-engineering-pit-from-new-hampshire-gsr-first-robotics-competition-compressed-to-83-seconds/</link>
		<comments>http://nozell.com/blog/2013/03/02/7-hours-of-engineering-pit-from-new-hampshire-gsr-first-robotics-competition-compressed-to-83-seconds/#comments</comments>
		<pubDate>Sat, 02 Mar 2013 23:13:45 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[FIRST Robotics]]></category>
		<category><![CDATA[time lapse]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1159</guid>
		<description><![CDATA[As soon as they opened the door at 8am this morning, I put the camera, tripod + arduino hack at the very top of the seating in the Verizon Wireless Center pointing down at the pit where the robots are prepped for competition. *BEST* GSR (NH) FIRST Robotics time lapse in the pit (10fps) GSR [...]]]></description>
			<content:encoded><![CDATA[<p>As soon as they opened the door at 8am this morning, I put the camera, tripod + <a href="http://nozell.com/blog/2013/02/09/sony-alpha-100-dslr-shutter-control-using-an-arduino-and-reed-switches/">arduino hack</a> at the very top of the seating in the Verizon Wireless Center pointing down at the pit where the robots are prepped for competition.</p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/kKtTyu4UaMc" frameborder="0" allowfullscreen></iframe><br />
<b>*BEST* GSR (NH) FIRST Robotics time lapse in the pit (10fps) </b></p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/zC9crIyh9vM" frameborder="0" allowfullscreen></iframe><br />
<b>GSR (NH) FIRST Robotics time lapse in the pit (5fps) </b></p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/MJL5zNtQCIs" frameborder="0" allowfullscreen></iframe><br />
<b>GSR (NH) FIRST Robotics time lapse in the pit (20fps) </b></p>
<p>After nearly seven hours (the length my camera&#8217;s battery lasted taking photos every 30 seconds) there were 835 photos which were converted to an AVI using:</p>
<p><code>mencoder -nosound -ovc lavc -lavcopts vcodec=mjpeg -o timelapse-10fps.avi -mf type=jpeg:fps=10 mf://*.JPG</code></p>
<p>and then converted to a much smaller M4V file using <code>ghb</code> aka the very handy <a href="http://handbrake.fr/">Handbrake</a> tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2013/03/02/7-hours-of-engineering-pit-from-new-hampshire-gsr-first-robotics-competition-compressed-to-83-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sony Alpha-100 DSLR shutter control using an arduino and reed switches</title>
		<link>http://nozell.com/blog/2013/02/09/sony-alpha-100-dslr-shutter-control-using-an-arduino-and-reed-switches/</link>
		<comments>http://nozell.com/blog/2013/02/09/sony-alpha-100-dslr-shutter-control-using-an-arduino-and-reed-switches/#comments</comments>
		<pubDate>Sat, 09 Feb 2013 22:12:57 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1151</guid>
		<description><![CDATA[This is a follow up to my &#8220;time lapse photography using an arduino to drive a Sony Alpha-100 DSLR&#8221; post &#8212; basically I fixed it to &#8216;do it right&#8217; instead of it being a horrible hack. Here is the improved circuit diagram: This uses two Reed Switches from Radio Shack for about $3 each &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow up to my &#8220;<a href="http://nozell.com/blog/2012/12/28/time-lapse-photography-using-an-arduino-to-drive-a-sony-alpha-100-dslr/">time lapse photography using an arduino to drive a Sony Alpha-100 DSLR</a>&#8221; post &#8212; basically I fixed it to &#8216;do it right&#8217; instead of it being a horrible hack.</p>
<p>Here is the improved circuit diagram: </p>
<p><a href="http://www.flickr.com/photos/marcn/8458791657/" title="BetterCamera_bb by marcn, on Flickr"><img src="http://farm9.staticflickr.com/8392/8458791657_5b3644c669.jpg" width="416" height="500" alt="BetterCamera_bb"/></a></p>
<p>This uses two <a href="http://en.wikipedia.org/wiki/Reed_switch">Reed Switches</a> from Radio Shack for about $3 each &#8212; sure I could have used other types of switches or a transitor, but they use magnetism which is cooler ;-)</p>
<ol>
<li> Buy a cheap (~$7.00) shutter release cord to sacrifice to the project.</li>
<li>Carefully cut and strip the wires from release cord.  Shorting the green and blue wires causes the camera to focus. Shorting the green, blue and red wires after focusing causes the camera to shoot.</li>
<li>
Remember that my soldering days are long ago (hey, it was only an EE <em>minor</em>) and have one of the kids at our FIRST Robotics do it for me.  Here is the result. Note that blue->white.  </p>
<p><a href="http://www.flickr.com/photos/marcn/8317744655/" title="Shutter release cord mapping by marcn, on Flickr"><img src="http://farm9.staticflickr.com/8080/8317744655_8e2c5a9dd0.jpg" width="500" height="375" alt="Shutter release cord mapping"/></a>
</li>
<li>
Then connected the wires from the shutter release cord to pins as follows: (see the above <a href="http://fritzing.org/">Fritzing</a> image)<br />
Green -> First Reed Switch<br />
Red -> Second Reed Switch<br />
Blue/White -> shared line with the other side of the switches (not this isn&#8217;t tied to ground or anything else)</p>
</li>
<li> Now the <b>improved</b> code: I call it BetterCamera.ino
<p><code><br />
/*<br />
 * A better camera control for a Sony A-100 DSLR<br />
 * marc@nozell.com<br />
 */</p>
<p>// Pin 13 has an LED connected on most Arduino boards.<br />
// give it a name:<br />
int led = 13;<br />
int relayA = 2;<br />
int relayB = 3;</p>
<p>// the setup routine runs once when you press reset:<br />
void setup() {                </p>
<p>  Serial.begin(9600);</p>
<p>  if (Serial.available() )<br />
    Serial.println("-- Starting ---");</p>
<p>  // initialize the digital pin as an output.<br />
  pinMode(led, OUTPUT);<br />
  pinMode(relayA, OUTPUT);<br />
  pinMode(relayB, OUTPUT);     </p>
<p>}</p>
<p>// the loop routine runs over and over again forever:<br />
void loop() {</p>
<p>  Serial.println("-- Focusing ---");</p>
<p>  // first focus -- short white &#038; green</p>
<p>  digitalWrite(relayA, HIGH);<br />
  delay(2000);               // 2 sec<br />
  digitalWrite(relayA, LOW);<br />
  delay(1000);               // 1 sec </p>
<p>  Serial.println("-- Take Photo ---");</p>
<p>  // then take a photo -- short white, green &#038; red</p>
<p>  digitalWrite(relayA, HIGH);<br />
  digitalWrite(relayB, HIGH);<br />
  delay(1000);               // 1 sec<br />
  digitalWrite(relayA, LOW);<br />
  digitalWrite(relayB, LOW); </p>
<p>  Serial.println("-- Sleep for 30s ---");<br />
  delay(23000);  // 2 + 1 + 1 + 3 + 23</p>
<p>  for (int i = 0; i < 3; i++) { // 3seconds<br />
    digitalWrite(led, HIGH);<br />
    delay(500);<br />
    digitalWrite(led, LOW);<br />
    delay(500);<br />
    Serial.print(".");<br />
  }<br />
  Serial.println("!");<br />
}<br />
</code></p>
<p>	</code></li>
<li><del datetime="2013-02-09T22:13:02+00:00">If you connect the release to the camera while the camera is on, even if here is no power to the arduino, it will take a couple photos. That is the kink. </del>Just connect it up with the camera off and it will be fine.</li>
<li>Consider setting the photo size to &#8216;standard&#8217; &#8212; it saves a lot on disk space.</li>
<li>Now find something interesting to point your camera at and come back later. In my case it was our backyard the day after the Nemo Blizzard of 2013 (we got all the snow overnight, so it isn&#8217;t riveting content).</li>
<li>Download all the photos to a directory and use this linux command to convert the JPG images to an AVI file.<br />
<code><br />
        mencoder -nosound -ovc lavc -lavcopts vcodec=mjpeg -o timelapse-30fps.avi -mf type=jpeg:fps=30 mf://*.JPG<br />
</code>
</li>
<li>Before uploading to youtube, I ran it through Handbrake to knock down the size from 260M to less than 70MB. </li>
</ol>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/iFAJVbHOePo" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2013/02/09/sony-alpha-100-dslr-shutter-control-using-an-arduino-and-reed-switches/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing owncloud on a Raspberry Pi</title>
		<link>http://nozell.com/blog/2013/01/17/installing-owncloud-on-a-raspberry-pi/</link>
		<comments>http://nozell.com/blog/2013/01/17/installing-owncloud-on-a-raspberry-pi/#comments</comments>
		<pubDate>Fri, 18 Jan 2013 03:33:41 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[owncloud]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1138</guid>
		<description><![CDATA[Spoiler: Just follow the official installation guide and you&#8217;ll be fine. Although you&#8217;ll probably want to put owncloud data on external storage. Surprised? It is just another linux server! Below are the commands I used. Those in bold are where I did something slightly different in order to change the location where files are stored. [...]]]></description>
			<content:encoded><![CDATA[<p>Spoiler: Just follow the <a href="http://doc.owncloud.org/server/4.5/admin_manual/installation.html">official installation</a> guide and you&#8217;ll be fine.  Although you&#8217;ll probably want to put owncloud data on external storage. Surprised? It is just another linux server!</p>
<p>Below are the commands I used.  Those in <strong>bold</strong> are where I did something slightly different in order to change the location where files are stored. In my case I have a powered USB disk mounted on /mnt.</p>
<p><code><br />
$ sudo -i<br />
[sudo] password for marc:<br />
# apt-get install apache2 php5 php5-gd php-xml-parser \<br />
      php5-intl php5-sqlite php5-mysql smbclient curl \<br />
      libcurl3 php5-curl<br />
...a bunch of packages installed...<br />
# cd /var/www/<br />
# tar jxf ~marc/owncloud-4.5.5.tar.bz2 <strong><br />
# chown -R www-data:www-data owncloud/apps<br />
# chown -R www-data:www-data owncloud/config<br />
# mkdir /mnt/owncloud-data<br />
# chown www-data:www-data /mnt/owncloud-data<br />
# ln -s /mnt/owncloud-data/ /var/www/owncloud/data</strong><br />
</code></p>
<p>Then point a browser to <a href="http://raspberrypi.local/owncloud">http://raspberrypi.local/owncloud</a> and take all the defaults.  That is leave the file location as <code>/var/www/owncloud/data</code></p>
<p>Finally go download the sync clients from <a href="http://owncloud.org/sync-clients/">http://owncloud.org/sync-clients/</a> and drag-n-drop files in your ~/owncloud.  </p>
<p>For testing I had ~180M of files in my ~/owncloud directory and the apache2 process hammered the RPi cpu for a while for the first sync from my desktop. </p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2013/01/17/installing-owncloud-on-a-raspberry-pi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>time lapse photography using an arduino to drive a Sony Alpha-100 DSLR</title>
		<link>http://nozell.com/blog/2012/12/28/time-lapse-photography-using-an-arduino-to-drive-a-sony-alpha-100-dslr/</link>
		<comments>http://nozell.com/blog/2012/12/28/time-lapse-photography-using-an-arduino-to-drive-a-sony-alpha-100-dslr/#comments</comments>
		<pubDate>Fri, 28 Dec 2012 17:05:36 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1132</guid>
		<description><![CDATA[Finally I got around to working out most of the kinks of having the an arduino control the shutter release of a Sony Alpha-100 DSLR camera. Buy a cheap (~$7.00) shutter release cord to sacrifice to the project. Carefully cut and strip the wires from release cord. Shorting the green and blue wires causes the [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I got around to working out most of the kinks of having the an arduino control the shutter release of a Sony Alpha-100 DSLR camera.</p>
<ol>
<li> Buy a cheap (~$7.00) shutter release cord to sacrifice to the project.</li>
<li>Carefully cut and strip the wires from release cord.  Shorting the green and blue wires causes the camera to focus. Shorting the green, blue and red wires after focusing causes the camera to shoot.</li>
<li>
Remember that my soldering days are long ago (hey, was only an EE minor) and have one of the kids at our FIRST Robotics do it for me.  Here is the result. Note that blue->white.  The blue wires I have all seem to be a bit flakey.</p>
<p><a href="http://www.flickr.com/photos/marcn/8317744655/" title="Shutter release cord mapping by marcn, on Flickr"><img src="http://farm9.staticflickr.com/8080/8317744655_8e2c5a9dd0.jpg" width="500" height="375" alt="Shutter release cord mapping"/></a>
</li>
<li>
<p>Find someone who has done something similar: <a href="http://ujwal.shrestha.me/arduino-intervalometer-for-sony-dslr/">http://ujwal.shrestha.me/arduino-intervalometer-for-sony-dslr/</a> and leverage their code.  I&#8217;m not sure that is the right solution, but it worked for me.  Something with MOSFETs I think, but that was years ago&#8230;</li>
<li>
Then connected the wires from the shutter release cord to pins as follows:<br />
Green -> Ground<br />
Red -> Digital pin 8<br />
Blue/White -> Digital pin 9</p>
<p><a href="http://www.flickr.com/photos/marcn/8317745021/" title="Arduino pin mapping by marcn, on Flickr"><img src="http://farm9.staticflickr.com/8084/8317745021_6241b3a3e3.jpg" width="500" height="375" alt="Ardiuno pin mapping"/></a></p>
</li>
<li> Now the code.  I named it aifs30.ino:
<p><code></p>
<p>/* </p>
<p>Heavily based on:</p>
<p>http://ujwal.shrestha.me/arduino-intervalometer-for-sony-dslr/</p>
<p>For complete writeup, see http://nozell.com/blog/</p>
<p>The shutter release has 3 wires: green, red, blue which I had soldered<br />
to green, red and white (my blue wires are flakey)</p>
<p>green - ground<br />
red - digital 8<br />
blue/white - digital 9 </p>
<p>green + blue/white => focus<br />
green + blue/white + red => take photo</p>
<p>*/</p>
<p>void setup(void)<br />
{<br />
  Serial.begin(115200);<br />
}</p>
<p>void loop() {</p>
<p>  if (Serial.available() )<br />
    Serial.println("VVVVVVVVVV");</p>
<p>  pinMode(8,OUTPUT);<br />
  delay(100);<br />
  pinMode(9,OUTPUT);</p>
<p>  if (Serial.available() )<br />
    Serial.println("Sleep for 1/2 seconds");</p>
<p>  delay(500);</p>
<p>  if (Serial.available() )<br />
    Serial.println("wake up and take photo ");</p>
<p>  pinMode(8,INPUT);</p>
<p>  delay(100);</p>
<p>  pinMode(9,INPUT);</p>
<p>  if (Serial.available() )<br />
    Serial.println("ZZZZZZZZ Sleep for 30s");</p>
<p>  delay(10000);<br />
  delay(10000);<br />
  delay(10000);</p>
<p>  if (Serial.available() )<br />
    Serial.println("^^^^^^^^^^");<br />
}<br />
</code></p>
</li>
<li>If you connect the release to the camera while the camera is on, even if here is no power to the arduino, it will take a couple photos. That is the kink. Just connect it up with the camera off and it will be fine.</li>
<li>Consider setting the photo size to &#8216;standard&#8217; &#8212; it saves a lot on disk space.</li>
<li>Now find something interesting to point your camera at and come back later. In my case it was our backyard chickens.</li>
<li>Download all the photos to a directory and use this linux command to convert the JPG images to an AVI file.<br />
<code><br />
        mencoder -nosound -ovc lavc -lavcopts vcodec=mjpeg -o timelapse-10fps.avi -mf type=jpeg:fps=10 mf://*.JPG<br />
</code>
</li>
<li>upload to youtube and enjoy the results</li>
</ol>
<p><iframe width="420" height="315" src="https://www.youtube.com/embed/SaQVl-5raz8" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2012/12/28/time-lapse-photography-using-an-arduino-to-drive-a-sony-alpha-100-dslr/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anti-Obama sign does not have the intended effect</title>
		<link>http://nozell.com/blog/2012/11/08/anti-obama-sign-does-not-have-the-intended-effect/</link>
		<comments>http://nozell.com/blog/2012/11/08/anti-obama-sign-does-not-have-the-intended-effect/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 03:10:36 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[nh]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/?p=1130</guid>
		<description><![CDATA[Whie the sign has been up on Baboosic Lake Rd, Merrimack, NH for a few weeks, it was only on election day I stopped and took a photo. Oddly that was the first time I noticed the typo. Who misspells &#8220;YOU&#8221; as &#8220;YOE&#8221;? Today my wife noticed someone had updated the sign.]]></description>
			<content:encoded><![CDATA[<p>Whie the sign has been up on Baboosic Lake Rd, Merrimack, NH for a few weeks, it was only on election day I stopped and took a photo.  Oddly that was the first time I noticed the typo.  Who misspells &#8220;YOU&#8221; as &#8220;YOE&#8221;? </p>
<p><a href="http://www.flickr.com/photos/marcn/8162108198/" title="IF YOE HATE YOUR GRAND KIDS VOTE OBAMA by marcn, on Flickr"><img src="http://farm8.staticflickr.com/7248/8162108198_8c5794b087.jpg" width="500" height="334" alt="IF YOE HATE YOUR GRAND KIDS VOTE OBAMA"/></a></p>
<hr />
Today my wife noticed someone had updated the sign.  </p>
<hr />
<a href="http://www.flickr.com/photos/marcn/8168404951/" title="I VOTED FOR OBAMA BECAUSE OF THIS SIGN by marcn, on Flickr"><img src="http://farm9.staticflickr.com/8488/8168404951_7b5393fd63.jpg" width="500" height="334" alt="I VOTED FOR OBAMA BECAUSE OF THIS SIGN"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2012/11/08/anti-obama-sign-does-not-have-the-intended-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>President Obama (w/ President Clinton) Rally in Concord, NH (2012)</title>
		<link>http://nozell.com/blog/2012/11/08/president-obama-w-president-clinton-rally-in-concord-nh-2012/</link>
		<comments>http://nozell.com/blog/2012/11/08/president-obama-w-president-clinton-rally-in-concord-nh-2012/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 03:04:43 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[nh]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2012/11/08/president-obama-w-president-clinton-rally-in-concord-nh-2012/</guid>
		<description><![CDATA[President Obama (w/ President Clinton) Rally in Concord, NH (2012), a set on Flickr. This was a *huge* rally 2 days before the election. Over 14k people, the largest ever in NH. While Kids #4, #5, #6 &#038; I got there around 6:15am, there was already a long line and we didn&#8217;t get a great [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 0; overflow: hidden; margin: 0; width: 500px;"><a href="http://www.flickr.com/photos/marcn/8156008538/in/set-72157631930035101/" title="Clinton, Lynch, Obama" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7135/8156008538_69d1a84ec7_s.jpg" alt="Clinton, Lynch, Obama" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155980830/in/set-72157631930035101/" title="Seamus the Romney Dog?" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7130/8155980830_e15808e1fc_s.jpg" alt="Seamus the Romney Dog?" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155950035/in/set-72157631930035101/" title="It was a bit nippy (pre-time change)" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7262/8155950035_d9af725306_s.jpg" alt="It was a bit nippy (pre-time change)" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155951001/in/set-72157631930035101/" title="DSC06504.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8479/8155951001_b63a690f8c_s.jpg" alt="DSC06504.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155982926/in/set-72157631930035101/" title="4 city block line!" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7134/8155982926_0fc36a2e5f_s.jpg" alt="4 city block line!" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155952437/in/set-72157631930035101/" title="Veterans for Obama" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8346/8155952437_c537623499_s.jpg" alt="Veterans for Obama" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8155953131/in/set-72157631930035101/" title="Crowd photo release" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7277/8155953131_ec394322e0_s.jpg" alt="Crowd photo release" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155953759/in/set-72157631930035101/" title="Gene Robinson" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8061/8155953759_ca5698e555_s.jpg" alt="Gene Robinson" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155985188/in/set-72157631930035101/" title=" Patricia J. Lee OFA_NH" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7262/8155985188_7db1dd7617_s.jpg" alt=" Patricia J. Lee OFA_NH" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155954719/in/set-72157631930035101/" title="Obama for America NH  Patricia J. Lee " style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8201/8155954719_f66acfc099_s.jpg" alt="Obama for America NH  Patricia J. Lee " style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155955057/in/set-72157631930035101/" title="NH Senator Jeanne Shaheen" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7276/8155955057_ece9461085_s.jpg" alt="NH Senator Jeanne Shaheen" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155955753/in/set-72157631930035101/" title="NH Governor John Lynch w/ Dr. Susan Lynch" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8482/8155955753_1c2740bcc0_s.jpg" alt="NH Governor John Lynch w/ Dr. Susan Lynch" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8155987446/in/set-72157631930035101/" title="NH Governor John Lynch w/ Dr. Susan Lynch" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8338/8155987446_c14da40d2a_s.jpg" alt="NH Governor John Lynch w/ Dr. Susan Lynch" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155956763/in/set-72157631930035101/" title="NH Governor John Lynch w/ Dr. Susan Lynch" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8344/8155956763_c22e728e94_s.jpg" alt="NH Governor John Lynch w/ Dr. Susan Lynch" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155957317/in/set-72157631930035101/" title="DSC06572.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8341/8155957317_3b035e2808_s.jpg" alt="DSC06572.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155957959/in/set-72157631930035101/" title="Secret Service with his violin case" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7111/8155957959_09f4eefc50_s.jpg" alt="Secret Service with his violin case" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155989690/in/set-72157631930035101/" title="Secret Service with their guitar cases" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7119/8155989690_e38ef985ac_s.jpg" alt="Secret Service with their guitar cases" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155990294/in/set-72157631930035101/" title="DSC06592.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7126/8155990294_b9df1c95b8_s.jpg" alt="DSC06592.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8155990936/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7108/8155990936_1eeb048a1c_s.jpg" alt="President Clinton" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155960245/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8337/8155960245_5f015d46d9_s.jpg" alt="President Clinton" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155991712/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8477/8155991712_4bde10e345_s.jpg" alt="President Clinton" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155961025/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7270/8155961025_6e95be22bf_s.jpg" alt="President Clinton" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155992436/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8069/8155992436_4ed28f6c74_s.jpg" alt="President Clinton" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8155961687/in/set-72157631930035101/" title="President Clinton" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7124/8155961687_4f20322d1f_s.jpg" alt="President Clinton" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /></div>
<div style="font-size: 0.8em; margin-top: 0px; margin-bottom: 5px">
<p><a href="http://www.flickr.com/photos/marcn/sets/72157631930035101/">President Obama (w/ President Clinton) Rally in Concord, NH (2012)</a>, a set on Flickr.</p>
</div>
<p>This was a *huge* rally 2 days before the election.  Over 14k people, the largest ever in NH.  While Kids #4, #5, #6 &#038; I got there around 6:15am, there was already a long line and we didn&#8217;t get a great viewing spot.  Before they opened the gates, the line serpentined up and down Main Street four times.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2012/11/08/president-obama-w-president-clinton-rally-in-concord-nh-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Senators Ayotte, Talent, Thune; Gov Jindal; Congresswoman Blackburn</title>
		<link>http://nozell.com/blog/2012/11/08/senators-ayotte-talent-thune-gov-jindal-congresswoman-blackburn/</link>
		<comments>http://nozell.com/blog/2012/11/08/senators-ayotte-talent-thune-gov-jindal-congresswoman-blackburn/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 03:02:21 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[nh]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2012/11/08/senators-ayotte-talent-thune-gov-jindal-congresswoman-blackburn/</guid>
		<description><![CDATA[Senators Ayotte, Talent, Thune; Gov Jindal; Congresswoman Blackburn, a set on Flickr. It would be a crime *not* to take a look at all the national political figures making their way through NH every four years. Regardless of your political persuasion. TIL Senator John Thune is really tall.]]></description>
			<content:encoded><![CDATA[<div style="padding: 0; overflow: hidden; margin: 0; width: 500px;"><a href="http://www.flickr.com/photos/marcn/8152024860/in/set-72157631921706658/" title="DSC06495.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7255/8152024860_9468fbfbba_s.jpg" alt="DSC06495.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152024230/in/set-72157631921706658/" title="DSC06494.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8477/8152024230_033eb9f5c5_s.jpg" alt="DSC06494.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152023616/in/set-72157631921706658/" title="DSC06493.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7134/8152023616_83c60af5a1_s.jpg" alt="DSC06493.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152022020/in/set-72157631921706658/" title="DSC06477.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7108/8152022020_da7e96dba4_s.jpg" alt="DSC06477.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152020766/in/set-72157631921706658/" title="DSC06467.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7261/8152020766_f3c1f8bcf4_s.jpg" alt="DSC06467.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152020184/in/set-72157631921706658/" title="DSC06457.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8061/8152020184_46048e789b_s.jpg" alt="DSC06457.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8152018234/in/set-72157631921706658/" title="DSC06422.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7121/8152018234_fbfa740944_s.jpg" alt="DSC06422.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152017626/in/set-72157631921706658/" title="DSC06414.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8477/8152017626_1935df6dbe_s.jpg" alt="DSC06414.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152016960/in/set-72157631921706658/" title="DSC06403.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7270/8152016960_ed8ed89b39_s.jpg" alt="DSC06403.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152014664/in/set-72157631921706658/" title="DSC06394.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7123/8152014664_c4e1af8781_s.jpg" alt="DSC06394.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152013426/in/set-72157631921706658/" title="DSC06388.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8482/8152013426_55dec5185e_s.jpg" alt="DSC06388.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152011398/in/set-72157631921706658/" title="DSC06385.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8480/8152011398_707450d169_s.jpg" alt="DSC06385.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8152010720/in/set-72157631921706658/" title="DSC06384.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8341/8152010720_acfcd36115_s.jpg" alt="DSC06384.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152010110/in/set-72157631921706658/" title="DSC06383.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8209/8152010110_9e70f74c53_s.jpg" alt="DSC06383.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152009540/in/set-72157631921706658/" title="DSC06381.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7258/8152009540_e2070ddd65_s.jpg" alt="DSC06381.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152008212/in/set-72157631921706658/" title="DSC06359.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7112/8152008212_38bff3a9d0_s.jpg" alt="DSC06359.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152007486/in/set-72157631921706658/" title="DSC06358.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8338/8152007486_8db16f5ff6_s.jpg" alt="DSC06358.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8152006800/in/set-72157631921706658/" title="DSC06357.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8210/8152006800_8d98a70721_s.jpg" alt="DSC06357.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8151997215/in/set-72157631921706658/" title="DSC06491.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7255/8151997215_a9214ed6d4_s.jpg" alt="DSC06491.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8151995647/in/set-72157631921706658/" title="DSC06474.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7261/8151995647_14e64c8b29_s.jpg" alt="DSC06474.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8151993941/in/set-72157631921706658/" title="DSC06451.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8068/8151993941_dc70b2825e_s.jpg" alt="DSC06451.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8151993187/in/set-72157631921706658/" title="DSC06432.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7111/8151993187_d8e0642363_s.jpg" alt="DSC06432.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8151990729/in/set-72157631921706658/" title="DSC06399.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8064/8151990729_52c6648346_s.jpg" alt="DSC06399.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8151989785/in/set-72157631921706658/" title="DSC06396.JPG" style="text-decoration: none;"><img src="http://farm8.staticflickr.com/7111/8151989785_4790dd7e33_s.jpg" alt="DSC06396.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /></div>
<div style="font-size: 0.8em; margin-top: 0px; margin-bottom: 5px">
<p><a href="http://www.flickr.com/photos/marcn/sets/72157631921706658/">Senators Ayotte, Talent, Thune; Gov Jindal; Congresswoman Blackburn</a>, a set on Flickr.</p>
</div>
<p>It would be a crime *not* to take a look at all the national political figures making their way through NH every four years.  Regardless of your political persuasion. </p>
<p>TIL Senator John Thune is really tall.</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2012/11/08/senators-ayotte-talent-thune-gov-jindal-congresswoman-blackburn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keene Pumpkinfest 2012</title>
		<link>http://nozell.com/blog/2012/11/08/keene-pumpkinfest-2012/</link>
		<comments>http://nozell.com/blog/2012/11/08/keene-pumpkinfest-2012/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 03:00:19 +0000</pubDate>
		<dc:creator>Marc Nozell</dc:creator>
				<category><![CDATA[nh]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://nozell.com/blog/2012/11/08/keene-pumpkinfest-2012/</guid>
		<description><![CDATA[Keene Pumpkinfest 2012, a set on Flickr. Sadly Keene, NH did not win back the world record for most jack-o-lanterns&#8230;]]></description>
			<content:encoded><![CDATA[<div style="padding: 0; overflow: hidden; margin: 0; width: 500px;"><a href="http://www.flickr.com/photos/marcn/8110330446/in/set-72157631823047306/" title="Ernie, Burt, Elmo and Cookie Monster" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8191/8110330446_370e15380f_s.jpg" alt="Ernie, Burt, Elmo and Cookie Monster" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110352912/in/set-72157631823047306/" title="Best use of stem" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8047/8110352912_0068e969a5_s.jpg" alt="Best use of stem" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110343417/in/set-72157631823047306/" title="Keene Pumpkin Festival" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8183/8110343417_3284353389_s.jpg" alt="Keene Pumpkin Festival" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110341779/in/set-72157631823047306/" title="#YOLO" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8476/8110341779_a26acbafc0_s.jpg" alt="#YOLO" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110349016/in/set-72157631823047306/" title="Lots of jack'o lanterns" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8186/8110349016_a2f878803f_s.jpg" alt="Lots of jack'o lanterns" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110339679/in/set-72157631823047306/" title="Lots of people" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8476/8110339679_239b8936b7_s.jpg" alt="Lots of people" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8110338485/in/set-72157631823047306/" title="reddit" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8053/8110338485_c0efbc221f_s.jpg" alt="reddit" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110345386/in/set-72157631823047306/" title="DSC06197.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8332/8110345386_091fa64593_s.jpg" alt="DSC06197.JPG" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110335361/in/set-72157631823047306/" title="Must be a scary pumpkin" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8468/8110335361_16c87d8e85_s.jpg" alt="Must be a scary pumpkin" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110334075/in/set-72157631823047306/" title="Dr Who" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8044/8110334075_61e5ce89a7_s.jpg" alt="Dr Who" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110341314/in/set-72157631823047306/" title="Bugged out!" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8045/8110341314_e59341d1a2_s.jpg" alt="Bugged out!" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110331355/in/set-72157631823047306/" title="SuperPumpkin!" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8053/8110331355_4d971423e8_s.jpg" alt="SuperPumpkin!" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8110329995/in/set-72157631823047306/" title="Another SuperPumpkin" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8467/8110329995_464dfed37f_s.jpg" alt="Another SuperPumpkin" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110328593/in/set-72157631823047306/" title="Wicked was a popular theme" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8046/8110328593_d8f18d51dd_s.jpg" alt="Wicked was a popular theme" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110326685/in/set-72157631823047306/" title="Can I get an upvote?" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8463/8110326685_ec9835b0d2_s.jpg" alt="Can I get an upvote?" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110333638/in/set-72157631823047306/" title="Got Ovaries? Avoid Ovide!" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8192/8110333638_af969f1557_s.jpg" alt="Got Ovaries? Avoid Ovide!" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110323683/in/set-72157631823047306/" title="Lots and lots of pumpkins" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8054/8110323683_170d967d8a_s.jpg" alt="Lots and lots of pumpkins" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><a href="http://www.flickr.com/photos/marcn/8110329558/in/set-72157631823047306/" title="DSC06176.JPG" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8192/8110329558_d9293a5b5b_s.jpg" alt="DSC06176.JPG" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/></a><br clear="all" /><a href="http://www.flickr.com/photos/marcn/8110328474/in/set-72157631823047306/" title="That was a huge pumpkinhead!" style="text-decoration: none;"><img src="http://farm9.staticflickr.com/8195/8110328474_b9bab71073_s.jpg" alt="That was a huge pumpkinhead!" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/></a><img src="http://l.yimg.com/g/images/gallery-empty-icon.gif" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/><img src="http://l.yimg.com/g/images/gallery-empty-icon.gif" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/><img src="http://l.yimg.com/g/images/gallery-empty-icon.gif" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/><img src="http://l.yimg.com/g/images/gallery-empty-icon.gif" style="padding: 0 10px 10px 0; width: 75px; height: 75px; float: left;"/><img src="http://l.yimg.com/g/images/gallery-empty-icon.gif" style="padding: 0 0 10px 0; width: 75px; height: 75px; float: left;"/><br clear="all" /></div>
<div style="font-size: 0.8em; margin-top: 0px; margin-bottom: 5px">
<p><a href="http://www.flickr.com/photos/marcn/sets/72157631823047306/">Keene Pumpkinfest 2012</a>, a set on Flickr.</p>
</div>
<p>Sadly Keene, NH did not win back the world record for most jack-o-lanterns&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nozell.com/blog/2012/11/08/keene-pumpkinfest-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
