<?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>schrankmonster blog &#187; Employer</title>
	<atom:link href="http://www.schrankmonster.de/category/work/employer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schrankmonster.de</link>
	<description>technology-ninja!</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:32:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>benchmarking the sones GraphDB (on Mono (sgen) and .NET)</title>
		<link>http://www.schrankmonster.de/2010/09/09/benchmarking-the-sones-graphdb-on-mono-sgen-and-net/</link>
		<comments>http://www.schrankmonster.de/2010/09/09/benchmarking-the-sones-graphdb-on-mono-sgen-and-net/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 21:54:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/09/09/benchmarking-the-sones-graphdb-on-mono-sgen-and-net/</guid>
		<description><![CDATA[Since we’re at it – we not only took the new Mono garbage collector through it’s paces regarding linear scaling but we also made some interesting measurements when it comes to query performance on the two .NET platform alternatives. The same data was used as in the last article about the Mono GC. It’s basically [...]]]></description>
			<content:encoded><![CDATA[<p>Since we’re at it – we not only took the new Mono garbage collector through it’s paces regarding linear scaling but we also made some interesting measurements when it comes to query performance on the two .NET platform alternatives.</p>
<p>The same data was used as in <a href="http://developers.sones.de/2010/09/01/taking-the-new-and-shiny-mono-simple-generational-garbage-collector-mono-sgen-for-a-walk/" target="_blank">the last article</a> about the Mono GC. It’s basically a set of 200.000 nodes which hold between 15 to 25 edges to instances of another type of nodes. One INSERT operation means that the starting node and all edges + connected nodes are inserted at once.</p>
<p>We did not use any bulk loading optimizations – we just fed the sones GraphDB with the INSERT queries. We tested on two platforms – on Windows x64 we used the Microsoft .NET Framework and on Linux x64 we used a current Mono 2.7 build which soon will be replaced by the 2.8 release.</p>
<p>After the import was done we started the benchmarking runs. Every run was given a specified time to complete it’s job. The number of queries that were executed within this time window was logged. Each run utilized 10 simultaneously querying clients. Each client executed randomly generated queries with pre-specified complexity.</p>
<p><strong>The Import</strong></p>
<p>Not surprisingly both platforms are almost head-to-head in average import times. While Mono starts way faster than .NET the .NET platform is faster at the end with a larger dataset. We also measured the ram consumption on each platform and it turns out that while Mono takes<strong> 17 kbyte per complex insert operation</strong> on average the Microsoft .NET Framework only seems to take <strong>11 kbyte per complex insert operation</strong>.</p>
<p><strong>The Benchmark</strong></p>
<p>Let the charts speak for themselves first:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/mononet.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="mononet" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/mononet_thumb.png" border="0" alt="mononet" width="500" height="133" /></a></p>
<p>click to enlarge</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkmonosgen1.png" target="_blank"><img style="display: inline; border-width: 0px;" title="benchmark-mono-sgen" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkmonosgen_thumb1.png" border="0" alt="benchmark-mono-sgen" width="500" height="338" /></a><br />
click on the picture to enlarge</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkdotnet1.png" target="_blank"><img style="display: inline; border-width: 0px;" title="benchmark-dotnet" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkdotnet_thumb1.png" border="0" alt="benchmark-dotnet" width="500" height="333" /></a><br />
click on the picture to enlarge</p>
<p>As you can see on both platforms the sones GraphDB is able to work through more than 2.000 queries per second on average. For the longest running benchmark (1800 seconds) with all the data imported .NET allows us to answer 2.339 queries per second while Mono allows us to answer 1.980 queries per second.</p>
<p><strong>The Conclusion</strong></p>
<p>With the new generational garbage collector Mono surely made a great leap forward. It’s impressive to see the progress the Mono team was able to make in the last months regarding performance and memory consumption. We’re already considering Mono an important part of our platform strategy – this new garbage collector and benchmark results are showing us that it’s the right thing to do!</p>
<p><strong>UPDATE: </strong>There was a mishap in the “import objects per second” row of the above table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/09/09/benchmarking-the-sones-graphdb-on-mono-sgen-and-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>taking the new and shiny Mono Simple Generational Garbage Collector ( mono-sgen ) for a walk&#8230;</title>
		<link>http://www.schrankmonster.de/2010/09/01/taking-the-new-and-shiny-mono-simple-generational-garbage-collector-mono-sgen-for-a-walk/</link>
		<comments>http://www.schrankmonster.de/2010/09/01/taking-the-new-and-shiny-mono-simple-generational-garbage-collector-mono-sgen-for-a-walk/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 16:34:08 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/09/01/taking-the-new-and-shiny-mono-simple-generational-garbage-collector-mono-sgen-for-a-walk/</guid>
		<description><![CDATA[“Mono is a software platform designed to allow developers to easily create cross platform applications. It is an open source implementation of Microsoft&#8217;s .Net Framework based on the ECMA standards for C# and the Common Language Runtime. We feel that by embracing a successful, standardized software platform, we can lower the barriers to producing great [...]]]></description>
			<content:encoded><![CDATA[<p><em>“Mono is a software platform designed to allow developers to easily create cross platform applications. It is an open source implementation of Microsoft&#8217;s .Net Framework based on the </em><a href="http://mono-project.com/ECMA"><em>ECMA</em></a><em> standards for C# and the Common Language Runtime. We feel that by embracing a successful, standardized software platform, we can lower the barriers to producing great applications for Linux.”</em> (<a href="http://mono-project.com/What_is_Mono" target="_blank">Source</a>)</p>
<p>In other words: Mono is the platform which is needed to run the sones GraphDB on any operating system different from Windows. It included the so called “Mono Runtime” which basically is the place where the sones GraphDB “lives” to do it’s work. </p>
<p>Being a runtime is not an easy task. In fact it’s abilities and algorithms take a deep impact on the performance of the application that runs on top of it. When it comes to all things related to memory management the garbage collector is one of the most important parts of the runtime:</p>
<p><em>“In computer science, <b>garbage collection</b> (<b>GC</b>) is a form of automatic memory management. It is a special case of resource management, in which the limited resource being managed is memory. The garbage collector, or just collector, attempts to reclaim garbage, or memory occupied by objects that are no longer in use by the program. Garbage collection was invented by John McCarthy around 1959 to solve problems in Lisp.”</em> (<a href="http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29" target="_blank">Source</a>)</p>
<p>The Mono runtime has always used a simple garbage collector implementation called “<a href="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" target="_blank">Boehm-Demers-Weiser conservative garbage collector</a>”. This implementation is mainly known for its simplicity. But as more and more data intensive applications, like the sones GraphDB, started to appear this type of garbage collector wasn’t quite up to the job.</p>
<p>So the Mono team started the development on a Simple Generational Garbage collector whose properties are:</p>
<ul>
<li>Two generations. </li>
<li>Mostly precise scanning (stacks and registers are scanned conservatively). </li>
<li>Copying minor collector. </li>
<li>Two major collectors: Copying and Mark&amp;Sweep. </li>
<li>Per-thread fragments for fast per-thread allocation. </li>
<li>Uses write barriers to minimize the work done on minor collections. </li>
</ul>
<p>To fully understand what this new garbage collector does you most probably need to read <a href="http://www.mono-project.com/Compacting_GC" target="_blank">this</a> and take a look inside the <a href="http://github.com/mono/mono" target="_blank">mono s-gen garbage collector code</a>. </p>
<p>So what we did was taking the old and the new garbage collector and our GraphDB and let them iterate through an automated test which basically runs 200.000 insert queries which result in more than 3.4 million edges between more than 120.000 objects. The results were impressive when we compared the old mono garbage collector to the new mono-sgen garbage collector. </p>
<p>When we plotted a basic graph of the measurements we got that:</p>
<p>&#160;</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/monovsmonosgen.png" target="_blank"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="monovsmono-sgen" border="0" alt="monovsmono-sgen" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/monovsmonosgen_thumb.png" width="450" height="375" /></a></p>
<p>On the x-axis it’s the number of inserts and on the y-axis it’s the time it takes to answer one query. So it’s a great measurement to see how big actually the impact of the garbage collector is on a complex application like the sones GraphDB. </p>
<p>The red curve is the old Boehm-Demers-Weiser conservative garbage collector built into current stable versions of mono. The blue curve is the new SGEN garbage collector which can be used by invoking Mono using the “mono-sgen” command instead of the “mono” command. Since mono-sgen is not included in any stable build yet it’s necessary to build mono from source. We documented how to do that <a href="http://developers.sones.de/wiki/doku.php?id=installation:mono" target="_blank">here</a>.</p>
<p>So what are we actually seeing in the chart? We can see that mono-sgen draws a fairly linear line in comparison to the old mono garbage collector. It’s easy to tell why the blue curve is rising – it’s because the number of objects is growing with each millisecond. The blue line is just what we are expecting from a hard working garbage collector. To our surprise the old garbage collector seems to have problems to cope with the number of objects over time. It spikes several times and in the end it even gets worse by spiking all over the place. That’s what we don’t want to see happening anywhere.</p>
<p>The conclusion is that if you are running something that does more than printing out “Hello World” on Mono you surely want to take a look at the new mono-sgen garbage collector. If you’re planning to run the sones GraphDB on Mono we highly recommend to use mono-sgen.</p>
</td>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/09/01/taking-the-new-and-shiny-mono-simple-generational-garbage-collector-mono-sgen-for-a-walk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To strip those TFS Source Control references from Visual Studio Solutions</title>
		<link>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/</link>
		<comments>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 12:55:53 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/</guid>
		<description><![CDATA[Every once in a while you download some code and fire up your Visual Studio and find out that this particular solution was once associated to a team foundation server you don’t know or have a login to. Like when you download source code from CodePlex and you get this “Please type in your username+password [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while you download some code and fire up your Visual Studio and find out that this particular solution was once associated to a team foundation server you don’t know or have a login to. Like when you download source code from CodePlex and you get this <em>“Please type in your username+password for this CodePlex Team Foundation Server”</em>.</p>
<p>Or maybe you’re working on your companies team foundation server and you want to put some code out in the public. You surely want to get rid of these Team Foundation Server bindings.</p>
<p>There’s a fairly complicated way in Visual Studio to do this but since I was able to produce unforseen side effects I do not recommend it. </p>
<p>So what I did was looking into those files a Visual Studio Solution and Project consists of. And I found that there are really just a few files that hold those association information. As you can see in the picture below there are several files side by side to the .sln and .csproj files – like that .vssscc and .vspscc file. Even inside the .csproj and .sln file there are hints that lead to the team foundation server – so obviously besides removing some files a tool would have to edit some files to remove the tfs association.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/stripfiles.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="strip-files" border="0" alt="strip-files" src="http://www.schrankmonster.de/wp-content/uploads/2010/04/stripfiles_thumb.png" width="404" height="325" /></a> </p>
<p>So I wrote such a tool and I am going release it’s source code just beneath this article. Have fun with it. It compiles with Visual Studio and even Mono Xbuild – actually I wrote it with Monodevelop on Linux <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Multi-platform galore! Who would have thought of that in the founding days of the .NET platform?</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/BildschirmfotoStripTeamFoundationServerInformationMain.csMonoDevelop.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Bildschirmfoto-StripTeamFoundationServerInformation - Main.cs - MonoDevelop" border="0" alt="Bildschirmfoto-StripTeamFoundationServerInformation - Main.cs - MonoDevelop" src="http://www.schrankmonster.de/wp-content/uploads/2010/04/BildschirmfotoStripTeamFoundationServerInformationMain.csMonoDevelop_thumb.png" width="404" height="277" /></a> </p>
<p>So this is easy – this small tool runs on command line and takes one parameter. This parameter is the path to a folder you want to traverse and remove all team foundation server associations in. So normally I take a check-out folder and run the tool on that folder and all its subfolders to remove all associations.</p>
<p>So if you want to have this cool tool you just have to click here: <a href="http://www.schrankmonster.de/wp-content/uploads/2010/04/StripTeamFoundationServerInformation.zip">Sourcecode Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/04/22/how-to-strip-those-tfs-source-control-references-from-visual-studio-solutions-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CeBIT started and we have a demo!</title>
		<link>http://www.schrankmonster.de/2010/03/03/cebit-started-and-we-have-a-demo/</link>
		<comments>http://www.schrankmonster.de/2010/03/03/cebit-started-and-we-have-a-demo/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:20:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/03/cebit-started-and-we-have-a-demo/</guid>
		<description><![CDATA[The effort of 10 days materializes in a Microsoft Surface demo. And you can see it at MSDN Developer Kino every day during CeBIT. &#160;]]></description>
			<content:encoded><![CDATA[<p>The effort of 10 days materializes in a Microsoft Surface demo. And you can see it at MSDN Developer Kino every day during CeBIT.</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:098c1834-f8da-492e-9a47-e07311232593" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/J_a9UEp3U-M&amp;hl=de_DE&amp;fs=1&amp;&amp;hl=en"></param><embed src="http://www.youtube.com/v/J_a9UEp3U-M&amp;hl=de_DE&amp;fs=1&amp;&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p align="left">&#160;</p>
<p align="left"><a href="http://www.sones.com" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="IMG_0733" border="0" alt="IMG_0733" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_0733.jpg" width="304" height="404" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/03/cebit-started-and-we-have-a-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing on a Microsoft Surface Table</title>
		<link>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/</link>
		<comments>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 19:40:55 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/</guid>
		<description><![CDATA[At sones I am involved in a project that works with a piece of hardware I wanted to work with for about 3 years now: the Microsoft Surface Table. I was able to play with some tables every now and then but I never had a “business case” which contained a Surface. Now that case [...]]]></description>
			<content:encoded><![CDATA[<p>At sones I am involved in a project that works with a piece of hardware I wanted to work with for about 3 years now: the Microsoft Surface Table.</p>
<p>I was able to play with some tables every now and then but I never had a “business case” which contained a Surface. Now that case just came to us: sones is at the CeBIT fair this year – we were invited by <a href="http://www.microsoft.de">Microsoft Germany</a> to join them and present our cool technology along with theirs.</p>
<p>Since we already had a graph visualisation tool the idea was to bring that tool to Surface and use the platform specific touch controls and gestures.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_visualgraph.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="surface_visualgraph" border="0" alt="surface_visualgraph" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_visualgraph_thumb.png" width="404" height="228" /></a>    <br />the VisualGraph application that gave the initial idea</p>
<p>The good news was that it’s easier than thought to develop an application for Surface and all parties are highly committed to the project. The bad news is that we were short on time right from the start: less than 10 days from concept to live presentation isn’t the definition of “comfortable time schedule”. And since we’re currently in the process of development it’s a continueing race.</p>
<p>Thankfully Microsoft is committed to a degree they even made it possible to have two great Surface and WPF ninjas who enable is to get up to speed with the project (thanks to Frank Fischer, Andrea Kohlbauer-Hug, Rainer Nasch and Denis Bauer, you guys rock!).</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_simulator.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="surface_simulator" border="0" alt="surface_simulator" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/surface_simulator_thumb.png" width="387" height="244" /></a>    <br />a Surface simulator</p>
<p>I was able to convice <a href="http://www.uid.com">UID</a> to jump in and contribute their designing and user interface knowledge to our little project (thanks to Franz Koller and Cristian Acevedo).</p>
<p>During the process of development I made some pictures which will be used here and there promoting the demonstration. To give you an idea of the progress we made here’s a before and after picture:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger2.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Surface_Finger2" border="0" alt="Surface_Finger2" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger2_thumb.png" width="404" height="244" /></a>    <br />We started with a simple port of VisualGraph to the surface table…</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Surface_Finger" border="0" alt="Surface_Finger" src="http://www.schrankmonster.de/wp-content/uploads/2010/02/Surface_Finger_thumb.png" width="400" height="244" /></a>    <br />…and had something better working and looking at the end of that day.</p>
<p>I think everyone did a great job so far and will continue to do so – a lot work to be done till CeBIT! <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source 1: <a href="http://www.sones.com">http://www.sones.com</a>    <br />Source 2: <a href="http://www.microsoft.de">http://www.microsoft.de</a>    <br />Source 3: <a title="http://www.uid.com/" href="http://www.uid.com/">http://www.uid.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/02/20/developing-on-a-microsoft-surface-table/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>sones GraphDB Visualization Tool</title>
		<link>http://www.schrankmonster.de/2010/01/25/sones-graphdb-visualization-tool/</link>
		<comments>http://www.schrankmonster.de/2010/01/25/sones-graphdb-visualization-tool/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 17:19:56 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/25/sones-graphdb-visualization-tool/</guid>
		<description><![CDATA[We want to show you something today: Not everybody has an idea what to think and do with a graph data structure. Not even talking about a whole graph database management system. In fact what everybody needs is something to get “in touch” with those kinds of data representations. To make the graphs you are [...]]]></description>
			<content:encoded><![CDATA[<p>We want to show you something today: Not everybody has an idea what to think and do with a graph data structure. Not even talking about a whole graph database management system. In fact what everybody needs is something to get “in touch” with those kinds of data representations. </p>
<p>To make the graphs you are creating with the sones GraphDB that much more touchable we give you a sneak peak at our newest addition of the sone GraphDB toolset: the VisualGraph tool.</p>
<p>This tool connects to a running database and allows you to run queries on that database. The result of those queries is then presented to you in a much more natural and intuitive way, compared to the usual JSON and XML outputs. Even more: you can play with your queries and your data and see and feel what it’s like to work with a graph.</p>
<p>Expect this tool to be released in the next 1-2 months as open source. Everyone can use it, Everyone can benefit from it.</p>
<p>Oh. Almost forgot the video:</p>
<p align="center">
<p>&#160;</p>
<p align="center">
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6dcf1e31-2321-4e6a-9432-e09dff601f5c" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/vJhwjls5Gxg&amp;hl=de_DE&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1&amp;hl=en"></param><embed src="http://www.youtube.com/v/vJhwjls5Gxg&amp;hl=de_DE&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;hd=1&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p align="center">(Watch it in full screen if you can) </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/25/sones-graphdb-visualization-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>developing a command line interface for the sones GraphDB</title>
		<link>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/</link>
		<comments>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 17:12:06 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/</guid>
		<description><![CDATA[As you may know, my team and I are developing a graph database. A graph database is a database which is able to handle such things as the following: social graph So instead of tables with rows and columns, a graph database concentrates on objects and the connections between them and is therefore forming a [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, my team and I are developing a graph database. A graph database is a database which is able to handle such things as the following:</p>
<p align="center"><a href="http://en.wikipedia.org/wiki/Social_graph" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="510px-Sna_large" border="0" alt="510px-Sna_large" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/510pxSna_large.png" width="341" height="400" /></a><a href="http://en.wikipedia.org/wiki/Social_graph" target="_blank">social graph</a></p>
<p>So instead of tables with rows and columns, a graph database concentrates on objects and the connections between them and is therefore forming a graph which can be queried, traversed, whatever-you-might-want-to-do.</p>
<p>Lately more and more companies start realizing that their demand for storing unstructured data is growing. Reflecting on unstructured data, I always think of data which cannot single-handedly be mapped in columns and rows (e.g. tables). Normally complex relations between data are represented in relation-tables only containing this relational information. The complexity to query these data structures is humongous as the table based database needs to ‘calculate’ (JOINs, …) the relations every time they are queried. Even though modern databases cache these calculations the costs in terms of memory and cpu time are huge. </p>
<p>Graph databases more or less try to represent this graph of objects and edges (as the relations are called there) as native as possible. The sones GraphDB we have been working on for the last 5 years does exactly that: It stores and queries a data structure which represents a graph of objects. Our approach is to give the user a simple and easy to learn query language and handle all the object storage and object management tasks in a fully blown object oriented graph database developed from the scratch.</p>
<p>Since not everybody seems to have heard of graph databases, we thought it might be a good idea to lower barriers by providing personalized test instances. Everyone can get one of these without the need to install anything – a working AJAX/Javascript compatible browser will suit all needs. (<a href="http://www.sones.com/partner?p_p_id=2_WAR_LiSi&amp;p_p_lifecycle=0&amp;p_p_state=normal&amp;p_p_mode=view&amp;p_p_col_id=column-2&amp;p_p_col_count=1&amp;_2_WAR_LiSi_struts_action=%2Fnetwork%2Fadd_user&amp;_2_WAR_LiSi_regType=Tester&amp;_2_WAR_LiSi_redirect=/partner" target="_blank">get your instance here.</a>)</p>
<p align="justify">
<p>Of course the user can choose between different ways to access the database test instance (like SOAP and REST) but the one we just released only needs a browser.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/standard_cli.png" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="standard_cli" border="0" alt="standard_cli" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/standard_cli_thumb.png" width="404" height="173" /></a> </p>
<p>The sones GraphDB WebShell – as we call it – resembles a command line interface. The user can type a query and it is instantly executed on the database server and the results are presented in either a xml, json or text format. </p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/graphdbwebshell.png" target="_blank"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="graphdb-webshell" border="0" alt="graphdb-webshell" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/graphdbwebshell_thumb.png" width="404" height="220" /></a> </p>
<p align="justify">Granted – the interested user needs to know about the query language and the possible usage scenarios. Everyone can access a <a href="http://developers.sones.de/wp-content/uploads/2009/11/graphDB-Query-Language-Syntax-Documentation-english.pdf" target="_blank">long</a> and a <a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank">short documentation here.</a></p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/Social_graph" href="http://en.wikipedia.org/wiki/Social_graph">http://en.wikipedia.org/wiki/Social_graph</a>     <br />Source 2: <a href="http://www.sones.com">http://www.sones.com</a>     <br />Source 3: <a href="http://developers.sones.de/wp-content/uploads/2009/11/graphDB-Query-Language-Syntax-Documentation-english.pdf" target="_blank">Long documentation</a>     <br />Source 4: <a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank">Short documentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/14/developing-a-command-line-interface-for-the-sones-graphdb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>sones GraphQueryLanguage and GraphDB Quick Reference</title>
		<link>http://www.schrankmonster.de/2010/01/13/sones-graphquerylanguage-and-graphdb-quick-reference/</link>
		<comments>http://www.schrankmonster.de/2010/01/13/sones-graphquerylanguage-and-graphdb-quick-reference/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 17:32:41 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/13/sones-graphquerylanguage-and-graphdb-quick-reference/</guid>
		<description><![CDATA[Since we all need documentation I thought it would be a great idea to create a one-pager which helps every user to remember important things like query language syntax. You can download the cheatsheet here: &#160; Download here.]]></description>
			<content:encoded><![CDATA[<p>Since we all need documentation I thought it would be a great idea to create a one-pager which helps every user to remember important things like query language syntax.</p>
<p>You can download the cheatsheet here:</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="cheatsheet" border="0" alt="cheatsheet" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/cheatsheet.png" width="400" height="286" /></a>&#160;</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/01/sonesGQLcheatsheet_13012010.pdf" target="_blank">Download here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/13/sones-graphquerylanguage-and-graphdb-quick-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you want to determine if your code is being compiled by Mono&#8230;</title>
		<link>http://www.schrankmonster.de/2009/12/22/if-you-want-to-determine-if-your-code-is-being-compiled-by-mono/</link>
		<comments>http://www.schrankmonster.de/2009/12/22/if-you-want-to-determine-if-your-code-is-being-compiled-by-mono/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 16:28:34 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/22/if-you-want-to-determine-if-your-code-is-being-compiled-by-mono/</guid>
		<description><![CDATA[… you can use the “__MonoCS_” pre-processor flag.]]></description>
			<content:encoded><![CDATA[<p>… you can use the “__MonoCS_” pre-processor flag.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/12/monoifdef.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="mono-ifdef" border="0" alt="mono-ifdef" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/monoifdef_thumb.png" width="400" height="254" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/22/if-you-want-to-determine-if-your-code-is-being-compiled-by-mono/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>small tool to filter iCal / iCalendar / ICS files</title>
		<link>http://www.schrankmonster.de/2009/12/06/small-tool-to-filter-ical-icalendar-ics-files/</link>
		<comments>http://www.schrankmonster.de/2009/12/06/small-tool-to-filter-ical-icalendar-ics-files/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 18:12:48 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/06/small-tool-to-filter-ical-icalendar-ics-files/</guid>
		<description><![CDATA[I am managing my appointments using Outlook on windows and iCal on OS X. Since I am not using any Exchange service right now I was happy to find out that Outlook offers a functionality to export a local calendar automatically to an iCalendar compatible ICS file. Great feature but it lacks some things I [...]]]></description>
			<content:encoded><![CDATA[<p>I am managing my appointments using Outlook on windows and iCal on OS X. Since I am not using any Exchange service right now I was happy to find out that Outlook offers a functionality to export a local calendar automatically to an iCalendar compatible ICS file. Great feature but it lacks some things I desperately need.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/12/outlookg.png" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="outlookg" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/outlookg_thumb.png" border="0" alt="outlookg" width="404" height="242" /></a></p>
<p>Since I am managing my private and my business appointments in the same calendar, differentiating just by categories, I had a hard time configuring outlook to export a) an ics file containing all business appointments and b) an ics file containing all private appointments. It’s not possible to make the story short.</p>
<p>So I fired up Visual Studio as usual and wrote my own filter tool. I shall call it “iCalFilter”. It’s name is as simple as it’s functionality and code. I am releasing it under BSD license including the sources so everyone can use and modify it.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/12/icalfilter_1.png" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="icalfilter_1" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/icalfilter_1_thumb.png" border="0" alt="icalfilter_1" width="404" height="61" /></a></p>
<p>It’s a command line tool which should compile on Microsoft .NET and Mono. It takes several command line parameters like:</p>
<ol>
<li>Input-File</li>
<li>Output-File</li>
<li>“include” or “exclude” –&gt; this determines if the following categories are included or excluded in the output file</li>
<li>a list of categories separated by spaces</li>
<li>an optional parameter “-remove-description” which, if entered, removes all descriptions from events and alarms</li>
</ol>
<p>Easy, eh?!</p>
<p>Grab the Source and Binary here: <a title="http://dropbox.schrankmonster.de/dropped/iCalFilter01.zip" href="http://dropbox.schrankmonster.de/dropped/iCalFilter01.zip">http://dropbox.schrankmonster.de/dropped/iCalFilter01.zip</a></p>
<p>UPDATE: You can now access <a href="https://github.com/bietiekay/iCalFilter" target="_blank">the source code on github!</a> You can even add your changes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/06/small-tool-to-filter-ical-icalendar-ics-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unser erster Presse-Artikel im heise Newsticker</title>
		<link>http://www.schrankmonster.de/2009/11/23/unser-erster-presse-artikel-im-heise-newsticker/</link>
		<comments>http://www.schrankmonster.de/2009/11/23/unser-erster-presse-artikel-im-heise-newsticker/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 13:48:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/11/23/unser-erster-presse-artikel-im-heise-newsticker/</guid>
		<description><![CDATA[Was für ein Tag. Nachdem wir vor ein paar Tagen nach viel harter Arbeit die “Technical Preview” unseres Babys “graphDB” gestartet haben hat nun auch der heise Verlag – namentlich die iX die frohe Kunde aufgegriffen und einen entsprechenden Artikel im Newsticker veröffentlich. Wenn man sich auf jede Instanz die im Moment für Tester läuft [...]]]></description>
			<content:encoded><![CDATA[<p>Was für ein Tag. Nachdem wir vor ein paar Tagen nach viel harter Arbeit die “Technical Preview” unseres Babys “graphDB” gestartet haben hat nun auch der heise Verlag – namentlich die iX die frohe Kunde aufgegriffen und einen entsprechenden Artikel im Newsticker veröffentlich.</p>
<p>Wenn man sich auf jede Instanz die im Moment für Tester läuft ein Login geben lässt sieht das übrigends so aus:</p>
<p align="center"><a href="http://www.sones.com" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="hosting75instances" border="0" alt="hosting75instances" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/hosting75instances.png" width="600" height="375" /></a> </p>
<p>Wundervoll zu sehen dass die Arbeit von exzellenten Entwicklern entsprechende Würdigung durch Kunden erhält. Interesse ist gut und ich denke in Zukunft wird man noch viel von der sones graphDB hören!</p>
<p>Source: <a title="http://www.heise.de/newsticker/meldung/Objektorientierte-Datenbank-als-Webservice-866041.html" href="http://www.heise.de/newsticker/meldung/Objektorientierte-Datenbank-als-Webservice-866041.html">http://www.heise.de/newsticker/meldung/Objektorientierte-Datenbank-als-Webservice-866041.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/11/23/unser-erster-presse-artikel-im-heise-newsticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So what exactly is Microsoft Research doing?</title>
		<link>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/</link>
		<comments>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:23:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/</guid>
		<description><![CDATA[I am proud to anounce that there’s a video publicly available which shows parts and projects Microsoft Research is working on currently. It’s great to see theses projects, concepts and ideas become publicly available one by one: “Craig Mundie, chief research and strategy officer of Microsoft, presents “Rethinking Computing,” a look a how software and [...]]]></description>
			<content:encoded><![CDATA[<p>I am proud to anounce that there’s a video publicly available which shows parts and projects Microsoft Research is working on currently. It’s great to see theses projects, concepts and ideas become publicly available one by one:</p>
<p>“Craig Mundie, chief research and strategy officer of Microsoft, presents “Rethinking Computing,” a look a how software and information technology can help solve the most pressing global challenges we face today. Part of UW’s Computer Science and Engineering’s Distinguished Lecture Series, Mundie demonstrates a number of current and future-looking technologies that show how computer science is changing scientific exploration and discovery in exciting ways. He discusses the role of new science in solving the global energy crisis, and answer questions from the audience.”</p>
<p><a href="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="uwtv" border="0" alt="uwtv" src="http://www.schrankmonster.de/wp-content/uploads/2009/11/uwtv.png" width="404" height="280" /></a></p>
<p>Source: <a title="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021" href="http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021">http://www.uwtv.org/programs/displayevent.aspx?rID=30363&amp;fID=6021</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/11/11/so-what-exactly-is-microsoft-research-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>and another Dell laptop just died&#8230;</title>
		<link>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 13:04:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/</guid>
		<description><![CDATA[this time a XPS M1330 blue-screened and only shows colored lines if you restart it: If only the hardware would be as great as their service is!]]></description>
			<content:encoded><![CDATA[<p>this time a XPS M1330 blue-screened and only shows colored lines if you restart it:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/Foto.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Foto" border="0" alt="Foto" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/Foto_thumb.jpg" width="404" height="304" /></a></p>
<p>If only the hardware would be as great as their service is!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/and-another-dell-laptop-just-died/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>maybe I should…</title>
		<link>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 13:11:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/18/maybeIShould.aspx</guid>
		<description><![CDATA[…switch this website to another weblog software in the future. The dasBlog development isn’t exactly what I would call fast-paced. It even seems that there was no movement at all for the last year at all regarding new features. I took a short look at a current WordPress installation we did for our Developer Website [...]]]></description>
			<content:encoded><![CDATA[<p>…switch this website to another weblog software in the future. The dasBlog development isn’t exactly what I would call fast-paced. It even seems that there was no movement at all for the last year at all regarding new features.</p>
<p>I took a short look at a current WordPress installation we did for our <a href="http://developers.sones.de" target="_blank">Developer Website</a> at sones – and I have to admit that feature-wise this WordPress is way beyond anything I could achieve in dasBlog anytime soon.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/maybeIshould_D570/sonesdev.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="sonesdev" border="0" alt="sonesdev" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/maybeIshould_D570/sonesdev_thumb.png" width="404" height="226" /></a>&#160;</p>
<p>Additionally the fact that the skin of this site seems to be broken (especially for older browsers) I would have to do a skin-redesign – turns out that this is way easier in WordPress than it is in dasBlog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/18/maybe-i-should%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Many 0x00s in the test run results…</title>
		<link>http://www.schrankmonster.de/2009/07/24/many-0x00s-in-the-test-run-results%e2%80%a6/</link>
		<comments>http://www.schrankmonster.de/2009/07/24/many-0x00s-in-the-test-run-results%e2%80%a6/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:43:17 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/07/24/Many0x00sInTheTestRunResults.aspx</guid>
		<description><![CDATA[We have this network share where each build from all the build-servers is dropped, including it’s test run results. It seems that we’re producing a huge number of almost empty filesystem test images which lead to astounding compression ratios:]]></description>
			<content:encoded><![CDATA[<p>We have this network share where each build from all the build-servers is dropped, including it’s test run results. It seems that we’re producing a huge number of almost empty filesystem test images which lead to astounding compression ratios:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Many0x00sinthetestrunresults_DC6B/efficiency.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="efficiency" border="0" alt="efficiency" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Many0x00sinthetestrunresults_DC6B/efficiency_thumb.png" width="373" height="481" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/07/24/many-0x00s-in-the-test-run-results%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wieder aktuell: sones sucht weitere engagierte Softwareentwickler</title>
		<link>http://www.schrankmonster.de/2009/07/16/wieder-aktuell-sones-sucht-weitere-engagierte-softwareentwickler/</link>
		<comments>http://www.schrankmonster.de/2009/07/16/wieder-aktuell-sones-sucht-weitere-engagierte-softwareentwickler/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:33:56 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/07/16/wiederAktuellSonesSuchtWeitereEngagierteSoftwareentwickler.aspx</guid>
		<description><![CDATA[Ich hatte Ende letzten Jahres ja schon einmal ein Stellenangebot hier online gestellt. Damals mit dem Ergebnis einige sehr interessante Bewerber und letzlich auch hochmotivierte und qualifizierte Mitarbeiter gefunden zu haben. Da wir nun wieder auf der Suche nach Verstärkung sind nutze ich wieder dieses Medium: Die sones GmbH ist ein junges IT-Unternehmen mit Standort [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hatte Ende letzten Jahres ja schon einmal ein Stellenangebot hier online gestellt. Damals mit dem Ergebnis einige sehr interessante Bewerber und letzlich auch hochmotivierte und qualifizierte Mitarbeiter gefunden zu haben.</p>
<p>Da wir nun wieder auf der Suche nach Verstärkung sind nutze ich wieder dieses Medium:</p>
<hr />
<p>Die sones GmbH ist ein junges IT-Unternehmen mit Standort in Erfurt. Wir forschen in den Bereichen neuartiger Datenbank- und Speichertechnologien und entwickeln auf dieser Basis neue und innovative Produkte und Lösungen. </p>
<p>Am Standort Erfurt suchen wir ab sofort eine(n) </p>
<p align="center"><em>Software-Entwickler JAVA / .NET (m/w)</em></p>
<p>Sie wollen in einem jungen Team innovative Software entwickeln die im Datenbank-Segment ganz neue Wege aufzeigt? Als Software-Entwickler bei der sones GmbH haben Sie hierzu die Gelegenheit! </p>
<p>In einem hoch motiviertem Entwicklerteam arbeiten Sie am Kern unseres Datenbanksystems mit. Sie entwickeln Features und verbessern die Qualität der Codebasis im Hinblick auf Stabilität, Performance und Skalierbarkeit. Dabei kommen modernste Entwicklungswerkzeuge zum Einsatz. </p>
<p>Wenn Sie unsere hohen Ansprüche an fachliches Wissen, Eigeninitiative und Kommunikation als Herausforderung sehen – dann sind Sie bei uns herzlich willkommen!</p>
<p>Ihre Aufgaben:</p>
<ul>
<li>Projektplanung und Projektsteuerung in Koordination mit anderen Entwicklungsbereichen </li>
<li>Analyse, Design, Implementierung neuer Produktfeatures </li>
<li>Verbesserung der Qualität existierenden Codes im Hinblick auf Stabilität, Performance und Skalierbarkeit </li>
<li>Softwaretests und Dokumentationen </li>
<li>Evaluierung neuer Technologien und Prototyping </li>
</ul>
<p>Voraussetzungen:</p>
<ul>
<li>Studium im Bereich der Informatik oder vergleichbare Ausbildung mit überzeugenden Referenzen (Projekte, Beschäftigungen) </li>
<li>Mehrjährige Erfahrung in der Objektorientierten Softwareentwicklung </li>
<li>Von Vorteil:
<ul>
<li>Programmierkenntnisse JAVA und .NET</li>
<li>Erfahrungen mit Testdriven Development </li>
<li>Gute Englischkenntnisse </li>
<li>Erfahrungen mit Datenbankarchitekturen und Netzwerkprogrammierung </li>
</ul>
</li>
</ul>
<p>Ihre Soft Skills:</p>
<ul>
<li>Kommunikationsstärke und Bereitschaft zum dynamischen Wissens- und Informationsaustausch </li>
<li>Zuverlässigkeit und eigenständige kreative Denk- und Arbeitsweise </li>
<li>Ziel- bzw. Lösungsorientiertes Vorgehen </li>
</ul>
<p>Wir bieten:</p>
<ul>
<li>Hoch motiviertes und qualifiziertes Team </li>
<li>Ausgesprochen interessante und innovative Arbeitsgebiete </li>
<li>Viel Platz für Eigeninitiative und Kreativität </li>
<li>Die ständige Möglichkeit sich weiterzubilden und weiterzuentwickeln </li>
<li>Herausforderndes Umfeld eines High-Tech Start-Ups </li>
</ul>
<p>Sie sind interessiert? Dann freuen wir uns über ihre aussagekräftige Bewerbung mit Angabe ihrer Gehaltsvorstellung an <a href="mailto:jobs@sones.de">jobs@sones.de</a></p>
<hr />
<p>Der Vollständigkeit halber das Stellenangebot nochmal als PDF:</p>
<p align="center"><a href="http://dropbox.schrankmonster.de/dropped/1_Stellenbeschreibung%20Softwareentwickler%20Datenbank.pdf" target="_blank">Stellenangebot sones GmbH</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/07/16/wieder-aktuell-sones-sucht-weitere-engagierte-softwareentwickler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getting System.ServiceModel.AddressAccessDeniedException in automated WCF Tests</title>
		<link>http://www.schrankmonster.de/2009/06/05/getting-system-servicemodel-addressaccessdeniedexception-in-automated-wcf-tests/</link>
		<comments>http://www.schrankmonster.de/2009/06/05/getting-system-servicemodel-addressaccessdeniedexception-in-automated-wcf-tests/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 08:53:18 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/06/05/gettingSystemServiceModelAddressAccessDeniedExceptionInAutomatedWCFTests.aspx</guid>
		<description><![CDATA[We’re currently running several build processes. So each time someone checks new code in one of the build machines gets the whole package and builds it, runs tests on it and stores the result of this whole process on the Team Foundation Server. Great stuff so far. Until you start to do things like automated [...]]]></description>
			<content:encoded><![CDATA[<p> We’re currently running several build processes. So each time someone checks new code in one of the build machines gets the whole package and builds it, runs tests on it and stores the result of this whole process on the Team Foundation Server. Great stuff so far.</p>
<p>Until you start to do things like automated WCF Testing. We’re using the selfhosting capabilities of the WCF to start a ServiceHost and then run tests against it. This works great locally. It does not on the build machines. Even if you promote the Build-Service User to Administrator you won’t get the love.</p>
<p>The error you might get would look something like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/get.AddressAccessDeniedExceptioninautoma_9859/Capture.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/get.AddressAccessDeniedExceptioninautoma_9859/Capture_thumb.png" width="400" height="247" /></a></p>
<p>The exception contains an <a href="http://go.microsoft.com/fwlink/?LinkId=70353" target="_blank">URL</a> which tells you to add the Service URL to the machines URL Access Control List. On Windows XP and 2003 you have to install the Windows Support Tools and use the httpcfg command. On Windows Vista and 2008 you should use the already installed netsh commandline tool.</p>
<p>Since we need to get this to work on all current and future build servers I decided to add the netsh call to the build script, which looks like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/get.AddressAccessDeniedExceptioninautoma_9859/Capture2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="<Exec Command="netsh http add urlacl url=http://+:10000/PandoraDatabase/ user=SONES\TFS_BUILDSERVER"/>&#8221; border=&#8221;0&#8243; alt=&#8221;<Exec Command="netsh http add urlacl url=http://+:10000/PandoraDatabase/ user=SONES\TFS_BUILDSERVER"/>&#8221; src=&#8221;http://www.schrankmonster.de/content/binary/WindowsLiveWriter/get.AddressAccessDeniedExceptioninautoma_9859/Capture2_thumb.png&#8221; width=&#8221;400&#8243; height=&#8221;109&#8243; /></a></p>
<p>Add this Target before any tests in the .proj file and you’re set.</p>
<p>Source 1: <a title="http://go.microsoft.com/fwlink/?LinkId=70353" href="http://go.microsoft.com/fwlink/?LinkId=70353">http://go.microsoft.com/fwlink/?LinkId=70353</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/06/05/getting-system-servicemodel-addressaccessdeniedexception-in-automated-wcf-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechED EMEA 2009 – in Germany – will we be there? :-)</title>
		<link>http://www.schrankmonster.de/2009/04/09/teched-emea-2009-%e2%80%93-in-germany-%e2%80%93-will-we-be-there/</link>
		<comments>http://www.schrankmonster.de/2009/04/09/teched-emea-2009-%e2%80%93-in-germany-%e2%80%93-will-we-be-there/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 06:33:34 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/09/TechEDEMEA2009InGermanyWillWeBeThere.aspx</guid>
		<description><![CDATA[The dates are: TechEd Berlin 2009 Developer 2-6 November &#8211; Messe Berlin, Deutschland &#8211; Germany TechEd Berlin 2009 IT-Professionals 9-13 November &#8211; Messe Berlin, Deutschland &#8211; Germany Comment if you’re going too!]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TechEDEMEA2009inGermanywillwebethere_77C2/image_2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TechEDEMEA2009inGermanywillwebethere_77C2/image_thumb.png" width="404" height="62" /></a> </p>
<p>The dates are:</p>
<p><strong><a href="http://www.schrankmonster.de/SearchView.aspx?q=teched" target="_blank">TechEd</a> Berlin 2009 Developer      <br /></strong>2-6 November &#8211; Messe Berlin, Deutschland &#8211; Germany</p>
<p><strong><a href="http://www.schrankmonster.de/SearchView.aspx?q=teched" target="_blank">TechEd</a> Berlin 2009 IT-Professionals</strong>    <br />9-13 November &#8211; Messe Berlin, Deutschland &#8211; Germany</p>
<p align="center">Comment if you’re going too!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/09/teched-emea-2009-%e2%80%93-in-germany-%e2%80%93-will-we-be-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs Bunny</title>
		<link>http://www.schrankmonster.de/2009/04/06/bugs-bunny/</link>
		<comments>http://www.schrankmonster.de/2009/04/06/bugs-bunny/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:57:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/06/BugsBunny.aspx</guid>
		<description><![CDATA[Welcome our newest office Member! From the sales department with love: Bugs Bunny]]></description>
			<content:encoded><![CDATA[<p>Welcome our newest office Member!</p>
<p>From the sales department with love:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BugsBunny_DFD9/006_2.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="006" border="0" alt="006" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BugsBunny_DFD9/006_thumb.jpg" width="304" height="404" /></a> </p>
<p align="center">Bugs Bunny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/06/bugs-bunny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T-Online Venture Fund investiert in die sones GmbH</title>
		<link>http://www.schrankmonster.de/2009/04/02/t-online-venture-fund-investiert-in-die-sones-gmbh/</link>
		<comments>http://www.schrankmonster.de/2009/04/02/t-online-venture-fund-investiert-in-die-sones-gmbh/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 14:25:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/02/TOnlineVentureFundInvestiertInDieSonesGmbH.aspx</guid>
		<description><![CDATA[Bonn, 2. April 2009 Der T-Online Venture Fund gab heute ein Investment in die sones GmbH bekannt. sones sicherte sich in einer zweiten Finanzierungsrunde eine Beteiligung im einstelligen Millionenbereich. Mit den zusätzlichen Mitteln soll das Produkt bis zur endgültigen Marktreife weiterentwickelt werden. Das 2007 gegründete Software-Unternehmen aus Erfurt hat eine völlig neue, innovative Datenbanktechnologie entwickelt. [...]]]></description>
			<content:encoded><![CDATA[<p>Bonn, 2. April 2009   <br /><strong></strong></p>
<p align="justify"><strong>Der T-Online Venture Fund gab heute ein Investment in die sones GmbH bekannt. sones sicherte sich in einer zweiten Finanzierungsrunde eine Beteiligung im einstelligen Millionenbereich. Mit den zusätzlichen Mitteln soll das Produkt bis zur endgültigen Marktreife weiterentwickelt werden.     <br /></strong></p>
<p align="justify">Das 2007 gegründete Software-Unternehmen aus Erfurt hat eine völlig neue, innovative Datenbanktechnologie entwickelt. Die objektorientierte Datenbank kann die relevanten Informationen aus komplexen, unstrukturierten Datenmengen direkt miteinander verbinden und setzt somit neue Maßstäbe hinsichtlich Skalierbarkeit und Performance. Mit dieser Technologie werden komplexitätsbedingt bisher unlösbare Probleme in der Datenspeicherung und -analyse beherrschbar.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TOnlineVentureFundinvestiertindiesonesGm_E6F0/soneslogo.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="soneslogo" border="0" alt="soneslogo" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TOnlineVentureFundinvestiertindiesonesGm_E6F0/soneslogo_thumb.png" width="400" height="111" /></a>&#160; </p>
<p align="justify">&#8220;Bei sones hat uns vor allem die innovative Technologie überzeugt und der Ansatz, Bestehendes in Frage zu stellen. Somit können völlig neue Möglichkeiten des Datenmanagements geschaffen werden“, so Christoph Schmidt, Senior Vice President bei der Deutschen Telekom AG für den Bereich Personal Social Networks.</p>
<p align="justify">sones arbeitet derzeit am Ausbau seiner Datenbanktechnologie sowie am dazugehörigen Dateisystem. Gegen Ende dieses Jahres wird die erste Vollversion des objektorientierten Datenbankmanagementsystems (DBMS) zur Verfügung stehen. Softwareentwicklern und Partnern wird es via SDK (Software Development Kit) ermöglicht, weitreichenden Einfluss auf die Entwicklung zu nehmen und Veränderungen am System vorzunehmen. sones lädt interessierte Softwareentwickler und potentielle Partner ein, sich über die Webseite <a href="http://www.sones.de">www.sones.de</a> für das Preview- und Partner-Programm anzumelden, um die kostenlose Entwicklerversion zu erhalten und Feedback für die zukünftige Weiterentwicklung zu geben. Derzeit steht ein auf Webservices basierendes Tagging- und Recommendation-System zur Verfügung, das bereits kommerziell eingesetzt wird. „Das System kann an die jeweiligen Anforderungen in den Bereichen eCommerce, Social Networks und Portal/Content-Lösungen angepasst werden“ sagt Alexander Oelling, Leiter New Business Development bei sones. Auch hier setzt sones auf die Zusammenarbeit mit Software-Partnern, um das Produkt in die jeweiligen Webseiten zu integrieren.</p>
<p align="justify">Mauricio Matthesius, Geschäftsführer von sones: „Der T-Online Venture Fund hat erkannt, dass unsere revolutionäre Technologie die Zukunft der Datenbanken mitbestimmen kann, und uns in die Lage versetzt, diese Vision konsequent umzusetzen.“</p>
<p align="justify">Mit dem Einstieg des T-Online Venture Fund sucht das Unternehmen weitere Mitarbeiter vor allen in den Bereichen Softwareentwicklung und Vertrieb.”</p>
<p align="justify">Source 1: <a title="http://www.t-venture.de/de/topnews/090402_PM_TOVF_sones_dt" href="http://www.t-venture.de/de/topnews/090402_PM_TOVF_sones_dt">http://www.t-venture.de/de/topnews/090402_PM_TOVF_sones_dt</a>    <br />Source 2: <a href="http://www.sones.de">http://www.sones.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/02/t-online-venture-fund-investiert-in-die-sones-gmbh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>two times unfortunate stuff</title>
		<link>http://www.schrankmonster.de/2009/03/01/two-times-unfortunate-stuff/</link>
		<comments>http://www.schrankmonster.de/2009/03/01/two-times-unfortunate-stuff/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 20:48:48 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/03/01/twoTimesUnfortunateStuff.aspx</guid>
		<description><![CDATA[First my Vista x64 machine at home seems to get slower by any minute it is powered on – most likely because one service is eating up all the installed memory: (screenshot from Process Explorer) I wasn’t able to figure out what’s the problem with it – restarting the associated services did nothing at all [...]]]></description>
			<content:encoded><![CDATA[<p>First my Vista x64 machine at home seems to get slower by any minute it is powered on – most likely because one service is eating up all the installed memory:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/twotimesunfortunatestuff_130DB/5gb_2.png" target="_blank"><img title="5gb" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="102" alt="5gb" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/twotimesunfortunatestuff_130DB/5gb_thumb.png" width="404" border="0" /></a>    <br />(screenshot from <a href="http://technet.microsoft.com/de-de/sysinternals/bb896653.aspx" target="_blank">Process Explorer</a>) </p>
<p align="left">I wasn’t able to figure out what’s the problem with it – restarting the associated services did nothing at all &#8211; killing it and restarting the services resulted in 5 gb of free memory… </p>
<p align="left">And then there’s the other thing that happened this morning. We ordered a pile of 20 hard disks before christmas – and now 4 of them died. </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/twotimesunfortunatestuff_130DB/business.png" target="_blank"><img title="business" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="79" alt="business" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/twotimesunfortunatestuff_130DB/business_thumb.png" width="404" border="0" /></a> </p>
</p>
<p>Farewell you little 1 Tbyte hard disk – we never had the chance to get to know each other better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/03/01/two-times-unfortunate-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sones got a new website</title>
		<link>http://www.schrankmonster.de/2009/02/20/sones-got-a-new-website/</link>
		<comments>http://www.schrankmonster.de/2009/02/20/sones-got-a-new-website/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 07:05:17 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/20/sonesGotANewWebsite.aspx</guid>
		<description><![CDATA[Finally after more than two months of hard work of our marketing department the new sones.de website is online. Hurray! It looks better and it’s way more informative than the old one was.]]></description>
			<content:encoded><![CDATA[<p> Finally after more than two months of hard work of our marketing department the new sones.de website is online. Hurray! <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  It looks better and it’s way more informative than the old one was.</p>
<p align="center"><a href="http://www.sones.de" target="_blank"><img title="soneswebsite" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="307" alt="soneswebsite" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesgotanewwebsite_7027/soneswebsite_1.jpg" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/20/sones-got-a-new-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>finally faster internet</title>
		<link>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/</link>
		<comments>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 19:43:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/19/finallyFasterInternet.aspx</guid>
		<description><![CDATA[QSC just delivered a second DSL line to our office – now even faster – 16 Mbits downstream should be enough for now. Since the german telecom could not deliver more than 3 Mbit/s we had to ask QSC for their service… overall a very good customer experience so far. If you order a DSL [...]]]></description>
			<content:encoded><![CDATA[<p>QSC just delivered a second DSL line to our office – now even faster – 16 Mbits downstream should be enough for now. Since the german telecom could not deliver more than 3 Mbit/s we had to ask QSC for their service… overall a very good customer experience so far.</p>
<p>If you order a DSL line in germany from a reseller like QSC it means that a technical guy from the german telecom is sent to your place and he is doing the last mile connect – in our case the guy thought it would be enough to drop the TAE socket inside the wall… means we have to get another company to do the cabling afterwards… well.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyfasterinternet_12361/006.jpg" target="_blank"><img title="006" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="304" alt="006" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyfasterinternet_12361/006_thumb.jpg" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/19/finally-faster-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pirates! and one more desk</title>
		<link>http://www.schrankmonster.de/2009/02/18/pirates-and-one-more-desk/</link>
		<comments>http://www.schrankmonster.de/2009/02/18/pirates-and-one-more-desk/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 12:39:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/18/PiratesAndOneMoreDesk.aspx</guid>
		<description><![CDATA[Marketing got us a pirate flag – nice of ‘em, isn’t it? Since Henning has started is work he is currently sitting in our office – waiting for the other two guys to move in the office. Pirates! HO! &#160;]]></description>
			<content:encoded><![CDATA[<p align="left">Marketing got us a pirate flag – nice of ‘em, isn’t it? Since Henning has started is work he is currently sitting in our office – waiting for the other two guys to move in the office.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Piratesandonemoredesk_BFD4/003.jpg" target="_blank"><img title="003" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="404" alt="003" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Piratesandonemoredesk_BFD4/003_thumb.jpg" width="304" border="0" /></a></p>
<p align="center">Pirates! HO!</p>
<p align="center">&#160;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Piratesandonemoredesk_BFD4/003_stitch_2.jpg" target="_blank"><img title="003_stitch" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="163" alt="003_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Piratesandonemoredesk_BFD4/003_stitch_thumb.jpg" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/18/pirates-and-one-more-desk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Notebooks and the office for the 3 new developers :-)</title>
		<link>http://www.schrankmonster.de/2009/02/11/new-notebooks-and-the-office-for-the-3-new-developers/</link>
		<comments>http://www.schrankmonster.de/2009/02/11/new-notebooks-and-the-office-for-the-3-new-developers/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:08:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/11/NewNotebooksAndTheOfficeForThe3NewDevelopers.aspx</guid>
		<description><![CDATA[I’ve got a new work horse A brand new Dell Latitude E6400 just arrived on monday. It’s quite a lot faster than my old one and after the fresh install it’s also a whole lot better to work with. &#160; The other news is that all the new hardware for the 3 new developers arrived [...]]]></description>
			<content:encoded><![CDATA[<p align="left">I’ve got a new work horse <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  A brand new Dell Latitude E6400 just arrived on monday. It’s quite a lot faster than my old one and after the fresh install it’s also a whole lot better to work with.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NewNotebooksandtheofficeforthe3newdevelo_C504/017.jpg" target="_blank"><img title="017" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="304" alt="017" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NewNotebooksandtheofficeforthe3newdevelo_C504/017_thumb.jpg" width="404" border="0" /></a>&#160;</p>
<p align="left">The other news is that all the new hardware for the 3 new developers arrived this week. That means that the guys can move in! <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NewNotebooksandtheofficeforthe3newdevelo_C504/020.jpg" target="_blank"><img title="020" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="304" alt="020" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/NewNotebooksandtheofficeforthe3newdevelo_C504/020_thumb.jpg" width="404" border="0" /></a> </p>
<p align="center">3x Latitude E6400, 3x Keyboard+Mouse, 3x Sennheiser Headset, 3x 24” Widescreen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/11/new-notebooks-and-the-office-for-the-3-new-developers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sit down please.</title>
		<link>http://www.schrankmonster.de/2009/02/05/sit-down-please/</link>
		<comments>http://www.schrankmonster.de/2009/02/05/sit-down-please/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:32:14 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/05/SitDownPlease.aspx</guid>
		<description><![CDATA[Ha! I almost forgot to write about the cool sofa which was delivered last week (closing up to 99.99% Office completeness): &#160; It’s comfy and looks great – now the only thing left is the silver screen for the projector … the projector itself and the XBOX 360 is already here P.S.: Wanna work for [...]]]></description>
			<content:encoded><![CDATA[<p>Ha! I almost forgot to write about the cool sofa which was delivered last week (closing up to 99.99% Office completeness):</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Sitdownplease_AFE9/IMG_3974.jpg" target="_blank"><img title="IMG_3974" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="271" alt="IMG_3974" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Sitdownplease_AFE9/IMG_3974_thumb.jpg" width="404" border="0" /></a> </p>
<p>&#160;</p>
<p>It’s comfy and looks great – now the only thing left is the silver screen for the projector … the projector itself and the XBOX 360 is already here <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>P.S.: <a href="http://www.schrankmonster.de/2008/12/03/StellenangebotSoftwareentwicklerNETC.aspx" target="_blank">Wanna work for us?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/05/sit-down-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Jabber to monitor Windows EventLogs</title>
		<link>http://www.schrankmonster.de/2009/01/22/using-jabber-to-monitor-windows-eventlogs/</link>
		<comments>http://www.schrankmonster.de/2009/01/22/using-jabber-to-monitor-windows-eventlogs/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 09:17:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/22/UsingJabberToMonitorWindowsEventLogs.aspx</guid>
		<description><![CDATA[Like every company we also got several machines working just for our infrastructural needs like Sharepoints, Activedirectory, Databases, Backup-Servers and so on. To monitor many machines we came across the idea to use Jabber Instant Messaging to monitor the machines. For example the VPN should drop a line to specified jabber adresses if someone connects [...]]]></description>
			<content:encoded><![CDATA[<p>Like every company we also got several machines working just for our infrastructural needs like Sharepoints, Activedirectory, Databases, Backup-Servers and so on.</p>
<p>To monitor many machines we came across the idea to use Jabber Instant Messaging to monitor the machines. For example the VPN should drop a line to specified jabber adresses if someone connects or disconnects. Every single machine is maintaining it’s own log – which means you would have to consolidate them in some ways. And since consolidation is not the masterplan – since you would need an event alarm system which sends out alarm calls if something weird is happening, you would need that alarm system too.</p>
<p>So we wrote (while waiting for the machines to install) several small tools which provide a gateway between syslog-ng, windows event logs and Jabber.</p>
<p>Since we are using this productively my Jabber Client Window looks something like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/psi_2.png" target="_blank"><img title="psi" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="217" alt="psi" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/psi_thumb_2.png" width="400" border="0" /></a>&#160;</p>
<p align="left">As you can see there are 3 machines online right now – and since these are Linux machines they also provide some status information like load averages and free memory. The Linux version was written by ahzf in perl – and obviously his library can handle the presence and status information much better than the one I used for the Windows version <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  &#8211; So there are no presence and status informations for the Windows machines right now.</p>
<p align="left">The Windows version is written in C# and relies on the <a href="http://code.google.com/p/jabber-net/" target="_blank">Jabber.NET library</a>. It comes with a small setup and runs as a windows service.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/jabbereventlog_windows.png" target="_blank"><img title="jabbereventlog_windows" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="321" alt="jabbereventlog_windows" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/jabbereventlog_windows_thumb.png" width="404" border="0" /></a> </p>
<p align="left">In the setup you have to enter the username+password of a user that can access the local Windows Event Log. After the successful setup you need to edit the config file:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/editconfig.png" target="_blank"><img title="editconfig" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="307" alt="editconfig" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/UsingJabbertomonitorWindowsEventLogs_9049/editconfig_thumb.png" width="404" border="0" /></a> </p>
<p align="left">It’s XML and quite easy to understand (I think) – so you define the jabber server, the user, the password, the Users that you want to receive the messages and the EventLog you want to monitor. </p>
<p align="left">After starting the service you get the startup message via the jabber server and from now on everything that is written into the Windows Event Log is sent to the accounts you specified. Easy eh?</p>
<p align="left">P.S.: sourcecode release will be after we packaged everything.</p>
<p align="left">Source: <a title="http://code.google.com/p/jabber-net/" href="http://code.google.com/p/jabber-net/">http://code.google.com/p/jabber-net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/22/using-jabber-to-monitor-windows-eventlogs/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Power Install Party</title>
		<link>http://www.schrankmonster.de/2008/12/15/power-install-party/</link>
		<comments>http://www.schrankmonster.de/2008/12/15/power-install-party/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 11:10:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/12/15/PowerInstallParty.aspx</guid>
		<description><![CDATA[Hmm&#8230; setting up the new gear for the office infrastructure can be somewhat time consuming&#8230; Having relatively huge VMWare Server Host machines we&#8217;re power-installing all the virtual machines that are needed for your inhouse infrastructure&#8230;]]></description>
			<content:encoded><![CDATA[<p>Hmm&#8230; setting up the new gear for the office infrastructure can be somewhat time consuming&#8230;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/PowerInstallParty_AACB/powerinstallparty2_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="147" alt="powerinstallparty2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/PowerInstallParty_AACB/powerinstallparty2_thumb.png" width="404" border="0"></a> </p>
<p align="left">Having relatively huge VMWare Server Host machines we&#8217;re power-installing all the virtual machines that are needed for your inhouse infrastructure&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/12/15/power-install-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SONES Office 80% complete</title>
		<link>http://www.schrankmonster.de/2008/12/08/sones-office-80-complete/</link>
		<comments>http://www.schrankmonster.de/2008/12/08/sones-office-80-complete/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 15:43:52 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/12/08/SONESOffice80Complete.aspx</guid>
		<description><![CDATA[Das Entwickler-Büro #1 ist bereits 99% fertiggestellt&#8230; auch sonst sind die Räumlichkeiten nun fast komplett Also deshalb auch ein paar Update Panoramen: (Achim am Gerät)]]></description>
			<content:encoded><![CDATA[<p>Das Entwickler-Büro #1 ist bereits 99% fertiggestellt&#8230; auch sonst sind die Räumlichkeiten nun fast komplett <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Also deshalb auch ein paar Update Panoramen:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3878_stitch_2.jpg" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="146" alt="IMG_3878_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3878_stitch_thumb.jpg" width="404" border="0"></a> </p>
<p align="center">(<a href="http://blog.ahzf.de" target="_blank">Achim</a> am Gerät)</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3880_stitch_2.jpg" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="156" alt="IMG_3880_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3880_stitch_thumb.jpg" width="404" border="0"></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3910_stitch_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="161" alt="IMG_3910_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SONESOffice80complete_EB1E/IMG_3910_stitch_thumb.jpg" width="404" border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/12/08/sones-office-80-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stellenangebot Softwareentwickler .NET / C#</title>
		<link>http://www.schrankmonster.de/2008/12/03/stellenangebot-softwareentwickler-net-c/</link>
		<comments>http://www.schrankmonster.de/2008/12/03/stellenangebot-softwareentwickler-net-c/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 13:06:33 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/12/03/StellenangebotSoftwareentwicklerNETC.aspx</guid>
		<description><![CDATA[Wir stellen ein! Die Sones GmbH ist ein junges IT-Unternehmen mit Standort in Erfurt. Wir forschen in den Bereichen neuartiger Datenbank- und Speichertechnologien und entwickeln auf dieser Basis neue und innovative Produkte und Lösungen. Am Standort Erfurt suchen wir ab sofort eine(n) Software-Entwickler .NET / C# (m/w) Sie wollen in einem jungen Team innovative Software [...]]]></description>
			<content:encoded><![CDATA[<p>Wir stellen ein!</p>
<p>Die Sones GmbH ist ein junges IT-Unternehmen mit Standort in Erfurt. Wir forschen in den Bereichen neuartiger Datenbank- und Speichertechnologien und entwickeln auf dieser Basis neue und innovative Produkte und Lösungen. </p>
<p>Am Standort Erfurt suchen wir ab sofort eine(n) </p>
<p align="center"><strong>Software-Entwickler .NET / C# (m/w) </strong></p>
<p>Sie wollen in einem jungen Team innovative Software entwickeln die im Datenbank-Segment ganz neue Wege aufzeigt? Als Software-Entwickler bei der Sones GmbH haben Sie hierzu die Gelegenheit! </p>
<p>In einem hoch motiviertem Entwicklerteam arbeiten Sie am Kern unseres Datenbanksystems mit. Sie entwickeln Features und verbessern die Qualität der Codebasis im Hinblick auf Stabilität, Performance und Skalierbarkeit. Dabei kommen modernste Entwicklungswerkzeuge zum Einsatz. </p>
<p>Wenn Sie unsere hohen Ansprüche an fachliches Wissen, Eigeninitiative und Kommunikation als Herausforderung sehen – dann sind Sie bei uns herzlich willkommen!</p>
<p>Ihre Aufgaben:</p>
<ul>
<li>Projektplanung und Projektsteuerung in Koordination mit anderen Entwicklungsbereichen</li>
<li>Analyse, Design, Implementierung neuer Produktfeatures</li>
<li>Verbesserung der Qualität existierenden Codes im Hinblick auf Stabilität, Performance und Skalierbarkeit</li>
<li>Softwaretests und Dokumentationen</li>
<li>Evaluierung neuer Technologien und Prototyping</li>
</ul>
<p>Voraussetzungen:</p>
<ul>
<li>Studium im Bereich der Informatik oder vergleichbare Ausbildung mit überzeugenden Referenzen (Projekte, Beschäftigungen)</li>
<li>Mehrjährige Erfahrung in der Objektorientierten Softwareentwicklung</li>
<li>Von Vorteil:</li>
<ul>
<li>Programmierkenntnisse .NET und C#</li>
<li>Erfahrungen mit Testdriven Development</li>
<li>Gute Englischkenntnisse</li>
<li>Erfahrungen mit Datenbankarchitekturen und Netzwerkprogrammierung</li>
</ul>
</ul>
<p>Ihre Soft Skills:</p>
<ul>
<li>Kommunikationsstärke und Bereitschaft zum dynamischen Wissens- und Informationsaustausch</li>
<li>Zuverlässigkeit und eigenständige kreative Denk- und Arbeitsweise</li>
<li>Ziel- bzw. Lösungsorientiertes Vorgehen</li>
</ul>
<p>Wir bieten:</p>
<ul>
<li>Hoch motiviertes und qualifiziertes Team</li>
<li>Ausgesprochen interessante und innovative Arbeitsgebiete</li>
<li>Viel Platz für Eigeninitiative und Kreativität</li>
<li>Die ständige Möglichkeit sich weiterzubilden und weiterzuentwickeln</li>
<li>Herausforderndes Umfeld eines High-Tech Start-Ups</li>
</ul>
<p>Sie sind interessiert? Dann freuen wir uns über ihre aussagekräftige Bewerbung mit Angabe ihrer Gehaltsvorstellung an <a href="mailto:jobs@sones.de">jobs@sones.de</a> </p>
<p>Der Vollständigkeit halber das Stellenangebot nochmal als PDF:</p>
<p align="center">
<div class="wlWriterSmartContent" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:264b3c21-b854-403a-ac96-4d858f615e61" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<p> <a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/StellenangebotSoftwareentwickler.NETC_C260/Stellenbeschreibung%20Softwareentwickler%20Datenbank.pdf" target="_blank">Stellenangebot PDF</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/12/03/stellenangebot-softwareentwickler-net-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Das neue SONES Office :-)</title>
		<link>http://www.schrankmonster.de/2008/12/03/das-neue-sones-office/</link>
		<comments>http://www.schrankmonster.de/2008/12/03/das-neue-sones-office/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 12:18:01 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/12/03/DasNeueSONESOffice.aspx</guid>
		<description><![CDATA[Seit Anfang dieser Woche sind wir ja offiziell in die neuen Räume eingezogen und dementsprechend geht es hier die ganze Zeit rund. Ikea hat schon aufgebaut und gerade ziehen die Elektriker die notwendigen Netzwerk- und Stromkabel ein. Es geht zu wie im Taubenschlag Rein technisch ist zumindest mein Arbeitsplatz schon vollständig aufgebaut &#8211; alles in [...]]]></description>
			<content:encoded><![CDATA[<p>Seit Anfang dieser Woche sind wir ja offiziell in die neuen Räume eingezogen und dementsprechend geht es hier die ganze Zeit rund. Ikea hat schon aufgebaut und gerade ziehen die Elektriker die notwendigen Netzwerk- und Stromkabel ein. Es geht zu wie im Taubenschlag <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Rein technisch ist zumindest mein Arbeitsplatz schon vollständig aufgebaut &#8211; alles in allem ist hier ein deutlich angenehmeres Arbeiten möglich als im alten Büro und es sieht alles viel schicker aus.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DasneueSONESOffice_B7AA/IMG_3831_stitch_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="182" alt="IMG_3831_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DasneueSONESOffice_B7AA/IMG_3831_stitch_thumb.jpg" width="404" border="0"></a></p>
<p align="center">jaja es sieht <strong>noch </strong>wild aus &#8211; aber es entsteht ja noch <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Habe ich erwähnt dass das Büro indem ich sitze das einzige mit Tür auf die Dachterrasse ist? Oh das wird toll im Sommer!</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DasneueSONESOffice_B7AA/IMG_3838_stitch_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="201" alt="IMG_3838_stitch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/DasneueSONESOffice_B7AA/IMG_3838_stitch_thumb.jpg" width="404" border="0"></a> </p>
<p align="center">der Himmel ist böse grau in letzter Zeit &#8211; ich schätze ich habe heute eine interessante Heimfahrt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/12/03/das-neue-sones-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>elastic windows</title>
		<link>http://www.schrankmonster.de/2008/10/24/elastic-windows/</link>
		<comments>http://www.schrankmonster.de/2008/10/24/elastic-windows/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 18:04:12 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/24/elasticWindows.aspx</guid>
		<description><![CDATA[Amazon has done it&#8217;s thing and you can now order Windows based machinery based on EC2. That&#8217;s great news for us since we&#8217;re definitly planning to make our software also available on EC2. &#8220;Amazon EC2 running Microsoft Windows Server® 2003 is a fast and dependable environment for deploying applications using the Microsoft Web Platform, including [...]]]></description>
			<content:encoded><![CDATA[<p>Amazon has done it&#8217;s thing and you can now order Windows based machinery based on EC2. That&#8217;s great news for us since we&#8217;re definitly planning to make our software also available on EC2.</p>
<p>&#8220;Amazon EC2 running Microsoft Windows Server® 2003 is a fast and dependable environment for deploying applications using the Microsoft Web Platform, including ASP.NET, ASP.NET AJAX, Silverlight™, and Internet Information Server (IIS). Amazon EC2 enables you to run any compatible Windows-based solution on AWS’ high-performance, reliable, cost-effective, cloud computing platform. Common Windows use cases include website and web-service hosting, high-performance computing (HPC) and data processing, media transcoding, distributed testing, ASP.NET application hosting, and any other application requiring Windows software. Amazon EC2 also now supports the SQL Server® Express and SQL Server Standard databases, and makes those offerings available to customers on an hourly basis.&#8221;</p>
</p>
<p>Source: <a title="http://aws.amazon.com/windows/" href="http://aws.amazon.com/windows/">http://aws.amazon.com/windows/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/24/elastic-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the new VMWare Server 2.0&#8230;</title>
		<link>http://www.schrankmonster.de/2008/10/14/the-new-vmware-server-2-0/</link>
		<comments>http://www.schrankmonster.de/2008/10/14/the-new-vmware-server-2-0/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 13:43:24 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/14/theNewVMWareServer20.aspx</guid>
		<description><![CDATA[&#8230;is such a great product. It was easier to install than the 1.0 version and since the VMWare Server Console is gone and the WebAccess is revamped it got a great new user interface. Source: http://vmware.com/products/server/]]></description>
			<content:encoded><![CDATA[<p> &#8230;is such a great product.</p>
<p>It was easier to install than the 1.0 version and since the VMWare Server Console is gone and the WebAccess is revamped it got a great new user interface.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thenewVMWareServer2.0_E21E/vmware2_1.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="315" alt="vmware2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thenewVMWareServer2.0_E21E/vmware2_thumb_1.png" width="404" border="0"></a></p>
<p align="left">Source: <a title="http://vmware.com/products/server/" href="http://vmware.com/products/server/">http://vmware.com/products/server/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/14/the-new-vmware-server-2-0/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Auf der Suche nach einem CMS&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/</link>
		<comments>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 12:09:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/28/AufDerSucheNachEinemCMS.aspx</guid>
		<description><![CDATA[In unserer kleinen Firma sind wir zur Zeit auch auf der Suche nach einem brauchbaren Content Management System und da kommt natürlich so ein Artikel wie gerufen: Eine Übersicht über einige der großen CMSe. Im moment favorisiert der Verantwortliche für die Webseite das Typo3 &#8211; das hab ich dann auch mal per VM zur Verfügung [...]]]></description>
			<content:encoded><![CDATA[<p>In unserer <a href="http://www.sones.de" target="_blank">kleinen Firma</a> sind wir zur Zeit auch auf der Suche nach einem brauchbaren Content Management System und da kommt natürlich so ein Artikel wie gerufen: Eine Übersicht über einige der großen CMSe. Im moment favorisiert der Verantwortliche für die Webseite das Typo3 &#8211;  das hab ich dann auch mal per VM zur Verfügung gestellt &#8211; aber wirklich überzeugt hat es zumindest mich nicht &#8211; nungut, ich muss damit ja auch nicht klar kommen.</p>
<p><em>&#8220;Wenigstens bin ich nicht der einzige! Und neu ist meine Problematik auch nicht: Bereits Anfang 2004 war der große </em><a href="http://www.mezzoblue.com/archives/2004/01/09/wanted_cms/"><em>Dave Shea auf der Suche nach einem geeigneten CMS</em></a><em>, das seine (wirklich nicht besonders exotischen) Forderungen erfüllt. So ähnlich fühle ich mich auch gerade, jedoch fast 5 Jahre später. Und wie es scheint, hat sich gar nicht soviel verändert <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AufderSuchenacheinemCMS_DCBC/typo3.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="typo3" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AufderSuchenacheinemCMS_DCBC/typo3_thumb.png" width="347" border="0"></a> </p>
<p>Source: <a title="http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer" href="http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer">http://praegnanz.de/weblog/subjektiver-cms-einkaufsfuehrer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/28/auf-der-suche-nach-einem-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When did RAID became independent?</title>
		<link>http://www.schrankmonster.de/2008/09/19/when-did-raid-became-independent/</link>
		<comments>http://www.schrankmonster.de/2008/09/19/when-did-raid-became-independent/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 19:39:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/19/WhenDidRAIDBecameIndependent.aspx</guid>
		<description><![CDATA[Once upon a time I was told about that cool technology that lets you take several hard drives and glue them &#8220;together&#8221; to a single big volume. This technology was called RAID &#8211; Redundant Array of Inexpensive Disks &#8211; and that it was. It brought us greater levels of reliability and performance &#8211; and it [...]]]></description>
			<content:encoded><![CDATA[<p>Once upon a time I was told about that cool technology that lets you take several hard drives and glue them &#8220;together&#8221; to a single big volume. This technology was called RAID &#8211; Redundant Array of Inexpensive Disks &#8211; and that it was. It brought us greater levels of reliability and performance &#8211; and it was inexpensive compared with other technologies and since hard drive prices are falling for years and storage space is growing along with that it&#8217;s getting even cheaper than anything else you could use to store data securely. Some of us even backup to a independent RAID system.
<p>In the beginning of this all there were several hard drive interface technologies used &#8211; mainly it was Parallel ATA and SCSI. It was widely accepted that the SCSI drives are specified for 24/7 server usage and were almost everytime faster than their consumer PATA relatives. It was accepted that if you want to build a reliable industry grade RAID you would want to use SCSI drives &#8211; the SCSI bus system even had advantages like up to 7 drives per bus compared to just 2 drives with PATA or hot-swap capabilities.
<p>Over the last years it turned out that SATA is the new interface technology that replaces the old SCSI and PATA. There are several server grade SATA drives available now &#8211; these drives are getting cheaper, faster and bigger by the minute. So there&#8217;s not a real purpose for anything &#8220;more server than server-SATA&#8221; you might think. Again if you want to build inexpensive and redundant storage arrays there is nothing cheaper than standard or even server SATA drives. They are fast, reliable and huge.
<p>So some years ago the industry presents: the SAS interface. It&#8217;s called &#8220;Serial Attached SCSI&#8221; and is the &#8220;new cool thing in hard disk storage&#8221;. There are some niche features that may or may not justify the existence of SAS. A fact is that SAS hard drives of the same size and speed are more expensive.
<p>&#8220;SATA is marketed as a general-purpose successor to Parallel ATA and is now common in the consumer market, while the more expensive SAS is marketed for critical server applications.(Wikipedia)
<p>It&#8217;s getting worse: The industry started to offer fast hard drives (15000 rpm) only for the more expensive SAS interface. The few 15k rpm SATA drives are not slower in any way than their SAS versions &#8211; but they are not widely available and all of a sudden the same price like the SAS version.
<p>But back to the definition of RAID:
<p>So over the years the technology made a giant leap forward and all of a sudden you find yourself using very expensive hard drives while glueing them together to giant volumes (it&#8217;s now terabytes&#8230;petabytes&#8230;). While consumer hard drives are available for about a third (at least) the price of the server version of the same drive. It seems that the widely accepted definition of inexpensive is replaced by independence. I do know that there are use cases when you want to use the fastest spinning drive available regardless of the price &#8211; but I also think that there could be affordable fast spinning drives if we shouldn&#8217;t be bothered to pay the marketing-fee that SAS brings. It&#8217;s plain marketing to make new 15k rpm drives only available for SAS and not for SATA. Marketing and nothing more.
<p>As it turns out many industry (marketing) brains (hey, even wikipedia) are switching to a new definition of RAID. It&#8217;s now a Redundant Array of Independent Disks &#8211; which I think is a definition that could not be worse. It&#8217;s not independence we gain with the new definition.
<p>Source 1: <a href="http://en.wikipedia.org/wiki/RAID#cite_note-1">http://en.wikipedia.org/wiki/RAID#cite_note-1</a><br />Source 2: <a href="http://en.wikipedia.org/wiki/Serial_Attached_SCSI">http://en.wikipedia.org/wiki/Serial_Attached_SCSI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/19/when-did-raid-became-independent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photosynth is open for the public</title>
		<link>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/</link>
		<comments>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 09:05:43 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/21/PhotosynthIsOpenForThePublic.aspx</guid>
		<description><![CDATA[Believe it or not &#8211; it&#8217;s been 2 years since I first wrote about Photosynth technology. Today Microsoft made it available to the public. It&#8217;s not a tool (yet) &#8211; like I wanted &#8211; right now but it&#8217;s built into this website &#8211; so you have to upload your pictures, they are processed and then [...]]]></description>
			<content:encoded><![CDATA[<p>Believe it or not &#8211; it&#8217;s been <a href="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx" target="_blank">2 years since I first wrote about Photosynth technology.</a> Today Microsoft made it available to the public. It&#8217;s not a tool (yet) &#8211; like I wanted &#8211; right now but it&#8217;s built into this website &#8211; so you have to upload your pictures, they are processed and then you can browse on this website&#8230; well it&#8217;s a start for a really great technology.</p>
<p><em>&#8220;We’re pleased to announce the first full release of Photosynth, available now at </em><a href="http://photosynth.com/"><em>photosynth.com</em></a><em>.  Photosynth takes a collection of regular photographs and reconstructs the scene or object in a 3-D environment.  For those of you who have seen </em><a href="http://www.ted.com/index.php/talks/blaise_aguera_y_arcas_demos_photosynth.html"><em>the videos</em></a><em> or tried our tech preview, you could experience synths that we made in the lab and get a feel for what Photosynth is and how it works.  But now, for the first time ever you can create synths from your own pictures and share them with your friends.  </em><a href="http://photosynth.net/explore.aspx"><em>Explore great synths</em></a><em> from others or </em><a href="http://photosynth.net/learn.aspx"><em>create a few of your own</em></a><em>.&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Photosynthisopenforthepublic_BDD3/halo3photosynth.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="283" alt="halo3photosynth" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Photosynthisopenforthepublic_BDD3/halo3photosynth_thumb.jpg" width="404" border="0"></a> </p>
<p align="left">It&#8217;s not going to work on anything different than Windows. So stick to the movies if you&#8217;re on anything else. But as far as I know it&#8217;ll run o</p>
<p>Source 1: <a title="http://photosynth.net/Default.aspx" href="http://photosynth.net/Default.aspx">http://photosynth.net/Default.aspx</a><br />Source 2: <a title="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx" href="http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx">http://www.schrankmonster.de/PermaLink,guid,fdc3d1fb-4966-418b-83ea-1e0c12aae833.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/21/photosynth-is-open-for-the-public/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vote for us! Stimmt ab für SONES</title>
		<link>http://www.schrankmonster.de/2008/08/16/vote-for-us-stimmt-ab-fur-sones/</link>
		<comments>http://www.schrankmonster.de/2008/08/16/vote-for-us-stimmt-ab-fur-sones/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 09:40:55 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/16/VoteForUsStimmtAbF%c3%bcrSONES.aspx</guid>
		<description><![CDATA[Ich hatte ja darüber berichtet dass unser kleines Startup &#8220;SONES&#8221; von der INTERNET World Business zur Wahl der besten Businessidee 2008 nominiert wurde. Nun sind wir unter die ersten 20 gekommen und jeder der es möchte hat die Chance uns bei dieser Wahl zu unterstützen: Für uns kann man unter diesem Link voten : Vote-link [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Ich hatte ja darüber berichtet dass unser kleines Startup &#8220;SONES&#8221; von der INTERNET World Business zur Wahl der besten Businessidee 2008 nominiert wurde. Nun sind wir unter die ersten 20 gekommen und jeder der es möchte hat die Chance uns bei dieser Wahl zu unterstützen:</p>
<p align="left">Für uns kann man unter <a href="http://www.internetworld.de/old/business-idee/sones-gmbh.html" target="_blank">diesem Link voten</a> <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> :</p>
<p align="center"><a href="http://www.internetworld.de/businessidee/sones-gmbh.html" target="_blank"><img style="border: 0px none ;" alt="vodeinternet" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/VoteforusStimmtabfrSONES_CC84/vodeinternet_1.jpg" border="0" height="167" width="204"></a> </p>
<p align="center"><a href="http://www.internetworld.de/old/business-idee/sones-gmbh.html" target="_blank">Vote-link</a></p>
<p align="left">Source: <a href="http://www.schrankmonster.de/PermaLink,guid,17ddfbc5-f1c7-483c-a64c-cc72b2cf5f6e.aspx" target="_blank">initial article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/16/vote-for-us-stimmt-ab-fur-sones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Student Technology Conference 2008 Agenda</title>
		<link>http://www.schrankmonster.de/2008/04/21/student-technology-conference-2008-agenda/</link>
		<comments>http://www.schrankmonster.de/2008/04/21/student-technology-conference-2008-agenda/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 10:51:46 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Talks and Slides]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/04/21/StudentTechnologyConference2008Agenda.aspx</guid>
		<description><![CDATA[The agenda of this years STC is online. You can take a look here. Source: http://www.studentconference.de/Agenda.aspx]]></description>
			<content:encoded><![CDATA[<p>The agenda of this years STC is online. You can take a look <a href="http://www.studentconference.de/Agenda.aspx" target="_blank">here.</a> </p>
<p align="center"><a href="http://www.studentconference.de/Agenda.aspx" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="424" alt="stc08agenda" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/StudentTechnologyConference2008Agenda_B185/stc08agenda_1.jpg" width="404" border="0" /></a> </p>
<p>Source: <a title="http://www.studentconference.de/Agenda.aspx" href="http://www.studentconference.de/Agenda.aspx">http://www.studentconference.de/Agenda.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/04/21/student-technology-conference-2008-agenda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>German Microsoft Student Technology Conference 08 announced!</title>
		<link>http://www.schrankmonster.de/2008/04/05/german-microsoft-student-technology-conference-08-announced/</link>
		<comments>http://www.schrankmonster.de/2008/04/05/german-microsoft-student-technology-conference-08-announced/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 09:05:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Talks and Slides]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/04/05/GermanMicrosoftStudentTechnologyConference08Announced.aspx</guid>
		<description><![CDATA[&#8220;Das Datum steht fest: Unsere STC 2008 findet am 15.05.2008 statt! Wir laden Dich herzlich nach Berlin ein und freuen uns auf einen tollen Tag mit Dir! Es erwartet Dich eine tolle Location, spannende Vorträge und Austausch mit Microsoft-Experten und –Ansprechpartnern, so dass Du ganz im Sinne des Networkings Deiner Karriere auf die Beine helfen [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Das Datum steht fest: Unsere STC 2008 findet am 15.05.2008 statt! </em></p>
<p><em>Wir laden Dich herzlich nach Berlin ein und freuen uns auf einen tollen Tag mit Dir! Es erwartet Dich eine tolle Location, spannende Vorträge und Austausch mit Microsoft-Experten und –Ansprechpartnern, so dass Du ganz im Sinne des Networkings Deiner Karriere auf die Beine helfen kannst.</em></p>
<p><em>Zudem hast Du hier die Chance mit zu verfolgen, welches Imagine Cup Team im Software Design die deutsche Fahne beim internationalen Finale in Paris vertreten wird. Der Imagine Cup ist der weltweit größte Technologiewettbewerb für Schüler und Studierende – alle Infos zum Wettbewerb findest Du unter </em><a href="http://www.imaginecup.info"><em>www.imaginecup.info</em></a><em>.&#8221;</em></p>
<p><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GermanMicrosoftStudentTechnologyConferen_9A76/stc08.jpg" target="_blank"><img style="border: 0px;" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GermanMicrosoftStudentTechnologyConferen_9A76/stc08_thumb.jpg" border="0" alt="stc08" width="404" height="304" /></a></p>
<p>Stattfinden wird die STC dieses Jahr in der <a href="http://www.kalkscheune.de/" target="_blank">Kalkscheune</a> in Berlin.</p>
<p>Source 1: <a href="http://www.studentconference.de">http://www.studentconference.de</a><br />
Source 2: <a href="http://www.schrankmonster.de/PermaLink,guid,319f6547-d847-45d2-9cc2-98b3e710e99f.aspx" target="_blank">STC 2007</a><br />
Source 3: <a title="http://www.kalkscheune.de/" href="http://www.kalkscheune.de/">http://www.kalkscheune.de/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/04/05/german-microsoft-student-technology-conference-08-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechFest 2008: Turning Ideas Into Reality</title>
		<link>http://www.schrankmonster.de/2008/03/07/techfest-2008-turning-ideas-into-reality/</link>
		<comments>http://www.schrankmonster.de/2008/03/07/techfest-2008-turning-ideas-into-reality/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 20:22:50 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/03/07/TechFest2008TurningIdeasIntoReality.aspx</guid>
		<description><![CDATA[I told you, I would write about the things I am working on for the past months. And last week TechFest 2008 took place in Redmond/WA at Microsoft. Almost the whole team I am working with was there &#8211; I haven&#8217;t spoken to anybody yet personally but it seems to have gone well: &#8220;Microsoft Research&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schrankmonster.de/PermaLink,guid,cf5f2c46-60d2-4bb6-b58b-c50f5f3ce4d8.aspx" target="_blank">I told you,</a> I would write about the things I am working on for the past months. And last week TechFest 2008 took place in Redmond/WA at Microsoft. Almost the whole team I am working with was there &#8211; I haven&#8217;t spoken to anybody yet personally but it seems to have gone well:</p>
<p align="center"><a href="http://research.microsoft.com/techfest/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="262" alt="Rick Rashid, Microsoft Research senior vice president shows a prototype device with a Web-service interface developed by Microsoft researchers that runs an energy-management application that saves energy by actively monitoring the weather and energy variations. This is one of 40 exciting emerging technologies on display at Microsoft TechFest 2008 which brings researchers, customers, academics, dignitaries and employees. Redmond, Wash., March 4, 2008. Robert Sorbo/Microsoft/Handout" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TechFest2008TurningIdeasIntoReality_12B3E/Rashid_keynote_lg_3.jpg" width="404" border="0" /></a> </p>
<p><em>&#8220;Microsoft Research&#8217;s TechFest is an annual event that brings researchers from Microsoft&#8217;s labs around the world to Redmond to share their latest work with the product teams. Attendees will experience some of the freshest, most innovative technologies emerging from Microsoft&#8217;s research efforts. The event provides a forum in which product teams and researchers can discuss the incredible work occurring in the labs, thereby encouraging effective technology transfer into Microsoft products.&#8221;</em></p>
<p align="center"><a href="http://wm.microsoft.com/ms/research/events/TechFest2008/TF08Keynote.wmv"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="300" alt="research" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TechFest2008TurningIdeasIntoReality_12B3E/research_3.jpg" width="400" border="0" /></a>&#160; <br />fast forward to minute 24&#8230;one of the interesting bits starts right there!</p>
<p>Source 1: <a title="http://wm.microsoft.com/ms/research/events/TechFest2008/TF08Keynote.wmv" href="http://wm.microsoft.com/ms/research/events/TechFest2008/TF08Keynote.wmv">http://wm.microsoft.com/ms/research/events/TechFest2008/TF08Keynote.wmv</a>    <br />Source 2: <a title="http://research.microsoft.com/techfest/" href="http://research.microsoft.com/techfest/">http://research.microsoft.com/techfest/</a>    <br />Source 3: <a title="http://www.schrankmonster.de/PermaLink,guid,cf5f2c46-60d2-4bb6-b58b-c50f5f3ce4d8.aspx" href="http://www.schrankmonster.de/PermaLink,guid,cf5f2c46-60d2-4bb6-b58b-c50f5f3ce4d8.aspx">http://www.schrankmonster.de/PermaLink,guid,cf5f2c46-60d2-4bb6-b58b-c50f5f3ce4d8.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/03/07/techfest-2008-turning-ideas-into-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sones flyer are ready to fly</title>
		<link>http://www.schrankmonster.de/2008/03/03/sones-flyer-are-ready-to-fly/</link>
		<comments>http://www.schrankmonster.de/2008/03/03/sones-flyer-are-ready-to-fly/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 20:17:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/03/03/sonesFlyerAreReadyToFly.aspx</guid>
		<description><![CDATA[For the last year and something I am affiliated with a startup called &#8220;sones&#8220;. The website already launched, the products are buyable and now the marketing machinery starts to roll. Today three flyers came from the print shop&#8230; take a look to learn more: There will be more articles about sones in the future&#8230; depending [...]]]></description>
			<content:encoded><![CDATA[<p>For the last year and something I am affiliated with a startup called &#8220;<a href="http://www.sones.de">sones</a>&#8220;. The website already launched, the products are buyable and now the marketing machinery starts to roll.</p>
<p>Today three flyers came from the print shop&#8230; take a look to learn more:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/sones_content_plattform_solutions.pdf" target="_blank"><img style="border: 0px none ;" alt="contentplatform" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesflyerarereadytofly_12A15/contentplatform_3.jpg" border="0" height="244" width="172"></a> <a href="http://www.schrankmonster.de/content/binary/sones_eCommerce_Solutions.pdf" target="_blank"><img style="border: 0px none ;" alt="ecommerce" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesflyerarereadytofly_12A15/ecommerce_3.jpg" border="0" height="244" width="173"></a> <a href="http://www.schrankmonster.de/content/binary/sones_Social_Network_Solutions.pdf" target="_blank"><img style="border: 0px none ;" alt="socialnetwork" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesflyerarereadytofly_12A15/socialnetwork_3.jpg" border="0" height="244" width="172"></a> </p>
<p>There will be more articles about sones in the future&#8230; depending on the time I will have <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source: <a href="http://www.sones.de">http://www.sones.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/03/03/sones-flyer-are-ready-to-fly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On my way to Cambridge&#8230;</title>
		<link>http://www.schrankmonster.de/2008/02/25/on-my-way-to-cambridge/</link>
		<comments>http://www.schrankmonster.de/2008/02/25/on-my-way-to-cambridge/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 20:06:27 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[rocket-science]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/02/25/OnMyWayToCambridge.aspx</guid>
		<description><![CDATA[Since two of my colleagues wrote about their work at Microsoft Research I wanted to write at least something about it&#8230;just like Andreas said: &#8220;One reason I recently don&#8217;t blog too much is the fact that I am a bit restricted in what I can tell. Being involved in some exciting projects, the confidentiality of [...]]]></description>
			<content:encoded><![CDATA[<p>Since two of my colleagues wrote about their work at <a href="http://research.microsoft.com/ero/" target="_blank">Microsoft Research</a> I wanted to write at least something about it&#8230;just like <a href="http://blog.aheil.de/2008/02/22/MonitoringOfVulnerableHabitats.aspx" target="_blank">Andreas</a> said:</p>
<p><em>&#8220;One reason I recently don&#8217;t blog too much is the fact that I am a bit restricted in what I can tell. Being involved in some exciting projects, the confidentiality of these projects does not allow much publicity.&#8221;</em></p>
<p>So really the only thing I can write about is that I am honored to work with these great people and being part of the process of creating great software.</p>
<p>So &#8211; for now I am on my way back to Cambridge &#8211; the next article will be written from there&#8230;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/OnmywaytoCambridge_12770/a320_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="136" alt="a320" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/OnmywaytoCambridge_12770/a320_thumb.jpg" width="404" border="0" /></a> </p>
<p>Of course I will write about all the things when I am allowed to do so&#8230;</p>
<p>Source 1: <a href="http://blogs.msdn.com/martinca/" target="_blank">Martin Calsyn</a>    <br />Source 2: <a href="http://blog.aheil.de/2008/02/22/MonitoringOfVulnerableHabitats.aspx" target="_blank">Andreas Heil</a>    <br />Source 3: <a title="http://research.microsoft.com/ero/" href="http://research.microsoft.com/ero/">http://research.microsoft.com/ero/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/02/25/on-my-way-to-cambridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>24h trip to England&#8230;</title>
		<link>http://www.schrankmonster.de/2008/02/14/24h-trip-to-england/</link>
		<comments>http://www.schrankmonster.de/2008/02/14/24h-trip-to-england/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 16:24:43 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/02/14/24hTripToEngland.aspx</guid>
		<description><![CDATA[While writing this I am still in Cambridge, England and packing my stuff to take the next plane back home&#8230; Sadly I will only see the night-sky for this trip because I started at 0600 AM GMT+1 this morning in N&#252;rnberg and I will start again in London Stansted at 1945 GMT&#8230;]]></description>
			<content:encoded><![CDATA[<p>While writing this I am still in Cambridge, England and packing my stuff to take the next plane back home&#8230; </p>
<p>Sadly I will only see the night-sky for this trip because I started at 0600 AM GMT+1 this morning in N&#252;rnberg and I will start again in London Stansted at 1945 GMT&#8230;</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/24htriptoEngland_E4F6/IMG_0161_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="IMG_0161" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/24htriptoEngland_E4F6/IMG_0161_thumb.png" width="184" border="0" /></a> </p>
<p align="left">
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/02/14/24h-trip-to-england/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>food for a day&#8230;</title>
		<link>http://www.schrankmonster.de/2008/01/07/food-for-a-day/</link>
		<comments>http://www.schrankmonster.de/2008/01/07/food-for-a-day/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 17:54:27 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/01/07/foodForADay.aspx</guid>
		<description><![CDATA[Damn there&#8217;s quite a lack of decent food in UK&#8230;that&#8217;s all I got:]]></description>
			<content:encoded><![CDATA[<p>Damn there&#8217;s quite a lack of decent food in UK&#8230;that&#8217;s all I got:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/foodforaday_108AA/IMG_8569.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_8569" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/foodforaday_108AA/IMG_8569_thumb.jpg" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/01/07/food-for-a-day/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>on the road&#8230;erm&#8230;in the air again&#8230;</title>
		<link>http://www.schrankmonster.de/2008/01/06/on-the-road-erm-in-the-air-again/</link>
		<comments>http://www.schrankmonster.de/2008/01/06/on-the-road-erm-in-the-air-again/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 16:26:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/01/06/onTheRoaderminTheAirAgain.aspx</guid>
		<description><![CDATA[In the next hours I will be on the plane to UK for my one week stay in Cambridge&#8230; what I am doing there and everything else when I&#8217;m there&#8230;]]></description>
			<content:encoded><![CDATA[<p>In the next hours I will be on the plane to UK for my one week stay in Cambridge&#8230; what I am doing there and everything else when I&#8217;m there&#8230;</p>
<p align="center"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="311" alt="737800" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/ontheroad...erm...intheairagain_F3FF/737800_1.jpg" width="404" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/01/06/on-the-road-erm-in-the-air-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Team Foundation Server 2008 final Feature List</title>
		<link>http://www.schrankmonster.de/2007/08/10/team-foundation-server-2008-final-feature-list/</link>
		<comments>http://www.schrankmonster.de/2007/08/10/team-foundation-server-2008-final-feature-list/#comments</comments>
		<pubDate>Fri, 10 Aug 2007 11:16:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/08/10/TeamFoundationServer2008FinalFeatureList.aspx</guid>
		<description><![CDATA[The Team Foundation Server 2008 Feature list is finalized and available&#8230; read it here: &#8220;Administration, Operations &#038; Setup Share Point 2007 support Enable use of Sharepoint on any server and any port Support for MOSS 2007 Enable support for Reporting Services on any server and any port (new) (RTM) Support for SQL Named Instances – [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.microsoft.com/downloads/details.aspx?familyid=17319EB4-299C-43B8-A360-A1C2BD6A421B&#038;displaylang=en" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="65" alt="vs2008" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/TeamFoundationServer2008finalFeatureList_B9F8/vs2008_1.png" width="400" border="0"></a> </p>
<p>The Team Foundation Server 2008 Feature list is finalized and available&#8230; read it here:
<p><em>&#8220;Administration, Operations &#038; Setup </em>
<ul>
<li><em>Share Point 2007 support </em>
<li><em>Enable use of Sharepoint on any server and any port </em>
<li><em>Support for MOSS 2007 </em>
<li><em>Enable support for Reporting Services on any server and any port <strong>(new) (RTM)</strong></em>
<li><em>Support for SQL Named Instances – This will allow customers to share a SQL server between multiple TFS instances, or with other applications.  This has been a commonly requested feature by enterprises. </em>
<li><em>“Longhorn” server support – TFS will support the next version of the server (and corresponding new version of IIS) that is currently under development. </em>
<li><em>Sync Large Groups – This is a set of work to improve the performance and robustness of TFS’s handling large groups of users (~30,000 or more) granted permission to a TFS instance.  Today this can result in a support call to recover from it. </em>
<li><em>Non-default ports – We’ve gotten a bunch of feedback from enterprise customers about TFS’s limited support for alternate web sites and ports running afoul of data center policies.  We are going to be improving TFS’s configurability in this respect in Orcas. </em>
<li><em>Simplify installation – In Orcas, we will be doing a variety of things to attempt to make installing TFS easier and quicker than it is now.  Improvements include eliminating the separate data-tier installation, simplifying the requirements around required domain accounts by supporting the built in machine accounts (like Network Service) where we can, etc. </em>
<li><em>Official testing and support for more configurations &#8211; This includes clustering, mirroring, log shipping, Virtual machine deployment, and more. </em>
<li><em>Support for client certificates </em>
<li><em>Upgrade from TFS 2005 </em>
<li><em>Support for SQL 2008 (aka Katmai) <strong>(new) (RTM)</strong></em>
<li><em>TFSDeleteProject now permanently deletes (destroys) version control content <strong>(new) (RTM)</strong></em>
<li><em>New role for many operations activities <strong>(new) (RTM)</strong> &#8211; You don&#8217;t have to be server administrator to run many of the admin utilities any longer. </em>
<li><em>Enhancements to tfsadminutil <strong>(new) (RTM)</strong> &#8211; New capability to configure accounts, connections, etc on both TFS and the TFS proxy.</em></li>
</ul>
<p><em>Build (</em><a href="http://blogs.msdn.com/buckh/archive/2007/07/26/visual-studio-2008-beta-2-is-now-available-and-includes-a-go-live-license.aspx"><em>more detail</em></a><em>) </em>
<ul>
<li><em>Support multi-threaded builds with the new MSBuild. </em>
<li><em>Continuous Integration – There are many components to this, including build queuing and queue management, drop management (so that users can set policies for when builds should be automatically deleted), and build triggers that allows configuration of exactly how when CI builds should be triggered, for example – every checkin, rolling build (completion of one build starts the next), etc. </em>
<li><em>Improved ability to specify what source, versions of source, and other build properties. </em>
<li><em>Improved extensibility of the build targets – such as ability to easily execute targets before and after each solution/project is built. </em>
<li><em>Improved ability to manage multiple build machines. </em>
<li><em>Stop and delete builds from within VS. </em>
<li><em>.NET Object model for programming against the build server. </em>
<li><em>Simplified ability to specify what tests get run as part of a build. </em>
<li><em>The ability to store build definitions anywhere in the version control hierarchy. </em>
<li><em>Scheduled builds &#8211; You can schedule builds to happen at specified times. </em>
<li><em>Improved build agent communication &#8211; We replaced .NET binary remoting with WCF web services, simplifying some configuration and security aspects. </em>
<li><em>Ability to run GUI tests as part of a build &#8211; Automated builds used to run tests in such a way as to prevent access to a GUI desktop. </em>
<li><em>New checkin policy for broken CI builds &#8211; Preventing checkin while the CI build is broken. </em>
<li><em>Support for HTTPS communication to the TFS server <strong>(new)</strong></em>
<li><em>Continuous Integration build checkin policy <strong>(new)</strong></em>
<li><em>Support for incremental gets and builds <strong>(new)</strong></em></li>
</ul>
<p><em>Data Warehouse </em>
<ul>
<li><em>Add support for checkin policy overrides to the warehouse &#8211; an oversight from V1.</em></li>
</ul>
<p><em>Migration </em>
<ul>
<li><em>Migration toolkit – A toolkit for building conversion and mirroring solutions between TFS and other systems.  In addition, we will release one or more new tools to integrate with popular alternative systems.  </em></li>
</ul>
<p><em>Version Control </em>
<ul>
<li><em>Annotate – This is based on the TFS Annotate Power Tool but includes numerous improvements. </em>
<li><em>Folder Diff – Also based on the TFS Tree Diff Power Tool with numerous improvements. </em>
<li><em>Destroy – The ability to permanently delete version control files/folders from TFS.  It can also be used to destroy the file contents while preserving the change set history. </em>
<li><em>Get Latest On Checkout – There have been many requests for this feature (which was a change in behavior from SourceSafe).  There is now an option that allows you to specify that you want TFS to download the latest version of files when you check them out. </em>
<li><em>Workspace improvements – Workspaces will now support mapping a folder or file under a cloaked folder and wildcard mappings so that you can map all files in a folder without mapping sub folders.  Based on experience with large projects, this will simplify workspace definitions for many people. </em>
<li><em>Performance improvements – A variety of Version Control performance enhancements that will improve virtually all aspects of version control performance.  The gains for smaller servers/projects (< 10,000 files) will be modest.  The gains for larger projects (particularly where the file count approaches 100,000’s) will be substantial. </em>
<li><em>Scale improvements – Fixed out of memory problems on the server when operating on more than a few hundred thousand files at a time. </em>
<li><em>Offline improvements &#8211; We&#8217;ve signficantly improved the experience going offline and integrated the tfpt online capability into the IDE for going back online. </em>
<li><em>Extranet support for the TFS Proxy &#8211; allowing you to access a local TFS proxy with a different set of credentials than the TFS server. </em>
<li><em>Command line help &#8211; You can now type &#8220;tf command /help&#8221; and get a console dump of the usage of that command.  This is much more convenient than always being launched into the richer GUI hypertext help when you just want to remember what the options for a command are.  You can still launch the GUI help by running &#8220;tf msdn&#8221;.  You can get a console dump of available commands by just typing &#8220;tf help&#8221;. </em>
<li><em>Source Control Explorer refresh improvements &#8211; This includes less redrawing and reloading but even more important it enables updates based on changes made in other instances of TeamExploror or the command line.  That&#8217;s right, if you checkout a file from the command line, any instances of TeamExplorer you have running on the same machine will automatically refresh. </em>
<li><em>Async loading of the Source Control Explorer <strong>(new)</strong></em>
<li><em>The SCE local path can now be selected and copied <strong>(new)</strong></em>
<li><em>Merge improvements <strong>(new)</strong> &#8211; Improved the logic that detects merge conflicts to generate fewer false positives and handle more scenarios.</em></li>
</ul>
<p><em>Work Item Tracking </em>
<ul>
<li><em>Performance &#038; Scale improvements – A variety of improvements that will make both the work item server and client faster and able to handle larger servers. </em>
<li><em>Query builder usability improvements &#8211; Drop down filtering based on current project, better MRU lists, column drag &#038; drop, shift-click mouse based multi-column sorting, etc. </em>
<li><em>Attachments improvements &#8211; Save button, drag &#038; drop for adding an attachment, multi-select for attaching files. </em>
<li><em>Tooltips on field names contain the field name used for querying </em>
<li><em>Server side support for deleting work items &#038; work item types &#8211; We didn&#8217;t have time to do client UI support for it but we plan to release a Power Tool that will take advantage of the new server side feature. </em>
<li><em>Support for security on the iteration hierarchy <strong>(new)</strong></em></li>
</ul>
<p><em>Web Access </em>
<ul>
<li><em>Adding Web Access UI to TFS &#8211; As you&#8217;ve seen many places, we acquired devBiz and their TeamPlain Web Access product.  We are releasing it as a Power Tool in the next few months and plan to release it as an official product in the Orcas timeframe.  We have not figured out how the release date will line up with the Orcas date but it will be in the same general timeframe.</em></li>
</ul>
<p><em>Bug fixes </em>
<ul>
<li><em>In addition to all of the feature work, we’ve spent months testing the product and fixing any bugs we’ve found.  We expect Orcas will have even better stability and robustness than TFS 2005.</em></li>
</ul>
<p><em><strong>Compatibility</strong> (no change since last time) </em>
<p><em>As Orcas is an adoption focused release, we have put a lot of emphasis on compatibility with VS2005.  We are striving for near 100% compatibility.  The Orcas client will be able to work with a VS2005 server and a VS2005 client will be able to work with an Orcas server.  There are only a few compatibility issues. </em>
<ul>
<li><em>Client side VS add-ins will need to be recompiled (or have policy changed) because the TFS OM assembly versions will change and add-ins will need to bind to the new assemblies.  The APIs themselves are generally not changing, so we don’t expect much in the way of code changes – just recompilation. </em>
<li><em>Build is the only area where we plan to have some compatibility disconnects.  In general, most build operations &#8211; listing build definitions, starting and stopping builds, examining build reports, etc. will work both with 2005 client -> Orcas server and Orcas client -> 2005 server.  However, here are a few caveats:</em></li>
</ul>
<ol>
<ol>
<li><em>An Orcas TFS server will only work with an Orcas build server &#8211; so you&#8217;ll need to upgrade your build server when you upgrade your TFS server. </em>
<li><em>For an VS2005 client to start a build on an Orcas server, the build definition needs to be stored at $/<TeamProject>/TeamBuildTypes/<name>.  In Orcas, you have more flexibility as to where to put them. </em>
<li><em>Changes made to properties in the .proj file that are in the database in Orcas will <strong>not</strong> be updated in the database and will no longer be in sync. </em>
<li><em>VS2005 <strong>will</strong> be able to start a build, but it <strong>can’t</strong> queue a build, see the list of builds in the queue, see the list of build agents, etc. </em>
<li><em>An Orcas client will <strong>not</strong> be able to create a new build definition on a TFS2005 server. </em>
<li><em>When starting a build, an Orcas client will <strong>not</strong> be able to change any parameters in the dialog for a TFS2005 Server.&#8221;</em></li>
</ol>
</ol>
<p>Source: <a title="http://blogs.msdn.com/bharry/archive/2007/08/08/final-tfs-2008-feature-list.aspx" href="http://blogs.msdn.com/bharry/archive/2007/08/08/final-tfs-2008-feature-list.aspx">http://blogs.msdn.com/bharry/archive/2007/08/08/final-tfs-2008-feature-list.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/08/10/team-foundation-server-2008-final-feature-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>free Windows PowerShell e-book</title>
		<link>http://www.schrankmonster.de/2007/07/29/free-windows-powershell-e-book/</link>
		<comments>http://www.schrankmonster.de/2007/07/29/free-windows-powershell-e-book/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 11:30:20 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/07/29/freeWindowsPowerShellEbook.aspx</guid>
		<description><![CDATA[There&#8217;s an interesting Windows PowerShell e-book available for free download. You can grab the e-book and the associated demos at Microsoft Switzerland. Source 1: e-bookSource 2: demos]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an interesting Windows PowerShell e-book available for free download. You can grab the <a href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/Windows%20Powershell%20-%20EN.zip" target="_blank">e-book</a> and the associated <a href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/PowerShell-Demofiles.zip" target="_blank">demos</a> at Microsoft Switzerland.</p>
<p align="center"><a href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/Windows%20Powershell%20-%20EN.zip" target="_blank" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="290" alt="powershell_ebook" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/freeWindowsPowerShellebook_BD38/powershell_ebook_1.jpg" width="200" border="0"></a> </p>
<p align="left">Source 1: <a href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/Windows%20Powershell%20-%20EN.zip" target="_blank">e-book</a><br />Source 2: <a href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/PowerShell-Demofiles.zip" target="_blank">demos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/07/29/free-windows-powershell-e-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio &quot;Orcas&quot; 2008 Beta 2 is publicly available&#8230;</title>
		<link>http://www.schrankmonster.de/2007/07/27/visual-studio-orcas-2008-beta-2-is-publicly-available/</link>
		<comments>http://www.schrankmonster.de/2007/07/27/visual-studio-orcas-2008-beta-2-is-publicly-available/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 07:00:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Employer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/07/27/VisualStudioQuotOrcasquot2008Beta2IsPubliclyAvailable.aspx</guid>
		<description><![CDATA[Hmmm&#8230; yummy. &#8220;Orcas&#8221; represents a major evolution for Visual Studio and our suite of .NET languages. Who better to talk about what&#8217;s new in &#8220;Orcas&#8221; than our friends S. Somasegar (Everybody calls him Soma), VP of the Developer Division (the group that makes all of our development technologies), and Scott Guthrie, General Manager and one [...]]]></description>
			<content:encoded><![CDATA[<p>Hmmm&#8230; yummy.</p>
<p><em>&#8220;Orcas&#8221; represents a major evolution for Visual Studio and our suite of .NET languages. Who better to talk about what&#8217;s new in &#8220;Orcas&#8221; than our friends </em><a href="http://blogs.msdn.com/somasegar/"><em>S. Somasegar</em></a><em> (Everybody calls him Soma), VP of the Developer Division (the group that makes all of our development technologies), and </em><a href="http://weblogs.asp.net/scottgu/"><em>Scott Guthrie</em></a><em>, General Manager and one of Microsoft&#8217;s most prolific employees (now a senior manager, but he keeps his hands in the technologies he and team build and innovate).&#8221;</em></p>
<p align="center"><a href="http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="148" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/VisualStudioOrcas2008Beta2ispubliclyava_7E00/aa718325.vs2008_hero_left%5B4%5D.jpg" width="400" border="0"></a></p>
<p>Get the video and all <a href="http://channel9.msdn.com/ShowPost.aspx?PostID=329443#329443" target="_blank">here.</a></p>
<p>Source 1: <a title="http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx" href="http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx">http://msdn2.microsoft.com/en-us/vstudio/aa700831.aspx</a><br />Source 2: <a title="http://channel9.msdn.com/ShowPost.aspx?PostID=329443#329443" href="http://channel9.msdn.com/ShowPost.aspx?PostID=329443#329443">http://channel9.msdn.com/ShowPost.aspx?PostID=329443#329443</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/07/27/visual-studio-orcas-2008-beta-2-is-publicly-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sitting on the Roundtable&#8230;</title>
		<link>http://www.schrankmonster.de/2007/07/20/sitting-on-the-roundtable/</link>
		<comments>http://www.schrankmonster.de/2007/07/20/sitting-on-the-roundtable/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 08:43:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[FeM]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/07/20/sittingOnTheRoundtable.aspx</guid>
		<description><![CDATA[FeM is in need of a decent conferencing system for years now. And it seems that there&#8217;s something really cool showing up in the next days. As of now Microsoft is going to put it&#8217;s Roundtable on sale. &#8220;Microsoft RoundTable is a very cool videoconferencing system featuring 360° panoramic views powered by its 5 built-in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fem.tu-ilmenau.de" target="_blank">FeM</a> is in need of a decent conferencing system for years now. And it seems that there&#8217;s something really cool showing up in the next days. As of now Microsoft is going to put it&#8217;s <a href="http://blog.tmcnet.com/blog/tom-keating/microsoft/microsoft-roundtable-review.asp" target="_blank">Roundtable</a> on sale.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sittingontheRoundtable_964E/roundtable%5B1%5D.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="231" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sittingontheRoundtable_964E/roundtable_thumb%5B1%5D.jpg" width="400" border="0"></a></p>
<p align="left"><em>&#8220;Microsoft RoundTable is a very cool videoconferencing system featuring 360° panoramic views powered by its 5 built-in cameras.&#8221;</em></p>
<p align="left"><em>&#8220;The RoundTable actually installs two USB camera devices. The first is the Active Speaker which uses the RoundTable&#8217;s 6 microphones to locate where in the room the active speaker is and then focus one of the 5 cameras onto that person. I suspect it may actually use 2 cameras to focus on a person, since it always appears that the speaker is &#8220;centered&#8221; which probably would require at least 2 camera images and then the images are &#8220;spliced&#8221; together, processed, and then transmitted over the USB cable. The second USB camera device is the panoramic camera which combines the 5 camera images into a single panoramic image.&#8221;</em></p>
<p>Source: <a title="http://blog.tmcnet.com/blog/tom-keating/microsoft/microsoft-roundtable-review.asp" href="http://blog.tmcnet.com/blog/tom-keating/microsoft/microsoft-roundtable-review.asp">Roundtable Review</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/07/20/sitting-on-the-roundtable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Channel 8 starts next week&#8230;</title>
		<link>http://www.schrankmonster.de/2007/07/13/channel-8-starts-next-week/</link>
		<comments>http://www.schrankmonster.de/2007/07/13/channel-8-starts-next-week/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 17:34:07 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Employer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/07/13/Channel8StartsNextWeek.aspx</guid>
		<description><![CDATA[Hmm.. maybe you would have missed it: Source: http://channel8.msdn.com/]]></description>
			<content:encoded><![CDATA[<p>Hmm.. maybe you would have missed it:</p>
<p align="center"><a href="http://channel8.msdn.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Channel8startsnextweek_1129A/c8%5B2%5D.jpg" width="400" border="0"></a></p>
<p>Source: <a title="http://channel8.msdn.com/" href="http://channel8.msdn.com/">http://channel8.msdn.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/07/13/channel-8-starts-next-week/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

