<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>[Insert Witty Title Here]</title>
	<atom:link href="http://blog.colinashe.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.colinashe.net</link>
	<description>Ruminations from a Ruminator</description>
	<lastBuildDate>Tue, 19 Jan 2010 22:23:12 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.colinashe.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2666f4b25f83dceb1d9d486f950215b2?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>[Insert Witty Title Here]</title>
		<link>http://blog.colinashe.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.colinashe.net/osd.xml" title="[Insert Witty Title Here]" />
	<atom:link rel='hub' href='http://blog.colinashe.net/?pushpress=hub'/>
		<item>
		<title>Adventures in awk</title>
		<link>http://blog.colinashe.net/2010/01/19/adventures-in-awk/</link>
		<comments>http://blog.colinashe.net/2010/01/19/adventures-in-awk/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:55:54 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[kludge]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=594</guid>
		<description><![CDATA[I&#8217;ve been working on a literature review lately so I&#8217;ve been sifting through tons of articles.  In my search, I&#8217;ve come across a few bibliographies of papers on specific topics which were compiled by researchers interested in those topics.  When the bibliography is reasonably small (in the case of a very narrowly defined topic), it&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=594&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a literature review lately so I&#8217;ve been sifting through tons of articles.  In my search, I&#8217;ve come across a few bibliographies of papers on specific topics which were compiled by researchers interested in those topics.  When the bibliography is reasonably small (in the case of a very narrowly defined topic), it&#8217;s usually fastest to sift through it by hand to find articles that might be of interest.  However, <a href="http://www.ipn.uni-kiel.de/aktuell/stcse/stcse.html" target="_blank">the most recent bibliography</a> I found contains 8342 papers.  I am definitely not about to print that out and go through it by hand.</p>
<p>This bibliography is available as an <a href="http://en.wikipedia.org/wiki/EndNote" target="_blank">EndNote</a> library file and as a <a href="http://en.wikipedia.org/wiki/Rich_Text_Format" target="_blank">Rich Text Format (rtf)</a> document.  Apparently, if you have a recent version of EndNote installed you can use its search features to sift through the data.  However, the file won&#8217;t open in EndNote 6, which is what I have on my laptop.  <a href="http://www.zotero.org/" target="_blank">Zotero</a> wouldn&#8217;t import it either.  I tried using the built-in search capabilities in Word and even <a href="http://www.jedit.org" target="_blank">jEdit</a> on the rtf but nothing could provide me with what I wanted.  Basically, I wanted the ability to export entries that matched a given search criterion to a separate file.  Presumably, there are programs that can do this for you, but I don&#8217;t know of them and don&#8217;t have them installed.</p>
<p>In the end, I decided to convert the rtf to a simple txt file.  This put each entry on its own line.  With each entry occupying a single line in the text file, I just needed some way to search for a given term and then output each line that contains that term.  I have used <a href="http://en.wikipedia.org/wiki/Sed" target="_blank">sed</a> and <a href="http://en.wikipedia.org/wiki/Awk" target="_blank">awk</a> a little bit in the past and I knew that there must be some way to do that with either or both of those, so I looked into their syntax online.  I found <a href="http://www.vectorsite.net/tsawk_1.html#m1" target="_blank">this awk tutorial</a> and, using the examples there, I was able to put together a command that does exactly what I needed:</p>
<p><big><code>awk '/term/ {print $0}' &lt; bibliography.txt &gt; term.txt</code></big></p>
<p>where &#8220;term&#8221; is replaced by whatever term you want to match.  You can further automate this by putting a bunch of these commands into a shell script or writing a little Perl program that will take a command line argument and insert it as &#8220;term&#8221; in the command.</p>
<p>Now I have a list of papers related to all the terms I&#8217;m interested in and I&#8217;ve got a fast way to search for further terms in the future if I need to.  The approach is a little &#8220;awk&#8221;ward (groan!) because I have to run it in Linux and I use Windows most of the time.  I no longer have Linux installed as a virtual machine on my laptop and I don&#8217;t even have <a href="http://en.wikipedia.org/wiki/Cygwin" target="_blank">Cygwin</a> installed anymore.  So, I had to upload my text file to one my research group&#8217;s Linux servers, run the scripts, and download the results back to my laptop.  Once I figured out what I needed to do it took me less than half an hour to do it, though, so even if it&#8217;s kludgy, it&#8217;s still a lot faster than reading through the bibliography manually.</p>
<p><strong>UPDATE:</strong> I just realized that all I did was replicate the functionality of <a href="http://en.wikipedia.org/wiki/Grep" target="_blank">grep</a> using awk.  That is, I could achieve the same result with the following code:</p>
<p><big><code>grep term &lt; bibliography.txt &gt; term.txt</code></big></p>
<p>Additionally, it turns out that you can produce this functionality <a href="http://www.grymoire.com/Unix/Sed.html#toc-uh-15" target="_blank">with sed</a> as well, using the following code:</p>
<p><big><code>sed -n 's/term/&amp;/p' &lt; bibliography.txt &gt; term.txt</code></big></p>
<p>I guess I missed the fact that I could use grep because I started thinking about using sed or awk before I converted the file to plain text.  Each entry was spread over multiple lines so I was thinking about needing something fairly sophisticated.  I know that grep can do regular expressions but my first thought went to sed and awk, which are like one logical unit in my brain because of the O&#8217;Reilly books that cover both.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/594/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=594&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2010/01/19/adventures-in-awk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>URL hijacking</title>
		<link>http://blog.colinashe.net/2010/01/06/url-hijacking/</link>
		<comments>http://blog.colinashe.net/2010/01/06/url-hijacking/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 17:51:19 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[online tools]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=585</guid>
		<description><![CDATA[I&#8217;ve been using the online resources provided by the university library a lot lately.  Mostly I&#8217;ve been accessing online journals and downloading pdfs of articles that are pertinent to my work.  Generally, access to these journals seems to be afforded to people on campus by routing the request from the library website through a proxy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=585&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using the online resources provided by the university library a lot lately.  Mostly I&#8217;ve been accessing online journals and downloading pdfs of articles that are pertinent to my work.  Generally, access to these journals seems to be afforded to people on campus by routing the request from the library website through a proxy server that the library maintains.</p>
<p>Unfortunately, I&#8217;ve found that basically any URL ending with mit.edu gets hijacked by the proxy server or my browser somehow routes the request through the proxy server if I&#8217;m using Firefox.  This isn&#8217;t a problem for sites that don&#8217;t require authentication but it&#8217;s produced a number of problems for sites that do require authentication.  Basically, I can no longer access the online purchasing portal or even the student services portal using Firefox.  This might not seem like a huge problem since I should just be able to use a different browser.  However, MIT doesn&#8217;t provide a means for installing personal certificates in Chrome or IE 8 (which are the only other browsers I have installed), so I can&#8217;t use these browsers to access sites requiring certificate-based authentication using alternate browsers either.  I ended up having to use a different computer altogether in order to pay my student account and register for the Spring semester.</p>
<p>I&#8217;ve been in contact with the help desk at the library.  They&#8217;ve offered some suggestions but, so far, nothing has worked.  First, they recommended that I check the proxy settings in Firefox to make sure that I didn&#8217;t have the library proxy set as my means of connecting to the internet.  I checked my settings and, sure enough, the option selected was &#8220;No Proxy&#8221;.</p>
<p>They suggested clearing my browsing history in Firefox.  So, I opened Firefox and chose Tools -&gt; Options -&gt; Privacy -&gt; &#8220;clear your recent history&#8221;.  I told it to remove everything and I selected all the various types of data available to delete &#8211; browsing and download history, form and search history, cookies, cache, active logins, and site preferences.  After clearing them I attempted to go to the MIT purchasing portal but the request was redirected again through the library proxy.  I tried typing a few characters of the URL and I found that the address bar still offered a bunch of choices from sites I had visited in the past.  What?  I thought this stuff was supposed to be cleared!</p>
<p>So, I downloaded CCleaner, a donation-ware program that can search your system and clear out temporary files, cached files, and various things that browsers tend to accumulate.  So, I ran that and cleared out everything including my history and cache in IE8 and Chrome.  I went back to Firefox but, although everything was gone, if I chose View -&gt; Sidebar -&gt; History (Ctrl H) or History -&gt; Show All History (Ctrl + Shift + H), if I type a few letters in the address bar, it still suggests to me sites that I&#8217;ve visited in the past.  How do I get rid of the stuff in the address bar?</p>
<p>It turns out that the sites that still come up in the address bar are sites I&#8217;ve bookmarked.  I had forgotten that the address bar in Firefox also searches your bookmarks as well as your browsing history.  So, my history is clear after all and using CCleaner was unnecessary.  That said, it did clear out like 2GB of temporary files, which is a nice little bonus.</p>
<p>I was at a loss about what to do when I had a flash of insight &#8211; maybe the problem is related to the DNS cache.  So, I followed <a href="http://lifehacker.com/343211/clean-your-dns-cache-to-fix-browsing-problems" target="_blank">these instructions</a> and flushed my DNS cache.  I was certain this would work.  But, it didn&#8217;t.</p>
<p>As a last resort, I decided to check my Firefox add-ons.  My first thought was that the problem could be related to <a href="http://noscript.net/" target="_blank">NoScript</a> since it&#8217;s the most invasive of the add-ons that I use.  However, the problem persisted even when I turned NoScript off.  Then, looking through the list of add-ons I use, I spotted <a href="http://www.zotero.org/" target="_blank">Zotero</a>.  This add-on is for managing journal article and book references.  I have used this add-on extensively during my library research, so I decided to look under the hood.  What I found was this:</p>
<p><a rel="attachment wp-att-587" href="http://blog.colinashe.net/2010/01/06/url-hijacking/zotero/"><img class="aligncenter size-full wp-image-587" title="zotero" src="http://colinaashe.files.wordpress.com/2010/01/zotero.jpg?w=607&#038;h=652" alt="" width="607" height="652" /></a></p>
<p>I took a screenshot of this for future reference and then removed the entry.  Voila!  I&#8217;m now able to access the purchasing portal, the student services site, etc.</p>
<p>So, if you&#8217;re having weird problems with certain sites being redirected through library proxies and you have Zotero installed, Zotero is probably the culprit.  I suggest you start by checking on Zotero&#8217;s proxy settings.  If there isn&#8217;t anything in the list or if removing items on the list doesn&#8217;t fix your problem, try some of the other things I tried.  In particular, I recommend you check Firefox&#8217;s proxy settings, followed by flushing your DNS cache.</p>
<p>I hope that someone will find this useful!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/585/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/585/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/585/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/585/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/585/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=585&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2010/01/06/url-hijacking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>

		<media:content url="http://colinaashe.files.wordpress.com/2010/01/zotero.jpg" medium="image">
			<media:title type="html">zotero</media:title>
		</media:content>
	</item>
		<item>
		<title>My URL-shortening service of choice</title>
		<link>http://blog.colinashe.net/2010/01/05/my-url-shortening-service-of-choice/</link>
		<comments>http://blog.colinashe.net/2010/01/05/my-url-shortening-service-of-choice/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 14:18:46 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[online tools]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=578</guid>
		<description><![CDATA[As far as I&#8217;m concerned, URL-shortening services have one objective: to make URLs short.  I am a lot less concerned with various features those service might offer than I am with how short they can make URLs.  As far as I can tell, j.mp creates the shortest URLs around, so it has become my URL-shortening service [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=578&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>As far as I&#8217;m concerned, URL-shortening services have one objective: to make URLs short.  I am a lot less concerned with various features those service might offer than I am with how short they can make URLs.  As far as I can tell, <a href="http://j.mp" target="_blank">j.mp</a> creates the shortest URLs around, so it has become my URL-shortening service of choice.  Not only does it have the shortest possible domain name but it also uses both upper- and lower-case letters as well as numbers as the database key.  This means that it can index more URLs using a given number of characters than shortening services that use, say numbers and only lower-case letters.</p>
<p>However, j.mp is owned by <a href="http://bit.ly" target="_blank">bit.ly</a>, which has a lot more visibility as a URL-shortening service.  While bit.ly owns j.mp, they are not separate services that happen to have the same owner; rather, they are highly integrated.  A single user account gets you access to both bit.ly and j.mp.  Furthermore, j.mp and bit.ly actually share their database, since <a rel="nofollow" href="http://j.mp/84SxlS" target="_blank">http://j.mp/84SxlS</a> and <a rel="nofollow" href="http://j.mp/84SxlS" target="_blank">http://bit.ly/84SxlS</a>, for example, both redirect to the same site.  This raises the question of why I would want to use a shortening service like bit.ly when j.mp is actually the same but produces URLs that are 2 characters shorter.  In many ways, j.mp is the best of both worlds.  Because it&#8217;s connected to bit.ly, it offers a slew of nice features but it produces the shortest URLs around.</p>
<p>Unfortunately, it&#8217;s clear from the bit.ly/j.mp website that bit.ly is interested in promoting bit.ly and not j.mp.  At some point in the past I went to j.mp and grabbed their &#8220;Shorten with j.mp&#8221; bookmarklet, which I put in my bookmark toolbar so I could easily shorten URLs for use on Twitter.  However, this bookmarklet appears to be gone.  If you go to <a href="http://j.mp/pages/tools">http://j.mp/pages/tools</a>, it offers a &#8220;Shorten with bit.ly&#8221; bookmarklet rather than a &#8220;Shorten with j.mp&#8221; bookmarklet&#8221;.  Doesn&#8217;t that seem strange?</p>
<p>Fortunately, there is a simple solution: manually edit the bookmarklet.  It turns out that simply changing <big><code>bit.ly</code></big> in the &#8220;URL&#8221; field code to <big><code>j.mp</code></big> is sufficient to change this &#8220;Shorten with bit.ly&#8221; bookmarklet into a &#8220;Shorten with j.mp&#8221; bookmarklet.  In addition to making the change in the &#8220;URL&#8221; field, you probably want to change the name of the bookmarklet just so it&#8217;s clear that you&#8217;re using j.mp rather than bit.ly.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/578/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=578&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2010/01/05/my-url-shortening-service-of-choice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>Stuff breaking</title>
		<link>http://blog.colinashe.net/2009/12/23/stuff-breaking/</link>
		<comments>http://blog.colinashe.net/2009/12/23/stuff-breaking/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 15:27:44 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=572</guid>
		<description><![CDATA[&#8220;When it rains, it pours&#8221; as the old saying goes.  That has been my experience recently with a few items I had bought.  They all seemed to die pretty close together so I&#8217;ve been trying to get the situations resolved with all of these items practically simultaneously.  Here&#8217;s a list of the stuff that&#8217;s getting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=572&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;When it rains, it pours&#8221; as the old saying goes.  That has been my experience recently with a few items I had bought.  They all seemed to die pretty close together so I&#8217;ve been trying to get the situations resolved with all of these items practically simultaneously.  Here&#8217;s a list of the stuff that&#8217;s getting replaced:</p>
<ul>
<li><a href="http://www.amazon.com/Koss-SB49-Communication-Stereophone/dp/B000N8RK7K/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1263231828&amp;sr=8-1" target="_blank">Koss SB49</a> computer headset (headphones + microphone): The microphone died.  Well, it doesn&#8217;t seem fully dead but on many devices it is so quiet that it&#8217;s basically useless.  Fortunately, Koss has a lifetime &#8220;no questions asked&#8221; repair or replacement warranty.  You ship it to them on your own dime and include $6 for return shipping.  They take care of the rest.  Hopefully, this will go out today and I&#8217;ll get it back sometime early in the new year.</li>
</ul>
<ul>
<li>Western Digital Caviar Blue 640GB hard drive: After the hassles I had with Windows 7 on my new Lenovo PC, I wasn&#8217;t expecting any further trouble for a while.  Unfortunately, one night last week my wife and I head a high pitched, very grating noise.  I finally tracked it down to my computer.  I hoped it was a fan but it wasn&#8217;t &#8211; it was the hard drive.  I shut down the machine and when I tried rebooting, it wouldn&#8217;t boot back into Windows.  So, the drive is shot.  I contacted Lenovo about it and they&#8217;re sending me a new drive, which should arrive tomorrow.  I&#8217;m always nervous about single drives being shipped.  Hopefully, it&#8217;ll work as intended.  I really don&#8217;t want to spend any more time fiddling with this computer.</li>
</ul>
<ul>
<li><a href="http://www.verilux.com/compact-fluorescent-bulbs/compact-fluorescent" target="_blank">Verilux 26W compact fluorescent light bulbs</a>. These are great.  I ordered them over the summer.  They&#8217;re 26W, which, in terms of light output, is approximately equivalent to 150W incandescent bulbs.  However, rather than being a sickly yellow color, these are very clean white light &#8211; 6500K to be exact.  While the bulbs themselves are great, I&#8217;ve had a bunch of problems with the delivery.<br />
When I first ordered them, one of the 2 bulbs in the double pack arrived broken.  The company sent me a replacement, which arrived intact.  However, one of my original bulbs just burned out, well shy of the 10,000 hours they&#8217;re supposed to last.  So, I contacted the company about it and they sent me a replacement but it had the wrong connection type.  So, they sent me a double pack (very nice) of the correct connection.  However, when these arrived, they were both broken.<br />
The customer service rep I&#8217;ve been dealing with has been great &#8211; very helpful and very apologetic about the various problems that have occurred.  After I received the broken bulbs she said she would send me two packs of bulbs (that&#8217;s 4 bulbs) because of the all the hassle I&#8217;ve gone through and that she would personally package them herself to make sure they arrived intact.  A lot of companies would probably have just stopped responding to my emails but Verilux obviously puts a strong emphasis on customer service and it shows.</li>
</ul>
<p><strong>Update (12/23/09):</strong> I just received the bulbs.  None of them were broken.  Sweet.  I am all stocked up on these bulbs for a while.</p>
<p>My wife took the headphones to the post office, so they&#8217;re on their way back to Koss.</p>
<p><strong>Update (12/24/09):</strong> I received the hard drive today from Lenovo.  I don&#8217;t think I&#8217;ll have time to deal with it for a few days, though.</p>
<p><strong>Update (12/26/09)</strong>: According to USPS delivery confirmation, my headphones were delivered to Koss today.  I wonder how long it&#8217;ll take for them to come back to me.</p>
<p><strong>Update (01/05/10)</strong>: I received the new hard drive on Christmas Eve but didn&#8217;t have time to deal with it until December 28th or so.  The new hard drive was partitioned but not formatted.  Since there wasn&#8217;t already a Windows installation on it, my upgrade version of Win 7 wouldn&#8217;t let me activate it.  So, I did the old double install trick.  I just shut the machine off and ran the installer again.  It detected the Windows installation I had just installed and let me activate it using my key for the upgrade media.  This only added like 20 minutes to the whole operation.</p>
<p>With the OS installed, I set up my awesome <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817707170&amp;cm_re=startech_sata_dock-_-17-707-170-_-Product" target="_blank">dual SATA HDD dock</a> to copy data over from the hard drives that I pulled from our old machine.  So far, I&#8217;ve only copied over the really important stuff: photos, videos, and music.  Our documents and other stuff will come later.</p>
<p>Last night, I started preparing to send the defunct drive back to Lenovo.  I used <a href="http://www.snapfiles.com/get/eraser.html" target="_blank">Eraser</a> to securely delete all the files on the data partition.  We basically only had family photos and music on there but they don&#8217;t need to see all that stuff.  Interestingly, the drive behaved itself and didn&#8217;t produce any grinding noises.  However, when I tried to delete things off the OS partition, it acted strangely, sometimes taking an extraordinarily long period of time to delete a single file.  So, I&#8217;m confident that the drive is not healthy and needs to be replaced.</p>
<p>Today, I boxed up the drive and stuck on the shipping label they sent me.  Now I just need to get it to Fed Ex or have them come and pick it up.</p>
<p><strong>Update (01/11/10):</strong> I sent off the hard drive on the 5th or 6th.  I&#8217;m still waiting for my headphones.  In the meantime, I&#8217;ve gone back to using my old <a href="http://www.wikizic.org/1-018-018958-Sony-MDR-D11.jpg" target="_blank">Sony MDR-D11 </a>headphones.  They&#8217;re very compact for closed circumaural headphones, they sound pretty good, and they&#8217;re pretty comfortable.  They&#8217;re a little muddier than the Koss model I&#8217;m getting repaired and, of course, they don&#8217;t have a microphone.  Hopefully, I&#8217;ll get the Koss phones back soon &#8211; I&#8217;ve missed being able to use them for Skype conversations.</p>
<p><strong>Update (01/11/10 #2):</strong> I received the headphones this afternoon.  As it turns out, they didn&#8217;t repair my old headphones; they simply sent me new ones.  This isn&#8217;t surprising at all to me.  In any case, it looks like I&#8217;m back in business.  The headphones sound good and the microphone works again.  I&#8217;m not thrilled that it cost me about $12 to get $30 headphones replaced, but it&#8217;s better than having to buy a brand new pair, so I can&#8217;t complain too much.</p>
<p>So, (knock on wood) it looks like I&#8217;ve got everything resolved.  My headset was replaced, my hard drive was replaced, and my light bulbs were replaced.  Hopefully, it will be a while before I have to deal with any further customer service people.  I can&#8217;t complain about any of the interactions with customer service reps or about the outcome of those interactions.  Everyone was pleasant and helpful but dealing with this stuff takes time and mental energy, not to mention the period of down time during which you&#8217;re without the item you bought and have grown to rely upon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/572/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/572/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/572/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/572/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/572/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=572&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/12/23/stuff-breaking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>Eye-Fi</title>
		<link>http://blog.colinashe.net/2009/12/21/eye-fi/</link>
		<comments>http://blog.colinashe.net/2009/12/21/eye-fi/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 22:26:34 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[gifts]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=567</guid>
		<description><![CDATA[I got my wife the Eye-Fi 4GB Share Video SD card this year for Christmas.  Yesterday, while we were snowed in, we exchanged a few gifts so she got to open it.  In a nutshell, this SD card has both 4GB of flash storage and a built-in wireless adapter that enables it to wirelessly transmit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=567&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I got my wife the <a href="http://www.eye.fi/products/sharevideo" target="_blank">Eye-Fi 4GB Share Video SD card</a> this year for Christmas.  Yesterday, while we were snowed in, we exchanged a few gifts so she got to open it.  In a nutshell, this SD card has both 4GB of flash storage and a built-in wireless adapter that enables it to wirelessly transmit photos and videos to your computer over your wireless network.</p>
<p>While I thought this would be a great gift, I was a little concerned that it wouldn&#8217;t work on the university&#8217;s wireless network in our on-campus apartment.  Sure enough, when I tried to set it up yesterday I couldn&#8217;t get it to work.  Any time a new device tries to connect to the university&#8217;s wireless network the DHCP server assigns it a temporary local IP address and redirects it to a registration web page.  Unfortunately, the Eye-Fi isn&#8217;t really a network adapter so you can&#8217;t use it to browse the web.  Thus, you can&#8217;t visit the registration page in order to register it for use on the network.</p>
<p>After the automatic setup procedure didn&#8217;t work I jotted down the card&#8217;s MAC address (which is easy to determine using the included software) and emailed the IT people on campus to ask if they could manually add the card&#8217;s MAC address to the list of MAC addresses the DHCP server will supply with IP addresses.  They were very helpful and responded that they had added the card&#8217;s MAC address as I had asked.</p>
<p>So, now it appears that I&#8217;m all set.  I spent some time this afternoon getting it set up and I&#8217;ve successfully uploaded 5 or 6 pictures and one video using the device.  All in all, it&#8217;s pretty nice.  Hopefully, using this card will simplify the process of getting pictures from the camera to the computer but only time will tell if the device lives up to its promise.</p>
<p>If the card I got my wife works out well, I&#8217;ll seriously consider buying the <a href="http://www.eye.fi/products/pro" target="_blank">Eye-Fi Pro</a>, which permits you to upload RAW files as well as JPGs and videos.  In addition, it enables you to set up an ad-hoc connection with your PC so you can bypass local wireless networks and upload pictures directly from your card to your computer.  This type of functionality typically costs much more than either the Eye-Fi Pro&#8217;s street price of $100 or its MSRP of $150.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/567/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/567/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=567&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/12/21/eye-fi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 woes</title>
		<link>http://blog.colinashe.net/2009/12/11/windows-7-woes/</link>
		<comments>http://blog.colinashe.net/2009/12/11/windows-7-woes/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:01:28 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=557</guid>
		<description><![CDATA[We recently got a new computer to replace Rechner.  It came with Windows Vista but since MIT has a site license to Windows 7, I installed that immediately after receiving the computer.  It&#8217;s been running fine for about a week, I guess, but today it started acting up.  I was using it this morning and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=557&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>We recently got a new computer to replace <a href="http://blog.colinashe.net/2009/09/11/happy-birthday-rechner/" target="_blank">Rechner</a>.  It came with Windows Vista but since MIT has a site license to Windows 7, I installed that immediately after receiving the computer.  It&#8217;s been running fine for about a week, I guess, but today it started acting up.  I was using it this morning and the system hung a couple of times for 20-30 seconds each time.  I didn&#8217;t know what the problem was, so I used the tried and true approach: reboot.</p>
<p>However, upon rebooting, I was greeted with a message that Windows Explorer had crashed.  I tried restarting Explorer but it crashed again.  I tried rebooting a couple more times but to no avail.</p>
<p>So far, each crash has been one of two types:</p>
<blockquote><p>Problem Event Name: APPCRASH<br />
Application Name: Explorer.EXE<br />
Application Version: 6.1.7600.16404<br />
Application Timestamp: 4a765771<br />
Fault Module Name: ntdll.dll<br />
Fault Module Version: 6.1.7600.16385<br />
Fault Module Timestamp: 4a5be02b<br />
Exception Code: c000041d<br />
Exception Offset: 000000000003d8db<br />
OS Version: 6.1.7600.2.0.0.256.4<br />
Locale ID: 1033</p></blockquote>
<p>or</p>
<blockquote><p>Problem Event Name: InPageCoFire<br />
Error Status Code: c000009c<br />
Faulting Media Type: 00000003<br />
Damaged File Name: SyncCenter.dll<br />
OS Version: 6.1.7600.2.0.0.256.4<br />
Locale ID: 1033</p></blockquote>
<p>The second one has been more prevalent by far.  Generally, if the first one is observed, it occurs first thing after a reboot.  All subsequent crashes are of the second type.  So, I searched for this information online.</p>
<p>Unfortunately, I haven&#8217;t been able to locate any information on this particular type of error.  A search of &#8220;Windows 7&#8243; + InPageCoFire + SyncCenter.dll returns no hits on Google.  However, I did find some general advice, suggesting that reverting to an older known-good restore point could help.</p>
<p>So, I got out the install DVD and used it to go back to an earlier restore point.  I noticed that there was a restore point from early this morning, just prior to a critical update having been installed. I figured this must of have caused the problem so surely, reverting to the restore point prior to the update would fix it.  Unfortunately, it did not.</p>
<p>I tried reverting to an even earlier restore point.  That still didn&#8217;t help.  So, I tried running the built-in memory diagnostics.  That didn&#8217;t appear to produce any errors but I can&#8217;t be sure because it&#8217;s supposed to give you a report once you restart the machine and log in to Windows.  I can never get far enough to see the report.</p>
<p>I just downloaded <a href="http://www.memtest.org/" target="_blank">memtest86+</a> and I&#8217;m running that right now.  My current expectation, however, is that there are no problems with the memory.  Rather, I expect that somehow SyncCenter.dll (and possibly ntdll.dll)  got corrupted.  I don&#8217;t know how to fix that.  I had a similar problem back in Windows 95 with some corrupted DLLs.  I ended up solving the problem by copying the affected DLLs from a friend&#8217;s computer.  However, I don&#8217;t know if I&#8217;ll be able to take that approach this time because I can&#8217;t even use Windows Explorer.  Perhaps I could use a Linux Live CD and the necessary DLLs on a USB drive to make the switch.</p>
<p>Or, I could just reinstall the OS.  When I installed the OS, I partitioned the 640GB drive into two partitions: 150GB for the OS and programs (on C:) and about 450GB for my data (on D:).  This would enable me to wipe the C drive and reinstall without requiring me to recopy all my data.  We&#8217;ll see.  If I end up having to spend much more time on this, I&#8217;m just going to wipe the drive and start over.</p>
<p>If anyone reading this has any suggestions on things I could try, please let me know in the comments.  Thanks!</p>
<p><strong>UPDATE 1:</strong> According to <a href="http://www.win7dll.info/synccenter_dll.html" target="_blank">this site</a>, SyncCenter.dll is statically linked to ntdll.dll and won&#8217;t run properly if ntdll.dll is corrupt or missing.  So, maybe SyncCenter.dll is OK and the real problem is ntdll.dll.  I&#8217;ll have to see if I can find a way to replace this file.  Also, memtest86+ completed with no errors, so the problem doesn&#8217;t appear to be RAM-related.</p>
<p><strong>UPDATE 2: </strong>After a bit more digging online, I found some references to problems with Windows Explorer crashing because of a weird interaction with Firefox.  I tried to uninstall Firefox but Windows Explorer crashed too rapidly for me to even open the Uninstall Programs window.  So, I booted into Safe Mode.  I was curious to see whether I still got the crashes.  I did.  Fortunately, in Safe Mode I managed to uninstall Firefox.  I rebooted into regular Windows, but much to my chagrin, Windows Explorer crashed again.</p>
<p>Earlier in the evening I had <a href="http://social.answers.microsoft.com/Forums/en-US/w7repair/thread/0095280a-6502-486e-b7dd-a5901efffc1f" target="_blank">posted my problem on a Microsoft forum</a> but I subsequently decided that all this troubleshooting was for the birds and that I should just go ahead and reinstall the OS.  The last time around, I had used my university&#8217;s site license to install Windows 7 Enterprise.  However, with the possibility that my problem was due to the corruption of a file, I wondered about how reliable it was to download a nearly 3GB ISO file via wireless, burn it on a DVD and then install it.  Fortunately, I had also bought a copy of Windows 7 Professional from Win741.com for $30 earlier this fall.  I paid a bit extra and had them send me a disc.  I decided I would use this disc to reinstall Windows 7 since it was a pressed DVD and is probably more reliable from a data integrity standpoint than a downloaded 3GB ISO image burned on a DVD.</p>
<p>The installation went fine.  A clean install seems to generally take 20-30 minutes, which I think is pretty reasonable for an operating system.  I used <a href="http://ninite.com/" target="_blank">Ninite</a> to install a bunch of software we use.  Importing all my music into iTunes was easy &#8211; I had spent some time cleaning up my iTunes library with my last install and since I had put all that data on my data partition, it was easy to import again.</p>
<p>Importing photos into Picasa looks like it&#8217;ll take a bit more work.  The photos themselves are no problem; the problem lies with the face recognition.  When I copied all our pictures over from the old hard drive, the face &#8220;groups&#8221; were preserved (in the .picasa.ini files in each folder containing photos) but the names associated with those groups were not.  So, I didn&#8217;t have to do any obnoxious manual sorting like I did when I first installed Picasa on our old machine but I did have to input names to go with those face groups or at least connect those face groups to contacts from my wife&#8217;s set of Gmail contacts.</p>
<p>This time around, it looks as though the face who were connected to Gmail contacts have had those connections preserved while it looks like I&#8217;ll need to reenter the names of people (mostly children) who weren&#8217;t in my wife&#8217;s contact list and whose names I had entered manually.  I&#8217;m going to let it crank over night and in the morning I&#8217;ll see what needs to be done.</p>
<p>In any case, I hope the curious case of the crashing Windows Explorer doesn&#8217;t rear its ugly head again.  Though, if it does, hopefully, by then I&#8217;ll have received a useful answer to the question I posted on the forum.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/557/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/557/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/557/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/557/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/557/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/557/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/557/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/557/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/557/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/557/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=557&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/12/11/windows-7-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>Photographic firsts</title>
		<link>http://blog.colinashe.net/2009/11/13/photographic-firsts/</link>
		<comments>http://blog.colinashe.net/2009/11/13/photographic-firsts/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 00:37:26 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[creations]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[gifts]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=552</guid>
		<description><![CDATA[I recently posted two images on my photo blog, both of which represent firsts for me.  Since the photoblog is kind of minimalist, I didn&#8217;t write much about them there, but I thought I should maybe add some info about them here.
The first was taken using a zone plate, which I got ages ago but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=552&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I recently posted two images on my <a href="http://instantforever.org" target="_blank">photo blog</a>, both of which represent firsts for me.  Since the photoblog is kind of minimalist, I didn&#8217;t write much about them there, but I thought I should maybe add some info about them here.</p>
<p>The <a href="http://instantforever.org/index.php?showimage=43" target="_blank">first</a> was taken using a <a href="http://en.wikipedia.org/wiki/Zone_plate" target="_blank">zone plate</a>, which I got ages ago but never used.  I got it last year at my birthday in a kit like <a href="http://cgi.ebay.com/Skink-Pinhole-Pancake-Creative-Kit-Pentax-K-M-K-7-K2000_W0QQitemZ290366560075QQcmdZViewItemQQptZCamera_Lenses?hash=item439b32174b" target="_blank">this</a>, which includes a device for holding photographic pinholes, the pinhole itself, and an adapter to make it fit my camera.  I had taken a few photos using the pinhole but never the zone plate.  I like the effect.  There are a couple of downsides to using either the pinhole or the zone plate, however.</p>
<p>First, these have incredibly narrow apertures, which means that, in order to get a correctly exposed image, you need a very long exposure or very high ISO setting.  I kept the ISO reasonably low but I used <a href="http://blog.colinashe.net/2009/10/24/new-tripod/" target="_blank">my tripod</a> to give me the stability I needed for a long exposure.  I used a 1.3 second exposure, which, for a shot taken in the middle of the day, is really long.  This zone plate has f/56 (not 5.6, 56!), which is pretty wide for this type of device.  The pinhole I have is something like f/130, so it would require a much longer exposure.</p>
<p>Second, whereas taking photographs with traditional lenses is pretty forgiving when it comes to junk on your sensor, pinhole and zone plate photography is extremely unforgiving.  I had to do a bunch of spot removal in Lightroom to get rid of a bunch of ugly splotches on the image.  The image below is a 1:1 crop from an image I took of the same scene with the pinhole.  There are at least 4 spots that are clearly visible, though they vary in severity.  I had never noticed these spots before in shots taken using my normal lenses.  I guess if I want to do any more photography using my pinhole or zone plate, it&#8217;s probably time to have my sensor cleaned <a href="http://blog.colinashe.net/2007/11/11/all-clean/" target="_blank">again</a>.</p>
<p><img class="aligncenter size-full wp-image-554" title="wpid553-IMGP5110.jpg" src="http://colinaashe.files.wordpress.com/2009/11/wpid553-imgp5110.jpg?w=465&#038;h=465" alt="Spots on my CCD" width="465" height="465" /></p>
<p>&nbsp;</p>
<p>The <a href="http://instantforever.org/index.php?showimage=44" target="_blank">most recent picture</a> is my first foray into <a href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging" target="_blank">high dynamic range</a> (HDR) photography.  I&#8217;ve been interested in this for a while but never really pursued it.  The point of HDR images is to make details visible in both the highlights and shadows of an image. Generally, both the camera sensor and any typical viewing medium (like a monitor or even printed photos) don&#8217;t have enough dynamic range to either properly capture or properly display details in both an image&#8217;s shadows and highlights.  There is just too much difference in brightness between the darkest parts and the lightest parts in a scene for the camera to capture everything or for it to all be faithfully reproduced on a monitor or print.  So some kind of workaround is necessary.</p>
<p>Due to the limitations of the camera&#8217;s sensor, capturing the details in both the highlights and shadows requires multiple images to be taken at different settings, a technique called exposure <a href="http://en.wikipedia.org/wiki/Bracketing" target="_blank">bracketing</a>.  In the simplest case, exposure bracketing involves taking the following 3 photos: one that&#8217;s significantly underexposed (to capture details in the highlights), one that&#8217;s properly exposed, and one that&#8217;s significantly overexposed (to capture details in the shadows).  These images are then imported into a program on a computer that merges them to produce a composite image that has a much higher dynamic range than can be captured with a single exposure.  Unfortunately, this image also has a much higher dynamic range than can be displayed on a monitor or on a print, so another step is necessary.  This step is called <a href="http://en.wikipedia.org/wiki/Tone_mapping" target="_blank">tone mapping</a>.</p>
<p>Tone mapping takes a HDR image that can&#8217;t be displayed and maps its brightness values back to a range of values that can be displayed.  When an image is captured, the darkest darks and the brightest brights are &#8220;clipped&#8221;, which means they&#8217;re simply cut off &#8211; detail in those areas is lost.  Taking multiple pictures of the same scene using different exposure settings gets back the data that was clipped.  Tone-mapping could simply clip the data again, however that would throw away the detail we want to preserve.  Instead, tone-mapping compresses the dynamic range, so that the details are preserved in both the highlights and shadows.  Modern tone mapping algorithms are actually quite a bit more complicated than simply compressing the dynamic range.  Rather, they operate on the data both globally and locally to try to maximize the extent to which details are visible in the image while simultaneously compressing the dynamic range to something that can be viewed on a monitor or print.  This often results in a very striking, though sometimes unnatural-looking image.</p>
<p>Yesterday I was looking through my to do list and I found a reminder to buy some software for making HDR before I graduate so I can take advantage of their (60%!!) educational discount.  Having just sold our exercise bike, I had some cash on-hand so I decided to go ahead and buy the software while I thought about it.  I bought Photomatix from <a href="http://hdrsoft.com/" target="_blank">HDRSoft</a> for about $40 rather than the usual $100.  I remembered that I was out a month or two ago and for some reason decided to take some shots using exposure bracketing, so I looked through my Lightroom catalog and found a few sets of exposure bracketed images.  I picked the set that I liked best, exported it to Photomatix, created the HDR image, re-imported to Lightroom, fiddled a bit with saturation and noise reduction, and then exported from Lightroom to PixelPost.  Done.</p>
<p>Having a tripod makes HDR photography easier, so I&#8217;m looking forward to using my new tripod along with my new HDR software to produce some good looking images in the future.  Stay tuned.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/552/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=552&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/11/13/photographic-firsts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>

		<media:content url="http://colinaashe.files.wordpress.com/2009/11/wpid553-imgp5110.jpg" medium="image">
			<media:title type="html">wpid553-IMGP5110.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>New Tripod</title>
		<link>http://blog.colinashe.net/2009/10/24/new-tripod/</link>
		<comments>http://blog.colinashe.net/2009/10/24/new-tripod/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 18:27:42 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Boston]]></category>
		<category><![CDATA[creations]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[gifts]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[purchases]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=539</guid>
		<description><![CDATA[My birthday was a couple of weeks ago and in the weeks leading up to it, I spent some time trying to fill out my wish list on Amazon.  I would like to briefly plug their universal wish list button &#8211; you can add it to your browser&#8217;s bookmarks toolbar and then add anything you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=539&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>My birthday was a couple of weeks ago and in the weeks leading up to it, I spent some time trying to fill out my wish list on Amazon.  I would like to briefly plug their <a href="http://www.amazon.com/wishlist/universal/ref=wl_eywl_uwl" target="_blank">universal wish list button</a> &#8211; you can add it to your browser&#8217;s bookmarks toolbar and then add anything you find on any website to your wish list.  That&#8217;s pretty handy.</p>
<p>Anyway, I have wanted a sturdy tripod for a while.  After a lot of looking, I decided that I wanted a <a href="http://en.wikipedia.org/wiki/Ball_head" target="_blank">ball head</a> since I had grown tired of having to adjust two or three knobs in order to get my composition right.  I settled on the <a href="http://www.amazon.com/Manfrotto-322RC2-Horizontal-Action-Connect/dp/B000184N22/ref=pd_cp_e_2" target="_blank">Manfrotto 322RC2</a>. It seemed like it would allow incredibly fast composition changes and would be very comfortable to use.  So, that found its way onto my wish list.</p>
<p>By pooling together money I got for my birthday I was able to get the 322RC2 head with the <a href="http://www.amazon.com/Manfrotto-055XPROB-Tripod-Legs-Black/dp/B000UMX7FI/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1256330378&amp;sr=1-1" target="_blank">Manfrotto 055XPROB</a> tripod legs.  I haven&#8217;t had a lot of opportunities to use everything yet but so far I really like it.  The ball head is so nice.  It is super easy to change your composition, very quick, and it locks solidly into place.  The legs are big &#8211; if I extend the legs fully, the eyepiece of the camera is at eye level without raising the center column at all.  This is great because it maximizes stability and gives me some freedom to play around with shots that might require the camera to be above my eye level.</p>
<p><span id="more-539"></span></p>
<p>Shortly after I got my kit and put everything together I took a picture of my wife and me enjoying our nerdy lifestyle:</p>
<p><img class="aligncenter size-full wp-image-542" title="wpid541-IMGP4857.jpg" src="http://colinaashe.files.wordpress.com/2009/10/wpid541-imgp4857.jpg?w=600&#038;h=402" alt="wpid541-IMGP4857.jpg" width="600" height="402" /></p>
<p>Of course, this picture isn&#8217;t going to win any photo contests &#8211; it&#8217;s just a fun way of documenting what our evenings sometimes look like.</p>
<p>Earlier this week, I needed to provide someone with a head shot of myself for a poster on my research work.  I couldn&#8217;t find anything suitable among the pictures in my collection since I&#8217;m normally the one behind the camera.  So, I needed to have one taken.  I decided to try taking one of myself using my tripod.  In addition to the tripod, I also used my <a href="http://www.amazon.com/Pentax-Remote-Control-Digital-Cameras/dp/B00005AB9R/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1256407724&amp;sr=8-1" target="_blank">Pentax Remote Control F</a> to trigger the shutter.   I wanted the picture to have a background nicer than the curtains in our apartment or something such so I went down to the banks of the Charles River and set up the camera.  I had to experiment with the camera height in order to make sure that the banks of the river in the background didn&#8217;t line up with the middle of my head, which would have been distracting.  I also ended up using my circular polarizing filter control the appearance of the clouds.</p>
<p>Below is my favorite from the whole batch, which includes probably 2 good pictures and about 45 bad pictures.  I felt pretty silly standing there smiling at the camera and taking pictures of myself as people drove by on Memorial Dr. and as runners strode by on the running path but I&#8217;m pretty happy with the result and I&#8217;ll probably never see any of those people again, anyway.</p>
<p><img class="aligncenter size-full wp-image-544" title="wpid543-IMGP4911.jpg" src="http://colinaashe.files.wordpress.com/2009/10/wpid543-imgp4911.jpg?w=600&#038;h=400" alt="wpid543-IMGP4911.jpg" width="600" height="400" /></p>
<p>I&#8217;m excited about the possibilities the tripod creates for me.  I&#8217;m looking forward to trying my hand at some high dynamic range photography.  While a tripod isn&#8217;t essential for these, it certainly makes things easier since HDR pictures require at least 2 source images that have to be properly aligned before combining them to create the final product.  Also, I&#8217;m looking forward to being able to photograph the city at night.  I have plenty of good pictures looking across the Charles at Boston but none of those I&#8217;ve taken at night have been acceptably sharp.  I&#8217;m hoping my new tripod will change that.</p>
<p>All in all, I&#8217;m very happy with the setup, which also includes a padded carrying bag and a separate strap for carrying the tripod without the bag.  Given how solidly these things are built, I expect to be using them for years to come and probably passing them on to my offspring.</p>
<p>I&#8217;d like to thank my parents and my parents-in-law for their generous gifts, which not only got me the tripod but also got me the remote control and circular polarizing filter at Christmas.  Thanks!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/539/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=539&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/10/24/new-tripod/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>

		<media:content url="http://colinaashe.files.wordpress.com/2009/10/wpid541-imgp4857.jpg" medium="image">
			<media:title type="html">wpid541-IMGP4857.jpg</media:title>
		</media:content>

		<media:content url="http://colinaashe.files.wordpress.com/2009/10/wpid543-imgp4911.jpg" medium="image">
			<media:title type="html">wpid543-IMGP4911.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>This is sweet</title>
		<link>http://blog.colinashe.net/2009/10/15/this-is-sweet/</link>
		<comments>http://blog.colinashe.net/2009/10/15/this-is-sweet/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 14:07:43 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[online tools]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=537</guid>
		<description><![CDATA[Since mid-summer one of my on-going interests has been getting my contact info, calendar, and to-do list systems set up in a way that helps me be more productive and not miss important events or responsibilities.  I&#8217;ve been gradually populating my contacts list on my Google account and for close friends and relatives I&#8217;ve been [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=537&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Since mid-summer one of my on-going interests has been getting my contact info, calendar, and to-do list systems set up in a way that helps me be more productive and not miss important events or responsibilities.  I&#8217;ve been gradually populating my contacts list on my Google account and for close friends and relatives I&#8217;ve been trying to enter birthdays and anniversary dates so I can remember to send people an email or e-card on their special day(s).  However, up until now actually getting a reminder about the event required some tedious work.  This is because entering a person&#8217;s birthday in my contact list did nothing to remind me about it.  So, I had to manually enter birthdays and anniversaries into my Google calendar.  It seemed like there had to be a better way.</p>
<p>It turns out that there is a better way.  Google recently created a set of &#8220;interesting calendars&#8221; that can be added to your calendar.  This includes holidays, sports teams&#8217; schedules, and other things.  Fortunately, one of the &#8220;other things&#8221; that they added was a calendar of birthdays pulled from your contact list.  This is exactly what I was looking for!  If you&#8217;re interested in using this yourself, the description of it is <a href="http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=37098" target="_blank">here</a> &#8211; click on &#8220;more&#8221; for the information.  So far, it appears as though it&#8217;s not possible to get notifications about items on this calendar, however, people are asking for this feature in the forums, so I hope that it will be added soon.  In the meantime, simply having the birthday show up on my calendar is helpful enough.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=537&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/10/15/this-is-sweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing CUPS on Ubuntu 9.04 (jaunty)</title>
		<link>http://blog.colinashe.net/2009/09/30/installing-cups-on-ubuntu-9-04-jaunty/</link>
		<comments>http://blog.colinashe.net/2009/09/30/installing-cups-on-ubuntu-9-04-jaunty/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:39:49 +0000</pubDate>
		<dc:creator>Colin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://blog.colinashe.net/?p=518</guid>
		<description><![CDATA[In my last post I mentioned that I completed the migration of this blog from the old host machine (called imladris) to WordPress.com.  This is part of a larger effort to retire that machine altogether.  It had been hosting my blog, my photoblog, our family photo gallery, and my wife&#8217;s old blog for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=518&subd=colinaashe&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>In my last post I mentioned that I completed the migration of this blog from the old host machine (called <a href="http://blog.colinashe.net/2007/01/12/the-computers-of-middle-earth/" target="_blank">imladris</a>) to WordPress.com.  This is part of a larger effort to retire that machine altogether.  It had been hosting my blog, my photoblog, our family photo gallery, and my wife&#8217;s old blog for years.  In addition, for the last few months I&#8217;ve been running a <a href="http://en.wikipedia.org/wiki/CUPS" target="_blank">CUPS</a> server on it so we could easily use our printer from any of our machines (we have 4 computers in the house, not including imladris).  However, last night I pulled the plug on imladris.  So, if we want to have our printer on the network again, I either need to buy a dedicated print server or I need to install CUPS on a different machine.  Fortunately, we have another Linux machine in the apartment: <a href="http://blog.colinashe.net/2007/01/12/the-computers-of-middle-earth/" target="_blank">orthanc</a>, which I use as my <a href="http://blog.colinashe.net/index.php?s=mythtv" target="_blank">MythTV</a> machine.</p>
<p>I had installed CUPS on imladris only a few months ago, so the process should still be fresh in my mind.  However, imladris ran <a href="http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29" target="_blank">Ubuntu</a> <a href="http://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Ubuntu_6.06_LTS_.28Dapper_Drake.29" target="_blank">6.06 LTS</a>, whereas orthanc runs Ubuntu <a href="http://en.wikipedia.org/wiki/List_of_Ubuntu_releases#Ubuntu_9.04_.28Jaunty_Jackalope.29" target="_blank">9.04</a>.  I&#8217;m not exactly sure whether 3 years* has made much of a difference but I&#8217;m going to try to follow online explanations to get it working.  As I work on this, I&#8217;m just going to give an account of what I&#8217;m doing, where I found instructions, etc. until I get it working.  If you&#8217;re interested in this, read on.  If you&#8217;re not, maybe you can find a more entertaining way to spend your time, like playing <a href="http://adamatomic.com/canabalt/" target="_blank">Canabalt</a>.</p>
<p><span id="more-518"></span></p>
<p>Last night I disconnected the printer from imladris and connected it up to orthanc. I also installed CUPS using the following command:</p>
<blockquote><p><span style="font-size:medium;"><code>$ sudo apt-get install cupsys cupsys-client</code></span></p></blockquote>
<p>I don&#8217;t actually know what the cupsys-client package does or whether I need it at all. Looking around at the <a href="http://packages.ubuntu.com" target="_blank">Ubuntu package repository</a>, it appears that cupsys provides the daemon and cupsys-client provides client software for the local machine.  Thus, since I don&#8217;t care about being able to print from orthanc itself, I probably don&#8217;t need cupsys-client.  Oh well.</p>
<p>Ok, so I&#8217;ve got the printer connected and CUPS installed.  What now?  I recall from the last time I installed CUPS, using the web interface was pretty easy.  So, let me try to get that set up.  First, I tried to simply enter what I thought was the correct URL and I got nothing.  So, I did a quick search online.  <a href="http://ubuntu-tutorials.com/2009/03/19/configuring-printers-via-the-cups-web-interface/" target="_blank">This site</a> suggests editing <span style="font-size:medium;"><code>/etc/cups/cupsd.conf</code></span> and replacing the following line:</p>
<blockquote><p><span style="font-size:medium;"><code>Listen localhost:631</code></span></p></blockquote>
<p>with</p>
<blockquote><p><span style="font-size:medium;"><code>Listen 0.0.0.0:631</code></span></p></blockquote>
<p>I made this change and restarted CUPS by typing:</p>
<blockquote><p><span style="font-size:medium;"><code>$ sudo /etc/init.d/cups restart</code></span></p></blockquote>
<p>When I did this, rather than getting nothing when I pointed my browser to <span style="font-size:medium;"><code>that same URL</code></span>, I got <span style="font-size:medium;"><code>403 Forbidden</code></span>.  So, that&#8217;s a start.  At least the web server is returning something.</p>
<p>Up to this point I had been working remotely on my laptop using the command line via <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">PuTTY</a>.  I was doing this because I don&#8217;t have a high resolution monitor attached to my MythTV machine; it&#8217;s only connected to my TV.  However, I decided that using the browser locally might make things easier.</p>
<p>So, I shut down the MythTV frontend on orthanc and opened up Firefox.  I pointed it to <span style="font-size:medium;"><code>http://localhost:631</code></span>, at which point I was greeted by the CUPS administration page.  Hooray!  Using the CUPS administration page I searched for detectable printers.  It detected my printer (HP LaserJet 6MP &#8211; old school, I know) and allowed me to add it.  I could then pick the driver I wanted.  On imladris I had used the Gutenprint driver.  However, this time around there was a postscript driver available, so I chose that.  I don&#8217;t know if it&#8217;ll be better than the Gutenprint driver &#8211; only time will tell.  I printed a test page from the adminstration site and it came out very nicely.</p>
<p>So, it appears to work locally.  Now, I need to knuckle down and actually figure out how to access the CUPS server remotely.  To figure this out, I consulted the <a href="http://www.cups.org/documentation.php/ref-cupsd-conf.html" target="_blank">official documentation for <span style="font-size:medium;"><code>cupsd.conf</code></span></a>.</p>
<p>Basically, I was able to figure out that I needed to change something in the following code block:</p>
<blockquote><p><span style="font-size:medium;"><code>&lt;Location /&gt;<br />
Order allow,deny<br />
&lt;/Location&gt;</code></span></p></blockquote>
<p>This governs access to the main part of the server.  There are separate, more restrictive blocks for the admin and config sections of the server.  For now, I&#8217;m not going to worry about being able to access the administrative or configuration functions remotely.</p>
<p>From the documentation, I found that <span style="font-size:medium;"><code>Order allow,deny</code></span> rejects requests by default then applies additional rules starting with <span style="font-size:medium;"><code>allow</code></span> lines first, followed by <span style="font-size:medium;"><code>deny</code></span> lines.  The other order, namely <span style="font-size:medium;"><code>Order deny,allow</code></span> accepts requests by default then applies rules specified in any <span style="font-size:medium;"><code>deny</code></span> lines followed by rules in any <span style="font-size:medium;"><code>allow</code></span> lines.  I don&#8217;t really understand this fully because I tried a few things that didn&#8217;t have the results I expected.  However, for now, changing the original block of code above to the following got things working:</p>
<blockquote><p><span style="font-size:medium;"><code>&lt;Location /&gt;<br />
Order deny,allow<br />
&lt;/Location&gt;</code></span></p></blockquote>
<p>I think that with this configuration, anyone in the world could print on my printer.  That&#8217;s probably not a great situation.  However, I think it may have been the situation with my CUPS installation on imladris as well.  I never had any problems with it, so hopefully, I won&#8217;t have any problems with this new installation.</p>
<p>Ok, so now I can access the CUPS server from my laptop and presumably any other computer.  The last step is installing the printer on each computer I want to be able to print from.  I started with my laptop.  I did a quick search to see how I should do it.  I came across <a href="http://social.technet.microsoft.com/Forums/en-US/w7itproui/thread/f5e69f33-29ff-4c86-a7ed-3b066f0b642d" target="_blank">this site</a> and tried their recommendation, which is to install the printer as a local printer using a new local port.  However, when I tried to enter the URL of my printer, it told me it was an invalid port name.  So, I looked around a little more and found <a href="http://www.freebsd.org/doc/en/articles/cups/article.html" target="_blank">this site</a>.  They recommend setting it up as a network printer.  I tried this and it worked!  I chose the appropriate driver and printed out a test page.  Sweet.</p>
<p>Now, I just have to install this printer on our other two Windows machines and we&#8217;re all set.  It actually didn&#8217;t take very long to get this all set up.  Like I said, the CUPS configuration might not be the most robust but I think it&#8217;ll get the job done for now.</p>
<p>If anyone reading this has any suggestions for a more robust <span style="font-size:medium;"><code>cupsd.conf</code></span> setup, please leave me a note in the comments.  Thanks!</p>
<p>________________________________________</p>
<p>*For the uninitiated, <a href="http://en.wikipedia.org/wiki/Canonical_Ltd." target="_blank">Canonical</a> releases a new version of Ubuntu every 6 months.  Recently, these versions have been released in April and October.  The version numbers use the year and month of release.  So, 6.06 means it was released in June of 2006, where 9.04 means it was release in April of 2009.  Each release is also named after an animal preceded by an adjective beginning with the same letter as the animal&#8217;s name.  These names have progressed in alphabetical order since 6.06 (Dapper Drake).  9.04 is called Jaunty Jackalope, while the upcoming version will be called Karmic Koala.  The next long-term support (LTS) release will be 10.04, called Lucid Lynx.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/colinaashe.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/colinaashe.wordpress.com/518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/colinaashe.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/colinaashe.wordpress.com/518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/colinaashe.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/colinaashe.wordpress.com/518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/colinaashe.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/colinaashe.wordpress.com/518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/colinaashe.wordpress.com/518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/colinaashe.wordpress.com/518/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.colinashe.net&blog=9064895&post=518&subd=colinaashe&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.colinashe.net/2009/09/30/installing-cups-on-ubuntu-9-04-jaunty/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ee26997b5a0d9e7b34f7782cc84a2078?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Colin</media:title>
		</media:content>
	</item>
	</channel>
</rss>