<?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>Jacques Fortier</title>
	<atom:link href="http://www.jacquesf.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jacquesf.com</link>
	<description></description>
	<lastBuildDate>Tue, 23 Mar 2010 03:58:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Omega HH506RA Serial Protocol</title>
		<link>http://www.jacquesf.com/blog/2010/03/omega-hh506ra-serial-protocol/</link>
		<comments>http://www.jacquesf.com/blog/2010/03/omega-hh506ra-serial-protocol/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 03:30:06 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/?p=187</guid>
		<description><![CDATA[Today I had to figure out how to read temperature from an Omega HH506RA thermocouple signal conditioner/datalogger. The HH506RA is a nice little unit that reads temperature from two thermocouples (type K, J, N, T, R, S, or E). It can display the temperature on its LCD screen and communicate them to a PC over [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had to figure out how to read temperature from an Omega HH506RA thermocouple signal conditioner/datalogger. The HH506RA is a nice little unit that reads temperature from two thermocouples (type K, J, N, T, R, S, or E). It can display the temperature on its LCD screen and communicate them to a PC over RS232 or USB. The PC connection is optically isolated, which is very nice because RS232 and USB are both notorious for causing noise problems via ground loops.</p>
<p>I&#8217;ve put information on how to communicate with the unit up here for future reference.</p>
<p><span id="more-187"></span></p>
<p>I found some information <a href="http://forums.ni.com/ni/board/message?board.id=140&amp;thread.id=25547">on an NI forum</a> and on <a href="http://www.mathworks.com/matlabcentral/fileexchange/11739-omega-hh506ra-read">Matlab&#8217;s file exchange site.</a>. The info on the NI site is a bit hard to read and not quite correct, so here&#8217;s a quick and clear rundown.</p>
<p><b>Serial Port Setup</b></p>
<p>If you&#8217;re using the USB cable, its actually just a virtual serial port, which will likely show up on your PC as COM1 to COM4. If you&#8217;re using the RS232 cable, then obviously you need a serial port on the PC. Either way, you need to set the serial port up for 2400 baud, 7 data bits, even parity, 1 stop bit, and no flow control.</p>
<p><b>Communication Overview</b></p>
<p>To read the temperatures from the unit, send this string over the serial port: &#8220;#001N\r\n&#8221;. Don&#8217;t include the quote marks. \r means the carriage return character (ASCII 13). \n means the newline character (ASCII 10). You&#8217;ll get back a string that follows this pattern: &#8221; TTTTt TTTTtAB\r\n&#8221;. The first and second TTTTt groups represent the temperature and thermocouple type for the first and second thermocouple. The AB section is some miscellaneous information.</p>
<p><b>Temperature</b></p>
<p>The &#8220;TTTT&#8221; part will  be a hexadecimal string representing the temperature in tenths of a degree Celcius. For example, &#8221; 017A&#8221; represents 37.8 degrees Celcius. If the number is negative, it will start with a minus sign instead of a space. For example &#8220;-00C2&#8243; means -19.4 degrees C.</p>
<p><b>Thermocouple Type</b></p>
<p>The &#8220;t&#8221; part represents the thermocouple type (set using the buttons on the HH506RA). The codes go as follows:</p>
<table>
<tbody>
<tr>
<th>Code</th>
<th>Type</th>
</tr>
<tr>
<td>0</td>
<td>K</td>
</tr>
<tr>
<td>1</td>
<td>J</td>
</tr>
<tr>
<td>2</td>
<td>T</td>
</tr>
<tr>
<td>3</td>
<td>E</td>
</tr>
<tr>
<td>4</td>
<td>N</td>
</tr>
<tr>
<td>5</td>
<td>R</td>
</tr>
<tr>
<td>6</td>
<td>S</td>
</tr>
</tbody>
</table>
<p><b>Miscellaneous Info</b></p>
<p>According to the document on the NI site, the &#8220;A&#8221; digit above represents Celcius/Fahrenheit while the &#8220;B&#8221; character represents battery. I&#8217;ve only ever seen them as 0 in my testing.</p>
<p><b>Example</b></p>
<p>Bringing it all together:<br />
You send: &#8220;#001N\r\n&#8221;<br />
You receive: &#8220;-00B20 02C1200\r\n&#8221;<br />
Decoding: The first thermocouple is a type K that is reading -17.8 degrees C. The second thermocouple is a type T reading 70.5 degrees C.</p>
<p><b>Errors</b></p>
<p>If you send a bad command, you&#8217;ll get a a response of &#8220;Err\r\n&#8221;. I&#8217;ve found that to be a handy way to resynchronize communication in case something goes wrong. Just send &#8220;\r\n&#8221; and read for a response until you see &#8220;Err\r\n&#8221;. Once you get that response, you know the unit is ready to accept a command again.</p>
<p><b>Other Commands</b></p>
<p>The document on the NI forum has some additional details. For example, you can read the unit&#8217;s ID with the command &#8220;%IDR\r\n&#8221;. The ID is the set of digits you send in the read temperature command &#8220;#001N\r\n&#8221;. You can change the unit&#8217;s ID so that it responds to &#8220;#005N\r\n&#8221; by sending a command along the lines of &#8220;%001I005\r\n&#8221;. I don&#8217;t really see the point of this, so I haven&#8217;t bothered testing it. The unit can log data, which can then be read back with the command &#8220;#001S\r\n&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2010/03/omega-hh506ra-serial-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch out for compiler bugs related to volatile variables</title>
		<link>http://www.jacquesf.com/blog/2010/02/watch-out-for-compiler-bugs-related-to-volatile-variables/</link>
		<comments>http://www.jacquesf.com/blog/2010/02/watch-out-for-compiler-bugs-related-to-volatile-variables/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 04:43:59 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Embedded software]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/?p=186</guid>
		<description><![CDATA[At my new job, I&#8217;ve been diving back into embedded software development. During my time as an industrial automation application engineer, I stopped working quite as close to the hardware. It&#8217;s definitely fun to be digging around in registers and assembly code again.
I came across this article called on Embedded.com called &#8220;When good compilers go [...]]]></description>
			<content:encoded><![CDATA[<p>At my new job, I&#8217;ve been diving back into embedded software development. During my time as an industrial automation application engineer, I stopped working quite as close to the hardware. It&#8217;s definitely fun to be digging around in registers and assembly code again.</p>
<p>I came across this article called on <em>Embedded.com</em> called &#8220;<a href="http://www.embedded.com/design/testissue/222400497">When good compilers go bad, or What you see is not what you execute</a>&#8220;. I talks about all kinds of ways that compilers can end up generating incorrect (or sometimes technically correct but unexpected) source code. I&#8217;ve got a rule of thumb when debugging that in that vast majority of cases &#8220;you didn&#8217;t discover a bug in the compiler/operating system&#8221;. It&#8217;s good to keep in mind that that isn&#8217;t always the case.</p>
<p>One reference that especially caught my eye was to a paper titled &#8220;<a href="http://www.cs.utah.edu/~regehr/papers/emsoft08-preprint.pdf">Volatiles Are Miscompiled, and What to Do about It</a>&#8220;. They looked at 13 different C compilers and found out that all thirteen of them had issues with volatile variables.</p>
<p>Volatile variables are very frequently used in the embedded world. Memory-mapped hardware registers (used to read digital and analog inputs for example) are often accessed via volatile pointers in C. The volatile qualifier tells the C compiler &#8220;this variable could change at any time, so every time I ask you to read or write it, I really mean it!&#8221;</p>
<p>The authors of the paper found that every single compiler they tested failed to correctly implement the volatile qualifier in at least a few of their test cases. However, there are a few things you can do to help protect yourself:</p>
<ul>
<li>Don&#8217;t turn on optimization. They couldn&#8217;t prove it, but they&#8217;re pretty sure that all (and definitely most) of these kinds of bugs are caused by the compiler&#8217;s optimizer.</li>
<li>Wrap uses of volatile variables in function calls. Because functions are (obviously) used way more than volatile variables, there tend to be very few bugs related to incorrect optimizations of function calls. Hiding volatile accesses in function calls makes it much less likely the access to a volatile variable will get optimized away (assuming the function isn&#8217;t inlined).</li>
<li>Don&#8217;t use volatile variables for inter-thread communication, use semaphores instead. This one deserves a post all of its own.</li>
<li>When the code just absolutely has to work, verify the assembly or machine code your compiler produces by hand.</li>
</ul>
<p>One thing I really liked about the paper is that they used <a href="http://valgrind.org">valgrind</a> to help automate their testing. When I&#8217;ve run into some really tough to debug memory and pointer issues, valgrind has always been a huge help. I wish it were easier to use it in embedded programming projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2010/02/watch-out-for-compiler-bugs-related-to-volatile-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Definitely in favor of padded shorts</title>
		<link>http://www.jacquesf.com/blog/2009/08/definitely-in-favor-of-padded-shorts/</link>
		<comments>http://www.jacquesf.com/blog/2009/08/definitely-in-favor-of-padded-shorts/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 01:40:08 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/?p=185</guid>
		<description><![CDATA[I got some padded shorts last week, which was definitely a good move. Things were already painful enough last weekend after a 39 mile ride. This week I went for 45 miles on the same route and felt pretty good through the whole thing. Well, I felt like I was going to keel over and [...]]]></description>
			<content:encoded><![CDATA[<p>I got some padded shorts last week, which was definitely a good move. Things were already painful enough last weekend after a 39 mile ride. This week I went for 45 miles on the same route and felt pretty good through the whole thing. Well, I felt like I was going to keel over and die after 40 miles, but at least my ass wasn&#8217;t in pain too.</p>
<p>The stats: 45 miles, average speed 13.1 mph (half a mph better than on last week&#8217;s 39 mile ride!), max speed 27.6 mph again (downhill of course), riding time 3h23, total time something like 4 hours.</p>
<p>Once you get off the bike path, people get a lot friendlier. I got a bunch of nods from other cyclists biking around Carlisle. While struggling my way up at 8-9 mph what the <a href="http://www.crw.org/cgi-bin/calendar.pl/?thismonth=yes">CRW site</a> describes as a &#8220;mild rolling&#8221; hill I even got a big smile and a wave.</p>
<p>Click more for the map.</p>
<p><span id="more-185"></span></p>
<p><iframe width="600" height="500" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;source=embed&amp;msa=0&amp;msid=111798079151102324755.00047147b9e7574cdbf7d&amp;ll=42.471084,-71.267624&amp;spn=0.253241,0.411987&amp;z=11&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;source=embed&amp;msa=0&amp;msid=111798079151102324755.00047147b9e7574cdbf7d&amp;ll=42.471084,-71.267624&amp;spn=0.253241,0.411987&amp;z=11" style="color:#0000FF;text-align:left">Bike Route 2009-08-16</a> in a larger map</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/08/definitely-in-favor-of-padded-shorts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More bicycle physics</title>
		<link>http://www.jacquesf.com/blog/2009/08/more-bicycle-physics/</link>
		<comments>http://www.jacquesf.com/blog/2009/08/more-bicycle-physics/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 18:06:44 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/?p=173</guid>
		<description><![CDATA[A moving bicycle without a rider is asymptotically stable. The best way to explain it is to just watch the movie below. Shoving a moving bicycle will cause it to oscillate back and forth, but it&#8217;ll eventually find its way back to its stable upright orientation. No deep insight, just something that&#8217;s kinda cool.









There&#8217;s all [...]]]></description>
			<content:encoded><![CDATA[<p>A moving bicycle without a rider is asymptotically stable. The best way to explain it is to just watch the movie below. Shoving a moving bicycle will cause it to oscillate back and forth, but it&#8217;ll eventually find its way back to its stable upright orientation. No deep insight, just something that&#8217;s kinda cool.</p>
<div style="text-align: center">
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="352" HEIGHT="300" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"><br />
<PARAM name="SRC" VALUE="http://ruina.tam.cornell.edu/research/topics/bicycle_mechanics/bicycle_stability.mov"><br />
<PARAM name="AUTOPLAY" VALUE="true"><br />
<PARAM name="CONTROLLER" VALUE="true"><br />
<EMBED SRC="http://ruina.tam.cornell.edu/research/topics/bicycle_mechanics/bicycle_stability.mov" WIDTH="352" HEIGHT="300" AUTOPLAY="true" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/"><br />
</EMBED><br />
</OBJECT>
</div>
<p>There&#8217;s all kinds of bicycle related physics <a href="http://ruina.tam.cornell.edu/research/topics/bicycle_mechanics/overview_papers_and_links.htm">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/08/more-bicycle-physics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://ruina.tam.cornell.edu/research/topics/bicycle_mechanics/bicycle_stability.mov" length="2661280" type="video/quicktime" />
		</item>
		<item>
		<title>Maybe there&#8217;s something to this fitness thing after all</title>
		<link>http://www.jacquesf.com/blog/2009/08/maybe-theres-something-to-this-fitness-thing-after-all/</link>
		<comments>http://www.jacquesf.com/blog/2009/08/maybe-theres-something-to-this-fitness-thing-after-all/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 00:19:07 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/?p=168</guid>
		<description><![CDATA[Just finishes doing the Minuteman Trail again, and in my best time ever. The first time I did a full round trip on the trail, it took me two hours and five minutes. Today I worked really hard and pushing as hard as possible on the uphill sections and did it in 1h48. That three [...]]]></description>
			<content:encoded><![CDATA[<p>Just finishes doing the Minuteman Trail again, and in my best time ever. The first time I did a full round trip on the trail, it took me two hours and five minutes. Today I worked really hard and pushing as hard as possible on the uphill sections and did it in 1h48. That three and a half hour ride last weekend with a bunch of steep hills probably didn&#8217;t hurt either.</p>
<p>Also, did you know that to turn right on a bicycle (or motorcycle) you actually briefly turn the front wheel to the <em>left</em>? Steering left causes you and the bicycle to lean to the right, which then makes you turn right. This is called <a href="http://en.wikipedia.org/wiki/Countersteering">countersteering</a>. You don&#8217;t even notice it at slow speeds because it happens automatically, but word is that it can save your life at high speeds.</p>
<div style="text-align: center">
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/C848R9xWrjc&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/C848R9xWrjc&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/08/maybe-theres-something-to-this-fitness-thing-after-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Better</title>
		<link>http://www.jacquesf.com/blog/2009/08/getting-better/</link>
		<comments>http://www.jacquesf.com/blog/2009/08/getting-better/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 11:23:00 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Carlisle]]></category>
		<category><![CDATA[CRW]]></category>
		<category><![CDATA[Minuteman]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/blog/?p=130</guid>
		<description><![CDATA[I haven&#8217;t been cycling as much as I&#8217;d like lately because I&#8217;ve been traveling a lot and the weather has been pretty rainy. I started up again this week with the goal of getting past 25 miles.
I did my usual route along the Minuteman trail, but kept going when I got to the end (after [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t been cycling as much as I&#8217;d like lately because I&#8217;ve been traveling a lot and the weather has been pretty rainy. I started up again this week with the goal of getting past 25 miles.</p>
<p>I did my usual route along the Minuteman trail, but kept going when I got to the end (after a 2-3 minute break). There&#8217;s a cycling club called the <a title="Cambridge River Wheelmen" href="http://www.crw.org">Cambridge River Wheelmen</a> that does some group rides in the Carlisle/Concord/Chelmsford area, so I just used one of their routes once I got to the end of the Minuteman.</p>
<p>One of the plusses of riding on rail trails is that they were designed for trains so they have nice and low grades. Roads are a different story. There were times when I was crawling up hills at 7 or 8 mph. On the brighter side flying down the hills at 30 mph is lots of fun.</p>
<p>Anyway, I ended up doing 39 miles in 3.5 hours (3 hours of pedaling) at an average speed of 12.6 mph. Next goal: 50 mile ride. Other goal: Pedal faster.</p>
<p>Map after the jump.</p>
<p><span id="more-130"></span></p>
<p><iframe width="475" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=111798079151102324755.000470aba492c0a70a642&amp;ll=42.463486,-71.233978&amp;spn=0.202617,0.326157&amp;z=11&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=111798079151102324755.000470aba492c0a70a642&amp;ll=42.463486,-71.233978&amp;spn=0.202617,0.326157&amp;z=11&amp;source=embed" style="color:#0000FF;text-align:left">Bike Route 2009-09-08</a> in a larger map</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/08/getting-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minuteman: Did it again</title>
		<link>http://www.jacquesf.com/blog/2009/07/minuteman-did-it-again/</link>
		<comments>http://www.jacquesf.com/blog/2009/07/minuteman-did-it-again/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 23:23:53 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Minuteman]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/blog/?p=103</guid>
		<description><![CDATA[I made it to the end of the Minuteman trail again. Looks like I need to find a new goal for myself. It would be nice if I could do this in under two hours.
View Larger Map
]]></description>
			<content:encoded><![CDATA[<p>I made it to the end of the Minuteman trail again. Looks like I need to find a new goal for myself. It would be nice if I could do this in under two hours.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.jacquesf.com%2Fcycling%2FTrack%2520003.kmz&amp;ie=UTF8&amp;ll=42.444741,-71.173553&amp;spn=0.177343,0.291824&amp;z=11&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.jacquesf.com%2Fcycling%2FTrack%2520003.kmz&amp;ie=UTF8&amp;ll=42.444741,-71.173553&amp;spn=0.177343,0.291824&amp;z=11" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/07/minuteman-did-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Made it!</title>
		<link>http://www.jacquesf.com/blog/2009/07/made-it/</link>
		<comments>http://www.jacquesf.com/blog/2009/07/made-it/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 19:55:02 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Minuteman]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/blog/?p=99</guid>
		<description><![CDATA[I made it to the end of the Minuteman trail today. 24 miles in just over 2 hours.
View Bike Route 2009-07-03 in a larger map
]]></description>
			<content:encoded><![CDATA[<p>I made it to the end of the Minuteman trail today. 24 miles in just over 2 hours.</p>
<p><iframe width="520" height="420" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=111798079151102324755.00046dd2a90c2d68791c5&amp;ll=42.439674,-71.198273&amp;spn=0.121617,0.219727&amp;z=12&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=111798079151102324755.00046dd2a90c2d68791c5&amp;ll=42.439674,-71.198273&amp;spn=0.121617,0.219727&amp;z=12&amp;source=embed" style="color:#0000FF;text-align:left">Bike Route 2009-07-03</a> in a larger map</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/07/made-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cycling</title>
		<link>http://www.jacquesf.com/blog/2009/05/cycling/</link>
		<comments>http://www.jacquesf.com/blog/2009/05/cycling/#comments</comments>
		<pubDate>Sun, 31 May 2009 00:45:55 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Cycling]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/blog/?p=124</guid>
		<description><![CDATA[I decided to take up cycling. After looking fruitlessly on Craigslist for a few months, I splurged and bought myself a bike. It&#8217;s a 2009 Gary Fisher Wingra. Hopefully I keep up the motivation to get $600 (once you include accessories) out of this guy.
Sure there&#8217;s a nice picture of the bike on the Gary [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to take up cycling. After looking fruitlessly on Craigslist for a few months, I splurged and bought myself a bike. It&#8217;s a <a href="http://fisherbikes.com/bike/model/wingra">2009 Gary Fisher Wingra</a>. Hopefully I keep up the motivation to get $600 (once you include accessories) out of this guy.</p>
<p>Sure there&#8217;s a nice picture of the bike on the Gary Fisher website, but the crappy low-light iPhone picture proves it&#8217;s <em>my</em> bike.</p>
<div id="attachment_127" class="wp-caption alignnone" style="width: 510px"><img class="size-medium wp-image-127" title="wingra" src="http://www.jacquesf.com/blog/wp-content/wp-uploads/2009/07/wingra-500x375.jpg" alt="My new bicycle, a 2009 Gary Fisher Wingra" width="500" height="375" /><p class="wp-caption-text">My new bicycle, a 2009 Gary Fisher Wingra</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2009/05/cycling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The return</title>
		<link>http://www.jacquesf.com/blog/2005/08/the-return/</link>
		<comments>http://www.jacquesf.com/blog/2005/08/the-return/#comments</comments>
		<pubDate>Sun, 14 Aug 2005 12:09:00 +0000</pubDate>
		<dc:creator>Jacques</dc:creator>
				<category><![CDATA[Travelogue]]></category>
		<category><![CDATA[Europe]]></category>

		<guid isPermaLink="false">http://www.jacquesf.com/blog/2005/08/14/the-return/</guid>
		<description><![CDATA[The return to France wasn&#8217;t bad, with a few exceptions. I took the Eurostar (Italian high speed train) from Rome to Milan. While the other Italian trains are pretty sucky, the Eurostars are nice. A lot nicer than the TGV, but then the supplement is 12 euros instead of 3. While I was waiting for [...]]]></description>
			<content:encoded><![CDATA[<p>The return to France wasn&#8217;t bad, with a few exceptions. I took the Eurostar (Italian high speed train) from Rome to Milan. While the other Italian trains are pretty sucky, the Eurostars are <em>nice</em>. A lot nicer than the TGV, but then the supplement is 12 euros instead of 3. While I was waiting for the train to leave, a guy came up to me and asked if this was second class. I said yes, then asked if he had a reservation (reservations are always required on high-speed trains, while on most trains your ticket kets you just get on any train you want). He said no, so I tried to explain that he needed one because it was a Eurostar. He started saying no that couldn&#8217;t be right, at which point I reached the end of my Italian. So the other people tried to explain it to him too, but he still wouldn&#8217;t believe them. They managed to convince him to go talk to the conductor (the train had left at this point), so thanks to us he avoided a big fine, but he was still pissed off he had to pay the supplement (a whopping 13.50 euros), and he never thanked us for saving him the fine. Jerk.</p>
<p>Anyway, I got into Milan, and promptly got crapped on by a pigeon, for the fourth time. The pigeons definitely saved the best for last. I was walking along, when I all of a sudden felt something wet hit my hair. I thought &quot;Goddam, that&#8217;d better be water,&quot; then stuck my hand into my hair. &quot;Fucking shit,&quot; I mumbled, followed by &quot;Literally!&quot; I went to find something to wipe it off, but for some reason when there&#8217;s pigeon shit in your hair and you suddenly feel it start to ooze onto your forehead and towards your eyes, it suddenly becomes very hard to remember the Italian word for napkin. So, I ended up just saying &quot;Scusi!!&quot; at a sandwich stand and pointing at my head like an idiot until the woman got a horried look on her face, shoved some napkins at me, and pointed me to the bathroom. I swear, the next time I come to Europe, I&#8217;ll be buying some arsenic and mixing it with some pigeon feed.</p>
<p>My train was 45 minutes late leaving Milan, and I had a 30 minute connection to make once it got to Karslruhe. Fortunately, the Germans made up a bunch of time once they took it over, because I ran out of credit on my cell-phone while trying to call Dan to figure out what I was going to have to do to make to Metz before noon if I missed my connection (I needed to get there before noon to take my suitcase back from the office in my dorm).</p>
<p>I made it Metz early Friday morning, got my suitcase, rented a room for a night, and promptly passed out (I think I had slept two hours the night before). I ended up just hanging out, catching up on the news, and writing in my travelogue all day because my feet were incredibly sore and I really didn&#8217;t feel like going anywhere else.</p>
<p>On Saturday, I headed to Strasbourg, and basically did more of the same. Everyone had been telling me to read The Da Vinci code, and since I didn&#8217;t have anything better to do, I went to the bookstore to buy it. I couldn&#8217;t find it except in large-print, so I ended up buying Angels and Demons, the book that came before it. I also got myself my last cheap trappist beer (some Chimay blue&#8230; quality stuff). The book turned out to be incredibly good. It had a good plot, and it was really cool because it was set mostly in Rome, so I had just been to a whole bunch of the places it described a few days earlier.</p>
<p>And now here I am, in the Paris airport, waiting for my flight to Atlanta. The airport actually has little desks with power outlets, so people with laptops can use them before getting on their flight without draining their batteries. I thought I was going to have to find an outlet somewhere and sit on the ground, and here I am with a desk and padded stool. Anyway, that&#8217;s pretty much everything. I have to go back and fill a bunch of holes in my travelogue, some of which I&#8217;ll do now and some of which I&#8217;ll probably do back in Atlanta. After I&#8217;ve let thing percolate in my head a bit, maybe there&#8217;ll even be some deep thoughts that no one cares about except for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacquesf.com/blog/2005/08/the-return/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
