<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Location, location, location</title>
	<atom:link href="http://janmagnet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://janmagnet.wordpress.com</link>
	<description>If you can't find it, you're not looking in the right places</description>
	<lastBuildDate>Wed, 07 Apr 2010 19:05:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='janmagnet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Location, location, location</title>
		<link>http://janmagnet.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://janmagnet.wordpress.com/osd.xml" title="Location, location, location" />
	<atom:link rel='hub' href='http://janmagnet.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Minimum SVN Log Message Length</title>
		<link>http://janmagnet.wordpress.com/2010/04/02/minimum-svn-log-message-length/</link>
		<comments>http://janmagnet.wordpress.com/2010/04/02/minimum-svn-log-message-length/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 18:11:26 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[hook script]]></category>
		<category><![CDATA[JScript]]></category>
		<category><![CDATA[SF.net]]></category>
		<category><![CDATA[SourceForge.net]]></category>
		<category><![CDATA[Stars-Nova]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[TortoiseSVN]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=110</guid>
		<description><![CDATA[Update 2010-04-07: Stefan Küng, TortoiseSVN lead developer, commented that you can simply set the tsvn:logminsize property on your folders and the commit button in TortoiseSVN will be disabled until the log message contains at least as many characters as the value of the property. While working on the Stars-Nova project at SourceForge.net we wanted to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=110&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Update 2010-04-07:</strong> Stefan Küng, TortoiseSVN lead developer, commented that you can simply set the <a href="http://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-dug-propertypage.html"><strong>tsvn:logminsize</strong></a> property on your folders and the commit button in TortoiseSVN will be disabled until the log message contains at least as many characters as the value of the property.</p>
<p>While working on the <a href="http://sourceforge.net/projects/stars-nova">Stars-Nova</a> project at <a href="http://sourceforge.net/">SourceForge.net</a> we wanted to prevent developers from accidentally making commits to <a href="http://subversion.apache.org/">Subversion</a> (SVN) without providing a log message. Sometimes developers simply forget to enter a log message, leaving the rest of the team in the dark as to what changes they have made to the repository. You can diff the modified files to try to figure out what they have done, but a short message in the revision log would save you that time. Even experienced developers might on occasion slip and commit with an empty message. Luckily SF.net allows you to correct the log message after the commit has been made (command line: <code>svn propset svn:log "new log message" -r80 --revprop &lt;repository URL&gt;</code>), but that might not be the case for your choice of SVN hosting provider. It might take a while before the developer who forgot to enter the message is made aware of the issue and can correct it so we would rather get the commit right the first time around and save us the trouble.</p>
<p>SVN allows arbitrary <a href="http://svnbook.red-bean.com/en/1.5/svn.reposadmin.create.html#svn.reposadmin.create.hooks">server-side scripts</a> to be configured to run on various events (pre-commit, post-commit, etc.). These script hooks offer a lot of flexibility and would have been a good place to centrally enforce a non-empty log message policy. However, because of security reasons SF.net, and all other SVN hosting providers I know of, does not allow user-defined server-side hook scripts. Instead SF.net provides a short list of predefined scripts and a check on log message length is not among the scripts that are included. I have submitted a <a href="https://sourceforge.net/apps/ideatorrent/sourceforge/ideatorrent/idea/627/">feature request</a> at SF.net suggesting that they add a server-side hook script such as this and I encourage you to vote for it.</p>
<p>Most of the developers on Stars-Nova use <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> and this SVN client just happens to support client-side hook scripts. Based on that I wrote a <a href="http://sites.google.com/site/janmagnet/MinMessageLength.js">small script</a> (mmm&#8230; JScript) that prevents the user from accidentally executing a commit without providing a message. Currently it does not trim leading and trailing spaces, new lines or other non-printable characters before the character count is checked. However, the minimum character count can be configured so that an accidental space or new line (new lines are composed of two characters: carriage return and line feed) will also stop the commit.</p>
<p>Usage:</p>
<ol>
<li>Make sure you have a recent version of <a href="http://tortoisesvn.net/downloads">TortoiseSVN</a> (min. v1.5).</li>
<li>Open the <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html#tsvn-dug-settings-hooks">TortoiseSVN Settings dialog</a> (right-click a folder in Windows Explorer &gt; TortoiseSVN &gt; Settings).</li>
<li>Go to &#8220;Hook Scripts&#8221; and click &#8220;Add&#8230;&#8221;.</li>
<li>Choose Hook Type: Pre-Commit Hook</li>
<li>Set the Working Copy Path to the directory (or any parent directory) where you checked out your working copy from SVN. &#8220;C:\&#8221; works as well if you want this script to always execute when you run commit on working copies located anywhere on your C drive.</li>
<li>Set Command Line To Execute: <code>WScript &lt;path to script&gt;\MinMessageLength.js</code></li>
<li>Ensure that &#8220;Wait for script to finish&#8221; is checked.</li>
<li>Ensure that &#8220;Hide the script while running&#8221; is checked.</li>
<li>(Optional) Configure the minimum number of characters allowed by changing  the <code>MIN_CHARACTERS</code> variable in the script.</li>
</ol>
<p><a href="http://sites.google.com/site/janmagnet/MinMessageLength.js">Download the TortoiseSVN client-side hook script</a></p>
<p><a href="http://janmagnet.files.wordpress.com/2010/04/tortoisesvnhookscript.png"><img class="alignnone size-full wp-image-135" title="TortoiseSVN client hook script settings" src="http://janmagnet.files.wordpress.com/2010/04/tortoisesvnhookscript.png?w=780" alt=""   /></a></p>
<br />Filed under: <a href='http://janmagnet.wordpress.com/category/projects/'>Projects</a> Tagged: <a href='http://janmagnet.wordpress.com/tag/hook-script/'>hook script</a>, <a href='http://janmagnet.wordpress.com/tag/jscript/'>JScript</a>, <a href='http://janmagnet.wordpress.com/tag/sf-net/'>SF.net</a>, <a href='http://janmagnet.wordpress.com/tag/sourceforge-net/'>SourceForge.net</a>, <a href='http://janmagnet.wordpress.com/tag/stars-nova/'>Stars-Nova</a>, <a href='http://janmagnet.wordpress.com/tag/subversion/'>Subversion</a>, <a href='http://janmagnet.wordpress.com/tag/svn/'>SVN</a>, <a href='http://janmagnet.wordpress.com/tag/tortoisesvn/'>TortoiseSVN</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=110&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2010/04/02/minimum-svn-log-message-length/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>

		<media:content url="http://janmagnet.files.wordpress.com/2010/04/tortoisesvnhookscript.png" medium="image">
			<media:title type="html">TortoiseSVN client hook script settings</media:title>
		</media:content>
	</item>
		<item>
		<title>Sun SPOT</title>
		<link>http://janmagnet.wordpress.com/2008/07/13/sun-spot/</link>
		<comments>http://janmagnet.wordpress.com/2008/07/13/sun-spot/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 15:23:41 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Random & arbitrary]]></category>
		<category><![CDATA[SPOT]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=98</guid>
		<description><![CDATA[Sun Microsystems released their Small Programmable Object Technology (SPOT) as open source earlier this year. SPOT fits in the same category as the Bug Labs BUG that I&#8217;ve previously blogged about. SPOT seems to be less modular than the BUG. Both platforms are Java based (SPOT is J2ME) and they also feature some of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=98&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sun Microsystems released their Small Programmable Object Technology (<a href="http://www.sunspotworld.com/docs/">SPOT</a>) as open source earlier this year. SPOT fits in the same category as the <a href="http://janmagnet.wordpress.com/2008/02/16/lego-bug/">Bug Labs</a> BUG that I&#8217;ve previously blogged about. SPOT seems to be less modular than the BUG. Both platforms are Java based (SPOT is J2ME) and they also feature some of the same type of hardware. The Sun SPOT device measures 70 x 41 x 23 mm and contains features the following hardware sweetness:</p>
<ul>
<li><a href="http://standards.ieee.org/getieee802/download/802.15.4-2006.pdf">IEEE 802.15.4</a> (forms the basis for <a href="http://www.zigbee.org">ZigBee</a>) with integrated antenna</li>
<li> 3-axis accelerometer (with two range settings: 2G or 6G)</li>
<li> Temperature sensor</li>
<li> Light sensor</li>
<li> Tri-color LEDs</li>
<li> 6 analog inputs readable by an ADC</li>
<li> 2 momentary switches</li>
<li> 5 general purpose I/O pins and 4 high current output pins</li>
</ul>
<p>SPOT&#8217;s main advantage over the BUG is that it has built-in communication. Bug Labs are probably hard at work to build a communication module as well to make it more desirable.</p>
<p><strong>Edit (2008-07-19):</strong> Clarified the relation between IEEE 802.15.4 and ZigBee.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/98/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/98/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=98&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/07/13/sun-spot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Lego bug</title>
		<link>http://janmagnet.wordpress.com/2008/02/16/lego-bug/</link>
		<comments>http://janmagnet.wordpress.com/2008/02/16/lego-bug/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 21:21:38 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Random & arbitrary]]></category>
		<category><![CDATA[Bug Labs]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[LBS]]></category>
		<category><![CDATA[location based services]]></category>
		<category><![CDATA[O'Reilly]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=11</guid>
		<description><![CDATA[Bug Labs has developed a modular mini-computer running on open source software. I first read about it in the O&#8217;Reilly Radar blog. Bug Labs has promised to make all the source code for the platform available. The main BUGbase module is 10&#215;5 cm big and can accommodate four other modules, each 5&#215;5 cm big. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=11&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.buglabs.net/">Bug Labs</a> has developed a modular mini-computer running on open source software. I first read about it in the <a href="http://radar.oreilly.com/archives/2008/02/buglabs_os_hard.html">O&#8217;Reilly Radar blog</a>. Bug Labs has promised to make all the source code for the platform available. The main BUGbase module is 10&#215;5 cm big and can accommodate four other modules, each 5&#215;5 cm big.</p>
<p>The system isn&#8217;t completely finished, but soon it will be possible to buy the base module and other modules like:</p>
<ul>
<li><a href="http://store.buglabs.net/Product-Catalog/BUGlocate">BUGlocate</a> &#8211; GPS receiver.</li>
<li><a href="http://store.buglabs.net/Product-Catalog/BUGcam2MP">BUGcam2MP</a> &#8211; 2 megapixel digital camera.</li>
<li><a href="http://store.buglabs.net/Product-Catalog/BUGview">BUGview</a> &#8211; 2.46&#8243; 320&#215;240 pixels LCD screen.</li>
<li><a href="http://store.buglabs.net/Product-Catalog/BUGmotion">BUGmotion</a> &#8211; A combined motion detector and accelerometer.</li>
</ul>
<p>The base module will eventually have built-in WiFi and hopefully they will also make a UMTS (3G) communication module. Applications are developed using Java together with an Eclipse based IDE. I&#8217;m very interested to see what kind of applications people might come up with for this thing.</p>
<p>It&#8217;s like Lego for grownups.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=11&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/02/16/lego-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Slow</title>
		<link>http://janmagnet.wordpress.com/2008/02/14/slow/</link>
		<comments>http://janmagnet.wordpress.com/2008/02/14/slow/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 23:25:38 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Mobile control system]]></category>
		<category><![CDATA[Progress report]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=10</guid>
		<description><![CDATA[This was a slow week. I didn&#8217;t get much done in terms of programming and I also took a short vacation a couple of days to clear my head. Some late breaking news about Android: Google Android phones make debut. Estimated time used for the project the past week: 30 hours<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=10&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This was a slow week. I didn&#8217;t get much done in terms of programming and I also took a short vacation a couple of days to clear my head.</p>
<p>Some late breaking news about Android: <a href="http://news.bbc.co.uk/2/hi/technology/7238695.stm">Google Android phones make debut</a>.</p>
<p>Estimated time used for the project the past week: 30 hours</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=10&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/02/14/slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>The Java Magical Service</title>
		<link>http://janmagnet.wordpress.com/2008/02/07/the-java-magical-service/</link>
		<comments>http://janmagnet.wordpress.com/2008/02/07/the-java-magical-service/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 23:56:50 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Mobile control system]]></category>
		<category><![CDATA[Progress report]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apache ActiveMQ]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[JMS]]></category>
		<category><![CDATA[point-to-point]]></category>
		<category><![CDATA[publish-subscribe]]></category>
		<category><![CDATA[queues]]></category>
		<category><![CDATA[topics]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=9</guid>
		<description><![CDATA[JMS is like a magical service. Inject a message about a certain topic into a JMS system and other people, who are interested in the same topic, can read the message as well. Maybe not too much magic, but it does work. JMS has basically two types of message channels: Topics &#8211; used by publish/subscribe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=9&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>JMS is like a magical service. Inject a message about a certain topic into a JMS system and other people, who are interested in the same topic, can read the message as well. Maybe not too much magic, but it does work.  JMS has basically two types of message channels:</p>
<ul>
<li>Topics &#8211; used by publish/subscribe (pub/sub) where the communication can be many-to-many.</li>
<li>Queues &#8211; used for point-to-point communication.</li>
</ul>
<p>In both cases the sender and receiver can be decoupled in terms of both space, time and synchronization as described by Eugster et al. in <a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.irisa.fr%2Fparis%2FBiblio%2FPapers%2FKermarrec%2FEugFelGueKer03ACMSurvey.pdf&amp;ei=XZSrR7jJE5SSwQHbzryACQ&amp;usg=AFQjCNEvN9t33S22vy-1uVNufjCd1UZdvQ&amp;sig2=wENpl70ABiCO3Up_tw-_6A">The Many Faces of Publish/Subscribe</a>. JMS also has a hierarchical topic-based publish/subscribe model which is easy to get into. I&#8217;ve been working with Apache MQ to implement a simple JMS based publish/subscribe system. The server part of the system is almost functional, but I haven&#8217;t started on the mobile client code yet. I&#8217;m not quite satisfied with the way the server system processes all the incoming events because the business logic is spread out into several listener classes. My current goal is to find a more convenient way to arrange the logic so that it will be easier to set different policies for the system. I&#8217;ll also start writing some code for Android and find out how easy it is to get Android to talk to a JMS based system. Maybe I&#8217;ll have to use one of the alternative transports that Apache MQ provides to make it easier.</p>
<p>I&#8217;ve done some checking on <a href="http://standards.ieee.org/getieee802/download/802.1Q-2005.pdf">IEEE 802.1Q</a> and 802.1p (which is rumored to be defined in <a href="http://standards.ieee.org/getieee802/download/802.1G-1998.pdf">802.1G</a>) in regards to the router that might be used in a practical implementation of this system. 802.1p is essentially a standard for providing QoS at the MAC level. It defines eight different traffic classes which are used by 802.1Q. 802.1Q is the Virtual Bridged Local Area Networks (VLAN) standard. In this standard the IEEE has defined a framework called the Generic Attribute Registration Protocol (GARP) for switches and bridges to work with different types of attribute values. GARP is in turn used by a VLAN management protocol called <a href="http://en.wikipedia.org/wiki/GARP_VLAN_Registration_Protocol">GARP VLAN Registration Protocol</a> (GVRP) which enables you to manage how VLAN configurations are propagated throughout a network of switches (Cisco has a similar proprietary protocol called VTP).</p>
<p>What seems to be the case is that GVRP can only be used to manage switches when there are several connected in a network. According to <a href="http://www.hp.com/rnd/support/config_examples/gvrp_use.pdf">this article</a> by HP it looks like the first switch must be manually configured. I&#8217;m not entirely sure about the technical details, but from what I can tell it doesn&#8217;t seem to align with our needs of just configuring one switch and getting it to forward Internet traffic.</p>
<p>Estimated time used for the project the past week: 40 hours</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=9&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/02/07/the-java-magical-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress report for the past week</title>
		<link>http://janmagnet.wordpress.com/2008/01/31/progress-report-for-the-past-week/</link>
		<comments>http://janmagnet.wordpress.com/2008/01/31/progress-report-for-the-past-week/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 23:02:50 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Mobile control system]]></category>
		<category><![CDATA[Progress report]]></category>
		<category><![CDATA[Apache ActiveMQ]]></category>
		<category><![CDATA[event-based]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[JMS]]></category>
		<category><![CDATA[location based services]]></category>
		<category><![CDATA[LSB]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=8</guid>
		<description><![CDATA[I&#8217;ve read a lot about about messaging systems, JMS and how they relate to publish-subscribe, but I think I need to start programming to get a feel for what it really is about. The Enterprise Integration Patterns book that I&#8217;m borrowing has kept me busy most of the week. I&#8217;ve also drawn a few other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=8&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve read a lot about about messaging systems, <a href="http://java.sun.com/products/jms/">JMS</a> and how they relate to publish-subscribe, but I think I need to start programming to get a feel for what it really is about. The Enterprise Integration Patterns book that I&#8217;m borrowing has kept me busy most of the week. I&#8217;ve also drawn a few other models for the system with different level of abstraction. You can view the new models in this PDF: <a title="Location-based event system models" href="http://janmagnet.files.wordpress.com/2008/01/models.pdf">Location-based event system models</a>.</p>
<p>I&#8217;ve checked out <a href="http://activemq.apache.org/">Apache MQ</a> and is seems like something I can use. It supports lots of different transport protocols for message exchange and the configuration doesn&#8217;t seem to be too tricky. It also supports JMS 1.1 which is the latest version of JMS. I also tested <a href="http://git.or.cz/">Git</a> a bit and I&#8217;ve decided to start using it on this project. At the surface it doesn&#8217;t seem to be very much different from Subversion, which I&#8217;m used to, but the fact that you can commit to a local repository/index is a big bonus. I look forward to explore the distributed features in Git.</p>
<p>Estimated time used for the project the past week: 38 hours</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=8&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/01/31/progress-report-for-the-past-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress report so far</title>
		<link>http://janmagnet.wordpress.com/2008/01/24/progress-report-so-far/</link>
		<comments>http://janmagnet.wordpress.com/2008/01/24/progress-report-so-far/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 23:48:16 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Mobile control system]]></category>
		<category><![CDATA[Progress report]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[event-based]]></category>
		<category><![CDATA[LBS]]></category>
		<category><![CDATA[location based services]]></category>
		<category><![CDATA[publish-subscribe]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=4</guid>
		<description><![CDATA[So far I&#8217;ve read a lot of literature about location-based/aware systems and also a few things about publish-subscribe based event systems. The architecture of the system I intend to design is shown as part of a set of slided I made a while ago. I found a way to make the architecture more generic by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=4&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So far I&#8217;ve read a lot of literature about location-based/aware systems and also a few things about publish-subscribe based event systems. The architecture of the system I intend to design is shown as part of a set of slided I made a while ago. I found a way to make the architecture more generic by using a publish-subscribe based system on the home server. Check these PDF files for the <a title="Intelligent alarm system" href="http://janmagnet.files.wordpress.com/2008/01/intelligentalarmsystem.pdf">original</a> and the <a title="Location-based event system for mobile phones" href="http://janmagnet.files.wordpress.com/2008/01/locationbasedeventsystem.pdf">new</a> slides.</p>
<p>The original slides were based on the assumption that the mobile phone already knew the status of the alarm system. That isn&#8217;t very realistic so the new slides makes use of an event driven system (publish-subscribe) to make the phone aware of the alarm system status. The correct order to read the slides would be to first look at the new slides and then the process continues in the original slides.</p>
<p>I&#8217;ve also tried out the <a href="http://code.google.com/android/download.html">Android SDK</a> and written a few small applications to understand how it works. Since there might be better mobile phone frameworks/platforms that can be used I&#8217;ve also done some research into other related frameworks/platforms. The disadvantage of Android is obviously that it doesn&#8217;t have any supported phones on the market yet, but on the other hand it&#8217;s a quite powerful platform compared to some of the others which are already in the hands of consumers.</p>
<p>I estimate that I&#8217;ve used about 40 hours on the project the last 7 days. It&#8217;s probably a bit more than 100 if you count from when I began and till now. I&#8217;ve also put together a project plan which is nice to have.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=4&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/01/24/progress-report-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>New guy</title>
		<link>http://janmagnet.wordpress.com/2008/01/07/new-guy/</link>
		<comments>http://janmagnet.wordpress.com/2008/01/07/new-guy/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 15:07:36 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Random & arbitrary]]></category>
		<category><![CDATA[Jeff Dunham]]></category>
		<category><![CDATA[location]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/2008/01/07/new-guy/</guid>
		<description><![CDATA[The new title of this blog was slightly inspired by Jeff Dunham&#8216;s performance in this video (impatient people may skip to 07:04):<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=3&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The new title of this blog was slightly inspired by Jeff Dunham<span>&#8216;s performance in this video</span> (impatient people may skip to 07:04):</p>
<span style="text-align:center; display: block;"><a href="http://janmagnet.wordpress.com/2008/01/07/new-guy/"><img src="http://img.youtube.com/vi/1uwOL4rB-go/2.jpg" alt="" /></a></span>
<p><a class="abp-objtab-009812001290946526 visible" title="Click here to block this object with Adblock Plus" href="http://janmagnet.wordpress.com/wp-admin/"></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=3&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2008/01/07/new-guy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress report for week 51</title>
		<link>http://janmagnet.wordpress.com/2007/12/21/progress-report-for-week-51/</link>
		<comments>http://janmagnet.wordpress.com/2007/12/21/progress-report-for-week-51/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 23:25:18 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Distributed exact cover solver]]></category>
		<category><![CDATA[Progress report]]></category>
		<category><![CDATA[gnuplot]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=49</guid>
		<description><![CDATA[The DECS project report is complete and has been delivered for evaluation. The report can also be downloaded from the link below. I&#8217;ll also add some work units to the BOINC server soon, so that people can try it out. If you happen to need software for plotting I highly recommend gnuplot. I also tried [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=49&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DECS project <a href="http://janmagnet.files.wordpress.com/2008/07/decs-report.pdf">report</a> is complete and has been delivered for evaluation. The report can also be downloaded from the link below. I&#8217;ll also add some work units to the BOINC server soon, so that people can try it out.</p>
<p>If you happen to need software for plotting I highly recommend <a href="http://www.gnuplot.info/" target="_blank">gnuplot</a>. I also tried <a href="http://www.r-project.org/" target="_blank">R</a> for a few hours, but that is a chapter in my life I would rather forget. gnuplot lets me do exactly what I needed in a few simple steps, which is more than I can say about R. It might be because the documentation for gnuplot is so exellent or because there are so many good tutorials, but I managed to whip up a couple of graphs in no time at all. If you want some work done, and you want it done now then gnuplot is your friend.</p>
<p>BTW, this is probably the last DECS progress report as well. At least on this website. At least for now :)</p>
<p>Jan Magne,<br />
Over and out</p>
<p><em>NOTE: This post has been imported from my old it&#8217;s learning <a href="http://www.itslearning.com/uis/janmagne/projects/decs/">ePortfolio DECS blog</a>.</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=49&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2007/12/21/progress-report-for-week-51/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress report for week 50</title>
		<link>http://janmagnet.wordpress.com/2007/12/18/progress-report-for-week-50/</link>
		<comments>http://janmagnet.wordpress.com/2007/12/18/progress-report-for-week-50/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 12:30:11 +0000</pubDate>
		<dc:creator>Jan Magne</dc:creator>
				<category><![CDATA[Distributed exact cover solver]]></category>
		<category><![CDATA[Progress report]]></category>

		<guid isPermaLink="false">http://janmagnet.wordpress.com/?p=47</guid>
		<description><![CDATA[A new draft of the report is complete. This time all the chapters are in place and all the &#8220;??&#8221; references has been eliminated. The following is a list of modifications made to chapter 1 and 2: Fixed typos and minor word and sentence bugs. Moved first paragraph of Section 2.1 to Chapter 1. Added [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=47&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>A new <a href="http://janmagnet.files.wordpress.com/2008/07/decs-report-draft-02.pdf">draft</a> of the report is complete. This time all the chapters are in place and all the &#8220;??&#8221; references has been eliminated.</p>
<p>The following is a list of modifications made to chapter 1 and 2:</p>
<ul>
<li>Fixed typos and minor word and sentence bugs.</li>
<li>Moved first paragraph of Section 2.1 to Chapter 1.</li>
<li>Added reason for redifining &#8216;one&#8217; to &#8216;non-zero&#8217; (disambiguation) in second paragraph of Section 2.1.</li>
<li>Added reduced and identical matrix disambiguation in Section 2.1.</li>
<li>Fixed notation ambiguity at the end of Section 2.1.</li>
<li>Added a bit about backtracking in the third paragraph of Section 2.2.</li>
<li>DeKnuthified some of the content.</li>
<li>Added formal definition of exact cover to section 2.1. (Does it confuse more than it helps?)</li>
<li>Added some information and a couple of illustrations about n-queens to the introduction.</li>
<li>Added n-queens example with primary and secondary columns in Section 2.1.1. It also makes use of the formal exact cover definition.</li>
</ul>
<p>Pluss the addition of the chapters about implementation, testing and simulation and the conclusion.</p>
<p><em>NOTE: This post has been imported from my old it&#8217;s learning <a href="http://www.itslearning.com/uis/janmagne/projects/decs/">ePortfolio DECS blog</a>.</em></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janmagnet.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janmagnet.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janmagnet.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janmagnet.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janmagnet.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janmagnet.wordpress.com&amp;blog=2466012&amp;post=47&amp;subd=janmagnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://janmagnet.wordpress.com/2007/12/18/progress-report-for-week-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">janmagnet</media:title>
		</media:content>
	</item>
	</channel>
</rss>
