<?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>gusse.net</title>
	<atom:link href="http://www.gusse.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gusse.net</link>
	<description>Software review, tips and tricks</description>
	<lastBuildDate>Wed, 25 Aug 2010 08:56:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>C# string</title>
		<link>http://www.gusse.net/2010/08/c%23-string/</link>
		<comments>http://www.gusse.net/2010/08/c%23-string/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 08:56:40 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[c# string tips]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=71</guid>
		<description><![CDATA[The c# string is properly the most used object in c# and is quite comprehensive.
It represent Unicode character strings
Using C# string
For every object in c# you can call it&#8217;s ToString() method to get the object
value as a string value..
bool isValid = true;

Console.WriteLine(isValid.ToString());
output: True
But is does not work this way with all objects and not the ones you have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F08%2Fc%2523-string%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F08%2Fc%2523-string%2F" height="61" width="51" /></a></div><p>The c# string is properly the most used object in c# and is quite comprehensive.<br />
It represent Unicode character strings</p>
<h2 style="font-size: 1.5em;">Using C# string</h2>
<p>For every object in c# you can call it&#8217;s ToString() method to get the object<br />
value as a string value..</p>
<pre style="font-family: consolas;"><span style="color: blue;">bool</span> isValid = <span style="color: blue;">true</span>;

<span style="color: #2b91af;">Console</span>.WriteLine(isValid.ToString());</pre>
<pre class="style1" style="font-family: consolas;"><em>output: True</em></pre>
<p>But is does not work this way with all objects and not the ones you have created your self. Now let me give you an example. I have created a class with 2 C#<br />
string properties name, address.</p>
<pre style="font-family: consolas; background-color: #f0f0f0;"><span style="color: blue;">class</span> <span style="color: #2b91af;">Class1</span>
{
     <span style="color: blue;">private</span> <span style="color: blue;">string</span> _name;

     <span style="color: blue;">public</span> <span style="color: blue;">string</span> Name
     {
         <span style="color: blue;">get</span> { <span style="color: blue;">return</span> _name; }
         <span style="color: blue;">set</span> { _name = <span style="color: blue;">value</span>; }
     }
     <span style="color: blue;">private</span> <span style="color: blue;">string</span> _address;

     <span style="color: blue;">public</span> <span style="color: blue;">string</span> Address
     {
         <span style="color: blue;">get</span> { <span style="color: blue;">return</span> _address; }
         <span style="color: blue;">set</span> { _address = <span style="color: blue;">value</span>; }
     }
}</pre>
<pre style="font-family: consolas; background-color: #f0f0f0;">    <span style="color: #2b91af;">Class1</span> c1 = <span style="color: blue;">new</span> <span style="color: #2b91af;">Class1</span>();
    c1.Name = <span style="color: #a31515;">"James"</span>;
    c1.Address = <span style="color: #a31515;">"PO Box 97017"</span>;</pre>
<pre style="font-family: consolas;">   <span style="color: #2b91af;">Console</span>.WriteLine(c1.ToString());</pre>
<p><em>output: String.Class1</em></p>
<p>But I really wanted it to write the name and address. So what you can do it just to override the method ToString() and let it return the output you wanted.</p>
<pre style="font-family: consolas; background-color: #f0f0f0;"><span style="color: blue;">public</span> <span style="color: blue;">override</span> <span style="color: blue;">string</span> ToString()
{
<span style="color: blue;">    return</span> <span style="color: blue;">string</span>.Format(<span style="color: #a31515;">"Name: {0} Address: {1}"</span>,_name,_address);
}</pre>
<p><em>output: Name: James Address: PO Box 97017</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/08/c%23-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free link building software</title>
		<link>http://www.gusse.net/2010/08/free-link-building-software/</link>
		<comments>http://www.gusse.net/2010/08/free-link-building-software/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 11:34:18 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[Recommended software]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[linkbuilding]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=50</guid>
		<description><![CDATA[Many people use a spreadsheet to store all  links when doing link building. It&#8217;s works fine but I was looking for something different with some more featues. So I decided to create my own link building software.
So with the link build software you can off cause add new links with informations like the website, the url submittes, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F08%2Ffree-link-building-software%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F08%2Ffree-link-building-software%2F" height="61" width="51" /></a></div><p>Many people use a spreadsheet to store all  links when doing <strong>link building</strong>. It&#8217;s works fine but I was looking for something different with some more featues. So I decided to create my own <strong>link building software</strong>.</p>
<p>So with the <strong>link build software</strong> you can off cause add new links with informations like the website, the url submittes, anchortext, description. You also get a nice list of all links sorted so you have the newest submitted links first.</p>
<p><a href="http://www.gusse.net/wp-content/uploads/2010/08/2010-08-19_0940.png"><img class="aligncenter size-medium wp-image-51" title="Free Linkbuilding software" src="http://www.gusse.net/wp-content/uploads/2010/08/2010-08-19_0940-300x261.png" alt="" width="300" height="261" /></a><br />
You can download the <a title="Download linkbuilding tool for free" href="http://www.gusse.net/download/linkbasesetup.exe">free link building sofware</a> for <strong>FREE. </strong>You will need <a href="http://www.microsoft.com/downloads/details.aspx?familyid=0A391ABD-25C1-4FC0-919F-B21F31AB88B7&amp;displaylang=en" target="_blank">Microsoft .NET framework 4</a> installed if you do not have it all ready.</p>
<p><strong> </strong><span style="text-decoration: underline;">Please notice that this is a beta version</span></p>
<p>If you have any comments or found a bug you are welcome to <a href="http://www.gusse.net/contact/">contact me</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/08/free-link-building-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access your files anywhere in the world.</title>
		<link>http://www.gusse.net/2010/03/access-your-files-anywhere-in-the-world/</link>
		<comments>http://www.gusse.net/2010/03/access-your-files-anywhere-in-the-world/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 12:30:29 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[Recommended software]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[online backup]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=39</guid>
		<description><![CDATA[So you are working on a document at work and you want to finish it at home. What do you do ? You could send your self a mail with the document attached or you could save the document on a USB drive and take it with you home&#8230;
Well I have an easier solution for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F03%2Faccess-your-files-anywhere-in-the-world%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F03%2Faccess-your-files-anywhere-in-the-world%2F" height="61" width="51" /></a></div><p>So you are working on a document at work and you want to finish it at home. What do you do ? You could send your self a mail with the document attached or you could save the document on a USB drive and take it with you home&#8230;</p>
<p>Well I have an <strong>easier solution </strong>for you. A online usb drive called <strong>dropbox </strong>!</p>
<p><a href="http://www.gusse.net/wp-content/uploads/2010/03/tour_1.jpg"><img class="size-medium wp-image-46 aligncenter" title="tour_1" src="http://www.gusse.net/wp-content/uploads/2010/03/tour_1-300x237.jpg" alt="" width="300" height="237" /></a>Just &#8220;drop&#8221; the file in the special folder called dropbox and it will synchronize all files to your online dropbox. When you come home all the files are then available on your home computer.</p>
<p style="text-align: center;"><a href="http://www.gusse.net/wp-content/uploads/2010/03/2010-03-29_1403.png"><img class="size-medium wp-image-44 aligncenter" title="2010-03-29_1403" src="http://www.gusse.net/wp-content/uploads/2010/03/2010-03-29_1403-300x234.png" alt="" width="300" height="234" /></a></p>
<p>You can also access the files from a web browser<em> anywhere in the world </em>- is that cool or what !</p>
<p>You can use dropbox on your windows, mac and even iphone.</p>
<p>As standard you get 2GB of online storage for free and if you need more space you can buy a 50 or 100gb storage.</p>
<p>With <a title="Dropbox" href="https://www.dropbox.com/referrals/NTQ5MTM4MTg5" target="_blank">dropbox</a> it is very to share and access your files.</p>
<p>Try <a title="Dropbox" href="https://www.dropbox.com/referrals/NTQ5MTM4MTg5" target="_blank">dropbox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/03/access-your-files-anywhere-in-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You a Download Junkie? &#8211; Get Free Download Manager</title>
		<link>http://www.gusse.net/2010/02/are-you-a-download-junkie-get-free-download-manager/</link>
		<comments>http://www.gusse.net/2010/02/are-you-a-download-junkie-get-free-download-manager/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:29:54 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[Recommended software]]></category>
		<category><![CDATA[Download Manager]]></category>
		<category><![CDATA[JDownloader]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=27</guid>
		<description><![CDATA[Do you download a lot of files then I have the perfect tool for you.
It is called JDownloader and it is a free application that can help you  download files especially from filehosting sites such as  Megaupload, Hotfiles or Rapidshare &#8211; and yes it is completely free !
 It is written in JAVA, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fare-you-a-download-junkie-get-free-download-manager%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fare-you-a-download-junkie-get-free-download-manager%2F" height="61" width="51" /></a></div><p>Do you download a lot of files then I have the <strong>perfect tool</strong> for you.</p>
<p>It is called <strong>JDownloader</strong> and it is a <strong>free application</strong> that can help you  download files especially from filehosting sites such as  Megaupload, Hotfiles or Rapidshare &#8211; and yes <span style="text-decoration: underline;">it is</span> completely free !</p>
<p><strong> </strong>It is written in JAVA, so you can run it on  Windows, Linux or Mac.</p>
<h3>Copy and Download</h3>
<p>Just mark the links to the files you want to download, copy the text (ctrl+c) and the build in link grabber automatically put the links into <strong>JDownloader</strong>.</p>
<p>Then <strong>JDownloader </strong>checks whether the files is available and if it will start downloading the files.</p>
<p>When the download is complete <strong>JDownloader </strong>can unpack the files &#8211; if it is a compressed file &#8211; and is ready for you to use. It can even delete the compressed files &#8211; sweet right !</p>
<h3>AntiCaptcha</h3>
<p><strong>JDownloader</strong> has a buildin AntiCaptcha system and will automatically recognize captcha images.</p>
<h3>Track Download Speed</h3>
<p><a href="http://www.gusse.net/wp-content/uploads/2010/02/12-02-2010-22-50-04.png"><img class="alignnone size-full wp-image-32" title="JDownloader" src="http://www.gusse.net/wp-content/uploads/2010/02/12-02-2010-22-50-04.png" alt="JDownloader" width="203" height="35" /></a></p>
<p><strong>JDownloader</strong> also gives you an nice graphic speedmeter so that you can follow your downloading speed. You can of course disable the graph  if you don&#8217;t want to see it.</p>
<p>So if you are looking for a <strong>really efficient downloader</strong> then you should check out <a title="JDownloader" href="http://www.jdownloader.org/" target="_blank">JDownloader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/02/are-you-a-download-junkie-get-free-download-manager/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Want to Track Conversations on Twitter?</title>
		<link>http://www.gusse.net/2010/02/want-to-track-conversations-on-twitter/</link>
		<comments>http://www.gusse.net/2010/02/want-to-track-conversations-on-twitter/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 20:19:46 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=15</guid>
		<description><![CDATA[Do you want to track conversations between 2 persons on twitter, well that&#8217;s easyyy. Browse to bettween enter the 2 twitter user names you want to follow, click go. Not much more to say there  
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fwant-to-track-conversations-on-twitter%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fwant-to-track-conversations-on-twitter%2F" height="61" width="51" /></a></div><p>Do you want to <strong>track conversations</strong> between 2 persons on <strong>twitter</strong>, well that&#8217;s easyyy. Browse to <a title="track conversations on twitter" href="http://www.bettween.com" target="_blank">bettween</a> enter the 2 twitter user names you want to follow, click go. Not much more to say there <img src='http://www.gusse.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/02/want-to-track-conversations-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do You Have a Backup Plan for Your Wordpress Blog</title>
		<link>http://www.gusse.net/2010/02/hello-world/</link>
		<comments>http://www.gusse.net/2010/02/hello-world/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 18:08:38 +0000</pubDate>
		<dc:creator>gusse</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gusse.net/?p=1</guid>
		<description><![CDATA[So this is my first post &#8211; great right. Well to be honest it is not my first post &#8211; but the company that hosted my wordpress blog did something so that all post are gone now.  I did not have a backup so all content is gone into the cyberspace world &#8211; real men [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-left: 10px; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fhello-world%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gusse.net%2F2010%2F02%2Fhello-world%2F" height="61" width="51" /></a></div><p>So this is my first post &#8211; great right. Well to be honest it is not my first post &#8211; but the company that hosted my <strong>wordpress blog </strong>did something so that all post are gone now.  I did not have a backup so all content is gone into the cyberspace world &#8211; real men does not take backup right <img src='http://www.gusse.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>So what can I learn from this &#8211; backup your stuff Brian you old bald fart . The stupid thing is that not long ago I got a 1.5 tb external harddrive.</p>
<p>Anyway this gives me a chance to start from scratch&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gusse.net/2010/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
