<?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>Jan&#039;s posts</title>
	<atom:link href="http://jansposts.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jansposts.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 26 Dec 2010 02:47:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jansposts.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/ace70f990b57a01a828572de88eec4f9?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Jan&#039;s posts</title>
		<link>http://jansposts.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jansposts.wordpress.com/osd.xml" title="Jan&#039;s posts" />
	<atom:link rel='hub' href='http://jansposts.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Google App Engine in Java</title>
		<link>http://jansposts.wordpress.com/2010/12/25/google-app-engine-in-java/</link>
		<comments>http://jansposts.wordpress.com/2010/12/25/google-app-engine-in-java/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 02:47:52 +0000</pubDate>
		<dc:creator>JWM</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://jansposts.wordpress.com/?p=26</guid>
		<description><![CDATA[The promise of the Google App Engine has been intriguing from the start. In essence, the app engine is a virtual environment for server-based applications hosted by Google. Any developer can write an application and deploy it on the app engine. The hosting is free up to a certain limit. When an application gets traction [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=26&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The promise of the Google App Engine has been intriguing from the start. In essence, the app engine is a virtual environment for server-based applications hosted by Google. Any developer can write an application and deploy it on the app engine. The hosting is free up to a certain limit. When an application gets traction and traffic gets heavier, Google will ask a fee and scale the hardware for you. The app engine was originally a Python environment, but since a few years it&#8217;s available as a Java environment as well. In the past week, I had some spare time to take a closer look at the app engine and write a small sample application. This post documents my initial experiences with the app engine, with hurdles to overcome and thoughts on the technology.</p>
<p>The Java environment of the app engine is a very custom version of a J2EE servlet container. For example, core Java APIs, Java Servlets, and Java Server Pages are working mostly as expected, but a few other components, such as Enterprise Java Beans, JDBC, and RMI aren&#8217;t available. The limitations on Java have been documented on <a title="Will it play in Java?" href="http://code.google.com/p/googleappengine/wiki/WillItPlayInJava" target="_blank">this site</a>. Perhaps a more significant difference with other Java containers is the persistency model. App engine has <a title="Datastore documentation" href="http://code.google.com/appengine/docs/java/datastore/overview.html" target="_blank">a data store based on Google&#8217;s big table</a>, which is very different from a standard relational database. Although the app engine supports standard APIs for persistence, such as Java Data Objects (JDO) and Java Persistence API (JPA), the semantics of these APIs are very different from when a relational database is used. The emphasis of the app engine data store is on read performance and all queries need to be pre-indexed. This puts certain limitations on the use of relationships. For example, the application can&#8217;t do inner joins. In order to scale the data store effectively, the transaction model is also different from a traditional database.</p>
<p>The development environment provided with the app engine is Eclipse-based and comes with an embedded servlet container. This allows for rapid local prototype development before publishing the application on the app engine. It was fairly easy to <a title="Getting started with the Java SDK for Google App Engine" href="http://code.google.com/appengine/docs/java/gettingstarted/installing.html" target="_blank">get started with the SDK</a>, although there are a few caveats to cope with:</p>
<ul>
<li>JSP code completion doesn&#8217;t work out-of-the-box, because the app engine plug-in doesn&#8217;t add the JSTL libraries to the classpath of the project. The libraries are packaged with the app engine SDK and can easily be added to the project classpath to <a title="Fix JSP code completion" href="http://someprog.blogspot.com/2010/08/google-app-engine-can-not-find-tag.html" target="_blank">fix JSP code completion</a>;</li>
<li>Generated JSP code isn&#8217;t visible in Eclipse, but for the generated files can be found in the temp directory when running the development container. For a Linux setup with the latest app engine SDK, the path is: /tmp/Jetty_127_0_0_1_8888_war____.g0qk00/jsp/</li>
<li>JUnit testing is supported, but the <a title="JUnit for the app engine" href="http://code.google.com/appengine/docs/java/tools/localunittesting.html" target="_blank">documentation</a> is somewhat confusing. The trick is to have a normal Java project next to the app engine project in the same workspace. The normal Java project has a reference to the app engine project and the testing libraries as described in the documentation. JUnit tests can run directly from Eclipse.</li>
</ul>
<p>The sample application I wrote consists of a simple data model, three JSP pages, and a background HTML Web page scraper. The code of the sample application I wrote is available <a title="Sample application code" href="http://gitorious.org/visa-bulletin-tracker/visa-bulletin-tracker/trees/master" target="_blank">here</a> and the live version is available at <a title="Visa bulletin tracker application" href="http://visa-bulletin-tracker.appspot.com/" target="_blank">visa-bulletin-tracker.appspot.com</a>. The code is available under an Apache 2.0 license, so feel free to re-use and/or reference the code.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jansposts.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jansposts.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jansposts.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=26&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jansposts.wordpress.com/2010/12/25/google-app-engine-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a817024b093c3392e2e1022d77c5545f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janspost</media:title>
		</media:content>
	</item>
		<item>
		<title>Packing light &#8211; System on an External Drive</title>
		<link>http://jansposts.wordpress.com/2010/05/29/packing-light-system-on-an-external-drive/</link>
		<comments>http://jansposts.wordpress.com/2010/05/29/packing-light-system-on-an-external-drive/#comments</comments>
		<pubDate>Sat, 29 May 2010 01:39:44 +0000</pubDate>
		<dc:creator>JWM</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jansposts.wordpress.com/?p=21</guid>
		<description><![CDATA[How to travel with fewer laptops by using external hard drives effectively.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=21&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the coming months, I will be traveling a lot. During this travel, I would like to take my work laptop as well as a personal system. It is too much to take two entire systems, so I decided to pack light and only take the work laptop and keep my personal files on an external SSD Hard Drive.</p>
<p>I created two partitions on the SSD Hard Drive. One with the personal data, and another one with a Linux Ubuntu operating system. With the operating system on the external drive, I will have a complete personal system without the need to take a second laptop with me. I can use the same set of hardware, but my personal data and applications will stay completely separate from the work laptop. On the work laptop, I will load the personal operating system directly from the external hard drive. The performance turns out to be really reasonable with USB 2.0 interface and an SSD drive.</p>
<p>On my PC at home, I need a way to synchronize my personal files on and off the external drive. My PC runs Windows 7, but the operating system on the drive is Linux. The data partition has a FAT32 format and I can synchronize files with Windows 7 using the freeware tool <a title="Visit PureSync" href="http://www.jumpingbytes.com/en/puresync.html" target="_blank">PureSync</a>. This is better than a simple drag-and-drop, because changes can come two ways. I can modify the files in the original location on the Windows 7 PC, and I can also modify files on the external hard drive using the Linux system. PureSync makes it easy to update both sides and resolve any conflicts.</p>
<p>Additionally, I would also like to run the operating system on the external drive as a virtual machine in Windows 7. This makes it easier to set the system up the way I like it to be without needing to reboot to a different drive too frequently. I have been using SUN VirtualBox for a while now, but I have mostly been using it with virtual drives that represent themselves as a file in the host system. It turns out VirtualBox can also load a guest operating system directly from an external hard drive. Instructions on how to do so are located <a title="Boot your usb drive in VirtualBox" href="http://agnipulse.com/2009/07/boot-your-usb-drive-in-virtualbox/" target="_blank">here</a>. Don&#8217;t forget that VirtualBox and associated utilities need to run as Administrator in Windows 7 if you&#8217;re going to try this yourself too.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jansposts.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jansposts.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jansposts.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=21&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jansposts.wordpress.com/2010/05/29/packing-light-system-on-an-external-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a817024b093c3392e2e1022d77c5545f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janspost</media:title>
		</media:content>
	</item>
		<item>
		<title>*Ville gets $180 mjn funding</title>
		<link>http://jansposts.wordpress.com/2009/12/17/ville-gets-180-mjn-funding/</link>
		<comments>http://jansposts.wordpress.com/2009/12/17/ville-gets-180-mjn-funding/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 03:39:21 +0000</pubDate>
		<dc:creator>JWM</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jansposts.wordpress.com/?p=18</guid>
		<description><![CDATA[Zynga receives $180 mjn in funding<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=18&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Go the original TechCrunch article" href="//www.techcrunch.com/2009/12/16/as-zynga-closes-funding-it-answers-its-critics/" target="_blank">Word came out</a> today that Zynga (the company behind FarmVille and other social games) received $180 mjn in funding. Another hint that the social Web gaming is about to explode.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jansposts.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jansposts.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jansposts.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=18&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jansposts.wordpress.com/2009/12/17/ville-gets-180-mjn-funding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a817024b093c3392e2e1022d77c5545f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janspost</media:title>
		</media:content>
	</item>
		<item>
		<title>MMO: Monopoly City Streets</title>
		<link>http://jansposts.wordpress.com/2009/12/07/mmo-monopoly-city-streets/</link>
		<comments>http://jansposts.wordpress.com/2009/12/07/mmo-monopoly-city-streets/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 00:21:31 +0000</pubDate>
		<dc:creator>JWM</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jansposts.wordpress.com/?p=13</guid>
		<description><![CDATA[New Web based MMOs are emerging: Monopoly City Streets and Civilization Network<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=13&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I spent some time playing with the newest variation of the traditional Monopoly game. <a title="Go to Monopoly City Streets" href="http://www.monopolycitystreets.com" target="_blank">Monopoly City Streets</a> is a Web-based multi-player version of the game which uses real street names from <a title="Go to Google Maps" href="http://maps.google.com" target="_blank">Google Maps</a>. So far I&#8217;ve been able to avoid &#8216;social&#8217; games such as Farmville and Maffia Wars on Facebook, but I was really intrigued by the idea of Monopoly City Streets. What&#8217;s interesting to me is that the game includes real-life data from Google Maps. This makes the game much more attractive as people can relate to the game better. The concept of the game is simple: each player buys streets, puts real-estate on his/her streets and receives rent each day. Players can also sabotage each other, for example by destroying buildings. After signing up for the game (which is free), I found that I was not the only one interested. Many of the streets in my neighbourhood and in the place were my parents live, were already taken. It looks like the game is a big success for its developer, Hasbro.</p>
<p>Unfortunately, the game will end next week on December 9. The developers state on their <a title="Go to the developers' blog" href="http://blog.monopolycitystreets.com/" target="_blank">blog</a> that &#8220;[the] objective was to design and deliver a free game that would be a fun, interactive, promotional introduction to our new board game, MONOPOLY City.&#8221; (Monopoly City is just a new version of their traditional board game.) The success of their &#8216;promotion&#8217; came completely unexpected. It would be interesting to see how serious Hasbro will get into this on-line gaming market now that so many people have expressed interest.</p>
<p>Another game being brought on-line is <a title="Go to Civilization Network on Facebook" href="http://www.facebook.com/civnetwork?v=app_2373072738#/civnetwork?v=info" target="_blank">Civilization Network</a> which is expected to come out next year. Technically, Civilization IV already had an option to play over the Internet, but Civilization Network is very different from this, because it uses real-life data and is Web based. For Monopoly City Streets, the real-life data comes in the form of a map with street names from Google Maps; For Civilization Network, the real-life data is the social network from Facebook. Civilization Network will be built on the Facebook platform so you can play with or against your (real-life) friends on Facebook. I&#8217;ve personally been a big fan of the Civilization games and I can&#8217;t wait for Civilization Network to come out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jansposts.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jansposts.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jansposts.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=13&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jansposts.wordpress.com/2009/12/07/mmo-monopoly-city-streets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a817024b093c3392e2e1022d77c5545f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janspost</media:title>
		</media:content>
	</item>
		<item>
		<title>My Favorite PC Applications</title>
		<link>http://jansposts.wordpress.com/2009/10/25/my-favorite-pc-applications/</link>
		<comments>http://jansposts.wordpress.com/2009/10/25/my-favorite-pc-applications/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 19:50:38 +0000</pubDate>
		<dc:creator>JWM</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jansposts.wordpress.com/?p=10</guid>
		<description><![CDATA[This is just a quick list of the software I have installed. All of them can be used for free: MozyHome, Mozilla Firefox with adblock and x-marks, Mozilla Thunderbird, Sun VirtualBox, Skype, Picasa, and AVG.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=10&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is just a quick list of the software I have installed. All of them can be used for free.</p>
<p>On-line backup: <a title="MozyHome on-line backup" href="http://www.mozy.com" target="_blank">MozyHome</a></p>
<p>This service is free for up to 2 Gb automatic on-line backup and only 5$/month for unlimited! The photos, documents, and other media stored on my PC is invaluable to me. From the three aspects of security (availability, secrecy and accuracy), availability matters most for this data. I evaluated different systems for data backup and figured on-line backup is the best fit. Once it has been setup, on-line backup services provide the most robust protection against data loss. MozyHome provides one of the most competitive services for on-line backup. It&#8217;s really much easier and error proof to sign up for the service than setting up remote backups to a friend&#8217;s place or storing your data on an external hard drive or NAS at home.</p>
<p>Browser: <a title="Mozilla" href="http://www.mozilla.com" target="_blank">Mozilla FireFox</a> with <a title="Adblock Plus" href="http://adblockplus.org" target="_blank">adblock </a>and <a title="X-Marks" href="http://www.xmarks.com/" target="_blank">X-Marks</a></p>
<p>FireFox is getting more competition from Google Chrome and Apple Safari, but both lack good plug-ins. The problem is that both browsers are based of the WebKit engine, which doesn&#8217;t have a good plug-in architecture. I use FireFox with adblock and X-Marks. Adblock removes ads which improves the readability and speed to load Web pages. X-Marks synchronizes my bookmarks between the my five computers (PC, Mac and Linux). Whether I&#8217;m at work or at home, I can always access all of my bookmarks.</p>
<p>E-mail: <a title="Mozilla Thunderbird Web page" href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank">Mozilla Thunderbird</a></p>
<p>I keep all my e-mails (since 2004) in this e-mail client. I haven&#8217;t noticed any performance problems, even with about 4000 messages in my inbox. And it&#8217;s totally free.</p>
<p>Virtual Machine: <a title="Sun VirtualBox home page" href="http://www.virtualbox.org" target="_blank">Sun VirtualBox</a></p>
<p>I had a great experience with this tool. I&#8217;ve used VMWare in the past, but VirtualBox is a free alternative that works at least as well as VMWare. The feature I like most is the integration with memory paging in the host system. In older virtualization software, a chunk of memory in the host system is reserved for the guest system. With memory paging integration, the virtual machine will only take the amount of memory from the host system that is really used by the guest.</p>
<p>Communication: <a title="Skype" href="http://www.skype.com" target="_blank">Skype</a></p>
<p>Perfect, for chat and PC-to-PC or PC-to-Phone calls. I use this extensively for calls with my family in Europe. PC-to-PC is free, and PC-to-phone is charged, but much cheaper than via a regular phone line. I&#8217;m no longer using MSN Messenger, Yahoo! Messenger or Google Talk. The only problem I&#8217;m seeing with Skype now is that recent versions of the application take a while to load on start-up.</p>
<p>Photos organization, editing and publishing: <a title="Picasa" href="http://picasa.google.com" target="_blank">Picasa</a></p>
<p>This works well for me to manage my photo albums. It is easy to use and photos can be published directly to picasaweb from the application.</p>
<p>Virus scanner: <a title="AVG Free" href="http://free.avg.com" target="_blank">AVG</a></p>
<p>The free edition is good enough and seems to work well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jansposts.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jansposts.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jansposts.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jansposts.wordpress.com&amp;blog=10107802&amp;post=10&amp;subd=jansposts&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jansposts.wordpress.com/2009/10/25/my-favorite-pc-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a817024b093c3392e2e1022d77c5545f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janspost</media:title>
		</media:content>
	</item>
	</channel>
</rss>
