<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Boiling Mind - thoughts from a techie guy</title>
	<atom:link href="http://alonbilu.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alonbilu.wordpress.com</link>
	<description>every thing that is hot (or not) in the web</description>
	<lastBuildDate>Tue, 10 Feb 2009 05:06:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='alonbilu.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4ac87e1a685242b4abb09be381639813?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>The Boiling Mind - thoughts from a techie guy</title>
		<link>http://alonbilu.wordpress.com</link>
	</image>
			<item>
		<title>Captcha solution using ASP3 &amp; JS (source included)</title>
		<link>http://alonbilu.wordpress.com/2009/02/10/31/</link>
		<comments>http://alonbilu.wordpress.com/2009/02/10/31/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 04:11:58 +0000</pubDate>
		<dc:creator>alonb</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://alonbilu.wordpress.com/?p=31</guid>
		<description><![CDATA[Few years ago, I was looking for a simple way to embed a captcha solution on one of my sites (that was hosted on a shared IIS web-server). I looked all over for a captcha solution  that won&#8217;t require installing an external DLL or connecting to a remote captcha server that will slow down [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=31&subd=alonbilu&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Few years ago, I was looking for a simple way to embed a captcha solution on one of my sites (that was hosted on a shared IIS web-server). I looked all over for a captcha solution  that won&#8217;t require installing an external DLL or connecting to a remote captcha server that will slow down the process (such as reCaptcha).</p>
<p>Back then I was coding in ASP3, so I decided to write my own class to do the job, and I named it &#8220;Captchavator&#8221;.</p>
<p>I&#8217;ve planned to release it to the public&#8230; but never did (I just forgot about it).</p>
<p>Last night, while I was browsing my HDD, I stumbled upon the Captchavator folder and the decided it&#8217;s time to make a move <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You might say that ASP 3 is obsolete&#8230; and I&#8217;ll say &#8220;true, true&#8230;&#8221;, but since there are still many old sites out there, I think that even even if one person will find this useful, then it was worth releasing&#8230;</p>
<p><em><strong></strong></em></p>
<p><em><strong>So what&#8217;s so special about this solution?</strong></em></p>
<ul>
<li>It requires your web-server to support ASP 3, Javascript and nothing more</li>
<li>Does not require installing any com/activex object on the server</li>
<li>Does not require storing images on the server</li>
<li>Developers can generate their own captcha characters using the included &#8220;painter&#8221; tool</li>
<li>Does not use any database to operate</li>
<li>Can be used with any shared hosting IIS web server</li>
</ul>
<p><em><strong>How can you use it?</strong></em></p>
<p>The process is very simple and involves 4 simple steps&#8230;</p>
<p>Step 1 &#8211; Include the captcha class in your ASP page.</p>
<p><em> </em></p>
<p>Step 2 &#8211; Create an instance of the Captchavatorobject</p>
<p><em>Set objCaptcha = New Captchavator</em></p>
<p><em></em></p>
<p>Step 3 &#8211; Generate a new captcha (pass the length of the requested captcha, in the following example, I&#8217;ve asked for a 6 chars long captcha).</p>
<p><em>objCaptcha.CreateCaptcha(6) </em></p>
<p>Step 4 &#8211; Print the captcha</p>
<p><em>objCaptcha.Print()</em></p>
<p><strong>To validate the captcha, following these steps:</strong></p>
<p>Step 1 &#8211; Include the captcha class in your ASP page.</p>
<p><em> </em></p>
<p>Step 2 &#8211; Create an instance of the Captchavatorobject</p>
<p><em>Set objCaptcha = New Captchavator</em></p>
<p>Step 3 &#8211; Check if the passed POST/GET parameter matches the captcha</p>
<p><em>objCaptcha.Validate( Request(&#8220;txt1&#8243;) )  &#8216;will return true if validated successfully!</em></p>
<p><em><strong>What&#8217;s included in the archive?</strong></em></p>
<p><strong>captcha.asp </strong>- This is the main Captchavator class</p>
<p><strong>captcha_painter.asp </strong>- Use this file to generate your own captcha characters. Please note the painter only works with Internet Explorer (I&#8217;m too lazy to fix it to work with FF).</p>
<p><strong>demo.asp </strong>- Demonstration of the complete process</p>
<p>I sure hope you&#8217;ll find this useful&#8230;.</p>
<ul>
<li></li>
</ul>
<p>Try an online demo:  <a href="http://www.isralet.com/files/captcha/demo.asp" target="_blank">http://www.isralet.com/files/captcha/demo.asp<br />
</a></p>
<p>Download the Captchavator archive from here:<br />
<a href="http://www.isralet.com/files/captcha/Captchavator v1.2 - ASP 3 Captcha.rar">http://www.isralet.com/files/captcha/Captchavator v1.2 &#8211; ASP 3 Captcha.rar</a></p>
<p>Feel free to ask any questions by leaving a comment below.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alonbilu.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alonbilu.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alonbilu.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alonbilu.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alonbilu.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alonbilu.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alonbilu.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alonbilu.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alonbilu.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alonbilu.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=31&subd=alonbilu&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://alonbilu.wordpress.com/2009/02/10/31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20cb44f584f228a70665a2b17717cd98?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alonb</media:title>
		</media:content>
	</item>
		<item>
		<title>המלצה על שרת זול ואמין לאירוח אתר חדש</title>
		<link>http://alonbilu.wordpress.com/2008/10/12/%d7%94%d7%9e%d7%9c%d7%a6%d7%94-%d7%a2%d7%9c-%d7%a9%d7%a8%d7%aa-%d7%96%d7%95%d7%9c-%d7%95%d7%90%d7%9e%d7%99%d7%9f-%d7%9c%d7%90%d7%99%d7%a8%d7%95%d7%97-%d7%90%d7%aa%d7%a8-%d7%97%d7%93%d7%a9/</link>
		<comments>http://alonbilu.wordpress.com/2008/10/12/%d7%94%d7%9e%d7%9c%d7%a6%d7%94-%d7%a2%d7%9c-%d7%a9%d7%a8%d7%aa-%d7%96%d7%95%d7%9c-%d7%95%d7%90%d7%9e%d7%99%d7%9f-%d7%9c%d7%90%d7%99%d7%a8%d7%95%d7%97-%d7%90%d7%aa%d7%a8-%d7%97%d7%93%d7%a9/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 08:55:36 +0000</pubDate>
		<dc:creator>alonb</dc:creator>
				<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://alonbilu.wordpress.com/?p=22</guid>
		<description><![CDATA[
המלצה על שרת בחו&#8221;ל זול ואמין לאירוח אתר חדש

לאחרונה התחלתי לעבוד עם חברה בחו&#8221;ל, בשם Host Monster,המספקת שרותי אחסון ואירוח מצויינים. מחיר חבילת אירוח בסיסית היא 5.95$ לחודש והיא כוללת כל מה שרק אפשר לחלום עליו, ובמחיר שווה לכל נפש.
בחבילה הבסיסית כלולים:

דומיין לבחירתך עם סיומת .COM
נפח אחסון בלתי מוגבל (אני כרגע מאחסן בשרת שלי קרוב [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=22&subd=alonbilu&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div dir="rtl" align="right">
<h2><span style="color:#ff0000;"><strong>המלצה על שרת בחו&#8221;ל זול ואמין לאירוח אתר חדש<br />
</strong></span></h2>
<p>לאחרונה התחלתי לעבוד עם חברה בחו&#8221;ל, בשם <strong><a href="http://www.hostmonster.com/track/join/b" target="_blank">Host Monster</a></strong>,המספקת שרותי אחסון ואירוח מצויינים. מחיר חבילת אירוח בסיסית היא <strong>5.95$ לחודש </strong>והיא כוללת כל מה שרק אפשר לחלום עליו, ובמחיר שווה לכל נפש.</p>
<p>בחבילה הבסיסית כלולים:</p>
<ul>
<li>דומיין לבחירתך עם סיומת .COM</li>
<li>נפח אחסון בלתי מוגבל (אני כרגע מאחסן בשרת שלי קרוב ל-200 גיגה, למעשה אני מנצל את השרת גם כגיבוי אונליין).</li>
<li>תעבורה בלתי מוגבלת (ספקים רבים מגבילים את נפח התעבורה, כאן לא מגבילים).</li>
<li>קישור למספר בלתי מוגבל של דומיינים ללא תוספת תשלום!</li>
<li>מספר בלתי מוגבל של חשבונות דואר (כולל תמיכה בPOP)</li>
<li>שרתי UNIX</li>
<li>קישור למסד נתונים מסוג MYSQL ללא תוספת תשלום</li>
<li>תמיכה טלפונית &#8211; 24 שעות ביממה.</li>
</ul>
<p>עד כה התרשמתי לטובה מהזמינות ומקצב התקשורת עם השרתים (שאגב, ממוקמים בארה&#8221;ב).<br />
בנוגע לשירות לקוחות / תמיכה, ניתן לקבל שירות בטלפון או במייל. אך קיימת דרך נוחה (וזולה יותר) &#8211; באמצעות צ&#8217;ט אונליין עם נציג (הגישה היא דרך הדף הראשי באתר החברה). זוהי דרך נוחה, חסכונית ויעילה לפתרון בעיות ולקבלת עזרה באופן המהיר ביותר).</p>
<p>עד היום התנסתי במספר חברות אירוח שרתים אך עושה רושם שב- Host Monster התמורה ביחס למחיר היא הגבוהה ביותר.</p>
<p>אגב, ניתן גם לבטל את העסקה תוך 30 יום ולקבל החזר כספי ללא צורך במתן הסבר כלשהו, כך שאפשר לנסות ואם לא מתאים אז לבטל. אז, אין מה להפסיד&#8230;</p>
<p>כתובות נלוות:<br />
<a href="http://www.hostmonster.com/track/join/b" target="_blank">www.hostmonster.com</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alonbilu.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alonbilu.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alonbilu.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alonbilu.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alonbilu.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alonbilu.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alonbilu.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alonbilu.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alonbilu.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alonbilu.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=22&subd=alonbilu&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://alonbilu.wordpress.com/2008/10/12/%d7%94%d7%9e%d7%9c%d7%a6%d7%94-%d7%a2%d7%9c-%d7%a9%d7%a8%d7%aa-%d7%96%d7%95%d7%9c-%d7%95%d7%90%d7%9e%d7%99%d7%9f-%d7%9c%d7%90%d7%99%d7%a8%d7%95%d7%97-%d7%90%d7%aa%d7%a8-%d7%97%d7%93%d7%a9/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20cb44f584f228a70665a2b17717cd98?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alonb</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling Concurrent Remote Desktop Sessions on Windows XP SP3 &#8211; Patched file included</title>
		<link>http://alonbilu.wordpress.com/2008/05/17/enabling-multiple-concurrent-remote-sessions-on-windows-xp-sp3-patched-file-included/</link>
		<comments>http://alonbilu.wordpress.com/2008/05/17/enabling-multiple-concurrent-remote-sessions-on-windows-xp-sp3-patched-file-included/#comments</comments>
		<pubDate>Sat, 17 May 2008 21:53:29 +0000</pubDate>
		<dc:creator>alonb</dc:creator>
				<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://alonbilu.wordpress.com/?p=18</guid>
		<description><![CDATA[

If you have multiple users on your Windows XP machine, you might have heard it is possible to patch the terminal services service, to support multiple concurrent remote desktop connection (via RDP) to your computer.
Around the time Windows XP SP1 was released, a patched version of the file termsrv.dll could be found on the Internet, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=18&subd=alonbilu&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="entry">
<div class="snap_preview">
<p>If you have multiple users on your Windows XP machine, you might have heard it is possible to patch the terminal services service, to support multiple concurrent remote desktop connection (via RDP) to your computer.</p>
<p>Around the time Windows XP SP1 was released, a patched version of the file termsrv.dll could be found on the Internet, replacing this file with your existing one enabled the concurrent remote sessions support.</p>
<p>Yesterday I upgraded to Windows XP SP3 (you may ask if it isn&#8217;t too early? maybe so, but since I’ve already been using the latest RC for some time now, I felt confident enough to apply this update on my home computer). Anyhow, after updating to SP3, I discovered my computer no longer supports concurrent remote sessions.</p>
<p>Short Googling returned few articles explaining how to patch the termsrv.dll to support concurrent sessions, so I pulled out my favorite HEX editor and with few clicks everything was up and running again.</p>
<p>To save so time for other users (and myself when upgrading more computers), I’ve packaged the updated termsrv.dll file with another file that will make the required changes to your registry. (see the included readme.txt file for further instructions).</p>
<p><strong>Download the patched version: <a href="http://www.isralet.com/termsrv_sp3.asp" target="_self">termsrv_sp3_patch.rar</a></strong></p>
<p><span style="text-decoration:underline;">Installation instructions</span><br />
0. Go to C:\Windows\system32\dllcache and rename the termsrv.dll to termsrv.dll.bak<br />
1. Go to \Windows\System32 folder and rename termsrv.dll to termsrv.dll.bak<br />
2. Copy the new SP3 patched termsrv.dll to \Windows\System32 folder<br />
3. Run the included registry patch &#8220;ts_concurrent_session_patch.reg&#8221; (by double clicking it), it will update the relevant registry values which are relevant to the concurrent sessions support.<br />
3. Restart windows.</p>
<p>NOTE:<br />
if you are currently using Terminal Services, you will need to start windows in safe mode before you can overwrite the existing termsrv.dll files.</p>
<p>Alon</p>
<p><strong>UPDATE 7/June/08:</strong><br />
I&#8217;ve added a note to the installation instructions suggesting to  remove another copy of termsrv.dll that resides in the dllcache directory (Anthoney, thanks for the tip).</p>
<p><strong>UPDATE 1/Aug/08:<br />
</strong>The previous download link died. I uploaded the file to a new location.</div>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alonbilu.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alonbilu.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alonbilu.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alonbilu.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alonbilu.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alonbilu.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alonbilu.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alonbilu.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alonbilu.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alonbilu.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alonbilu.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alonbilu.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=18&subd=alonbilu&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://alonbilu.wordpress.com/2008/05/17/enabling-multiple-concurrent-remote-sessions-on-windows-xp-sp3-patched-file-included/feed/</wfw:commentRss>
		<slash:comments>126</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20cb44f584f228a70665a2b17717cd98?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alonb</media:title>
		</media:content>
	</item>
		<item>
		<title>My thoughts on Online Backup</title>
		<link>http://alonbilu.wordpress.com/2007/11/28/my-thought-on-online-backups-and-some-suggested-solution/</link>
		<comments>http://alonbilu.wordpress.com/2007/11/28/my-thought-on-online-backups-and-some-suggested-solution/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 10:07:19 +0000</pubDate>
		<dc:creator>alonb</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[backup back online restore encrypt]]></category>

		<guid isPermaLink="false">http://alonbilu.wordpress.com/2007/11/28/my-thought-on-online-backups-and-some-suggested-solution/</guid>
		<description><![CDATA[Hi

Lately I&#8217;ve been  doing some reading on online backups (aka. off-site backup) and it got me  thinking&#8230;
Everybody knows the  importance of backups, but every few weeks or so, I&#8217;m still getting this call  from another poor soul that usually sounds like this: &#8220;oh no, my HDD just died..  what can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=3&subd=alonbilu&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p align="left"><span><font face="Arial" size="2">Hi</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">Lately I&#8217;ve been  doing some reading on online backups (aka. off-site backup) and it got me  thinking&#8230;</font></span></p>
<p><span><font face="Arial" size="2">Everybody knows the  importance of backups, but every few weeks or so, I&#8217;m still getting this call  from another poor soul that usually sounds like this: &#8220;oh no, my HDD just died..  what can I do to restore my data?&#8221;. </font></span></p>
<p><span><font face="Arial" size="2">Thing is, most home  users fail to backup their data regularly. </font></span><span><font face="Arial" size="2">I must admit that although I  consider myself an advanced computer user (who is aware of how important it is  to backup your data) I&#8217;m still not doing half than I should to make sure my data  will be available to me when a </font></span><span><font face="Arial" size="2">catastrophe  happens.</font></span></p>
<p><span></span></p>
<p><span></span><span><font face="Arial" size="2">So yes, I&#8217;ve evolved in the last few years (after losing  my laptop HDD and all the data that was on it) and started doing  some daily backups between the computers in my home network (copying the data  from one computer to another)&#8230; so now I feel pretty safe in the occasion of  another HDD crash, but I&#8217;m still not doing any  offline backups.</font></span></p>
<p><span><font face="Arial" size="2">So what will happen  if, god forbids, a burglar will visit me one day and take all my computers with  all my precious data? in three words &#8211; I am fucked.</font></span></p>
<p><span><font face="Arial" size="2">Of course the  cheapest way to do backups (defiantly not the easiest) is to do it offline &#8211;  Cassettes/CD&#8217;s/DVD&#8217;s or what have you. I really don&#8217;t know, maybe it&#8217;s just me  being lazy, but even after losing all the important data I had on my dead laptop  HDD I&#8217;m still failing to do offline backups and I believe most home users fail  to backup their data this way as well.</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">Which brings me to  the point of this email &#8211; Online Backup Services</font></span></p>
<p><span><font face="Arial" size="2">We&#8217;ve all heard  about them, some of us even experience some of them like xDrive, iBackup and  others (I know I have <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), but I never liked any of them for few  reasons:</font></span></p>
<p><span><font face="Arial" size="2">Why? few reasons:<br />
</font></span></p>
<p><span><font face="Arial" size="2">  </font></span></p>
<ol>
<li><span><font face="Arial" size="2">Speed Speed Speed  &#8211; if I started a backup session it would take ages until all the data is sent to  their servers and it was hogging my bandwidth.</font></span><span></span></li>
<li><span><font face="Arial" size="2">Privacy &#8211; I&#8217;ve  never felt I can trust them with my precious data &#8211; how can I tell if someone is  actually looking at my nude collection?</font></span><span></span></li>
<li><span><font face="Arial" size="2">Laziness &#8211; I  always had to remember to initiate the backup myself. Although most of the  services do offer scheduling, it&#8217;s pretty worth-less when a backup takes  approximately 34 hours</font></span></li>
<p><font size="2"><font face="Arial"><br />
</font></font></ol>
<p><span></span><span></span></p>
<p style="text-align:center;"><a href="https://mozy.com/?ref=DCAKA7"><img src="http://mozy.com/images/header-mozy-logo.png" alt="Mozy Logo" align="texttop" border="0" height="52" width="206" /></a></p>
<p><span><font face="Arial" size="2">Today I came across  another online backup </font></span><span><font face="Arial" size="2">service called Mozy</font></span><span><font face="Arial" size="2"> (<a href="https://mozy.com/?ref=DCAKA7" target="_blank">http://mozy.com/</a>) &#8211; which promises unlimited online  backup storage for ~55$/year.</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">To start backing up  with Mozy, you need to create an account in their website and then you can  download &amp; install their backup software. You set an encryption password,  choose the folders you wish to backup and Mozy will do everything else from  there. </font></span></p>
<p><span><font face="Arial" size="2">What I like about  Mozy (and what actually differentiate their solution from what I&#8217;ve seen so far)  is that their software is always running in the background checking which files  have changed since the last backup (thus needed to be backed up again) and once  your computer is idle, it will send these files to the remote server for backup.  pretty neat, uh?</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">Being a true  paranoid and all, I have one problem with Mozy (actually, the same problem  applies to all the online backup solutions I know) &#8211; How can I be 100%  sure nobody from Mozy is browsing my nude photo collection&#8230;  Now seriously, although they offer a pretty impressive 448-bit Blowfish  encryption and send the data over 128bit SSL connection, I still need to trust  them not to send my private key to their server along with the data (allowing  them to read all my data that is saved on their servers).<br />
So if I was a  normal person, I would probably trust them and use their product as is, but  since I&#8217;m not, I&#8217;ve come up with a better solution &#8211; combining an external  encryption software.</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">My new backup  strategy is about to include another software &#8211; an external encryption  utility named TrueCrypt (<a href="http://www.truecrypt.org/" target="_blank">http://www.truecrypt.org/</a>).</font></span></p>
<p><img src="http://www.truecrypt.org/images/logo.gif" alt="TrueCrypt" height="95" width="895" /></p>
<p><span><font face="Arial" size="2">TrueCrypt is sort of  an &#8220;on the fly encryption&#8221; utility. You predefine the folders to encrypt and  TrueCrypt will create a new encrypted &#8220;virtual hard drive&#8221; that can be accessed  like a normal drive. All the files on the &#8220;virtual HDD&#8221; will always be  encrypted. TrueCrypt will keep encrypting transparently all files that are  changing while I&#8217;m work with the computer.</font></span></p>
<p><span></span></p>
<p><span><font face="Arial" size="2">To combine TrueCrypt  &amp; Mozy together, all I need to do is pointing Mozy&#8217;s backup software to the  TrueCrypt &#8220;virtual hard drive&#8221;, and vwalla &#8211; I have a top notch secure backup  service.</font></span></p>
<p><span></span><span></span></p>
<p><font face="Arial"><font size="2"><span>Few points to  consider:</span></font></font></p>
<ul>
<li><font face="Arial"><font size="2"><span>The Mozy  service costs ~55$/year (for unlimited backup storage) but you can try it for  free (with 2GB of free storage). I myself believe it&#8217;s worth spending the  55$.</span></font></font><span></span></li>
<li><span><font face="Arial" size="2">Backup with Mozy  can take long time (considering the slow upstream connections we have in  Israel), but since Mozy is working when the computer is idle I don&#8217;t really  care.</font></span><font face="Arial"><font size="2"><span></span></font></font></li>
<li><font face="Arial"><font size="2"><span>I&#8217;m aware that are some much more sophisticated  backup solutions out there but I was trying to focus on services that are more  suitable for home users.</span></font></font><span></span></li>
<li><span><font face="Arial" size="2">Please consider, I&#8217;ve been using  Mozy for only one day and still haven&#8217;t tried the combination with TrueCrypt, so  before you trust all your precious data with these too, I can only suggest you  test it for few days.</font></span></li>
</ul>
<p><font color="#888888"><span></span></font></p>
<p><font color="#888888"><font face="Arial"><font size="2"><span>Alon</span></font></font></font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alonbilu.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alonbilu.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alonbilu.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alonbilu.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alonbilu.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alonbilu.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alonbilu.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alonbilu.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alonbilu.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alonbilu.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alonbilu.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alonbilu.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=3&subd=alonbilu&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://alonbilu.wordpress.com/2007/11/28/my-thought-on-online-backups-and-some-suggested-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20cb44f584f228a70665a2b17717cd98?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alonb</media:title>
		</media:content>

		<media:content url="http://mozy.com/images/header-mozy-logo.png" medium="image">
			<media:title type="html">Mozy Logo</media:title>
		</media:content>

		<media:content url="http://www.truecrypt.org/images/logo.gif" medium="image">
			<media:title type="html">TrueCrypt</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m so excited&#8230;</title>
		<link>http://alonbilu.wordpress.com/2007/11/28/hello-world/</link>
		<comments>http://alonbilu.wordpress.com/2007/11/28/hello-world/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 10:00:06 +0000</pubDate>
		<dc:creator>alonb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to my first blogging experience&#8230; I&#8217;m so excited (not)   
I hope to put on paper (oh well, &#60;DIV&#62; elements) some interesting thoughts I may have on new technologies (mainly internet related)  I come across during my daily cyber-cruises.
Hope you enjoy
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=1&subd=alonbilu&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to my first blogging experience&#8230; I&#8217;m so excited (not)  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I hope to put on paper (oh well, &lt;DIV&gt; elements) some interesting thoughts I may have on new technologies (mainly internet related)  I come across during my daily cyber-cruises.</p>
<p>Hope you enjoy</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alonbilu.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alonbilu.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alonbilu.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alonbilu.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alonbilu.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alonbilu.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alonbilu.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alonbilu.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alonbilu.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alonbilu.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alonbilu.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alonbilu.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alonbilu.wordpress.com&blog=2219080&post=1&subd=alonbilu&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://alonbilu.wordpress.com/2007/11/28/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20cb44f584f228a70665a2b17717cd98?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">alonb</media:title>
		</media:content>
	</item>
	</channel>
</rss>