<?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>Blogvaria</title>
	<atom:link href="http://blog.evaria.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.evaria.com</link>
	<description>The personal pages</description>
	<lastBuildDate>Wed, 21 Jul 2010 09:31:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Introducing Teamviewer</title>
		<link>http://blog.evaria.com/2010/introducing-teamviewer/</link>
		<comments>http://blog.evaria.com/2010/introducing-teamviewer/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 09:31:41 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Internet stuff]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[Teamviewer]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1255</guid>
		<description><![CDATA[TeamViewer is a simple and fast solution for remote control, desktop sharing and file transfer that works behind any firewall and NAT proxy.]]></description>
			<content:encoded><![CDATA[<p>TeamViewer is a simple and fast solution for remote control, desktop sharing and file transfer that works behind any firewall and NAT proxy.</p>
<p><img src="http://blog.evaria.com/wp-content/uploads/2010/07/en_win_mainwindow-500x344.jpg" alt="" title="Teamviewer, main window on windows" width="500" height="344" class="alignnone size-medium wp-image-1256" /></p>
<p>To connect to another computer just run TeamViewer on both machines without the need of an installation procedure. With the first start automatic partner IDs are generated on both computers. Enter your partner&#8217;s ID into TeamViewer and the connection is established immediately. </p>
<p>With over 60 million users TeamViewer is a standard tool to give support and assistance to people in remote locations. The software can also be used for presentations, where you can show your own desktop to a partner.</p>
<p>The latest version, v5.0.8703, activates recovering Windows from standby or hibernate.</p>
<p>For more information and to download visit <a href="http://www.teamviewer.com" target="_blank" class="external">www.teamviewer.com</a>
<p class="akst_link"><a href="http://blog.evaria.com/?p=1255&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1255" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/introducing-teamviewer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Billy Connolly &#8211; Colonoscopy</title>
		<link>http://blog.evaria.com/2010/billy-connolly-colonoscopy/</link>
		<comments>http://blog.evaria.com/2010/billy-connolly-colonoscopy/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:20:57 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Billy Connolly]]></category>
		<category><![CDATA[Colonoscopy]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1253</guid>
		<description><![CDATA[Billy Connolly describing the prep for a colonoscopy&#8230;. funniest thing ever. Share This]]></description>
			<content:encoded><![CDATA[<p>Billy Connolly describing the prep for a colonoscopy&#8230;. funniest thing ever.</p>
<p><object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/BBMsPNI6EZE"> <param name="movie" value="http://www.youtube.com/v/BBMsPNI6EZE" /><param name="wmode" value="transparent" /></object>
<p class="akst_link"><a href="http://blog.evaria.com/?p=1253&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1253" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/billy-connolly-colonoscopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using PHP to print only the first sentence</title>
		<link>http://blog.evaria.com/2010/using-php-to-print-only-the-first-sentence/</link>
		<comments>http://blog.evaria.com/2010/using-php-to-print-only-the-first-sentence/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 09:48:39 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1250</guid>
		<description><![CDATA[Ever wanted to pull just the first sentence of a text and print it? If yes, this is for you. Simply add the following code (in PHP) to your page/system before the actual HTML stuff begins: < ?php function getFirstSentence($string) { // First remove unwanted spaces - not needed really $string = str_replace(" .",".",$string); $string [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to pull just the first sentence of a text and print it? If yes, this is for you.</p>
<p>Simply add the following code (in PHP) to your page/system before the actual HTML stuff begins:</p>
<pre>< ?php
function getFirstSentence($string)
{
    // First remove unwanted spaces - not needed really
    $string = str_replace(" .",".",$string);
    $string = str_replace(" ?","?",$string);
    $string = str_replace(" !","!",$string);
    // Find periods, exclamation- or questionmarks with a word before but not after.
    // Perfect if you only need/want to return the first sentence of a paragraph.
    preg_match('/^.*[^\s](\.|\?|\!)/U', $string, $match);
    return $match[0];
}
?></pre>
<p>Then call the function somewhere on the page where you want the text to appear:</p>
<pre>< ?php
    // The $string below could/should be a text string pulled from your database or similar
    $string = "Lentence oneasdasd asd asd asdasd, ?. Sentence two? Sentence three! Sentence four.";
    echo getFirstSentence($string);
?></pre>
<p>Comes in handy for search result pages, page titles and similar listings.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1250&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1250" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/using-php-to-print-only-the-first-sentence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World Cup 2010 Calendar</title>
		<link>http://blog.evaria.com/2010/world-cup-2010-calendar/</link>
		<comments>http://blog.evaria.com/2010/world-cup-2010-calendar/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 07:47:34 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1245</guid>
		<description><![CDATA[Keep yourself up-to-date with this nifty calendar showing all games and results from this years World Cup in football. Simply click the image below to open it: May the best team win &#8211; I&#8217;m betting on Spain Share This]]></description>
			<content:encoded><![CDATA[<p>Keep yourself up-to-date with this nifty calendar showing all games and results from this years World Cup in football. Simply click the image below to open it:</p>
<p><a href="http://www.marca.com/deporte/futbol/mundial/sudafrica-2010/calendario-english.html" class="external"><img src="http://blog.evaria.com/wp-content/uploads/2010/06/world_cup_2010.jpg" alt="" title="World Cup 2010 - The Calendar" width="500" height="423" class="alignnone size-full wp-image-1246" /></a></p>
<p>May the best team win &#8211; I&#8217;m betting on Spain <img src='http://blog.evaria.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="akst_link"><a href="http://blog.evaria.com/?p=1245&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1245" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/world-cup-2010-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The World’s Most Expensive Heavy Bike</title>
		<link>http://blog.evaria.com/2010/the-world%e2%80%99s-most-expensive-heavy-bike/</link>
		<comments>http://blog.evaria.com/2010/the-world%e2%80%99s-most-expensive-heavy-bike/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 13:50:12 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[bike]]></category>
		<category><![CDATA[tomahawk]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1242</guid>
		<description><![CDATA[Dodge Tomahawk is a bike which was produced by Dodge manufacturers and it was unveiled in “North American International Auto Show” in 2003. It has a very unusual design that inspire every bike admirer and especially the “speed bike lovers”. It has a 8.3 L V10 engine which can produce 500hp. It has a maximum [...]]]></description>
			<content:encoded><![CDATA[<p>Dodge Tomahawk is a bike which was  produced by Dodge manufacturers  and it was unveiled in “North American International Auto Show” in 2003. It has a very unusual design that inspire every bike admirer and especially the “speed bike lovers”. It has a 8.3 L V10 engine which can produce 500hp. It has a maximum speed of 370 miles per hour which produces torque of 712 Nm. Its front brake has 16 piston disk and back brake has 8 piston disk. The weight of bike is approximately 1500 pounds (680 kg) and has price about $ 555,000. I also like to mention its fuel capacity which is 12.3 liters.</p>
<p><a href="http://blog.evaria.com/wp-content/uploads/2010/06/4203021979_c069c10c77_o.jpg"><img src="http://blog.evaria.com/wp-content/uploads/2010/06/4203021979_c069c10c77_o-500x333.jpg" alt="" title="Dodge Tomahawk" width="500" height="333" class="alignnone size-medium wp-image-1243" /></a></p>
<p>More info and photos <a href="http://www.pickchur.com/2009/12/the-worlds-most-expensive-heavy-bike/" target="_blank" class="external">here</a>.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1242&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1242" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/the-world%e2%80%99s-most-expensive-heavy-bike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rachmaninov had big Hands</title>
		<link>http://blog.evaria.com/2010/rachmaninov-had-big-hands/</link>
		<comments>http://blog.evaria.com/2010/rachmaninov-had-big-hands/#comments</comments>
		<pubDate>Fri, 14 May 2010 12:18:41 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Music & Hi-Fi]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1240</guid>
		<description><![CDATA[Great little music show. Make sure you watch all &#8211; have a great weekend Share This]]></description>
			<content:encoded><![CDATA[<p>Great little music show. Make sure you watch all &#8211; have a great weekend <img src='http://blog.evaria.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/ifKKlhYF53w"> <param name="movie" value="http://www.youtube.com/v/ifKKlhYF53w" /><param name="wmode" value="transparent" /></object>
<p class="akst_link"><a href="http://blog.evaria.com/?p=1240&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1240" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/rachmaninov-had-big-hands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove the active/focus borders</title>
		<link>http://blog.evaria.com/2010/how-to-remove-the-activefocus-borders/</link>
		<comments>http://blog.evaria.com/2010/how-to-remove-the-activefocus-borders/#comments</comments>
		<pubDate>Mon, 03 May 2010 17:26:56 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[CSS & Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[active border]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1238</guid>
		<description><![CDATA[I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. Have a look at CSSplay for more examples and proper CSS code fix related to this. A few quick solutions For those of us using the jQuery Java framework the &#8220;solution&#8221; is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. <a href="http://www.cssplay.co.uk/menu/nodots.html" target="_blank" class="external">Have a look at CSSplay</a> for more examples and proper CSS code fix related to this. </p>
<h4>A few quick solutions</h4>
<p>For those of us using the jQuery Java framework the &#8220;solution&#8221; is incredibly simple. Just call the following function in your header and all dotted borders are gone:</p>
<pre>jQuery("a").focus(function(){this.blur()});</pre>
<p>Using CSS it&#8217;s almost as simple (at least for all browsers except IE):</p>
<pre>a:focus {outline-style: none;} </pre>
<p>Using basic JavaScript the following should do the trick:</p>
<pre>for(var i=0;elm=document.links[i];i++)
{
elm.onfocus=function(){elm.blur();};
}</pre>
<p>Some would probably say that this shouldn&#8217;t be done because the active/focus dotted border is there to show visitors who are using tabbed link selection which link is selected. But when we are using CSS we can style our own active/focus state and in this case the dotted border is not so necessary. I&#8217;ll appreciate your take on this as I&#8217;ve debated this &#8220;issue&#8221; with some of my clients on several occasions.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1238&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1238" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/how-to-remove-the-activefocus-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The new Apple iPhone 4G</title>
		<link>http://blog.evaria.com/2010/the-new-apple-iphone-4g/</link>
		<comments>http://blog.evaria.com/2010/the-new-apple-iphone-4g/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 12:34:14 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[4G]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1236</guid>
		<description><![CDATA[Gizmodo has released the following video showing the forthcoming Apple iPhone 4G after a series of events&#8230; I think it&#8217;s time I also get one now Share This]]></description>
			<content:encoded><![CDATA[<p>Gizmodo has released the following video showing the forthcoming Apple iPhone 4G after a <a href="http://linkpuls.idg.no/go/e/page_col-AC_news/http://gizmodo.com/5520438/how-apple-lost-the-next-iphone" target="_blank" class="external">series</a> <a href="http://linkpuls.idg.no/go/e/page_col-AC_news/http://gizmodo.com/5520164/this-is-apples-next-iphone" target="_blank" class="external">of</a> <a href="http://linkpuls.idg.no/go/e/page_col-AC_news/http://gizmodo.com/5520479/a-letter-apple-wants-its-secret-iphone-back" target="_blank" class="external">events</a>&#8230;</p>
<p><object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/nxbHCR-W8zc&amp;feature=player_embedded"> <param name="movie" value="http://www.youtube.com/v/nxbHCR-W8zc&amp;feature=player_embedded" /><param name="wmode" value="transparent" /></object></p>
<p>I think it&#8217;s time I also get one now <img src='http://blog.evaria.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<p class="akst_link"><a href="http://blog.evaria.com/?p=1236&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1236" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/the-new-apple-iphone-4g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp San Francisco 2010</title>
		<link>http://blog.evaria.com/2010/wordcamp-san-francisco-2010/</link>
		<comments>http://blog.evaria.com/2010/wordcamp-san-francisco-2010/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 08:01:09 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1234</guid>
		<description><![CDATA[It&#8217;s just been announced that a week from today, on May 1st, hundreds of WordPress users, developers, designers and general enthusiasts will descend upon San Francisco for the 4th annual WordCamp SF. Since that first WordCamp in 2006, back when WordPress was on version 2.0 (Duke), the number of people using WordPress to power their [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s <a href="http://wordpress.org/development/2010/04/wordcampsf-2010/" class="external">just been announced</a> that a week from today, on May 1st, hundreds of WordPress users, developers,  designers and general enthusiasts will descend upon San Francisco for  the 4th annual <a href="http://2010.sf.wordcamp.org/" class="external">WordCamp SF</a>.  Since that first WordCamp in 2006, back when WordPress was on version  2.0 (Duke), the number of people using WordPress to power their web  publishing — from personal blogs to large-scale commercial sites — has  grown by millions. It’s no wonder this year’s event is going to be so  great.</p>
<p>Those who can make it to San Francisco may also get a testdrive of the <a href="http://wordpress.org/development/2010/04/coming-up-on-beta-2-sprint/" class="external">forthcoming WordPress 3.0</a> which should be nothing less than amazing after all bugs are eliminated&#8230;
<p class="akst_link"><a href="http://blog.evaria.com/?p=1234&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1234" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/wordcamp-san-francisco-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pad-Dock iPhone to Tablet Converter</title>
		<link>http://blog.evaria.com/2010/pad-dock-iphone-to-tablet-converter/</link>
		<comments>http://blog.evaria.com/2010/pad-dock-iphone-to-tablet-converter/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 13:07:03 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1230</guid>
		<description><![CDATA[Fancy an iPad but can&#8217;t stretch the budget quite that far? Well why not get yourself a Pad-Dock? It&#8217;s a portable dock for your iPhone that magically turns it into an iPad! Well, maybe not magically, but it certainly is clever. Using a touch-screen magnifier, your iPhone screen is enlarged to the exact dimensions of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float:right;" class="alignright size-full wp-image-1231" title="pad-dock_main" src="http://blog.evaria.com/wp-content/uploads/2010/04/pad-dock_main.jpg" alt="" width="350" height="300" />Fancy an iPad but can&#8217;t stretch the budget quite that far? Well why not  get yourself a Pad-Dock? It&#8217;s a portable dock for your iPhone that  magically turns it into an iPad! Well, maybe not magically, but it  certainly is clever.</p>
<p>Using a touch-screen magnifier, your iPhone screen  is enlarged to the exact dimensions of an iPad. Most of the features  that the iPad boasts about are on the iPhone anyway, so it only makes  good sense to simply enlarge it. And, unlike the iPad, you can actually  answer and make calls. Technology, eh?</p>
<p><a href="http://www.iwantoneofthose.com/pad-dock/index.html" target="_blank" class="external">For just £89.99 &#8211; buy now!</a></p>
<p>P.S. Best april fools joke I&#8217;ve seen today anyway <img src='http://blog.evaria.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Feel free to share other april fool links below.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1230&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1230" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/pad-dock-iphone-to-tablet-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Clonezilla</title>
		<link>http://blog.evaria.com/2010/introducing-clonezilla/</link>
		<comments>http://blog.evaria.com/2010/introducing-clonezilla/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 10:26:11 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[clone disks]]></category>
		<category><![CDATA[clonezilla]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1228</guid>
		<description><![CDATA[You&#8217;re probably familiar with the popular proprietary commercial package Norton Ghost®, and its OpenSource counterpart, Partition Image. The problem with these software packages is that it takes a lot of time to massively clone systems to many computers. You&#8217;ve probably also heard of Symantec&#8217;s solution to this problem, Symantec Ghost Corporate Edition® with multicasting. Well, [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re probably familiar with the popular proprietary commercial package  <a href="http://www.ghost.com/" target="_blank" class="external">Norton Ghost®</a>, and  its OpenSource counterpart, <a href="http://www.partimage.org/" target="_blank" class="external">Partition Image</a>. The problem with these software  packages is that it takes a lot of time to massively clone systems to  many computers. You&#8217;ve probably also heard of Symantec&#8217;s solution to  this problem, <a href="http://www.norton.com/" target="_blank" class="external">Symantec  Ghost Corporate Edition®</a> with multicasting. Well, now there is an  OpenSource clone system (OCS) solution called Clonezilla with unicasting  and multicasting!</p>
<h3>Features</h3>
<ul>
<li>Free (GPL) Software.</li>
<li>Filesystem supported: (1) ext2, ext3, <span style="color: red;">ext4</span>,  reiserfs, reiser4, xfs, jfs of GNU/Linux, (2) FAT, NTFS of MS Windows,  (3) <span style="color: red;">HFS+</span> of Mac OS, (4) <span style="color: red;">UFS</span> of FreeBSD, NetBSD, and OpenBSD, and (5) <span style="color: red;">VMFS</span> of VMWare ESX. Therefore you can clone GNU/Linux, MS windows,  Intel-based Mac OS, and FreeBSD, NetBSD, and OpenBSD, no matter it&#8217;s  32-bit (x86) or 64-bit (x86-64) OS. For these file systems, only used  blocks in partition are saved and restored. For unsupported file system,  sector-to-sector copy is done by dd in Clonezilla.</li>
<li><span style="color: red;">LVM2</span> (LVM version 1 is not) under  GNU/Linux is supported.</li>
<li>Grub (version 1 and <span style="color: red;">version 2</span>) is  supported.</li>
<li><span style="color: red;">Multicast</span> is supported in Clonezilla  SE, which is suitable for massively clone. You can also remotely use it  to save or restore a bunch of computers if PXE and Wake-on-LAN are  supported in your clients.</li>
<li>Based on <a href="http://partclone.org/" target="_blank" class="external">partclone</a>,  <a href="http://www.partimage.org/" target="_blank" class="external"> Partimage</a>, <a href="http://www.linux-ntfs.org/" target="_blank" class="external">ntfsclone</a>, and dd  to clone partition. However, clonezilla, containing some other programs,  can save and restore not only partitions, but also a whole disk.</li>
<li>By using another free software <a href="http://drbl-winroll.sourceforge.net/" class="external">drbl-winroll</a>, which is  also developed by us, the hostname, group, and SID of cloned MS windows  machine can be automatically changed.</li>
</ul>
<p>For more information and to download your free copy <a href="http://clonezilla.org/" target="_blank" class="external">please visit the project website</a>.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1228&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1228" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/introducing-clonezilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Un-hackable USB drive</title>
		<link>http://blog.evaria.com/2010/un-hackable-usb-drive/</link>
		<comments>http://blog.evaria.com/2010/un-hackable-usb-drive/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:54:07 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[drive]]></category>
		<category><![CDATA[laser]]></category>
		<category><![CDATA[Secure Pro USB]]></category>
		<category><![CDATA[swiss knife]]></category>
		<category><![CDATA[un-hackable]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1219</guid>
		<description><![CDATA[Victorinox on Friday expanded its line of USB drives with the Secure Pro. The new device integrates several levels of security, with data protected using 256-bit AES encryption. Users can also take advantage of a fingerprint scanner, built directly onto the removable USB stick. The fingerprint identification components are even paired with a heat sensor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.swissarmy.com/" class="external">Victorinox</a> on Friday expanded its line of USB drives with the Secure Pro. The new device integrates several levels of security, with data protected using 256-bit AES encryption. Users can also take advantage of a fingerprint scanner, built directly onto the removable USB stick. The fingerprint identification components are even paired with a heat sensor that will not provide access to the data if the finger is not within a range of typical body temperature (e.g. if it had been cut off for example &#8211; uuuh).</p>
<p><img src="http://blog.evaria.com/wp-content/uploads/2010/03/secure-pro-usb.jpg" alt="" title="Secure pro usb" width="500" height="321" class="alignnone size-full wp-image-1220" /></p>
<p>The encryption technology is based on MKI&#8217;s Schnuffi platform, which is claimed to help prevent unauthorized access by integrating all of the coding and security steps onto a single chip. Attempts to forcibly open the device triggers a self-destruct mechanism which is said to irreversibly burn the CPU and memory chip!</p>
<p>Aside from the security features, the Secure Pro still integrates a basic set of Swiss Army tools. Users can deploy the integrated knife, scissors, or nail file with a screwdriver point. The housing also features a laser pointer and a retractable ball-point pen.</p>
<p>The Secure Pro is currently available with storage capacities between 8GB and 32GB, with pricing ranging from £50 (~$75 USD) to £180 (~$265 USD). A real must-have for all us gadget freaks <img src='http://blog.evaria.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<p class="akst_link"><a href="http://blog.evaria.com/?p=1219&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1219" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/un-hackable-usb-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung ships 32GB server memory</title>
		<link>http://blog.evaria.com/2010/samsung-ships-32gb-server-memory/</link>
		<comments>http://blog.evaria.com/2010/samsung-ships-32gb-server-memory/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 13:25:57 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[32GB]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[server memory]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1224</guid>
		<description><![CDATA[Samsung First to Begin Shipping 40nm-class, 32-Gigabyte Memory Module for Server Applications. SEOUL, Korea &#8211; March 29, 2010 – Samsung Electronics Co., Ltd., the world leader in advanced memory technology, announced today that it has begun shipping samples of the industry’s highest-density memory module for server systems. The 32 gigabyte (GB) module has been designed [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Samsung First to Begin Shipping 40nm-class, 32-Gigabyte Memory Module for Server Applications.</strong></p>
<p><img src="http://blog.evaria.com/wp-content/uploads/2010/03/20100329_1m01-500x329.jpg" alt="" title="20100329_1m01" width="500" height="329" class="alignnone size-medium wp-image-1225" /></p>
<p>SEOUL, Korea &#8211; March 29, 2010 – Samsung Electronics Co., Ltd., the world leader in advanced memory technology, <a href="http://www.samsung.com/us/aboutsamsung/news/newsIrRead.do?news_ctgry=irnewsrelease&#038;news_seq=18399" class="external">announced today that it has begun shipping samples of the industry’s highest-density memory module for server systems</a>. The 32 gigabyte (GB) module has been designed for use in advanced servers, which require high-density and high-performance features at low-power consumption levels.</p>
<p>Samsung is using the industries highest-density monolithic DDR3 device – a 40-nanometer (nm) class, four gigabit (Gb) DDR3 chip – as the building block for the new 32GB module. This comes just one year after the company announced its 50nm-class 2Gb based, 16GB registered dual inline memory module (RDIMM) last March.</p>
<p><span id="more-1224"></span></p>
<p>The highly-efficient 32GB RDIMM consists of 36 dual-die 40nm-class 4Gb DDR3 chips that can perform at equal or greater levels to a 40nm-based 16GB RDIMM with no increase in power consumption.</p>
<p>By equipping a dual CPU, two-way server with 32GB modules, a server system can have up to 384GB of memory. This allows for doubling the previously largest density of 192GBs per server with a power increase of less than five percent over that needed for a 16GB module-based system.</p>
<p>In addition, replacing 12 DRAM modules of 16GB density with just six 32GB modules would achieve a 192GB total density, while allowing the DRAM operating speed in a two-way server system to rise by 33 percent from 800 megabit per second (Mbps) to 1,066Mbps, as power is cut by 40 percent.</p>
<p>In high-performance, four-way servers using 16GB modules, one terabyte of DRAM would be commonplace.By using 32GB RDIMMs, Samsung is moving toward providing four-way servers with 2TB of DRAM each, a migration that it believes will spur introduction of diverse software and a broader scale of server applications.</p>
<p>Mass production of the 32GB RDIMM is slated to begin next month.</p>
<p>For more information about Samsung Green DDR3, visit <a href="http://www.samsung.com/ddr3" target="_blank" class="external">www.samsung.com/ddr3</a>
<p class="akst_link"><a href="http://blog.evaria.com/?p=1224&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1224" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/samsung-ships-32gb-server-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Vulnerabilities found in Apache</title>
		<link>http://blog.evaria.com/2010/multiple-vulnerabilities-found-in-apache/</link>
		<comments>http://blog.evaria.com/2010/multiple-vulnerabilities-found-in-apache/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:30:18 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Internet stuff]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1216</guid>
		<description><![CDATA[Some vulnerabilities have been reported in Apache HTTP Server, which can be exploited by malicious people to gain access to potentially sensitive information, cause a DoS (Denial of Service) and potentially compromise a vulnerable system. 1) The &#8220;ap_proxy_ajp_request()&#8221; function in modules/proxy/mod_proxy_ajp.c of the mod_proxy_ajp module returns the &#8220;HTTP_INTERNAL_SERVER_ERROR&#8221; error code when processing certain malformed requests. [...]]]></description>
			<content:encoded><![CDATA[<p>Some <a href="http://httpd.apache.org/security/vulnerabilities_22.html" class="external">vulnerabilities have been reported in Apache HTTP Server</a>, which can be exploited by malicious people to gain access to potentially sensitive information, cause a DoS (Denial of Service) and potentially compromise a vulnerable system.</p>
<p>1) The &#8220;ap_proxy_ajp_request()&#8221; function in modules/proxy/mod_proxy_ajp.c of the mod_proxy_ajp module returns the &#8220;HTTP_INTERNAL_SERVER_ERROR&#8221; error code when processing certain malformed requests. This can be exploited to put the backend server into an error state until the retry timeout expired by sending specially crafted requests.</p>
<p>2) The mod_isapi module unloads ISAPI modules before the request processing is complete, potentially leaving orphaned callback pointers behind. This can be exploited by sending a specially crafted request followed by a reset packet.</p>
<p>Successful exploitation may allow the execution of arbitrary code with SYSTEM privileges on Windows systems.</p>
<p>3) An error exists within the header handling when processing subrequests, which can lead to sensitive information from a request being handled by the wrong thread if a multi-threaded Multi-Processing Module (MPM) is used.</p>
<p>To protect yourself and your server please <a href="http://httpd.apache.org/download.cgi" class="external">upgrade to version 2.2.15</a> as soon as you can.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1216&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1216" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/multiple-vulnerabilities-found-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 &amp; Office 2010 Launch</title>
		<link>http://blog.evaria.com/2010/sharepoint-2010-office-2010-launch/</link>
		<comments>http://blog.evaria.com/2010/sharepoint-2010-office-2010-launch/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 14:24:19 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Office 2010]]></category>

		<guid isPermaLink="false">http://blog.evaria.com/?p=1213</guid>
		<description><![CDATA[Today, Microsoft officially announced that May 12th, 2010, is the launch date for SharePoint 2010 &#038; Office 2010. In addition, they announced the intent to RTM (Release to Manufacturing) this April 2010. With Microsoft Office 2010, you can review and do minor editing on Word, Excel, PowerPoint, and OneNote 2010 documents, virtually anywhere, by using [...]]]></description>
			<content:encoded><![CDATA[<p>Today, Microsoft officially announced that May 12th, 2010, is the launch date for SharePoint 2010 &#038; Office 2010. In addition, they announced the intent to RTM (Release to Manufacturing) this April 2010. </p>
<p><img src="http://blog.evaria.com/wp-content/uploads/2010/03/office_2010_splash-500x258.jpg" alt="" title="Office 2010 Launch in May 2010" width="500" height="258" class="alignnone size-medium wp-image-1214" /></p>
<p>With Microsoft Office 2010, you can review and do minor editing on Word, Excel, PowerPoint, and OneNote 2010 documents, virtually anywhere, by using Office Web Apps from more locations on more devices.</p>
<p>Keep your people productive on the go. Office 2010 lets you access and edit documents stored on a server while you’re offline with SharePoint Workspace 2010, and then automatically syncs these changes when you’re back online. So you stay productive while on the go.</p>
<p>Support your employees, regardless of location or device. Office 2010 saves you time and money by helping you deploy and manage Office on the PC, the smartphone, and the Web, all from within familiar Microsoft System Center tools.</p>
<p>See <a href="http://www.microsoft.com/office/2010/en/default.aspx" class="external">what&#8217;s new in your favourite Office applications</a>.</p>
<p>To try it out already <a href="http://us2.office2010beta.microsoft.com/product.aspx?sku=10199928&#038;culture=en-US" class="external">go here</a>.
<p class="akst_link"><a href="http://blog.evaria.com/?p=1213&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_1213" class="akst_share_link" rel="nofollow">Share This</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evaria.com/2010/sharepoint-2010-office-2010-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
