<?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"
	>

<channel>
	<title>Single Point of Failure</title>
	<atom:link href="http://www.singlepointoffailure.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.singlepointoffailure.net</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 24 Feb 2010 20:50:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Surfin&#8217; Bird</title>
		<link>http://www.singlepointoffailure.net/2010/02/fun/surfin-bird/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/fun/surfin-bird/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:50:46 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Bird]]></category>

		<category><![CDATA[Family Guy]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Surfin]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/?p=982</guid>
		<description><![CDATA[
I was watching this on TV! Come on&#8230; this is &#8216;quality&#8217; TV.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2WNrx2jq184&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0xe1600f&#038;color2=0xfebd01"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2WNrx2jq184&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0xe1600f&#038;color2=0xfebd01" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p style="text-align: center;">I was watching this on TV! Come on&#8230; this is &#8216;quality&#8217; TV.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/fun/surfin-bird/feed/</wfw:commentRss>
		</item>
		<item>
		<title>int64_t vs long long</title>
		<link>http://www.singlepointoffailure.net/2010/02/programming/int64_t-vs-long-long/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/programming/int64_t-vs-long-long/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 23:22:00 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[C/C++]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[int]]></category>

		<category><![CDATA[long]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/programming/int64_t-vs-long-long/</guid>
		<description><![CDATA[This last monday morning, a colleague enters in my office and asked for my&#8230; how should I put it&#8230; let&#8217;s say technical advise.
This time the discussion was about using int64_t and double in some deprecated code involving type casts and trunc of doubles into integers.This discussing made me research a bit about C and C++ [...]]]></description>
			<content:encoded><![CDATA[<p>This last monday morning, a colleague enters in my office and asked for my&#8230; how should I put it&#8230; let&#8217;s say technical advise.</p>
<p>This time the discussion was about using <font face="Courier New">int64_t</font> and <font face="Courier New">double</font> in some deprecated code involving type casts and trunc of doubles into integers.<br />This discussing made me research a bit about C and C++ data types regarding integers, since somewhere along the way I listened to something like &#8220;I was told to use <font face="Courier New">int64_t</font> because <font face="Courier New">long long</font> is architecture dependent&#8221;. It struck deep.</p>
<p>Let&#8217;s start with some simple clarifications:
<ul>
<li>&nbsp;<font face="Courier New">int</font>, or <font face="Courier New">signed int</font>, type must contain at least 16 bits (since the standard mandates that in must support values ranging from -32,767 to +32,767)</li>
<li>&nbsp;<font face="Courier New">long</font>, or <font face="Courier New">long int</font> or <font face="Courier New">signed long int</font>, type must contain at least 32 bits (since the standard mandates that in must support values ranging from -2,147,483,647 to 2,147,483,647)</li>
<li>&nbsp;<font face="Courier New">long long</font>, or <font face="Courier New">long long int</font> or <font face="Courier New">signed long long int</font>, type must contain at least 64 bits (since the standard mandates that in must support values ranging from -9,223,372,036,854,775,807 to 9,223,372,036,854,775,807). Note that this data type was first defined by C99 standard.</li>
</ul>
<p>
<div style="float: right; margin-bottom: 5px;"><img style="max-width: 800px; float: right; margin-bottom: 5px; margin-left: 10px;" src="http://farm2.static.flickr.com/1374/530100860_096e2e7c32_m_d.jpg" />
<div align="center"><a href="http://www.flickr.com/photos/kainet/530100860/in/photostream">© kainet</a></div>
</div>
<p>Regarding <font face="Courier New">int64_t</font>, as it seems, C99 standard defines a header files called <font face="Courier New">stdint.h</font> as part of the C standard library, that contains portable definitions for integer types. Portable in the sense of explicitly stating the number of bits used to represent a given integer. The definitions are in the form of <font face="Courier New">int<b>N</b>_t</font> and <font face="Courier New">uint<b>N</b>_t</font>, for <b><font face="Courier New">N</font></b> bit integers and unsigned integers, respectively. This way the programmer can ensure that, whatever the wordsize used by the processor, the right range of values can be represented. The standard garantees that the widths for these types must be ≥ <b><font face="Courier New">N</font></b>.</p>
<p>However well supported by modern compilers, take notice that <font face="Courier New">stdint.h</font> is not officially in the latest C++ standard (know by C++03).</p>
<p>Looking again at the statement that aroused my curiosity, what is the relation between <font face="Courier New">int64_t</font> and <font face="Courier New">long long</font>?<br />Well, they represent the same thing in most architectures! Both <font face="Courier New">int64_t</font> and <font face="Courier New">long long</font> first got defined by C99 standard, but <font face="Courier New">int64_t</font> definition ensures that 64 bits are used for represent the integer value while with <font face="Courier New">long long</font> at least 64 bits must be used.</p>
<p>For example, some architectures represent <font face="Courier New">long</font> and <font face="Courier New">int</font> with the same number of bits (32 bits). The standard only requires at least N bits. <img src='http://www.singlepointoffailure.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/programming/int64_t-vs-long-long/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Define: Single Point of Failure</title>
		<link>http://www.singlepointoffailure.net/2010/02/definition/define-single-point-of-failure/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/definition/define-single-point-of-failure/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 21:50:44 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Definition]]></category>

		<category><![CDATA[Single Point of Failure]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/definition/define-single-point-of-failure/</guid>
		<description><![CDATA[
© TonyVC

According to Google Analytics, &#8220;Single Point of Failure&#8221; is one of the expressions that brings more people to this humble place. I guess people searching Google for this expression would like to see the actual definition, and not only the title of the blog.
So, after some investigation, here it is! And the definition of [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-top: 5px; margin-bottom: 5px;"><img style="float: left; width: 240px; height: 180px; margin-left: 10px; margin-bottom: 5px;" src="http://farm3.static.flickr.com/2363/2332044681_b6d2a2dbc7_m_d.jpg" />
<div align="center"><small><small><small>© <a href="http://www.flickr.com/photos/tonivc/2332044681/" target="_blank">TonyVC</a></small></small></small></div>
</div>
<p>According to <a target="_blank" href="http://www.google.com/analytics/">Google Analytics</a>, &#8220;<a href="http://www.singlepointoffailure.net/">Single Point of Failure</a>&#8221; is one of the expressions that brings more people to this humble <a href="http://www.singlepointoffailure.net/">place</a>. I guess people searching Google for this expression would like to see the actual definition, and not only the title of the blog.
<div>So, after some investigation, here it is! And the definition of Single Point of Failure is&#8230;</p>
<p>Single Point of Failure refers to a specific part of a system, that in case of failure can cause major disruption to the normal work-flow. If you are talking about a computer network, think about the centralized Internet access point of the database server But you can also thing about you hard-disk system, if you are not using a RAID system.<br />Once the single point of failure goes down, there&#8217;s major loss of functionality possibly the complete halt of the system. One simple technique that can be used to mitigate the existence of a single point of failure. Redundancy is done by having several instances critical components working in cooperation avoids the dependence on one unique piece of equipment. It is important to consider implementing distinct approach for the redundant equipment, as this ensure there is no relation between failures of each independent piece of equipment.</p>
<p>For instance in your home, if you&#8217;re like me, a modem breakdown or a torn phone line can totally mean the end-of-times (knock on wood). I&#8217;m talking about the sky turning black and thunderstorms breaking havoc. The last time it happened I was almost three weeks without Internet, phone and TV. I mean, all that was left to do in the evening was to read. <img src='http://www.singlepointoffailure.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Total misery.</p>
<p>Now, for all of you not interested in this subject, just wait for people to start coming here looking for&#8230; You tell me!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/definition/define-single-point-of-failure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Fetish: Voyeurism</title>
		<link>http://www.singlepointoffailure.net/2010/02/photo/my-fetish-voyeurism/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/photo/my-fetish-voyeurism/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 20:07:34 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[Fetish]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Voyeurism]]></category>

		<category><![CDATA[Zoom]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/photo/my-fetish-voyeurism/</guid>
		<description><![CDATA[Your mind was automatically directed to sex, wasn&#8217;t it? Admit it. With a title like that, everything point to the sexual fetish that is Voyeurism. If you search the web there are lots of sites (there it goes again, the mind floating to those sex ideas) that define this clinical psychology called Voyeurism, but today [...]]]></description>
			<content:encoded><![CDATA[<p>Your mind was automatically directed to sex, wasn&#8217;t it? Admit it. With a title like that, everything point to the sexual fetish that is Voyeurism. If you search the web there are lots of sites (there it goes again, the mind floating to those sex ideas) that define this clinical psychology called <a href="http://en.wikipedia.org/wiki/Voyeurism" target="_blank">Voyeurism</a>, but today I&#8217;m here to talk about things other than sex. Let&#8217;s talk about photography (for a change).</p>
<p>After buying a <a target="_blank" href="http://imaging.nikon.com/products/imaging/lineup/lens/af/dx/af-s_dx_vr_zoom55-200mmf_4-56g_if/index.htm">Nikkor AF-S DX VR 55-200mm f/4-5.6G IF-ED</a> and taking it for walk and a couple of shoots, I&#8217;m fascinated by this lens. This lens has an excellent zoom and allows you to capture really nice photos without interfering with the natural behavior of the subject. Sometimes having this huge lens extended in some direction generated some awkward by the people close to you, but I must face my natural shyness and if necessary explain what is the intention (no harm, no foul).</p>
<div align="center"><br/><a href="http://picasaweb.google.com/lh/photo/eAFLEnT2mClOFi_JVzraeA?feat=embedwebsite"><img src="http://lh5.ggpht.com/_-I1XH28hjPw/S3hEtPyo2MI/AAAAAAAARV4/LDeNp_aXtds/s288/DSC_0110.JPG" /></a><a href="http://picasaweb.google.com/lh/photo/UG9OV04ITxnvvOYjO9uj9g?feat=embedwebsite">&nbsp; <img src="http://lh3.ggpht.com/_-I1XH28hjPw/S3hEplB8-MI/AAAAAAAARVo/j-XoSUlDXf8/s288/DSC_0053.JPG" /></a><br/></div>
<p><br/>In fact, and here comes the origin of the title, I liked so much the ability to take &#8220;distant&#8221; photos that I&#8217;m considering investing in another tele-zoom lens after making the most of 200 mm. The <a target="_blank" href="http://imaging.nikon.com/products/imaging/lineup/lens/af/zoom/af-s_vr_zoom70-300mmf_45-56g_if/index.htm">Nikkor AF-S VR 70-300mm f/4.5-5.6G IF-ED</a> is an excellent candidate, and will be in the shortlist when time comes. Here is an interesting <a target="_blank" href="http://www.kenrockwell.com/nikon/70-300-vr.htm">review</a>. As you can see in Nikon&#8217;s <a target="_blank" href="http://imaging.nikon.com/products/imaging/lineup/lens/simulator/index.htm">lens simulator</a>, the zoom at 300 mm is amazing.</p>
<div align="center"><img src="http://lh5.ggpht.com/_-I1XH28hjPw/S3r36DOmybI/AAAAAAAARus/wruCkqiNElA/s288/image.jpg" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/photo/my-fetish-voyeurism/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pirelli Calendar 2010</title>
		<link>http://www.singlepointoffailure.net/2010/02/photo/pirelli-calendar-2010/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/photo/pirelli-calendar-2010/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:45:15 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[2010]]></category>

		<category><![CDATA[Calendar]]></category>

		<category><![CDATA[Making of]]></category>

		<category><![CDATA[Pirelli]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/photo/pirelli-calendar-2010-making-of/</guid>
		<description><![CDATA[Fashion photography is sometimes not well understood, specially by me, but the Pirelli Calendar is always very artistic.

Being a professional photographer has its quirks, but seeing the making of makes me wonder. Both models and photographers suffer a bit to take the marvelous photos, between all the fun&#8230;



]]></description>
			<content:encoded><![CDATA[<p>Fashion photography is sometimes not well understood, specially by me, but the Pirelli Calendar is always very artistic.</p>
<div align="center"><img src="http://lh5.ggpht.com/_-I1XH28hjPw/S3mKTG-3weI/AAAAAAAARdY/9k2ssyffmts/s288/image.jpg" /></div>
<div><br/>Being a professional photographer has its quirks, but seeing the making of makes me wonder. Both models and photographers suffer a bit to take the marvelous photos, between all the fun&#8230;<br/><br/></div>
<div align="center">
<div class="youtube-video"><object height="225" width="400"><param name="allowfullscreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8003153&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1"></param><embed src="http://vimeo.com/moogaloop.swf?clip_id=8003153&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" height="225" width="400"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/photo/pirelli-calendar-2010/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Today, I Gotta Feeling</title>
		<link>http://www.singlepointoffailure.net/2010/02/music/supporting-them/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/music/supporting-them/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 08:41:19 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Black]]></category>

		<category><![CDATA[Eyed]]></category>

		<category><![CDATA[Feeling]]></category>

		<category><![CDATA[Peas]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/music/supporting-them/</guid>
		<description><![CDATA[
   

]]></description>
			<content:encoded><![CDATA[<div align="center">
<div class="youtube-video"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed><a title="Click here to block this object with Adblock Plus" class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a><a class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a> <a title="Click here to block this object with Adblock Plus" class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a><a class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a> <a title="Click here to block this object with Adblock Plus" class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a><a class="crkrvsjgjtsxcuvukrsu" href="http://www.youtube.com/v/19rG2CHvCQY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01"></a> </object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/music/supporting-them/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RAW Images in Ubuntu</title>
		<link>http://www.singlepointoffailure.net/2010/02/photo/raw-images-in-ubuntu/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/photo/raw-images-in-ubuntu/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 08:07:01 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[file]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[RAW]]></category>

		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/uncategorized/raw-images-in-ubuntu/</guid>
		<description><![CDATA[A while ago, I became aware of the potential of using RAW files after reading some very interesting articles [1][2] on the subject. Since then RAW is the everyday choice unless speed between shoots is important or, more frequently, when the memory card is starting to fill-up.
Using Ubuntu (and GIMP) to setup a workflow, I [...]]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px; float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px;" src="http://lh5.ggpht.com/_-I1XH28hjPw/S3cLUUhEL2I/AAAAAAAARLs/PachsiQu2GA/s144-c/DSC_0022.JPG" />A while ago, I became aware of the potential of using <a target="_blank" href="http://en.wikipedia.org/wiki/Raw_image_format">RAW</a> files after reading some very interesting articles [<a target="_blank" href="http://www.cambridgeincolour.com/tutorials/RAW-file-format.htm">1</a>][<a target="_blank" href="http://photo.net/learn/raw/">2</a>] on the subject. Since then RAW is the everyday choice unless speed between shoots is important or, more frequently, when the memory card is starting to fill-up.</p>
<p>Using Ubuntu (and GIMP) to setup a workflow, I found a very useful tool to transform RAW files into JPEG. Simply,</p>
<div align="center">
<p>&nbsp;&nbsp;&nbsp;&nbsp;<font face="Courier New">sudo aptitude install ufraw gimp-ufraw</font></p>
</div>
<p>and you&#8217;ll install a very useful standalone (ufraw) GUI tool, that also can be used to batch process in the command line, and the gimp support to import RAW photos.</p>
<p>If you don&#8217;t want to lose post-processing time, most digital cameras have a RAW+JPEG mode in which they store the final JPEG image while retaining the &#8216;negative&#8217; RAW file. I find this the best compromise&#8230; when I have lots of memory space available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/photo/raw-images-in-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spring Cleaning</title>
		<link>http://www.singlepointoffailure.net/2010/02/photo/spring-cleaning/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/photo/spring-cleaning/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:18:23 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Blower]]></category>

		<category><![CDATA[Cleaning]]></category>

		<category><![CDATA[Sensor]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/photo/spring-cleaning/</guid>
		<description><![CDATA[


Sooner or later, you&#8217;ll need to clean the sensor of your DSLR. Here are some resources that I found interesting:

Thom Hogan&#8217;s Nikon Field Guide and Nikon Flash Guide
 (on Cleaning your Sensor)
Cleaning Digital Cameras
Sensor Cleaning


Although the articles above describe several more or less intrusive methods to clean the sensor, all I used was the Giotto&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div>
<div><img style="float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px;" src="http://lh3.ggpht.com/_-I1XH28hjPw/S28MHQXaBZI/AAAAAAAAQyg/p_jcOKauy2c/s288/DSC_0026.jpg" alt="" /></div>
<p><br class="spacer_" /></p>
<p>Sooner or later, you&#8217;ll need to clean the sensor of your DSLR. Here are some resources that I found interesting:</p>
<ul>
<li><a href="http://www.bythom.com/index.htm" target="_blank">Thom Hogan&#8217;s Nikon Field Guide and Nikon Flash Guide</a><br />
 (on <a href="http://www.bythom.com/cleaning.htm" target="_blank">Cleaning your Sensor</a>)</li>
<li><a href="http://www.cleaningdigitalcameras.com/methods.html" target="_blank">Cleaning Digital Cameras</a></li>
<li><a href="http://www.luminous-landscape.com/essays/sensor-cleaning.shtml" target="_blank">Sensor Cleaning</a></li>
</ul>
</div>
<p>Although the articles above describe several more or less intrusive methods to clean the sensor, all I used was the Giotto&#8217;s Rocket-air Blower in the photo, and it did wonders.</p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/photo/spring-cleaning/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazing, simply amazing&#8230;</title>
		<link>http://www.singlepointoffailure.net/2010/02/music/amazing-simply-amazing/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/music/amazing-simply-amazing/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:24:42 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Alicia Keys]]></category>

		<category><![CDATA[Amazing]]></category>

		<category><![CDATA[Freedom]]></category>

		<category><![CDATA[NY]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/music/amazing-simply-amazing/</guid>
		<description><![CDATA[







Amazing, simply amazing&#8230; she did it again!
]]></description>
			<content:encoded><![CDATA[<div>
<div class="youtube-video" style="text-align: center;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0UjsXo9l6I8&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/0UjsXo9l6I8&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0xe1600f&amp;color2=0xfebd01" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</div>
</div>
<div style="text-align: center;"></div>
<div style="text-align: center;">
</div>
<div style="text-align: center;"><br/><em><span style="font-family: Monotype Corsiva;">Amazing, simply amazing&#8230; she did it again!</span></em></div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/music/amazing-simply-amazing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Exit</title>
		<link>http://www.singlepointoffailure.net/2010/02/photo/exit/</link>
		<comments>http://www.singlepointoffailure.net/2010/02/photo/exit/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 11:03:12 +0000</pubDate>
		<dc:creator>singlepointoffailure</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[B&amp;W]]></category>

		<category><![CDATA[Exit]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.singlepointoffailure.net/2010/02/photo/exit/</guid>
		<description><![CDATA[

&#8220;I need an Exit..&#8221;





This photo was taken on my way to work. Strangely enough, the arrow indicating the emergency exit also points in the direction of my office. The actual exit is between this arrow and the entrance, which sometimes makes me wonder if I shouldn&#8217;t just use this exit and return home. There are [...]]]></description>
			<content:encoded><![CDATA[<div align="center"><img style="max-width: 800px;" src="http://lh5.ggpht.com/_-I1XH28hjPw/S2v6PydqfUI/AAAAAAAAQmw/v9lObARof2U/s512/DSC_0055.JPEG" /></p>
<p>
<div align="center"><font face="Monotype Corsiva">&#8220;I need an Exit..&#8221;</font>
</div>
</p>
</div>
<div>
<p>
This photo was taken on my way to work. Strangely enough, the arrow indicating the emergency exit also points in the direction of my office. The actual exit is between this arrow and the entrance, which sometimes makes me wonder if I shouldn&#8217;t just use this exit and return home. There are days like that&#8230;
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.singlepointoffailure.net/2010/02/photo/exit/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
