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

<channel>
	<title>The Number 42 &#187; Internet</title>
	<atom:link href="http://www.thenumber42.net/category/computer-stuff/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thenumber42.net</link>
	<description>Mostly about software testing, but a little bit about life, the universe, and everything</description>
	<lastBuildDate>Wed, 31 Mar 2010 01:52:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Waiting on the Wave</title>
		<link>http://www.thenumber42.net/2009/10/06/waiting-on-the-wave/</link>
		<comments>http://www.thenumber42.net/2009/10/06/waiting-on-the-wave/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 16:10:41 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[requirements]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=200</guid>
		<description><![CDATA[I'm not really into social media.  I've never really found it all that useful.  However, I must say that I see a serious use case for using Google Wave.  The part that interests me is document collaboration.  For example, one thing I'd use Wave for is requirements document collaboration.  Currently, [...]]]></description>
			<content:encoded><![CDATA[<p>I'm not really into social media.  I've never really found it all that useful.  However, I must say that I see a serious use case for using Google Wave.  The part that interests me is document collaboration.  For example, one thing I'd use Wave for is requirements document collaboration.  Currently, the requirements document is posted as a Word file and then all the stakeholders grab a copy and either mark up the document or email comments.  It is painful to then take all those comments and documents and merge them back together.</p>
<p>Using Wave we would post a requirements document.  Then, since it is possible to start a conversation on any snippet of text each and every requirement could become a discussion.  When a consensus is reached with the stakeholders the document owner could make the changes.  No more random emails or marked up Word documents floating around.  The whole document history and discussion are in one place.  Nice.</p>
<p>Now, if only I could get a Google Wave invitation...</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/v_UyVmITiYQ&rel=0&color1=0xb1b1b1&color2=0xcfcfcf&hl=en&feature=player_embedded&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/v_UyVmITiYQ&rel=0&color1=0xb1b1b1&color2=0xcfcfcf&hl=en&feature=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2009/10/06/waiting-on-the-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Gmail as the Default Email Application in Linux</title>
		<link>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/</link>
		<comments>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 01:08:52 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/?p=130</guid>
		<description><![CDATA[Yesterday I was searching for a way to make GMail my default email provider, so that when I click on "mailto" links GMail opens.  In Windows this is pretty easy, but I couldn't figure it out for Linux.  So, bring on Google search.  I found this web page which explains it succinctly.  While I don't [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was searching for a way to make GMail my default email provider, so that when I click on "mailto" links GMail opens.  In Windows this is pretty easy, but I couldn't figure it out for Linux.  So, bring on Google search.  I found <a href="http://www.howtogeek.com/howto/ubuntu/set-gmail-as-default-mail-client-in-ubuntu/" target="_blank">this</a> web page which explains it succinctly.  While I don't run Ubuntu, the same method worked for Arch Linux.</p>
<p>Essentially:</p>
<ol>
<li>Go to System-&gt;Preferences-&gt;Preferred Applications</li>
<li>For "Mail Reader" choose "Custom" and enter this (we'll create the script later):
<pre class="bash">/home/username/bin/open_mailto.<span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #ff0000;">&quot;%s&quot;</span></pre>
</li>
<li>The above script will be triggered anytime you click on an email link.  Now, let's create the actual script.  Note: This is a modified script from the above web site.  It is based on some of the comments posted about the artice and then refined a little.  This script will properly handle subject, cc, to, body, and most any proper email tag that you can throw at it.  One other difference is that it can handle parenthesis.
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/sh</span>
<span style="color: #007800;">uri=</span>`<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$1&quot;</span>| <span style="color: #c20cb9; font-weight: bold;">sed</span> -e <span style="color: #ff0000;">'s/subject=/su=/'</span> \
     -e <span style="color: #ff0000;">'s/^mailto:<span style="color: #000099; font-weight: bold;">\(</span>[^&amp;?]<span style="color: #000099; font-weight: bold;">\+</span><span style="color: #000099; font-weight: bold;">\)</span>[?&amp;]<span style="color: #000099; font-weight: bold;">\?</span><span style="color: #000099; font-weight: bold;">\(</span>.*<span style="color: #000099; font-weight: bold;">\)</span>$/<span style="color: #000099; font-weight: bold;">\1</span><span style="color: #000099; font-weight: bold;">\&</span><span style="color: #000099; font-weight: bold;">\2</span>/'</span> \
     -e <span style="color: #ff0000;">'s/(/%28/g'</span> -e <span style="color: #ff0000;">'s/)/%29/g'</span>`
firefox -remote <span style="color: #ff0000;">&quot;openurl(https://mail.google.com/mail?<span style="color: #000099; font-weight: bold;">\</span>
view=cm&amp;tf=0&amp;to=$uri,new-tab)&quot;</span></pre>
</li>
<li>Finally, change the mode of the script so that it can execute:
<pre>chmod 755 /home/username/bin/open_mailto.sh</pre>
</li>
</ol>
<p>Hopefully that will work for you without problems.  In my tests so far it has worked great.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.howtogeek.com/howto/ubuntu/set-gmail-as-default-mail-client-in-ubuntu/' target="_blank">http://www.howtogeek....ail-client-in-ubuntu/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2009/04/26/setting-gmail-as-the-default-email-application-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOAP is a Four Letter Word</title>
		<link>http://www.thenumber42.net/2008/03/06/soap-is-a-four-letter-word/</link>
		<comments>http://www.thenumber42.net/2008/03/06/soap-is-a-four-letter-word/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 20:53:49 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[corba]]></category>
		<category><![CDATA[Ice]]></category>
		<category><![CDATA[SOAP]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2008/03/06/soap-is-a-four-letter-word/</guid>
		<description><![CDATA[If you are a SOAP fan then you may want to stop reading now.  Seriously, I am not interested in a philosophical debate on the "merits" of SOAP.  Personally, I think SOAP is a horrible way for distributed resources to communicate.  The idea of SOAP being XML and hence partially readable is OK, but for [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a SOAP fan then you may want to stop reading now.  Seriously, I am not interested in a philosophical debate on the "merits" of SOAP.  Personally, I think SOAP is a horrible way for distributed resources to communicate.  The idea of SOAP being XML and hence partially readable is OK, but for the purposes of efficiency and CPU overhead there are much better ways to do things.</p>
<p>Of course with an introduction like that I do have my personal favorite.  My middleware of choice is <a href="http://www.zeroc.com/">ZeroC's Ice</a>.  What I like about Ice is that it was not created by a large committee like CORBA was.  It was a small group and was designed for simplicity and efficiency, which it accomplishes.  If you are thinking of doing a project with a distributed architecture then seriously look at Ice. Once you shed the chains of SOAP and embrace Ice you will wonder why you put yourself through such misery for so long.  Now, if I could just get Amazon to switch from SOAP to Ice for their remote API....  Oh, and before anyone asks, yes, I have done my fair share of SOAP programming and I dread it each time.</p>
<p>I've also used CORBA and it is OK.  I prefer it to SOAP, but find it too clunky.  Programming for CORBA in C++ is a nightmare and is best avoided by sane people.  CORBA in Python is much better and actually tolerable.  I can't speak for other languages.  Ice is just much easier to use and Ice in C++ is not a masochistic exercise.</p>
<p>What I would love to see for Ice is something similar to <a href="http://www.xmethods.net">XMethods</a>.  XMethods is a large directory of publicly accessible web services.  Some of these require payment and some are free.  The large service offering of various data feeds is great and I'd love to see more software take advantage of it.  One could envision a future where there are so many distributed public services that software could be assembled to do anything you want by just picking and choosing different services.</p>
<p>I lack the dedicated server to start this project, but I would accept a donation if someone wants to start me off. <img src='http://www.thenumber42.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   What I would love to see is a XMethods type of site for Ice services.  Of course for a directory to work there needs to be content to list, so please get started.  Go create some Ice service and then put it publicly in the internet.  Please leave a comment here with the endpoint and the .ice definitions of the service and I'll give it a try and maybe even a writeup about it.</p>
<p>Here are just some random ideas for Ice services that I'd like to see:</p>
<ul>
<li>Stock information</li>
<li>Phone book (white and yellow pages)</li>
<li>Zip code information</li>
<li>Ham radio callsign database</li>
<li>Remote interface to <a href="http://cooltext.com/">CoolText</a></li>
<li>POV renderer (submit a pov file and get back a rendered image)</li>
<li>Text to Morse service -- send a text string and get back a wav or MP3 (I've actually written this in Python. I just need someone to donate a server and I'll put it online)</li>
<li>FCC database</li>
<li>US Census data</li>
<li>Directory of radio stations</li>
<li>Ice API for Google</li>
<li>Real estate listings</li>
<li>Weather forecasts</li>
<li>Lat/Lon calculations</li>
<li>Ice to text message gateway</li>
<li>etc....</li>
</ul>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.zeroc.com/'>http://www.zeroc.com/</a></li><li><a href='http://www.xmethods.net'>http://www.xmethods.net</a></li><li><a href='http://cooltext.com/'>http://cooltext.com/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/03/06/soap-is-a-four-letter-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Practicing Safe Passwording</title>
		<link>http://www.thenumber42.net/2008/02/12/practicing-safe-passwording/</link>
		<comments>http://www.thenumber42.net/2008/02/12/practicing-safe-passwording/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:00:44 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[PasswordMaker]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2008/02/12/practicing-safe-passwording/</guid>
		<description><![CDATA[There are many browser plugins that will manage your passwords and generate random passwords for you.  These are great if you have just one computer that you use.  For me, I have a Linux computer at work, a laptop for work, and a home computer.  There are some sites that I want [...]]]></description>
			<content:encoded><![CDATA[<p>There are many browser plugins that will manage your passwords and generate random passwords for you.  These are great if you have just one computer that you use.  For me, I have a Linux computer at work, a laptop for work, and a home computer.  There are some sites that I want to access from all three, so I need a way to keep my passwords in sync.</p>
<p>Traditional password "syncing" means having an easy to remember password that is used on multiple sites.  This is not ideal, but memorizing hard passwords for each site is really not practical for most humans.</p>
<p>A few days ago I found the answer: A piece of software called <a href="http://passwordmaker.sourceforge.net/passwordmaker.html">PasswordMaker</a>.  What is really cool is that there is a Firefox plugin, a Windows binary, and a web-based version.  What's more, is that your data is not saved anywhere.  The passwords are generated based on the host name, your user name, a master password, and several other criteria.</p>
<p>Because passwords are not saved anywhere this makes the online version of PasswordMaker very handy.  You just enter the information you want your password generated from and then copy and paste your generated password into the login form for your site.</p>
<p>The Firefox plugin will save portions of this data for you, if you so choose.  So, at a minimum you will just need to enter your master password and PasswordMaker will take care of the rest.  As long as you remember your master password and the settings you used to generate the specific site password then you can have strong passwords on every site you visit, while only needing to remember one password.  By using the online version of PasswordMaker you can still log in to your web sites from any computer, including internet cafes.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://passwordmaker.sourceforge.net/passwordmaker.html'>http://passwordmaker....et/passwordmaker.html</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/02/12/practicing-safe-passwording/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Favorite Firefox Plugins</title>
		<link>http://www.thenumber42.net/2008/01/14/my-favorite-firefox-plugins/</link>
		<comments>http://www.thenumber42.net/2008/01/14/my-favorite-firefox-plugins/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 17:06:34 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Verisign]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2008/01/14/my-favorite-firefox-plugins/</guid>
		<description><![CDATA[I know there are a million of these lists floating around, but here is my addition.  In no particular order, here are my favorite Firefox plugins:

Adblock Plus -- One of the greatest plugins ever invented. This will stop most of the ads on the internet from even being displayed.  It also stops a [...]]]></description>
			<content:encoded><![CDATA[<p>I know there are a million of these lists floating around, but here is my addition.  In no particular order, here are my favorite <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> plugins:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1865">Adblock Plus</a> -- One of the greatest plugins ever invented. This will stop most of the ads on the internet from even being displayed.  It also stops a lot of stat harvesting sites and scripts.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Statusbar</a> -- Shows the current status of downloads in the status bar, instead of a separate window.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/684">FireFTP</a> -- Very nice FTP client that integrates well into Firefox.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1978">Forecast fox enhanced </a>-- It's nice to always have the latest weather conditions and forecast sitting in the status bar.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1117">FoxClocks</a> -- Displays the time from anywhere around the world in your status bar.  The company I work for has international offices, so I have mine configured to show the local time and the time at the international offices.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2324">Session Manager</a> -- Many options to save and restore browsing sessions.  You can save a session with all your open tabs and then later come back and reopen everything just as it was saved.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4346">Tab Counter</a> -- Simple plugin to show how many open tabs you have.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2069">Tab URL Copier</a> -- Copies the URL of all open tabs onto the clipboard.  Very useful for saving or sending multiple links.</li>
<li><a href="https://pip.verisignlabs.com/">Verisign OpenID SeatBelt</a> -- OpenID is an awesome concept. See my <a href="http://www.thenumber42.net/2007/11/26/openid/">previous post</a> about OpenID.  This plugin helps you to sign into OpenID enabled sites.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/424">Wizz RSS News Reader</a> -- Fairly powerful RSS news reader.</li>
</ul>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.mozilla.com/en-US/firefox/'>http://www.mozilla.com/en-US/firefox/</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/1865'>https://addons.mozill...US/firefox/addon/1865</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/26'>https://addons.mozill...n-US/firefox/addon/26</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/684'>https://addons.mozill...-US/firefox/addon/684</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/1978'>https://addons.mozill...US/firefox/addon/1978</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/1117'>https://addons.mozill...US/firefox/addon/1117</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/2324'>https://addons.mozill...US/firefox/addon/2324</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/4346'>https://addons.mozill...US/firefox/addon/4346</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/2069'>https://addons.mozill...US/firefox/addon/2069</a></li><li><a href='https://pip.verisignlabs.com/'>https://pip.verisignlabs.com/</a></li><li><a href='http://www.thenumber42.net/2007/11/26/openid/'>http://www.thenumber42.net/2007/11/26/openid/</a></li><li><a href='https://addons.mozilla.org/en-US/firefox/addon/424'>https://addons.mozill...-US/firefox/addon/424</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2008/01/14/my-favorite-firefox-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keeping SSH Connections Alive</title>
		<link>http://www.thenumber42.net/2007/12/16/keeping-ssh-connections-alive/</link>
		<comments>http://www.thenumber42.net/2007/12/16/keeping-ssh-connections-alive/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 04:53:38 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2007/12/16/keeping-ssh-connections-alive/</guid>
		<description><![CDATA[There are times that you need to maintain a long-term SSH connection.  This may be because you need to keep a tunnel open, or you just want to stay logged into a machine.  However, depending on the settings and network conditions of all the intervening computers it may be difficult to keep this [...]]]></description>
			<content:encoded><![CDATA[<p>There are times that you need to maintain a long-term SSH connection.  This may be because you need to keep a tunnel open, or you just want to stay logged into a machine.  However, depending on the settings and network conditions of all the intervening computers it may be difficult to keep this connection open.  If a connection goes idle for a period of time then a computer might decide to close your SSH connection.</p>
<p>Fortunately, SSH has many settings, including some to keep connections open.  One of these settings, which is not recommended, is TCP Keep Alive.  I am not a network hacker, so all I know is that this is bad.  This method can be spoofed.</p>
<p>The preferred method to keep a SSH connection open is to use the ServerAliveInterval option.  To use this you would do:</p>
<pre class="bash"><span style="color: #c20cb9; font-weight: bold;">ssh</span> -o <span style="color: #007800;">TCPKeepAlive=</span>no -o <span style="color: #007800;">ServerAliveInterval=</span><span style="color: #000000;">15</span>
&nbsp;</pre>
<p>This would disable the TCPKeepAlive setting and send an encrypted packet once every 15 seconds.  By sending this packet every 15 seconds it will (hopefully) stop the computer from timing out and closing the connection.  Of course 15 seconds is probably a bit too often, but that depends on the specifics of your connection.  You want this often enough to keep the connection open, but too often and you generate unnecessary traffic.</p>
<h3>References</h3>
<p><a href="http://drupal.star.bnl.gov/STAR/comp/sofi/facility-access/ssh-stable-con/">SSH connection stability</a></p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://drupal.star.bnl.gov/STAR/comp/sofi/facility-access/ssh-stable-con/'>http://drupal.star.bn...ccess/ssh-stable-con/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2007/12/16/keeping-ssh-connections-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Photo Sharing</title>
		<link>http://www.thenumber42.net/2007/12/03/online-photo-sharing/</link>
		<comments>http://www.thenumber42.net/2007/12/03/online-photo-sharing/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 20:55:17 +0000</pubDate>
		<dc:creator>Isaac</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[online photo storage]]></category>

		<guid isPermaLink="false">http://www.thenumber42.net/2007/12/03/online-photo-sharing/</guid>
		<description><![CDATA[My desktop computer is broken right now, so I have been looking into upgrading.  The problem in the interim is that ALL of my photos are stored on that machine.  I just hope the hard drive is still OK.  I suspect the drive controller, but if it is the drive itself that [...]]]></description>
			<content:encoded><![CDATA[<p>My desktop computer is broken right now, so I have been looking into upgrading.  The problem in the interim is that ALL of my photos are stored on that machine.  I just hope the hard drive is still OK.  I suspect the drive controller, but if it is the drive itself that would be very bad news.</p>
<p>Needless to say, I started thinking about online photo storage and backing up all my photos to some online service.  I would feel safer to have an off site backup, especially since it's pictures of my kids we're talking about here.  The problem is choosing which provider to go with.  Online photos seem to be the latest rage and there are new sites popping up all the time.  It's crazy!</p>
<p>With all the choices out there I figured I could be picky, so my criteria for choosing an online photo storage service were:</p>
<ul>
<li>Free</li>
<li>Unlimited storage</li>
<li>Unlimited bandwidth</li>
<li>Can order prints online</li>
<li>Able to share photos with friends/relatives</li>
<li>Able to download full-resolution photos (no photo resizing going on behind my back)</li>
<li>No account deletion for not buying stuff</li>
</ul>
<p>A couple months ago I read <a href="http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2005/02/02/BUG7QB3U0S1.DTL">this</a> horror story about a women who lost all her online photos because she didn't continue to order prints.  So, that last point was something very important to me.</p>
<p>Today, I found <a href="http://www.photographybay.com/2007/12/03/flickr-alternatives/">this blog post</a> comparing several online photo galleries.  It is very good and I suggest reading it.  In the end I made a choice for which service I will use and my choice is not on the list.  I chose <a href="http://www.winkflash.com/">Winkflash</a> to store all my photos.  They offer all the features on my wish list, plus more.</p>
<p>According to the Winkflash web site:</p>
<blockquote><p> At winkflash you can store as many photos as you want for an unlimited time, and they will never be deleted, ever. All this for free.</p></blockquote>
<p>That alone is awesome, but then they throw in unlimited storage, albums, photo sharing, etc.</p>
<p>Hopefully this will work out well and my photos will be safer.  Of course I also need to work on a good backup strategy, but that is another topic.</p>
<div class="link-summarizer">Link Summary
<ul>
<li><a href='http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2005/02/02/BUG7QB3U0S1.DTL'>http://www.sfgate.com...02/02/BUG7QB3U0S1.DTL</a></li><li><a href='http://www.photographybay.com/2007/12/03/flickr-alternatives/'>http://www.photograph.../flickr-alternatives/</a></li><li><a href='http://www.winkflash.com/'>http://www.winkflash.com/</a></li>
</ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.thenumber42.net/2007/12/03/online-photo-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
