<?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>www.netsi.dk &#187; netsi</title>
	<atom:link href="http://www.netsi.dk/wordpress/index.php/author/netsi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.netsi.dk/wordpress</link>
	<description>&#34;The internet is just a layer on the real world&#34; (don&#039;t forget that!)</description>
	<lastBuildDate>Sat, 04 Sep 2010 10:53:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The &#8220;==&#8221; and &#8220;===&#8221; are not equal</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 10:42:04 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[learn javascript]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/</guid>
		<description><![CDATA[Even if I have been programming javascript for many years, it is never too late to learn more. Should I be embarrassed not to know every aspect of javascript? Perhaps, but I want to move on here. I even want to write about it so that You and others will also get wiser.
Comparing objects and values in javascript
Here I will go through 3 different ways of comparing values, not all [...]]]></description>
			<content:encoded><![CDATA[<p><em>Even if I have been programming javascript for many years, it is never too late to learn more. Should I be embarrassed not to know every aspect of javascript? Perhaps, but I want to move on here. I even want to write about it so that You and others will also get wiser.</em></p>
<h3>Comparing objects and values in javascript</h3>
<p>Here I will go through 3 different ways of comparing values, not all of them a good idea.</p>
<h5>The first &quot;=&quot;, not a comparison!</h5>
<p>The first time you start coding javascript and need to compare for instance a variable with a value you probertly make a mistake of assigning a value instead of comparing, and your code will fail to work correct. </p>
<pre name="code" class="javascript">var error = true;
if (error='true') {
  // This code will always be executed as &quot;=&quot; assigns a value!
  // And after the code has execuded the value of &quot;error&quot; will be 'true' (a string)
} else {
  // It will never enter this area
}</pre>
<h5>Equal &quot;==&quot;, a &quot;soft&quot; comparison</h5>
<p>This comparison will do conversion of the values into types which can be compared, so it will bear over for types which are not the same. An example would be:</p>
<pre name="code" class="javascript">var error = true;
if (error=='true') {
  // This code will be executed as the boolean value of &quot;error&quot; will be
  // converted into a string and then compared
} else {
  // Not executed
}</pre>
<h5>Strict equal &quot;===&quot;, a &quot;strict&quot; comparison</h5>
<p>With this comparison you will be sure that the to parts in the comparison have 100% equal values.</p>
<pre name="code" class="javascript">var error = true;
if (error==='true') {
  // This code will not be executed as the type is not the same
} else {
  // This area will be executed as the comparison evaluates to false.
}</pre>
<h5>Conclusion</h5>
<p>As various ways of doing comparison exists you cannot say that any of them is <b>the perfect comparison option</b>. I hope that you have learned a litle more on the aspect of doing comparison in javascript.</p>
<h6>Links</h6>
<ul>
<li><a title="Read the documentation of javascript Comparison Operators at Mozilla" href="https://developer.mozilla.org/en/JavaScript/Reference/Operators/Comparison_Operators">Comparison operators at the javascript reference at Mozilla</a> </li>
</ul>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/09/04/the-and-are-not-equal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag&#8217;n&#8217;drop upload images to your Flickr Gallery using Flickr uploader</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 21:11:34 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Google Picasa]]></category>
		<category><![CDATA[photoes]]></category>
		<category><![CDATA[sharing images]]></category>
		<category><![CDATA[yahoo flickr]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/</guid>
		<description><![CDATA[Every time I copy images/photoes from my Canon IXUS 970 IX camera to my computer I use Google Picasa&#160; &#8211; it works perfect for me, especially with the many options to organise, tag and manipulate the images in a very nice way. When it comes to sharing images/photoes however I have a feeling that Yahoo flickr seems to be a more “serious” site. Here I will tell you about how [...]]]></description>
			<content:encoded><![CDATA[<p><em>Every time I copy images/photoes from my Canon IXUS 970 IX camera to my computer I use Google Picasa&#160; &#8211; it works perfect for me, especially with the many options to organise, tag and manipulate the images in a very nice way. When it comes to sharing images/photoes however I have a feeling that <strong>Yahoo flickr</strong> seems to be a more “serious” site. Here I will tell you about how you can easily copy photoes from “one world” (Google Picasa) to “the other” (Yahoo Flickr).</em></p>
<h3>How do I copy my photoes from Google Picasa to Flickr?</h3>
<p>I asked my self this question, and googling a litle lead me to a soloution: Flickr Uploader application for windows. It is free (ofcause) and works very easy! The reason why you should consider this at all is if you like for instance the way you can tag you photoes in Google Picasa – and when you then share your photoes you will have such info as tags, geo tags, descriptions inside the photoes for other people to enjoy.</p>
<h5>Simple description (see screenshoots below)</h5>
<ul>
<li>You ofcause need to have a (free) Yahoo identity/account and when you do you can download from <a title="http://www.flickr.com/tools/" href="http://www.flickr.com/tools/">http://www.flickr.com/tools/</a></li>
<li>Having downloaded and installed Flickr Uploader you can start up your Google Picasa application</li>
<li>Now you can actually just <strong>drag’n’drop</strong> directly from Google Picasa to Yahoo flickr uploader! Very easy!</li>
<li>When you are done – click upload inside Yahoo flickr uploader! The rest is easy!</li>
</ul>
<h5>Nothing is perfect…</h5>
<p>I must however admit that not every piece of information survives the transfer between Google Picasa and Yahoo flickr gallery… I was suppriced to discover that apperently the geotags from Google Picasa was not picked up by Flickr…! I would love to hear from you, if you can explain this to me…</p>
<p>Anyway – try it out, and if you feel like looking at my Flickr site you find it here:</p>
<p><a title="http://www.flickr.com/photos/38942406@N00/sets/72157624659090233/" href="http://www.flickr.com/photos/38942406@N00/sets/72157624659090233/">http://www.flickr.com/photos/38942406@N00/sets/72157624659090233/</a></p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image3.png" rel="lightbox[338]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="My photoes inside Google Picasa" border="0" alt="My photoes inside Google Picasa" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb3.png" width="640" height="413" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image4.png" rel="lightbox[338]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Flickr uploader uploading images to my Flickr account" border="0" alt="Flickr uploader uploading images to my Flickr account" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb4.png" width="640" height="265" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image5.png" rel="lightbox[338]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Flickr offers you to put some information to be shown along the image" border="0" alt="Flickr offers you to put some information to be shown along the image" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb5.png" width="640" height="470" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image6.png" rel="lightbox[338]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="One of the uploaded images - but heh! Where is the geotagging? :-(" border="0" alt="One of the uploaded images - but heh! Where is the geotagging? :-(" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb6.png" width="640" height="470" /></a> </p>
<h5>Links</h5>
<ul>
<li><a title="Getting your stuff onto Flickr - There are loads of tools to upload your photos and videos" href="http://www.flickr.com/tools/" target="_blank">Yahoo Flickr Uploader</a></li>
<li><a title="A must have application to help you organize your photoes" href="http://picasa.google.com/" target="_blank">Google Picasa applicaiton</a></li>
<li><a title="Macro recordings done by Sten Hougaard" href="http://www.flickr.com/photos/38942406@N00/sets/72157624659090233/" target="_blank">My Flickr gallery</a></li>
</ul>
<h5>Previous Google Picasa posts</h5>
<ul>
<li><a title="Merging the information about friends on facebook to your Picasa contact database" href="http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/">Merging the information about friends on facebook to your Picasa contact database</a></li>
<li><a title="Use Google Picasa to generate cool webgalleries using templates…" href="http://www.netsi.dk/wordpress/index.php/2010/05/12/use-google-picasa-to-generate-cool-webgalleries-using-templates/">Use Google Picasa to generate cool webgalleries using templates…</a></li>
<li><a title="Netsi Cycle Template for Google Picasa" href="http://www.netsi.dk/wordpress/index.php/2010/05/14/netsi-cycle-template-for-google-picasa/">Netsi Cycle Template for Google Picasa</a></li>
<li><a title="Read about Face detection (in Google Picasa 3.6)" href="http://www.netsi.dk/wordpress/index.php/2010/01/02/face-detection-in-google-picasa-3-6/">Face detection in Google Picasa 3.6</a></li>
</ul>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/08/30/dragndrop-upload-images-to-your-flickr-gallery-using-flickr-uploader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Visual Studio Snippets ready for download on my DropBox folder</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 10:52:35 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[XSLT]]></category>
		<category><![CDATA[Microsoft Visual studio]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/</guid>
		<description><![CDATA[I will be sharing future Snippets for use in Microsoft Visual Studio on my public dropbox here: http://db.tt/3p5Sav
At the time of writing only one is out there – it is “Surround in CDATA”. You may also read about that particular one here: Article on Stack Overflow: Can I define custom “surround with” templates in Visual Studio 2008?
Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>I will be sharing future Snippets for use in Microsoft Visual Studio on my public dropbox here: <a title="http://db.tt/3p5Sav" href="http://db.tt/3p5Sav">http://db.tt/3p5Sav</a></p>
<p>At the time of writing only one is out there – it is “Surround in CDATA”. You may also read about that particular one here: <a title="Article on Stack Overflow: Can I define custom “surround with” templates in Visual Studio 2008?" href="http://bit.ly/9JinuY" target="_blank">Article on Stack Overflow: Can I define custom “surround with” templates in Visual Studio 2008?</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/08/05/find-visual-studio-snippets-ready-for-download-on-my-dropbox-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The getimage.aspx of Dynamicweb CMS finally can crop as I always wanted it to!</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 12:14:44 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[getimage.aspx]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/</guid>
		<description><![CDATA[Being a heavy user of Dynamicweb CMS I am very happy to discover that the latest version of the software has made the utility for cropping/scaling images work as I (IMHO) always have wished it to do! It is now possibel to specify both with and height and having the image fit inside the area keeping the aspect ratio of the image! Hurra!
You do know getimage.aspx, right?
When you have a [...]]]></description>
			<content:encoded><![CDATA[<p><em>Being a heavy user of </em><a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank"><em>Dynamicweb CMS</em></a><em> I am very happy to discover that the latest version of the software has made the utility for cropping/scaling images work as I (IMHO) always have wished it to do! It is now possibel to specify <strong>both with and height</strong> and having the image fit inside the area keeping the aspect ratio of the image! Hurra!</em></p>
<h3>You do know getimage.aspx, right?</h3>
<p>When you have a design to implement using <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> and you have a list of items with images – say thumb images, <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb</a> offers a nice utility which can ensure that the thumbs will have a given dimension. The images are cached on the server, so it is not using unnessesary resources of the server if you use the utility.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image1.png" rel="lightbox[326]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="The getimage.aspx utility of Dynamicweb CMS" border="0" alt="The getimage.aspx utility of Dynamicweb CMS" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb1.png" width="642" height="393" /></a> </p>
<p>The utility can be found on any <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb</a> soloution here:</p>
<p><code>http://[hostname]/Admin/Public/getImage.aspx</code></p>
<p>Enter the URL above and you will get a nice wizard which will dynamically produce what you need inside your templates. You can see the wizard above.</p>
<h3>What makes things work for my needs!</h3>
<p>To ensure that an image fits inside a <strong>container with known dimentions</strong> you need to:</p>
<ul>
<li>Enter the dimensions (width/height) </li>
<li>Select the cropping offset: “Keep aspect ratio” </li>
</ul>
<p>Try the utility by entering a path to an image – you have to start from “/files…”. When that is done, simply press OK and you will get a preview under the “Results” tab, as you can see below.</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image2.png" rel="lightbox[326]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="The Results tab of the getimage.aspx Dynamicweb utility" border="0" alt="The Results tab of the getimage.aspx Dynamicweb utility" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb2.png" width="642" height="393" /></a> </p>
</p>
<h3>Using the Image URL in your templates</h3>
<p>When you are happy with the results you should copy the “Image URL” path (highlighed with blue in the above image). The URL for my example is:</p>
<p>/admin/public/getimage.aspx?Image=/files/billeder/300&#215;80.jpg&amp;Format=jpg&amp;Width=200&amp;Height=100&amp;Crop=5</p>
<p>If I were to use this path inside a template, I simply would replace the “/files/billeder/300&#215;80.jpg” with a template tag like “<code>&lt;!--@Ecom:Product.ImageLarge.Clean—-&gt;</code>”.</p>
<p>I hope this has helped you! I really find this improvement nice! </p>
<h6>links</h6>
<ul>
<li><a title="Still a nice site for documentation of templates which can be used inside Dynamicweb CMS" href="http://templates.dynamicweb.dk" target="_blank">Dynamicweb Templates</a> </li>
<li><a title="Finally webdav access to dynamicweb websites" href="http://www.netsi.dk/wordpress/index.php/2009/12/17/finally-webdav-access-to-dynamicweb-websites/" target="_blank">Finally webdav access to dynamicweb websites</a> </li>
<li><a title="(en-US) Release Notes, Dynamicweb 7.1.pdf" href="http://engage.dynamicweb-cms.com/Admin/Public/DWSDownload.aspx?File=Files%2fFiler%2fDocumentation%2fRelease%2fDynamicweb+7.1%2f(en-US)+Release+Notes%2c+Dynamicweb+7.1.pdf" target="_blank">(en-US) Release Notes, Dynamicweb 7.1.pdf</a> </li>
</ul>
<p>&#160;</p>
<div class="FBILike"><iframe style="border-bottom-style: none; border-right-style: none; width: 480px; border-top-style: none; height: 80px; border-left-style: none; overflow: hidden" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F08%2F02%2Fthe-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to%2F&amp;layout=standard&amp;show_faces=true&amp;width=480&amp;action=like&amp;font=lucida+grande&amp;colorscheme=dark&amp;height=80" frameborder="0" allowtransparency="allowtransparency" scrolling="no"></iframe></div>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/08/02/the-getimage-aspx-of-dynamicweb-cms-finally-can-crop-as-i-always-wanted-it-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merging the information about friends on facebook to your Picasa contact database</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 10:36:26 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Picasa]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[tagging images]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/</guid>
		<description><![CDATA[If you use Google Picasa to handle your images you might have spend time tagging information about people on the images. Today I discovered a nice free utility which can merge information about your friends from Facebook with the contact data keept within Google Picasa, giving you more correct tagging information inside your local Picasa albums.
Go download the utility: “Facebook Contacts for Picasa”
You need only do a few simple things [...]]]></description>
			<content:encoded><![CDATA[<p><em>If you use Google Picasa to handle your images you might have spend time tagging information about people on the images. Today I discovered a nice free utility which can merge information about your friends from Facebook with the contact data keept within Google Picasa, giving you more correct tagging information inside your local Picasa albums.</em></p>
<h3>Go download the utility: “Facebook Contacts for Picasa”</h3>
<p>You need only do a few simple things to do the merging job. First of all you will need to download the “<a title="Link to the java application which can merge your Facebook friends information with the information keept inside Google Picasa" href="http://sourceforge.net/projects/fcontactspicasa/files/0.1/FacebookContactsForPicasa_win32.jar/download" target="_blank">Facebook Contacts for Picasa</a>” from SourceForge.</p>
<h3>Run the utility!</h3>
<p>When you have finished downloading the utility, simply run it. You will get the screen below:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image.png" rel="lightbox[319]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/08/image_thumb.png" width="488" height="253" /></a> </p>
<h3>The steps to follow inside the utility</h3>
<ul>
<li>Get the facebook contacts simply by clicking the button “Get Facebook Contacts” and identify yourself (log in – may be nessesary).      <br />That will get the information about your friends from facebook and put them in the list to the left (blured in the image above). </li>
<li>You then need to locate the “contacts.xml” which Picasa uses. It should be somewhere within “<strong>Local Settings/Application Data/Google/Picasa2</strong>”. I found mine here: “<em>C:\Users\Sten\AppData\Local\Google\Picasa2\contacts\contacts.xml</em>”. Be sure to make a backup of that file – the contacts.xml file. </li>
<li>Press the “Get Picasa Contacts” to fill out the dropdown box to the right of “Merge With”. That dropdown will contain the local contacts which you may allready have created. </li>
<li>Manually go through the list to the left – the one from facebook. The Utility may or may not have found a match. So I suggest that you go through them. This feature has however a strange behaviour! It seems that after each time you manually select a contact from the “Merge with” list, you have to save it… Hmm… It however seems to work, though not as I expected.
<p>I expected that going through the list and choosing which person from facebook to merge to which Picasa contact, the relation was remembered and all of the relations then saved after I had finished them all and pressed save… </li>
</ul>
<p>You are now ready to Save the data to the Google Picasa contacts.xml file! But as I suggested above, do make a copy of the contacts.xml before saving!</p>
<p>If everything went okay you should now have more accurate information inside your local Google Picasa gallery! You can now tag people using those data inside your picasa library.</p>
<h6>Links</h6>
<ul>
<li><a href="http://www.netsi.dk/wordpress/index.php/2010/05/12/use-google-picasa-to-generate-cool-webgalleries-using-templates/" target="_blank">Use Google Picasa to generate webgalleries using templates</a> </li>
<li><a title="Using Google Picasa to generate cool webgalleries" href="http://www.netsi.dk/wordpress/index.php/2010/05/12/use-google-picasa-to-generate-cool-webgalleries-using-templates/" target="_blank">Using Google Picasa to generate cool webgalleries</a> </li>
<li>Get “<a title="Link to the java application which can merge your Facebook friends information with the information keept inside Google Picasa" href="http://sourceforge.net/projects/fcontactspicasa/files/0.1/FacebookContactsForPicasa_win32.jar/download" target="_blank">Facebook Contacts for Picasa</a>” from SourceForge </li>
</ul>
<p></p>
<div class="FBILike"><iframe style="border-bottom-style: none; border-right-style: none; width: 480px; border-top-style: none; height: 80px; border-left-style: none; overflow: hidden" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2010%2F08%2F02%2Fmerging-the-information-about-friends-on-facebook-to-your-picasa-contact-database%2F&amp;layout=standard&amp;show_faces=true&amp;width=480&amp;action=like&amp;font=lucida+grande&amp;colorscheme=dark&amp;height=80" frameborder="0" allowtransparency="allowtransparency" scrolling="no"></iframe></div>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/08/02/merging-the-information-about-friends-on-facebook-to-your-picasa-contact-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoiding the advertisement in MSN Live messenger, and many other places (browser for instance).</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 09:35:36 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Idea]]></category>
		<category><![CDATA[inspirovation]]></category>
		<category><![CDATA[block adds]]></category>
		<category><![CDATA[Microsoft Windows Live Messenger]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/</guid>
		<description><![CDATA[ I don’t know how you feel about having tons and tons of advertisements showing at the bottom of your Windows Live Messenger client (WLM), but it annoys me. But don’t worrie help is on the way! I will give you a WLM specifik fix and a description to avoid many adds in your browser and other places.
I had an error showing up today during init of WLM, and so [...]]]></description>
			<content:encoded><![CDATA[<p><em><img style="border-bottom: 0px; border-left: 0px; margin: 0px 0px 25px 25px; display: inline; border-top: 0px; border-right: 0px" title="Notice: No add at the bottom of the MSN Live Messenger client" border="0" alt="Notice: No add at the bottom of the MSN Live Messenger client" align="right" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/07/image.png" width="260" height="228" /> I don’t know how you feel about having tons and tons of advertisements showing at the bottom of your Windows Live Messenger client (WLM), but it annoys me. But don’t worrie help is on the way! I will give you a WLM specifik fix and a description to avoid many adds in your browser and other places.</em></p>
<p>I had an error showing up today during init of WLM, and so I let the Microsoft Visual Studio debugger start up. Inside that I could locate the address – host name – of the host which deliveres the adds.</p>
<p>I was now ready to follow the advice from a collegue of mine given in another context. The advice was to add an entry to the <strong>hosts</strong> file on your computer which would bind the add server hostname to 127.0.0.1. By doing that you effectively makes it impossibel for the add handling software to show any adds!</p>
<p>So what you need to add to do is:</p>
<ul>
<li>Open the “C:\Windows\System32\drivers\etc\hosts” file in an editor</li>
<li>Add this line: <strong>127.0.0.1 track.adform.net</strong></li>
</ul>
<p>The effect is that any request to “track.adform.net” will be pointing to <em>your</em> own computer – effectively disabling the adds! <img src='http://www.netsi.dk/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>The next step – disabling any adds inside webpages (or anywhere else) from a list of add servers.</h3>
<p>I have at this time not gone deeper into this step, but a simpel google on “hostnames for add servers” gave me this link: <a title="Find a list of add server hostnames, which you can add to your hosts file" href="http://pgl.yoyo.org/as/" target="_blank">Ad blocking with ad server hostnames and IP addresses</a>. Just choose the “hosts – in host file format”. Here is a <a title="This will give you a list of add server host names ready to past into your hosts file" href="http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&amp;showintro=0&amp;startdate%5Bday%5D=&amp;startdate%5Bmonth%5D=&amp;startdate%5Byear%5D=" target="_blank">direct link</a> to a test I made. Actually the host mentioned at the start of this post is inside the list <img src='http://www.netsi.dk/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Happy add blocking!</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/07/27/avoiding-the-advertisement-in-msn-live-messenger-and-many-other-places-browser-for-instance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;Hvem skal nu betale?&#8221;</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 15:09:00 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[inspirovation]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/</guid>
		<description><![CDATA[Jeg arbejder professionelt med implementering af CMS baserede hjemmesider. Det system jeg arbejder klart mest i er Dynamicweb CMS – et system som efter sigende har omkring 4000 fungerende (et korrekt ord?) hjemmesider i hele verden – primært i norden. Som andre systemer så kommer der jævnligt opdateringer – det er jo dejligt med nye up-to-date funktionalitet. Så langt så godt – men jeg vil gerne prøve at sammenligne kort [...]]]></description>
			<content:encoded><![CDATA[<p><em>Jeg arbejder professionelt med implementering af CMS baserede hjemmesider. Det system jeg arbejder klart mest i er <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> – et system som efter sigende har omkring 4000 fungerende (et korrekt ord?) hjemmesider i hele verden – primært i norden. Som andre systemer så kommer der jævnligt opdateringer – det er jo dejligt med nye up-to-date funktionalitet. Så langt så godt – men jeg vil gerne prøve at sammenligne kort med en anden branche.</em></p>
<h3>Min Toyota kontra Dynamicweb CMS</h3>
<p>Jeg er den lykkelige ejer af en Toyota. Tidligere ejede jeg en Yaris og da den var ca. 2 år gammel modtog jeg et brev om at man havde konstateret at der <strong><em>kunne</em></strong> opstå et problem med bremserne under visse ekstreme omstændigheder. Jeg skulle bare køre ind til et selvvalgt Toyota værksted og de ville rette fejlen uden beregning. Hverken mig eller værkstedet ville blive lastet for noget i den forbindelse. Det er service!</p>
<p>Og nu til <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a>… Jeg oplever <strong>jævnligt</strong> at der opdages fejl som opstår på grund af fejl i <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a>. Jeg arbejder jo som sagt professionelt hos en <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> Partner (<a title="Besøg Bleau A/S hjemmeside" href="http://www.bleau.dk" target="_blank">Bleau A/S</a>) og det er nok noget der i ovenstående situation med Toyota må være at betragte som at arbejde på et “autoriseret Dynamicweb værksted”. Selv om <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> også selv finder fejl og retter dem uden beregning gennem hot-fixes, så er situationen fra før med fejlen på bilen i en <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> verden normalt noget anderledes:</p>
<ol>
<li>Brugeren (chaufføren) oplever at noget ikke fungerer i hans “bil” (hans hjemme side) </li>
<li>Han kontakter værkstedet </li>
<li>Værkstedet må bruge megen tid på at fejlfinde og bevise overfor <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> support at fejlen er noget der ligger i selve Dynamicweb </li>
<li><a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a> anerkender måske at der er en fejl, men det medfører ikke at fejlen rettes. Fejl prioriteres naturligvis af <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a>. </li>
<li>Brugeren må så acceptere at der ikke kommer en løsning “sådan lige” </li>
</ol>
<p>Som professionel konsulent er det svært</p>
<ul>
<li>At forklare overfor kunden at det er kundens problem. </li>
<li>At kunden vil blive faktureret den tid som vi har brugt på at finde fejl i det system vi har anbefalet dem. </li>
<li>At problemet ikke umiddelbart er blevet løst. </li>
<li>At en løsning vil koste yderligere tid (=penge). </li>
<li>At løsningen ikke nødvendigvis giver en forbedring. </li>
</ul>
<h3>Intet er fejlfrit! – men hvem skal nu betale?</h3>
<p>Der er mange elementer i ovenstående sammenligning der kan anfægtes og en sammenligning mellem en bil og et CMS system er måske unfair. Det som jeg her forsøger at starte en diskussion om og brokker mig over er at det ikke er rimeligt at kunderne alene skal betale for noget som kan påvises er fejl i det produkt de har købt.</p>
<ul>
<li>Jeg ville personligt aldrig betale for reperationen hvis min fladskærm holdte op med at virke indenfor garentiperioden! Det måtte producenten betale for (gennem forhandleren). </li>
<li>Jeg mener at det er i alles interesse at fejl rettes, så produktet bliver bedre. </li>
</ul>
<p>Jeg har ikke en færdig model for hvordan man kunne løse problemet med at få dækket omkostninger ved fejl. Der er tre parter som burde dele omkostningen – brugerne, forhandlerne (partnerne) og <a title="Besøg Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a>. Idag er det kun de to første der betaler! Jeg tror på sigt at hverken brugere eller forhandlere kan leve med den model!</p>
<p>P.s: Ovenstående står for min egen personlige regning.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/07/26/hvem-skal-nu-betale/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ensure that news items in Dynamicweb CMS are rendered correct</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 07:24:11 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[newsVw]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/</guid>
		<description><![CDATA[In Dynamicweb CMS when you click to a detail view of a news item you will by default get a parameter “M=News” or “M=NewsV2” depending on the News Module version. That parameter will make your details view render incorrect. You can fix it in your template, but if you use the RSS feed of news items, you cannot do that.
The javascript below will fix that problem by redirecting the page [...]]]></description>
			<content:encoded><![CDATA[<p>In Dynamicweb CMS when you click to a detail view of a news item you will by default get a parameter “M=News” or “M=NewsV2” depending on the News Module version. That parameter will make your details view render incorrect. You can fix it in your template, but if you use the RSS feed of news items, you cannot do that.</p>
<p>The javascript below will fix that problem by redirecting the page to an URL without those two parameters. It is a simple javascript, just insert it into the HEAD section.</p>
</p>
<pre class="javascript" name="code">&lt;script type=&quot;text/javascript&quot;&gt;

// Dynamicweb CMS fix: Make sure that details view of news item is rendered correct

// Insert in Master page in HEAD section

// Will redirect to same URL but with any &quot;M=News/M=NewsV2&quot; removed

// 2010-06-29: Sten Hougaard, Bleau A/S

var loc = document.location+'';

var newLoc = loc.replace('&amp;M=NewsV2', '').replace('&amp;M=News', '');

if (loc!=newLoc) {

 document.location = newLoc;

}

&lt;/script&gt;</pre>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/06/29/ensure-that-news-items-in-dynamicweb-cms-are-rendered-correct/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My PC is slow (too) &#8211; I tried &#8220;soluto&#8221;&#8230;</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 09:52:08 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/</guid>
		<description><![CDATA[For some time now the fustration of the slowness of my PC has bothered me. I even made a dual boot with Windows Vista Professionen and Ubuntu 10.4 as the two “competaters” – but leaving one OS for another is not an easy task. I have however started cleaning up the PC partition, uninstalling software, cleaning up discspace and so on.
I read about “Soluto”
This morning I read about Soluto and [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now the fustration of the slowness of my PC has bothered me. I even made a dual boot with Windows Vista Professionen and Ubuntu 10.4 as the two “competaters” – but leaving one OS for another is not an easy task. I have however started cleaning up the PC partition, uninstalling software, cleaning up discspace and so on.</p>
<h2>I read about “Soluto”</h2>
<p>This morning I read about <a title="Here you can read more and download the Soluto application" href="http://www.soluto.com" target="_blank">Soluto</a> and <a title="You can read the review of Soluto on lifehacker.com" href="http://lifehacker.com/5561303/soluto-is-an-awesome-tool-to-speed-up-your-system-boot-fix-system-slowdowns" target="_blank">watch a video on lifehacker.com</a>. So now I have downloaded and installed the <a title="Here you can read more and download the Soluto application" href="http://www.soluto.com" target="_blank">Soluto</a> application and will reboot now to see what it finds out. Shat <a title="Here you can read more and download the Soluto application" href="http://www.soluto.com" target="_blank">Soluto</a> does is watch for instance the boot sequence of your PC, and suggestion what can be changed to improve the performance of your PC.</p>
<h2>After the first running of Soluto</h2>
<p>When I had installed the application I asked me if I wanted to reboot – I did – here are screenshoots of what I experiensed after the program had analyzed my PC:</p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb.png" width="277" height="331" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image1.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb1.png" width="277" height="331" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image2.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb2.png" width="277" height="331" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image3.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb3.png" width="277" height="331" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image4.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb4.png" width="277" height="331" /></a> </p>
<p><a href="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image5.png" rel="lightbox[307]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.netsi.dk/wordpress/wp-content/uploads/2010/06/image_thumb5.png" width="277" height="331" /></a> </p>
<h2>Conclussion</h2>
<blockquote><p>So I found the application very cool and can reccomend it! It makes it easy to get an overview and act upon the things making your PC slow!</p>
</blockquote>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/06/12/my-pc-is-slow-too-i-tried-soluto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using XPath operator &#8220;//&#8221; aka &#8220;descendant-or-self&#8221; in XSLT</title>
		<link>http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 20:36:58 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[XSLT]]></category>
		<category><![CDATA[//]]></category>
		<category><![CDATA[descendant-or-self]]></category>
		<category><![CDATA[operator]]></category>
		<category><![CDATA[XPath]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/</guid>
		<description><![CDATA[In my daily work as frontend developer at www.bleau.dk I do a lot of XSLT “programming” – XPath is one of the things you need to master most. With the focus mainly set on closing tasks I have not had the time to test a – well nice to know thing with the “//” XPath operator. Tonight I finally found out what had been a question in my mind for [...]]]></description>
			<content:encoded><![CDATA[<p>In my daily work as frontend developer at <a href="http://www.bleau.dk">www.bleau.dk</a> I do a lot of XSLT “programming” – XPath is one of the things you need to master most. With the focus mainly set on closing tasks I have not had the time to test a – well nice to know thing with the “//” XPath operator. Tonight I finally found out what had been a question in my mind for at long period:</p>
<blockquote><p>The “//” (decendant-or-self) XPath operator: <em>Can</em> it be used <em><strong>relative</strong> </em>inside a full XPath? Will it “search” from the Document top, or start where it is placed inside the XPath selector?</p>
</blockquote>
<h3>An example XML:</h3>
</p>
<pre class="xml" name="code">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;people&gt;
&#160; &lt;group type=&quot;frontEnd&quot;&gt;
&#160;&#160;&#160; &lt;person name=&quot;Sten&quot; /&gt;
&#160; &lt;/group&gt;
&#160; &lt;group type=&quot;backend&quot;&gt;
&#160;&#160;&#160; &lt;person name=&quot;Sten&quot; /&gt;
&#160; &lt;/group&gt;
&lt;/people&gt;</pre>
<h3>The two XPaths</h3>
<p><code>//person[@name='Sten']</code> – Returns a nodeset containing <strong>2 elements</strong></p>
<p><code>//group[@type=&quot;frontEnd&quot;]//person[@name='Sten']</code> – Returns a nodeset containing only <strong>1 element</strong></p>
<p>So as you can see the first one looked from the <strong>root</strong> (/People) and <strong>anywhere</strong> inside the document. The second one had the “//” <em>inside</em> a XPath, which in made the “//” operator look <strong>from the spot it was and below</strong>. </p>
<h3>Conclusion</h3>
<p>Well, I just got a litle wiser as I learned that I actually can use the “//” operator inside XPath selectors. </p>
<h6>Links</h6>
<ul>
<li><a title="XSLT Reference at New Mexico Tech" href="https://infohost.nmt.edu/tcc/help/pubs/xslt/operator-sect.html">https://infohost.nmt.edu/tcc/help/pubs/xslt/operator-sect.html</a> </li>
</ul>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/" target="_blank"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2010/06/08/using-xpath-operator-aka-descendant-or-self-in-xslt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
