<?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>semantikoz &#187; programming</title>
	<atom:link href="http://www.semantikoz.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.semantikoz.com</link>
	<description>Semantic Vector Space Research and more ...</description>
	<lastBuildDate>Wed, 03 Dec 2008 21:47:49 +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>Quick, easy, professional &#8211; Program for free under Microsoft Windows</title>
		<link>http://www.semantikoz.com/2008/03/05/programming-on-a-shoestring/</link>
		<comments>http://www.semantikoz.com/2008/03/05/programming-on-a-shoestring/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 20:14:24 +0000</pubDate>
		<dc:creator>CWP</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[profiling]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.semantikoz.com/2008/03/05/program-on-a-shoestring/</guid>
		<description><![CDATA[If you are a student, financially constraint or just interested in programming a little, there is a way to program for free and well at the same time! First of all lets assume you are a common guy with common needs so you likely will be using Microsoft Windows, looking to program for Windows possibly [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.semantikoz.com/wp-content/uploads/2008/03/wooden-piggy-bank128.jpg" alt="Wooden Piggy Bank" />If you are a student, financially constraint or just interested in programming a little, there is a way to program for free and well at the same time! First of all lets assume you are a common guy with common needs so you likely will be using Microsoft Windows, looking to program for Windows possibly using C#. If you prefer Linux or other systems and look to program in something more &#8216;outlandish&#8217;, e.g. your own assembler language then surely there is help out <a title="There are never enough assemblers!" href="http://www.google.com/search?q=%22my+assembler%22" target="_blank">there </a>but I am not addressing it here(, yet).<span id="more-16"></span></p>
<p><a title="Visual Studio Express 2008 C# Edition" rel="attachment wp-att-17" href="http://www.semantikoz.com/2008/03/05/programming-on-a-shoestring/visual-studio-express-2008-c-edition/"><img class="alignleft" src="http://www.semantikoz.com/wp-content/uploads/2008/03/vs2008.thumbnail.jpg" alt="Visual Studio Express 2008 C# Edition" /></a>For starters you would need an <a title="Integrated Development Environment (IDE) at Wikipedia" href="http://en.wikipedia.org/wiki/Integrated_development_environment" target="_blank">Integrated Development Environment (IDE)</a>. It allows you to write code, save, organise, build, compile and debug it. I will not bore you too much because very likely you have heard already about IDEs. One that is hard to beat especially if you are into <a href="http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29" target="_blank">C#</a>, <a href="http://en.wikipedia.org/wiki/C%2B%2B" target="_blank">C++</a>, <a href="http://en.wikipedia.org/wiki/ASP.NET" target="_blank">ASP.NET</a> or <a href="http://en.wikipedia.org/wiki/Visual_basic" target="_blank">VB</a> is Microsoft&#8217;s Visual Studio. The good news is that there is a free version, <a title="Download a free Visual Studio Express IDE from Microsoft" href="http://www.microsoft.com/express/" target="_blank">Visual Studio 2008 Express</a>, out there.  The bad news is that it is stripped of many features. Some of them quite useful to most of us. Even if you &#8216;only&#8217; develop your student project, thesis or start up self-employed work. Luckily, there are nice people out there who share their solutions to their/our problems.</p>
<p><a title="TortoiseSVN right click context menu" rel="attachment wp-att-18" href="http://www.semantikoz.com/2008/03/05/programming-on-a-shoestring/tortoisesvn-right-click-context-menu/"><img class="alignright" src="http://www.semantikoz.com/wp-content/uploads/2008/03/tortoisesvn.thumbnail.jpg" alt="TortoiseSVN right click context menu" /></a>One of the most useful tools in software development are <a title="Version Control Systems at Wikipedia" href="http://en.wikipedia.org/wiki/Version_control_system" target="_blank">version or revision control systems</a>. They keep track of changes in files and if necessary help you organise several people work on several versions of the same files. Even if you are working alone the benefits are tremendous. Assume you have two computers one at home/desktop and one at university/work/laptop. With a version control system and internet access, you can install a version control system and synchronise you your work from wherever you are. If you suddenly share your work with a friend then (s)he can contribute under a new user name and you can exchange your work and stay updated. Most importantly you have a central repository of your work which works automatically as double backup. Firstly it will be on a different machine and secondly it will allow you to reverse to any version of any file which is the ultimate &#8216;Undo&#8217; function.</p>
<ul>
<li>So what do you use? Well there are several out there but I am very happy with using <a title="Subversion Homepage" href="http://subversion.tigris.org/" target="_blank">Subversion</a>.</li>
<li>Looks complicated? Some web site providers throw in free subversion   (or cvs) repositories which can be a good way to start.</li>
<li>How do you use it on your machine without getting into the dark world of command line tools? On your Windows machine use <a title="TortoiseSVN Homepage" href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN </a>to connect with your repository through simple right click context menu on any folder/file.</li>
</ul>
<p>You could go ahead and start your work now but I would recommend at least one more tool. Independent of your programming style a unit test is always a good idea. You might be the <a title="TDD at Wikipedia" href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank">Test-Driven Development (TDD)</a> or the write first test later type. Even if latter you should and will need to do a unit test if you want to keep your code stable and free of as many bugs as possible. Use an <a href="http://en.wikipedia.org/wiki/Test_automation" target="_blank">automated unit test</a> tool like <a title="NUnit Homepage" href="http://www.nunit.org/index.php" target="_blank">NUnit</a> (if you are using C# or <a title="csUnit Homepage" href="http://www.csunit.org/" target="_blank">csUnit</a> for any .NET language) to do the hard work for you once you have written your tests. One downside is that the IDE integration does not work because Visual Studio Express does not allow plugins to my knowledge. All that means is that you have to start the unit test program yourself but what is a click every now and then when it is for free!</p>
<p><a title="IJW Profiler" href="http://www.semantikoz.com/wp-content/uploads/2008/03/ijw-profiler.jpg"><img class="alignleft" src="http://www.semantikoz.com/wp-content/uploads/2008/03/ijw-profiler.thumbnail.jpg" alt="IJW Profiler" /></a>My last recommendation, a profiler, is not a necessity but can be very useful for some and teaches you a lot at the same time.  If you have a performance sensitive application a profiler will be essential to work out where you waste time and where it is worth to optimise. A very good and  (currently until released in version 1.0) free one is <a title="IJW Profiler Homepage" href="http://www.ijw.co.nz/profiler.htm" target="_blank">IJW Profiler</a> which can deal with Java and C# applications. I hope they keep it free for private and academic use. Just run your application from the profiler and it will keep a track of how long what in your application took allowing you to track down the parts that take the most time and optimise them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semantikoz.com/2008/03/05/programming-on-a-shoestring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
