<?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; sones</title>
	<atom:link href="http://www.schrankmonster.de/category/work/sones/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schrankmonster.de</link>
	<description>technology-ninja!</description>
	<lastBuildDate>Thu, 09 Sep 2010 21:54:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.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 align="left">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 align="left">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 align="left">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 align="left"><strong>The Import</strong></p>
<p align="left">Not surprisingly both platforms are almost head-to-head in average import times. But there are interesting differences. While the Mono run gets faster with a growing number of objects the .NET run seems to get slower. 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 align="left"><strong>The Benchmark</strong></p>
<p align="left">Let the charts speak for themselves first:</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/rawdata.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="raw-data" border="0" alt="raw-data" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/rawdata_thumb.png" width="500" height="135" /></a>click to enlarge</p>
<p align="center">&#160;</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkmonosgen.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="benchmark-mono-sgen" border="0" alt="benchmark-mono-sgen" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkmonosgen_thumb.png" width="500" height="338" /></a>     <br />click on the picture to enlarge</p>
<p align="center"></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkdotnet.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="benchmark-dotnet" border="0" alt="benchmark-dotnet" src="http://www.schrankmonster.de/wp-content/uploads/2010/09/benchmarkdotnet_thumb.png" width="500" height="333" /></a>     <br />click on the picture to enlarge</p>
<p align="left">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 align="left"><strong>The Conclusion</strong></p>
<p align="left">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>
]]></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>the &#8220;Crunchbase use-case&#8221; part 4 &#8211; the initial data import</title>
		<link>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-4-the-initial-data-import/</link>
		<comments>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-4-the-initial-data-import/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:59:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Talks and Slides]]></category>
		<category><![CDATA[sones]]></category>
		<category><![CDATA[Crunchbase]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-4-the-initial-data-import/</guid>
		<description><![CDATA[It’s about time to import some data into our previously established object scheme. If you want to do this yourself you want to first run the Crunchbase mirroring tool and create your own mirror on your hard disk. In the next step another small tool needs to be written. A tool that creates nice clean [...]]]></description>
			<content:encoded><![CDATA[<p>It’s about time to import some data into our <a href="http://developers.sones.de/2010/07/01/the-crunchbase-use-case-part-3-which-data-and-how-does-a-gql-data-scheme-start/" target="_blank">previously established object scheme.</a> If you want to do this yourself you want to first run the Crunchbase mirroring tool and create your own mirror on your hard disk. </p>
<p>In the next step another small tool needs to be written. A tool that creates nice clean GQL import scripts for our data. Since every data source is different there’s not really a way around this step – in the end you’ll need to extract data here and import data here. One possible different solution could be to implement a dedicated importer for the GraphDB – but I’ll leave that for another article series. Back to our tool: It’s called <a href="http://developers.sones.de/wp-content/uploads/2010/07/First-Import.zip" target="_blank">“First-Import</a>” and it’s only purpose is to create a first small graph out of the mirrored Crunchbase data and fill the mainly primitive data attributes. <a href="http://developers.sones.de/wp-content/uploads/2010/07/First-Import.zip" target="_blank">Download this tool here.</a></p>
<p>This is why in this first step we mainly focus on the following object types:</p>
<ul>
<li><strong>Company</strong> </li>
<li><strong>FinancialOrganization</strong> </li>
<li><strong>Person</strong> </li>
<li><strong>Product</strong> </li>
<li><strong>ServiceProvider</strong> </li>
</ul>
<p>Additionally all edges to a company object and the competition will be imported in this part of the article series.</p>
<p>So what does the first-import tool do? Simple: </p>
<ol>
<li>it deserializes the JSON data into a useable object – in this case it’s written in C# and uses .NETs own JavaScript deserializer </li>
<li>it then maps all attributes of that deserialized JSON object to attribute names in our graph data object scheme and it does so by outputting a simple query
<ol>
<li>Simple Attribute Types like String and Integer are just simply assigned using the “=” operator in the Graph Query Language </li>
<li>1:1 References are assigned by assigning a REF(…) to the attribute – for example: <strong>INSERT INTO Product VALUES (Company = REF(Permalink=’companyname’))</strong> </li>
<li>1:n References are assigned by assigning a SETOF(…) to the attribute – because we are not using a bulk import interface but the standard GQL REST Interface it’s necessary that the object(s) we’re going to reference are already in existence – therefore we chose to do this 1:n linking step after creating the objects itself in a separate <strong>UPDATE</strong> step. Knowing this the <strong>UPDATE</strong> looks like this: <strong>UPDATE Company SET (ADD TO Competitions SETOF(permalink=’…’,permalink=’…’)) WHERE Permalink = ’companyname’</strong> </li>
</ol>
</li>
</ol>
<p>For the most part of the work it’s copy-n-paste to get the first-import tool together – it could have been done in a more sophisticated way (like using reflection on the deserialized JSON objects) but that’s most probably part of another article.</p>
<p>When run in the “crunchbase” directory created by the Crunchbase Mirroring tool the first-import tool generates GQL scripts – 6 of them to be precise:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/07/crunchbasefirstimport.png"><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" class="wlDisabledImage" title="crunchbase-first-import" border="0" alt="crunchbase-first-import" src="http://www.schrankmonster.de/wp-content/uploads/2010/07/crunchbasefirstimport_thumb.png" width="400" height="212" /></a></p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/07/gqlscriptspart4.png"><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" class="wlDisabledImage" title="gql-scripts-part-4" border="0" alt="gql-scripts-part-4" src="http://www.schrankmonster.de/wp-content/uploads/2010/07/gqlscriptspart4_thumb.png" width="400" height="130" /></a></p>
<p>The last script is named “Step_3” because it’s supposed to come after all the others.</p>
<p>These scripts can be easily imported after establishing the object scheme. The thing is though – it won’t be that fast. Why is that? We’re creating several thousand nodes and the edges between them. To create such an edge the Query Language needs to identify the node the edge originates and the node the edge should point to. To find these nodes the user is free to specify matching criteria just like in a <strong>WHERE </strong>clause.</p>
<p>So if you do a <strong>UPDATE Company SET (ADD TO Competitions SETOF(Permalink=’company1’,Permalink=’company2’)) WHERE Permalink = ’companyname’</strong> the GraphDB needs to access the node identified by the Permalink Attribute with the value “companyname” and the two nodes with the values “company1” and “company2” to create the two edges. It will work just like all the scripts are but it won’t be as fast as it could be. What can help to speed up things are indices. Indices are used by the GraphDB to identify and find specific objects. These indices are used mainly in the evaluation of a <strong>WHERE</strong> clause.</p>
<p>The sones GraphDB offers a number of integrated indices, one of which is HASHTABLE which we are going to use in this example. Furthermore everyone interested can implement it’s own index plugin – we will have a tutorial how to do that online in the future – if you’re interested now just ask how we can help you to make it happen!</p>
<p>Back to the indices in our example:</p>
<p>The syntax of creating an index is quite easy, the only thing you have to do is tell the <strong>CREATE INDEX </strong>query on which type and attribute the index should be created and of which indextype the index should be. Since we’re using the Permalink attribute of the Crunchbase objects as an identifier in the example (it could be any other attribute or group of attributes that identify one particular object) we want to create indices on the Permalink attribute for the full speed-up. This would look like this:</p>
<ul>
<li><strong>CREATE INDEX ON Company (Permalink) INDEXTYPE HashTable</strong> </li>
<li><strong>CREATE INDEX ON FinancialOrganization (Permalink) INDEXTYPE HashTable</strong> </li>
<li><strong>CREATE INDEX ON Person (Permalink) INDEXTYPE HashTable</strong> </li>
<li><strong>CREATE INDEX ON ServiceProvider (Permalink) INDEXTYPE HashTable</strong> </li>
<li><strong>CREATE INDEX ON Product (Permalink) INDEXTYPE HashTable</strong> </li>
</ul>
<p> Looks easy, is easy! To take advantage of course this index creation should be done before creating the first nodes and edges.   <br /> 
<p>After we got that sorted the only thing that’s left is to run the scripts. This will, depending on your machine, take a minute or two.</p>
<p>So after running those scripts what happened is: all Company, FinancialOrganization, Person, ServiceProvider and Product objects are created and filled with primitive data types</p>
<ol>
<li>all attributes which are essentially references (1:1 or 1:n) to a Company object are being set, these are
<ol>
<li><strong>Company.Competitions</strong> </li>
<li><strong>Product.Company</strong> </li>
</ol>
</li>
</ol>
<p>That’s it for this part &#8211; in the next part of the series we will dive deeper into connecting nodes with edges. There is a ton of things that can be done with the data – stay tuned for the next part.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-4-the-initial-data-import/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &quot;Crunchbase use-case&quot; part 3 &#8211; How does a graph data scheme start?</title>
		<link>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-3-which-data-and-how-does-a-gql-data-scheme-start/</link>
		<comments>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-3-which-data-and-how-does-a-gql-data-scheme-start/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:59:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Talks and Slides]]></category>
		<category><![CDATA[sones]]></category>
		<category><![CDATA[Crunchbase]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-3-which-data-and-how-does-a-gql-data-scheme-start/</guid>
		<description><![CDATA[After the overview and the first use-case introduction it’s about time to play with some data objects. So how can one actually access the data of crunchbase? Easy as pie: Crunchbase offers an easy to use interface to get all information out of their database in a fairly structured JSON format. So what we did [...]]]></description>
			<content:encoded><![CDATA[<p>After the overview and the first use-case introduction it’s about time to play with some data objects.</p>
<p>So how can one actually access the data of crunchbase? Easy as pie: Crunchbase offers an easy to use interface to get all information out of their database in a fairly structured JSON format. So what we did is to write a tool that actually downloads all the available data to a local machine so we can play with it as we like in the following steps.</p>
<p>This small tool is called <a href="http://developers.sones.de/wp-content/uploads/2010/07/MirrorCrunchbaseJSON.zip" target="_blank">MirrorCrunchbase and can be downloaded in binary and sourcecode here.</a> As for all sourcecode and tools in this series this runs on windows and linux (mono). You can use the sourcecode to get an impression what’s going on there or just the included binaries (in bin/Debug) to mirror the data of Crunchbase.</p>
<p>To say a few words about what the MirrorCrunchbase tool actually does first a small source code excerpt:</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/03/codesnippet_1.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="codesnippet_1" border="0" alt="codesnippet_1" src="http://developers.sones.de/wp-content/uploads/2010/03/codesnippet_1_thumb.png" width="400" height="316" /></a></p>
<p align="left">So first it gets the list of all objects like the <strong>company </strong>names and then it retrieves each <strong>company</strong> object according to it’s name and stores everything in .js files. Easy eh?</p>
<p>When it’s running you get an output similar to that:</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/03/mirror_run_linux.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="mirror_run_linux" border="0" alt="mirror_run_linux" src="http://developers.sones.de/wp-content/uploads/2010/03/mirror_run_linux_thumb.png" width="400" height="265" /></a></p>
<p>And after the successful completion you should end up with a directory structure </p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/07/crunchbase_directory_structure.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" class="wlDisabledImage" title="crunchbase_directory_structure" border="0" alt="crunchbase_directory_structure" src="http://www.schrankmonster.de/wp-content/uploads/2010/07/crunchbase_directory_structure_thumb.png" width="400" height="179" /></a></p>
<p>The .js files store basically every information according to the data scheme overview picture of <a href="http://developers.sones.de/2010/06/30/der-crunchbase-use-case-teil-2-eine-kurze-einfhrung/" target="_blank">part 2</a>.&#160; So what we want to do now is to transform this overview into a GQL data scheme we can start to work with. A main concept of sones GraphDB is to allow the user to evolve a data scheme over time. That way the user does not have to have the final data scheme before the first create statement. Instead the user can start with a basic data scheme representing only standard data types and add complex user defined types as migration goes along. That’s a fundamentally different approach from what database administrators and users are used to today.</p>
<p>Todays user generated data evolves and grows and it’s not possible to foresee in which way attributes need to be added, removed, renamed. Maybe the scheme changes completely. Everytime the necessity emerged to change anything on a established and populated data scheme it was about time to start a complex and costly migration process. To substantially reduce or even in some cases eliminate the need for such a complex process is a design goal of the sones GraphDB.</p>
<p>In the Crunchbase use-case this results in a fairly straight-forward process to establish and fill the data scheme. First we create all types with their correct name and add only those attributes which can be filled from the start – like primitives or direct references. All Lists and Sets of Edges can be added later on.</p>
<p>So these would be the Create-Type Statements to start with in this use-case:</p>
<ul>
<li>
<h5><strong>CREATE TYPE</strong> Company <strong>ATTRIBUTES</strong> ( <strong>String</strong> Alias_List, <strong>String</strong> BlogFeedURL,&#160;&#160;&#160; <strong>String</strong> BlogURL, <strong>String</strong> Category, <strong>DateTime</strong> Created_At, <strong>String</strong> CrunchbaseURL, <strong>DateTime</strong> Deadpooled_At, <strong>String</strong> Description, <strong>String</strong> EMailAdress, <strong>DateTime</strong> Founded_At, <strong>String</strong> HomepageURL, <strong>Integer</strong> NumberOfEmployees, <strong>String</strong> Overview, <strong>String</strong> Permalink, <strong>String</strong> PhoneNumber, <strong>String</strong> Tags, <strong>String</strong> TwitterUsername, <strong>DateTime</strong> Updated_At, <strong>Set&lt;<em>Company</em>&gt;</strong> Competitions )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> FinancialOrganization <strong>ATTRIBUTES</strong> ( <strong>String</strong> Alias_List, <strong>String</strong> BlogFeedURL, <strong>String</strong> BlogURL, <strong>DateTime</strong> Created_At, <strong>String</strong> CrunchbaseURL, <strong>String</strong> Description, <strong>String</strong> EMailAdress, <strong>DateTime</strong> Founded_At, <strong>String</strong> HomepageURL, <strong>String</strong> Name, <strong>Integer</strong> NumberOfEmployees, <strong>String</strong> Overview, <strong>String</strong> Permalink, <strong>String</strong> PhoneNumber, <strong>String</strong> Tags, <strong>String</strong> TwitterUsername, <strong>DateTime</strong> Updated_At )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Product <strong>ATTRIBUTES</strong> ( <strong>String</strong> BlogFeedURL, <strong>String</strong> BlogURL, <strong>Company</strong> Company, <strong>DateTime</strong> Created_At, <strong>String</strong> CrunchbaseURL, <strong>DateTime</strong> Deadpooled_At, <strong>String</strong> HomepageURL, <strong>String</strong> InviteShareURL, <strong>DateTime</strong> Launched_At, <strong>String</strong> Name, <strong>String</strong> Overview, <strong>String</strong> Permalink, <strong>String</strong> StageCode, <strong>String</strong> Tags, <strong>String</strong> TwitterUsername, <strong>DateTime</strong> Updated_At)</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> ExternalLink <strong>ATTRIBUTES</strong> ( <strong>String</strong> ExternalURL, <strong>String</strong> Title )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> EmbeddedVideo <strong>ATTRIBUTES</strong> ( <strong>String</strong> Description, <strong>String</strong> EmbedCode )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Image <strong>ATTRIBUTES</strong> ( <strong>String</strong> Attribution, <strong>Integer</strong> SizeX, <strong>Integer</strong> SizeY, <strong>String</strong> ImageURL )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> IPO <strong>ATTRIBUTES</strong> ( <strong>DateTime</strong> Published_At, <strong>String</strong> StockSymbol, <strong>Double</strong> Valuation, <strong>String</strong> ValuationCurrency )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Acquisition <strong>ATTRIBUTES</strong> ( <strong>DateTime</strong> Acquired_At, <strong>Company</strong> Company, <strong>Double</strong> Price, <strong>String</strong> PriceCurrency, <strong>String</strong> SourceDestination, <strong>String</strong> SourceURL, <strong>String</strong> TermCode )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Office <strong>ATTRIBUTES</strong> ( <strong>String</strong> Address1, <strong>String</strong> Address2, <strong>String</strong> City, <strong>String</strong> CountryCode, <strong>String</strong> Description, <strong>Double</strong> Latitude, <strong>Double</strong> Longitude, <strong>String</strong> StateCode, <strong>String</strong> ZipCode )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Milestone <strong>ATTRIBUTES</strong> ( <strong>String</strong> Description, <strong>String</strong> SourceDescription, <strong>String</strong> SourceURL, <strong>DateTime</strong> Stoned_At )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Fund <strong>ATTRIBUTES</strong> ( <strong>DateTime</strong> Funded_At, <strong>String</strong> Name, <strong>Double</strong> RaisedAmount, <strong>String</strong> RaisedCurrencyCode, <strong>String</strong> SourceDescription, <strong>String</strong> SourceURL )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Person <strong>ATTRIBUTES</strong> ( <strong>String</strong> AffiliationName, <strong>String</strong> Alias_List, <strong>String</strong> Birthplace, <strong>String</strong> BlogFeedURL, <strong>String</strong> BlogURL, <strong>DateTime</strong> Birthday, <strong>DateTime</strong> Created_At, <strong>String</strong> CrunchbaseURL, <strong>String</strong> FirstName, <strong>String</strong> HomepageURL, <strong>Image</strong> Image, <strong>String</strong> LastName, <strong>String</strong> Overview, <strong>String</strong> Permalink, <strong>String</strong> Tags, <strong>String</strong> TwitterUsername, <strong>DateTime</strong> Updated_At )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Degree <strong>ATTRIBUTES</strong> ( <strong>String</strong> DegreeType, <strong>DateTime</strong> Graduated_At, <strong>String</strong> Institution, <strong>String</strong> Subject )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Relationship <strong>ATTRIBUTES</strong> ( <strong>Boolean</strong> Is_Past, <strong>Person</strong> Person, <strong>String</strong> Title )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> ServiceProvider <strong>ATTRIBUTES</strong> ( <strong>String</strong> Alias_List, <strong>DateTime</strong> Created_At, <strong>String</strong> CrunchbaseURL, <strong>String</strong> EMailAdress, <strong>String</strong> HomepageURL, <strong>Image</strong> Image, <strong>String</strong> Name, <strong>String</strong> Overview, <strong>String</strong> Permalink, <strong>String</strong> PhoneNumber, <strong>String</strong> Tags, <strong>DateTime</strong> Updated_At )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Providership <strong>ATTRIBUTES</strong> ( <strong>Boolean</strong> Is_Past, <strong>ServiceProvider</strong> Provider, <strong>String</strong> Title )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> Investment <strong>ATTRIBUTES</strong> ( <strong>Company</strong> Company, <strong>FinancialOrganization</strong> FinancialOrganization, <strong>Person</strong> Person )</h5>
</li>
<li>
<h5><strong>CREATE TYPE</strong> FundingRound <strong>ATTRIBUTES</strong> ( <strong>Company</strong> Company, <strong>DateTime</strong> Funded_At, <strong>Double</strong> RaisedAmount, <strong>String</strong> RaisedCurrencyCode, <strong>String</strong> RoundCode, <strong>String</strong> SourceDescription, <strong>String</strong> SourceURL )</h5>
</li>
</ul>
<p>You can directly <a href="http://developers.sones.de/wp-content/uploads/2010/07/Step_1_Crunchbase_CreateTypes.zip" target="_blank">download the according GQL script here</a>. If you use the sonesExample application from our open source distribution you can create a subfolder “scripts” in the binary directory and put the downloaded script file there. When you’re using the integrated WebShell, which is by default launched on port 9975 an can be accessed by browsing to <a href="http://localhost:9975/WebShell">http://localhost:9975/WebShell</a> you can execute the script using the command “execdbscript” followed by the filename of the script.</p>
<p>As you can see it’s quite straight forward a copy-paste action from the graphical scheme. Even references are not represented by a difficult relational helper, instead if you want to reference a <strong>company</strong> object you can just do that (we actually did that – look for example at the last line of the gql script above). As a result when you execute the above script you get all the Types necessary to fill data in in the next step. </p>
<p>So that’s it for this part – in the next part of this series we will start the initial data import using a small tool which reads the mirrored data and outputs gql insert queries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/07/12/the-crunchbase-use-case-part-3-which-data-and-how-does-a-gql-data-scheme-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;CrunchBase use-case&#8221; &#8211; part 2 &#8211; A short introduction</title>
		<link>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-2-eine-kurze-einfhrung/</link>
		<comments>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-2-eine-kurze-einfhrung/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:58:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Talks and Slides]]></category>
		<category><![CDATA[sones]]></category>
		<category><![CDATA[Crunchbase]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-2-eine-kurze-einfhrung/</guid>
		<description><![CDATA[Where to start: existing data scheme and API This series already tells in it’s name what the use case is: The “CrunchBase”.&#160; On their website they speak for themselves to explain what it is: “CrunchBase is the free database of technology companies, people, and investors that anyone can edit.”. There are many reasons why this [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Where to start: existing data scheme and API</strong></h3>
<p>This series already tells in it’s name what the use case is: The “<a href="http://www.crunchbase.com/" target="_blank">CrunchBase</a>”.&#160; On their website they speak for themselves to explain what it is: <em>“CrunchBase is the free database of technology companies, people, and investors that anyone can edit.”</em>. There are many reasons why this was chosen as a use-case. One important reason is that all data behind the CrunchBase service is licensed under Creative-Commons-Attribution (CC-BY) license. So it’s freely available data of high-tech companies, people and investors.</p>
<p><a href="http://www.crunchbase.com" 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="crunchbase_logo" border="0" alt="crunchbase_logo" src="http://developers.sones.de/wp-content/uploads/2010/03/crunchbase_logo1.png" width="216" height="37" /></a></p>
<p>Currently there are more than 40.000 different companies, 51.000 different people and 4.200 different investors in the database. The flood of information is big and the scale of connectivity even bigger. The graph represented by the nodes could be even bigger than that but because of the limiting factors of current relational database technology it’s not feasible to try to do that. </p>
<p>sones GraphDB is coming to the rescue: because it’s optimized to handle huge datasets of strongly connected data. Since the CrunchBase data could be uses as a starting point to drive connectivity to even greater detail it’s a great use-case to show these migration and handling.</p>
<p>Thankfully the developers at CrunchBase already made one or two steps into an object oriented world by offering an API which answers queries in JSON format. By using this API everyone can access the complete data set in a very structured way. That’s both good and bad. Because the used technologies don’t offer a way to represent linked objects they had to use what we call “relational helpers”. For example: A <strong>person</strong> founded a <strong>company</strong>. (person and company being a JSON object). There’s no standardized way to model a relationship between those two. So what the CrunchBase developers did is they added an unique-Identifier to each object. And they added a new object which is uses as a “relational helper”-object. The only purpose of these helper objects is to point towards a unique-identifier of another object type. So in our example the <strong>relationship </strong>attribute of the <strong>person </strong>object is not pointing directly to a specific company or relationship, but it’s pointing to the helper object which stores the information which unique-identifier of which object type is meant by that link.</p>
<p>To visualize this here’s the data scheme behind the CrunchBase (+all currently available links):</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/03/CrunchbaseRelations.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="CrunchbaseRelations" border="0" alt="CrunchbaseRelations" src="http://developers.sones.de/wp-content/uploads/2010/03/CrunchbaseRelations_thumb.png" width="400" height="283" /></a></p>
<p>As you can see there are many more “relational helper” dead-ends in the scheme. What an application had to do up until now is to resolve these dead-ends by going the extra mile. So instead of retrieving a <strong>person </strong>and all <strong>relationships</strong>, and with them all data that one would expect, the application has to split the data into many queries to internally build a structure which essentially is a graph.</p>
<p>Another example would be the <strong>company </strong>object. Like the name implies all data of a company is stored there. It holds an attribute called <strong>investments </strong>which isn’t a primitive data type (like a number or text) but a user defined complex data type. This user defined data type is called <strong>List&lt;FundingRoundStructure&gt;</strong>. So it’s a simple list of <strong>FundingRoundStructure</strong> objects.</p>
<p>When we take a look at the <strong>FundingRoundStructure</strong> there’s an attribute called company which is made up by the user defined data type <strong>CompanyStructure</strong>.<strong> </strong>This <strong>CompanyStructure</strong> is one of these dead-ends because there’s just a name and a unique-id. The application now needs retrieve the right <strong>company</strong> object with this unique-id to access the company information. </p>
<p>Simple things told in a simple way: No matter where you start, you always will end up in a dead-end which will force you to start over with the information you found in that dead-end. It’s not user-friendly nor easy to implement. </p>
<p>The good news is that there is a way to handle this type of data and links between data in a very easy way. The sones GraphDB provides a rich set of features to make the life of developers and users easier. In that context: If we would like to know which companies also received funding from the same investor like let’s say the company “facebook” the only thing necessary would be one short query. Beside that those “relational helpers” are redundant information. That means in a graph database this information would be stored in the form of edges but not in any helper objects. </p>
<p>The reason why the developers of CrunchBase had to use these helpers is that JSON and the relational table behind it isn’t able to directly store this information or to query it directly. <a href="http://en.wikipedia.org/wiki/Relational_database" target="_blank">To learn more about those relational tables and databases try this link.</a></p>
<p>I want to end this part of the series with a picture of the above relational diagram (without the arrows and connections). </p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/03/Crunchbase1.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Crunchbase" border="0" alt="Crunchbase" src="http://developers.sones.de/wp-content/uploads/2010/03/Crunchbase_thumb1.png" width="400" height="337" /></a></p>
<p>The next part of the series will show how we can access the available information and how a graph scheme starts to evolve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-2-eine-kurze-einfhrung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;CrunchBase use-case&#8221; &#8211; part 1 &#8211; Overview</title>
		<link>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-1-bersicht/</link>
		<comments>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-1-bersicht/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 13:57:32 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Talks and Slides]]></category>
		<category><![CDATA[sones]]></category>
		<category><![CDATA[Crunchbase]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[GraphDB]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-1-bersicht/</guid>
		<description><![CDATA[If you want to explain how easy it is for a user or developer to use the sones GraphDB to work on existing datasets you do that by showing him an example – a use case. And this is exactly what this short series of articles will do: It’ll show the important steps and concepts, [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to explain how easy it is for a user or developer to use the sones GraphDB to work on existing datasets you do that by showing him an example – a use case. And this is exactly what this short series of articles will do: It’ll show the important steps and concepts, technologies and designs behind the use case and the sones GraphDB.</p>
<p>The sones GraphDB is a DBMS focusing on strong connected unstructured and semi-structured data. As the name implies these data sets are organized in Nodes and Edges objectoriented in a graph data structure.</p>
<p align="center"><a href="http://developers.sones.de/wp-content/uploads/2010/03/graph.png" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="graph" border="0" alt="graph" src="http://developers.sones.de/wp-content/uploads/2010/03/graph_thumb.png" width="400" height="291" /></a></p>
<p align="center"><em>“a simple graph”</em></p>
<p>To handle these complex graph data structures the user is given a powerful toolset: the graph query language. It’s a lot like SQL when it comes to comprehensibility – but when it comes to functionality it’s completely designed to help the user do previously tricky or impossible things with one easy query.</p>
<p>This articles series is going to show how real conventional-relational data is aggregated and ported to an easy to understand and more flexible graph datastructure using the sones GraphDB. And because this is not only about telling but also about doing we will release all necessary tools and source codes along with this article. That means: This is a workshop and a use case in one awesome article series. </p>
<p>The requirements to follow all steps of this series are: You want to have a working sone GraphDB. Because we just released the OpenSource Edition Version 1.1 you should be fine following <a href="http://developers.sones.com/wiki/" target="_blank">the documentation on how to download and install it here</a>. Beside that you won’t need programming skills but if you got them you can dive deep into every aspect. Be our guest!</p>
<p>This first article is titled “Overview” and that’s what you’ll get:</p>
<blockquote><p><em><strong>part 1: Overview</strong></em></p>
<p><em><strong>part 2: A short introduction into the use-case and it’s relational data</strong></em></p>
<p><em><strong>part 3: Which data and how does a GQL data scheme start?</strong></em></p>
<p><em><strong>part 4: The initial data import</strong></em></p>
<p><strong><em>part 5:&#160; Linking nodes and edges: What’s connected with what and how does the scheme evolve?</em></strong></p>
<p><strong><em>part 6: Querying the data and how to access it from applications?</em></strong></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/07/12/der-crunchbase-use-case-teil-1-bersicht/feed/</wfw:commentRss>
		<slash:comments>0</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>sones at CeBIT 2010</title>
		<link>http://www.schrankmonster.de/2010/03/09/sones-at-cebit-2010/</link>
		<comments>http://www.schrankmonster.de/2010/03/09/sones-at-cebit-2010/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:44:25 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/09/sones-at-cebit-2010/</guid>
		<description><![CDATA[Die CeBIT ist um und sones schliesst seinen Auftritt im Rahmen der Partnerschaft mit Microsoft mit einem durch und durch positiven Ergebnis ab.Ich selbst hatte ja aufgrund einer ungünstigen Terminsituation nur am Montag und am Freitag die Möglichkeit persönlich vor Ort zu sein. Die CeBIT war dieses Jahr eine schöne Möglichkeit einmal im breiteren Rahmen [...]]]></description>
			<content:encoded><![CDATA[<p>Die CeBIT ist um und sones schliesst seinen Auftritt im Rahmen der Partnerschaft mit Microsoft mit einem durch und durch positiven Ergebnis ab.Ich selbst hatte ja aufgrund einer ungünstigen Terminsituation nur am Montag und am Freitag die Möglichkeit persönlich vor Ort zu sein.</p>
<p>Die CeBIT war dieses Jahr eine schöne Möglichkeit einmal im breiteren Rahmen als auf den sonst üblichen Konferenzen und Veranstaltungen zu netzwerken.</p>
<p>sones hatte die Gelegenheit zusammen mit anderen Partnerunternehmen am Microsoft Stand in Halle 4 auszustellen. Geniale Sache war das insofern dass wir sowohl am Stand als auch im Rahmen des MSDN Developer Kinos die Möglichkeit hatten unsere Technologie mit Demonstrationen und Worten vorzustellen.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_0321.jpg" 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="IMG_0321" border="0" alt="IMG_0321" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_0321_thumb.jpg" width="404" height="271" /></a></p>
<p>Ich hatte ja schon darüber geschrieben dass wir eine Demo für die CeBIT auf Basis des Microsoft Surface Multi-Touch Tisches entwickelt haben. Das Feedback zu dieser Demo war durchweg extrem positiv. Es ist eben ein Unterschied für viele nicht-Techniker wenn man Ihnen einen Graph grafisch vor Augen führt und in diesem Graphen navigieren kann.</p>
<p>Für die Techniker auf der anderen Hand hat sich Henning nocheinmal hingesetzt und ein wenig weiter ausgeführt was hinter der Surface Demo steckt. <a href="http://www.dreiundzwanzig.biz/?p=35" target="_blank">Das kann man hier nachlesen.</a></p>
<p>Hier ein paar Impressionen:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_1843.jpg" 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="IMG_1843" border="0" alt="IMG_1843" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_1843_thumb.jpg" width="271" height="404" /></a>&#160;</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_1836.jpg" 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="IMG_1836" border="0" alt="IMG_1836" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/IMG_1836_thumb.jpg" width="404" height="271" /></a></p>
<p>&#160;</p>
<p>Source: <a title="http://www.dreiundzwanzig.biz/?p=35" href="http://www.dreiundzwanzig.biz/?p=35">http://www.dreiundzwanzig.biz/?p=35</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/09/sones-at-cebit-2010/feed/</wfw:commentRss>
		<slash:comments>1</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[Microsoft]]></category>
		<category><![CDATA[graphics]]></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[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[graphics]]></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>expect podcasts from sones :-)</title>
		<link>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/</link>
		<comments>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:39:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/</guid>
		<description><![CDATA[Since sones will be at some community events, conferences and trade shows this year we thought it might be a good idea to have some hardware to document these events. Since we wanted to have video and we did not want to cope with the rather complex subject of DSLRs we bought a full-hd-camcorder. Panasonic [...]]]></description>
			<content:encoded><![CDATA[<p>Since sones will be at some community events, conferences and trade shows this year we thought it might be a good idea to have some hardware to document these events.</p>
<p>Since we wanted to have video and we did not want to cope with the rather complex subject of DSLRs we bought a full-hd-camcorder.</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4669.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="IMG_4669" border="0" alt="IMG_4669" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4669_thumb.jpg" width="404" height="304" /></a> Panasonic HDC-SD300</p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4672.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="IMG_4672" border="0" alt="IMG_4672" src="http://www.schrankmonster.de/wp-content/uploads/2010/01/IMG_4672_thumb.jpg" width="404" height="304" /></a>Touchscreen… hard to find anything without a Touchscreen these days. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/01/20/expect-podcasts-from-sones/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>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[Reallife]]></category>
		<category><![CDATA[private]]></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="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="outlookg" border="0" alt="outlookg" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/outlookg_thumb.png" 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="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="icalfilter_1" border="0" alt="icalfilter_1" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/icalfilter_1_thumb.png" 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>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/06/small-tool-to-filter-ical-icalendar-ics-files/feed/</wfw:commentRss>
		<slash:comments>0</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>If you ever needed Box-Shots of your product for a presentation&#8230;</title>
		<link>http://www.schrankmonster.de/2009/10/12/if-you-ever-needed-box-shots-of-your-product-for-a-presentation/</link>
		<comments>http://www.schrankmonster.de/2009/10/12/if-you-ever-needed-box-shots-of-your-product-for-a-presentation/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 14:48:59 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Talks and Slides]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/12/if-you-ever-needed-box-shots-of-your-product-for-a-presentation/</guid>
		<description><![CDATA[If you – like us – need a picture of a shiny product box of a soon-to-be-released product for your presentation you may want to consider buying several tools to create such shots. But you can also just use a small tool and Windows Presentation Foundation. There’s a great article on CodeProject where a almost [...]]]></description>
			<content:encoded><![CDATA[<p>If you – like us – need a picture of a shiny product box of a soon-to-be-released product for your presentation you may want to consider buying several tools to create such shots. But you can also just use a small tool and Windows Presentation Foundation.</p>
<p>There’s a great article on CodeProject where a almost everything is pre-set-up for our needs. And everything is written in C# – great stuff!</p>
<p>In action it looks like this:</p>
<p><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="sones-boxshot" border="0" alt="sones-boxshot" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/sonesboxshot_thumb.png" width="400" height="235" /> </p>
<p>Source: <a title="http://www.codeproject.com/KB/WPF/BoxShot.aspx?display=Print" href="http://www.codeproject.com/KB/WPF/BoxShot.aspx?display=Print">http://www.codeproject.com/KB/WPF/BoxShot.aspx?display=Print</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/12/if-you-ever-needed-box-shots-of-your-product-for-a-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to sell a car</title>
		<link>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/</link>
		<comments>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 10:42:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Motorsport]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/</guid>
		<description><![CDATA[Mission accomplished. I successfully talked a co-worker, who needed to buy a new car, into buying a gadget-packed BMW 1 series. He calls it his “cluster on 4 wheels” – because obviously there is some processing “horse-power” in this machine May he always have a safe ride! Source 1: http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/]]></description>
			<content:encoded><![CDATA[<p>Mission accomplished. I successfully talked a co-worker, who needed to buy a new car, into buying a gadget-packed BMW 1 series. </p>
<p>He calls it his “cluster on 4 wheels” – because obviously there is some processing “horse-power” in this machine <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/" 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_7539s" border="0" alt="img_7539s" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/img_7539s.jpg" width="404" height="237" /></a></p>
<p>May he always have a safe ride! </p>
<p>Source 1: <a title="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/" href="http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/">http://blog.ahzf.de/index.php/2009/09/21/mein-cluster-hat-vier-rader/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/22/how-to-sell-a-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>massive parallel computing with FPGAs</title>
		<link>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/</link>
		<comments>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:07:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/25/massiveParallelComputingWithFPGAs.aspx</guid>
		<description><![CDATA[Today we had a great meeting with SciEngines. These guys offer a great platform for everything that needs massive parallelism and IO bandwidth scalability. They even brought a small copacobana cluster to our headquater. Source: http://www.sciengines.com]]></description>
			<content:encoded><![CDATA[<p> Today we had a great meeting with SciEngines. These guys offer a great platform for everything that needs massive parallelism and IO bandwidth scalability. They even brought a small <a href="http://www.sciengines.com/productscopacobanarev3.shtml" target="_blank">copacobana</a> cluster to our headquater.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0045.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0045" border="0" alt="IMG_0045" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0045_thumb.jpg" width="404" height="304" /></a></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0044.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMG_0044" border="0" alt="IMG_0044" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/massiveparallelcomputingwithFPGAs_D485/IMG_0044_thumb.jpg" width="404" height="304" /></a> </p>
<p>Source: <a href="http://www.sciengines.com">http://www.sciengines.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/25/massive-parallel-computing-with-fpgas/feed/</wfw:commentRss>
		<slash:comments>0</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>Plain-Text Username Password Authentification with WCF</title>
		<link>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/</link>
		<comments>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:58:58 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/07/21/PlainTextUsernamePasswordAuthentificationWithWCF.aspx</guid>
		<description><![CDATA[If you got it, it’s easy. If you’re starting from scratch it ain’t as easy. We were in need of such a Username+Password Authentification so I started googling around. I found several articles but had to mash it all together in a trial-and-error session. Now that I am enlightened I want to share my knowledge: [...]]]></description>
			<content:encoded><![CDATA[<p>If you got it, it’s easy. If you’re starting from scratch it ain’t as easy. We were in need of such a Username+Password Authentification so I started googling around.</p>
<p>I found several articles but had to mash it all together in a trial-and-error session. Now that I am enlightened I want to share my knowledge:</p>
<p>Step 1: Implement an UserNamePasswordValidator class and override the Validate method.</p>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:06ece4dc-abff-482e-a05b-85c120b26869" class="wlWriterEditableSmartContent">
<pre style="background-color:White;overflow: auto;"><span style="color: #0000FF;">using</span><span style="color: #000000;"> System;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Collections.Generic;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Linq;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.Text;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.IdentityModel.Tokens;
</span><span style="color: #0000FF;">using</span><span style="color: #000000;"> System.IdentityModel.Selectors;

</span><span style="color: #0000FF;">namespace</span><span style="color: #000000;"> sones.Pandora.Database.Hosting
{
    </span><span style="color: #0000FF;">public</span><span style="color: #000000;"> </span><span style="color: #0000FF;">class</span><span style="color: #000000;"> UserNamePasswordAuthentification: UserNamePasswordValidator
    {

        </span><span style="color: #0000FF;">public</span><span style="color: #000000;"> </span><span style="color: #0000FF;">override</span><span style="color: #000000;"> </span><span style="color: #0000FF;">void</span><span style="color: #000000;"> Validate(</span><span style="color: #0000FF;">string</span><span style="color: #000000;"> userName, </span><span style="color: #0000FF;">string</span><span style="color: #000000;"> password)
        {
            </span><span style="color: #0000FF;">if</span><span style="color: #000000;"> ((userName </span><span style="color: #000000;">!=</span><span style="color: #000000;"> </span><span style="color: #800000;">"</span><span style="color: #800000;">Username</span><span style="color: #800000;">"</span><span style="color: #000000;">) </span><span style="color: #000000;">||</span><span style="color: #000000;"> (password </span><span style="color: #000000;">!=</span><span style="color: #000000;"> </span><span style="color: #800000;">"</span><span style="color: #800000;">Password</span><span style="color: #800000;">"</span><span style="color: #000000;">))
            {
                </span><span style="color: #0000FF;">throw</span><span style="color: #000000;"> </span><span style="color: #0000FF;">new</span><span style="color: #000000;"> SecurityTokenException(</span><span style="color: #800000;">"</span><span style="color: #800000;">Validation Failed!</span><span style="color: #800000;">"</span><span style="color: #000000;">);
            }
        }
    }
}
</span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
</p>
<p>Step 2: Edit the App.config file to enable the previously implemented UsernamePasswordValidator.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:6f4fb716-21f7-42e2-aaf6-eeed3f8c02f0" class="wlWriterEditableSmartContent">
<pre style="background-color:White;overflow: auto;"><span style="color: #000000;">    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">bindings</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">basicHttpBinding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">binding </span><span style="color: #FF0000;">name</span><span style="color: #0000FF;">="CustomAuthentication"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"><</span><span style="color: #800000;">security </span><span style="color: #FF0000;">mode</span><span style="color: #0000FF;">="TransportCredentialOnly"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
            </span><span style="color: #0000FF;"><</span><span style="color: #800000;">transport </span><span style="color: #FF0000;">clientCredentialType</span><span style="color: #0000FF;">="Basic"</span><span style="color: #FF0000;"> proxyCredentialType</span><span style="color: #0000FF;">="Basic"</span><span style="color: #0000FF;">/></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"></</span><span style="color: #800000;">security</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"></</span><span style="color: #800000;">binding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">basicHttpBinding</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">bindings</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">behaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">serviceBehaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">behavior </span><span style="color: #FF0000;">name</span><span style="color: #0000FF;">="SecurityBehavior"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"><</span><span style="color: #800000;">serviceCredentials</span><span style="color: #0000FF;">></span><span style="color: #000000;">
            </span><span style="color: #0000FF;"><</span><span style="color: #800000;">userNameAuthentication
            </span><span style="color: #FF0000;">userNamePasswordValidationMode</span><span style="color: #0000FF;">="Custom"</span><span style="color: #FF0000;">
            customUserNamePasswordValidatorType</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.UserNamePasswordAuthentification, PandoraDB_WebServiceHost_UsernamePasswordAuth"</span><span style="color: #0000FF;">/></span><span style="color: #000000;">
          </span><span style="color: #0000FF;"></</span><span style="color: #800000;">serviceCredentials</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"></</span><span style="color: #800000;">behavior</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">serviceBehaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">behaviors</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"><</span><span style="color: #800000;">services</span><span style="color: #0000FF;">></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"><</span><span style="color: #800000;">service </span><span style="color: #FF0000;">behaviorConfiguration</span><span style="color: #0000FF;">="SecurityBehavior"</span><span style="color: #FF0000;"> name</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.PandoraDatabaseHost"</span><span style="color: #0000FF;">></span><span style="color: #000000;">
        </span><span style="color: #0000FF;"><</span><span style="color: #800000;">endpoint </span><span style="color: #FF0000;">address</span><span style="color: #0000FF;">=""</span><span style="color: #FF0000;"> binding</span><span style="color: #0000FF;">="basicHttpBinding"</span><span style="color: #FF0000;"> bindingConfiguration</span><span style="color: #0000FF;">="CustomAuthentication"</span><span style="color: #FF0000;">
          name</span><span style="color: #0000FF;">="ep1"</span><span style="color: #FF0000;"> contract</span><span style="color: #0000FF;">="sones.Pandora.Database.Hosting.IPandoraDatabaseHost"</span><span style="color: #FF0000;"> </span><span style="color: #0000FF;">/></span><span style="color: #000000;">
      </span><span style="color: #0000FF;"></</span><span style="color: #800000;">service</span><span style="color: #0000FF;">></span><span style="color: #000000;">
    </span><span style="color: #0000FF;"></</span><span style="color: #800000;">services</span><span style="color: #0000FF;">></span></pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
<p>In this example the ServiceHost will use no server SSL certificate and therefor allow normal http access instead of just using https ssl. You can configure that behavior with the <span style="color: #0000ff"><</span><span style="color: #800000">security </span><span style="color: #ff0000">mode</span><span style="color: #0000ff">=&#8221;TransportCredentialOnly&#8221;</span><span style="color: #0000ff">> <font color="#000000">line. Just change there and define an apropriate certificate and you’re good to go with https / ssl.</font></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/07/21/plain-text-username-password-authentification-with-wcf/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>sones portiert sein Speichersystem auf das Speichermedium der Zukunft!</title>
		<link>http://www.schrankmonster.de/2009/04/15/sones-portiert-sein-speichersystem-auf-das-speichermedium-der-zukunft/</link>
		<comments>http://www.schrankmonster.de/2009/04/15/sones-portiert-sein-speichersystem-auf-das-speichermedium-der-zukunft/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 06:28:33 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Riot]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/15/sonesPortiertSeinSpeichersystemAufDasSpeichermediumDerZukunft.aspx</guid>
		<description><![CDATA[Aufgrund neuester Entwicklungen im Speichermedien-Segment wird ab dem nächsten Release des sones Speichersystems auch das angesagteste Speichermedium der Stunde unterstützt: die Speichergurke. Durch die sensationelle Speicherdichte und unerreichte Zuverlässigkeit ist die Speichergurke das perfekte Speichermedium für den Datenhunger von gestern, heute und morgen. Source 1: http://www.sones.de Source 2: http://www.speichergurke.de]]></description>
			<content:encoded><![CDATA[<p>Aufgrund neuester Entwicklungen im Speichermedien-Segment wird ab dem nächsten Release des sones Speichersystems auch das angesagteste Speichermedium der Stunde unterstützt: die Speichergurke.</p>
<div align="center"><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nE4Wn0cjrO4&#038;hl=de&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nE4Wn0cjrO4&#038;hl=de&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></div>
<p>Durch die sensationelle Speicherdichte und unerreichte Zuverlässigkeit ist die Speichergurke das perfekte Speichermedium für den Datenhunger von gestern, heute und morgen.</p>
<p>Source 1: <a href="http://www.sones.de">http://www.sones.de</a>    <br />Source 2: <a title="http://www.speichergurke.de" href="http://www.speichergurke.de">http://www.speichergurke.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/15/sones-portiert-sein-speichersystem-auf-das-speichermedium-der-zukunft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>sones is sponsoring partner of NEXT Conference 2009</title>
		<link>http://www.schrankmonster.de/2009/04/09/sones-is-sponsoring-partner-of-next-conference-2009/</link>
		<comments>http://www.schrankmonster.de/2009/04/09/sones-is-sponsoring-partner-of-next-conference-2009/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 06:52:32 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/04/09/sonesIsSponsoringPartnerOfNEXTConference2009.aspx</guid>
		<description><![CDATA[Turns out that we’re actually doing business there – great news that is! Source: http://www.next-conference.com/next09/]]></description>
			<content:encoded><![CDATA[<p align="left">Turns out that we’re actually doing business there – great news that is!</p>
<p align="center"><a href="http://www.next-conference.com/next09/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="next09hamburg" border="0" alt="next09hamburg" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesissponsoringpartnerofNEXTConference_7C36/next09hamburg_1.png" width="404" height="142" /></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesissponsoringpartnerofNEXTConference_7C36/sponsors09_2.png" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="sponsors09" border="0" alt="sponsors09" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/sonesissponsoringpartnerofNEXTConference_7C36/sponsors09_thumb.png" width="404" height="159" /></a> </p>
<p>Source: <a title="http://www.next-conference.com/next09/" href="http://www.next-conference.com/next09/">http://www.next-conference.com/next09/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/04/09/sones-is-sponsoring-partner-of-next-conference-2009/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>Brawndo! THE THIRST MUTILATOR – It’s got what plants crave!</title>
		<link>http://www.schrankmonster.de/2009/02/05/brawndo-the-thirst-mutilator-%e2%80%93-it%e2%80%99s-got-what-plants-crave/</link>
		<comments>http://www.schrankmonster.de/2009/02/05/brawndo-the-thirst-mutilator-%e2%80%93-it%e2%80%99s-got-what-plants-crave/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:25:16 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/02/05/BrawndoTHETHIRSTMUTILATORItsGotWhatPlantsCrave.aspx</guid>
		<description><![CDATA[The final last pieces are falling into their place: We’re at 99.98% completion of the SONES Office Space. Today we got the soda delivery. Since it’s unclear right now who likes what the most (pretty clear for myself: Dr.Pepper FTW!) the first order contained three different sorts. Look that gorgeous fridge: That means: Free Soda [...]]]></description>
			<content:encoded><![CDATA[<p>The final last pieces are falling into their place: We’re at 99.98% completion of the SONES Office Space. </p>
<p>Today we got the soda delivery. Since it’s unclear right now who likes what the most (pretty clear for myself: Dr.Pepper FTW!) the first order contained three different sorts.</p>
<p>Look that gorgeous fridge:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BrawndoTHETHIRSTMUTILATORItsgotwhatplant_ADF4/fridge.png" target="_blank"><img title="fridge" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="484" alt="fridge" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/BrawndoTHETHIRSTMUTILATORItsgotwhatplant_ADF4/fridge_thumb.png" width="369" border="0" /></a> </p>
<p align="center">That means: Free Soda for every employee!</p>
<p align="left">Source: <a title="http://brawndo.com/" href="http://brawndo.com/">http://brawndo.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/02/05/brawndo-the-thirst-mutilator-%e2%80%93-it%e2%80%99s-got-what-plants-crave/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jabber Logging Windows Service Sourcecode</title>
		<link>http://www.schrankmonster.de/2009/01/27/jabber-logging-windows-service-sourcecode/</link>
		<comments>http://www.schrankmonster.de/2009/01/27/jabber-logging-windows-service-sourcecode/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 13:25:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/27/JabberLoggingWindowsServiceSourcecode.aspx</guid>
		<description><![CDATA[I promised you the sourcecode of the Jabber Logging Client Service I’ve written. You can read about it here. It’s now a fully blown Windows Service which monitors the EvenLog Datasource you specify. You can specify filters now so that you won’t get overwhelmed by uninteresting messages from the Windows Event Log of the monitored [...]]]></description>
			<content:encoded><![CDATA[<p>I promised you the sourcecode of the Jabber Logging Client Service I’ve written. You can <a href="http://www.schrankmonster.de/2009/01/22/UsingJabberToMonitorWindowsEventLogs.aspx" target="_blank">read about it here.</a></p>
<p>It’s now a fully blown Windows Service which monitors the EvenLog Datasource you specify. You can specify filters now so that you won’t get overwhelmed by uninteresting messages from the Windows Event Log of the monitored machine. You don’t need to restart the service if you changed a filter – it’ll pick the new filter up automatically. The same stands for the target users. Just change the XML and the Service will pick that information up. If you change the EventLog Datasource or the Jabber-Settings you’&#8217;ll need to restart the service.</p>
<p>So here it is: <a href="http://www.schrankmonster.de/content/binary/JabberLoggingService0_2.zip" target="_blank">JabberLoggingService Version 0.2</a></p>
<p>If you’re going to use it and you like it please drop me a line. Oh and don’t forget to read the readme.txt for full instructions.</p>
<p>Oh I almost forgot: You can grab the Sourcecode of the Linux version here: <a title="http://www.ahzf.de/itstuff/XMPPLogger/" href="http://www.ahzf.de/itstuff/XMPPLogger/">http://www.ahzf.de/itstuff/XMPPLogger/</a></p>
<p>Source 1: <a title="http://www.schrankmonster.de/2009/01/22/UsingJabberToMonitorWindowsEventLogs.aspx" href="http://www.schrankmonster.de/2009/01/22/UsingJabberToMonitorWindowsEventLogs.aspx">http://www.schrankmonster.de/2009/01/22/UsingJabberToMonitorWindowsEventLogs.aspx</a>    <br />Source 2: <a title="http://www.schrankmonster.de/content/binary/JabberLoggingService0_2.zip" href="http://www.schrankmonster.de/content/binary/JabberLoggingService0_2.zip">http://www.schrankmonster.de/content/binary/JabberLoggingService0_2.zip</a>    <br />Source 3: <a title="http://www.ahzf.de/itstuff/XMPPLogger/" href="http://www.ahzf.de/itstuff/XMPPLogger/">http://www.ahzf.de/itstuff/XMPPLogger/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/27/jabber-logging-windows-service-sourcecode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the feeling of success</title>
		<link>http://www.schrankmonster.de/2009/01/26/the-feeling-of-success/</link>
		<comments>http://www.schrankmonster.de/2009/01/26/the-feeling-of-success/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 15:09:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/26/theFeelingOfSuccess.aspx</guid>
		<description><![CDATA[When your brand new build server compiles and tests your code automatically and successfully for the first time… oh what a great way to end the work day:]]></description>
			<content:encoded><![CDATA[<p>When your brand new build server compiles and tests your code automatically and successfully for the first time… oh what a great way to end the work day:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thefeelingofsuccess_E2DB/buildtests.png" target="_blank"><img title="buildtests" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="29" alt="buildtests" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thefeelingofsuccess_E2DB/buildtests_thumb.png" width="404" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/26/the-feeling-of-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jabber Instant Messaging Eventlog Service with Presence Information</title>
		<link>http://www.schrankmonster.de/2009/01/23/jabber-instant-messaging-eventlog-service-with-presence-information/</link>
		<comments>http://www.schrankmonster.de/2009/01/23/jabber-instant-messaging-eventlog-service-with-presence-information/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:13:04 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/01/23/JabberInstantMessagingEventlogServiceWithPresenceInformation.aspx</guid>
		<description><![CDATA[I found out what to do to get the Jabber Eventlog Service to display status information in the Jabber Client… nice, eh?]]></description>
			<content:encoded><![CDATA[<p>I found out what to do to get the Jabber Eventlog Service to display status information in the Jabber Client…</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/JabberInstantMessagingEventlogServicewit_B984/serverZ.png" target="_blank"><img title="serverZ" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="465" alt="serverZ" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/JabberInstantMessagingEventlogServicewit_B984/serverZ_thumb.png" width="404" border="0" /></a> </p>
<p align="center">nice, eh? <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/01/23/jabber-instant-messaging-eventlog-service-with-presence-information/feed/</wfw:commentRss>
		<slash:comments>5</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[Software]]></category>
		<category><![CDATA[networking]]></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>Philips Living Colors</title>
		<link>http://www.schrankmonster.de/2008/11/29/philips-living-colors/</link>
		<comments>http://www.schrankmonster.de/2008/11/29/philips-living-colors/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 19:09:30 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Modding]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/29/PhilipsLivingColors.aspx</guid>
		<description><![CDATA[After painting the walls we took one of the new Philips Living Colors Lamp for a test run: SONES Logo + Living Colors from Bietiekay on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>After painting the walls we took one of the new Philips Living Colors Lamp for a test run:</p>
<p align="center"><embed src="http://vimeo.com/moogaloop.swf?clip_id=2379220&#038;server=vimeo.com&#038;show_title=1&#038;show_byline=1&#038;show_portrait=0&#038;color=00ADEF&#038;fullscreen=1" width="400" height="302" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" />    <br /><a href="http://vimeo.com/2379220">SONES Logo + Living Colors</a> from <a href="http://vimeo.com/user599819">Bietiekay</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/29/philips-living-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Painting the wall</title>
		<link>http://www.schrankmonster.de/2008/11/29/painting-the-wall/</link>
		<comments>http://www.schrankmonster.de/2008/11/29/painting-the-wall/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 19:03:10 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Modding]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/11/29/PaintingTheWall.aspx</guid>
		<description><![CDATA[SONES just moved into the new place &#8211; and after having all the ordering done we&#8217;re now waiting for the delivery of the various bits and pieces of the new office. To make it a little bit more SONESisch my wife and I decided to paint a 1,5m huge logo of the company on the [...]]]></description>
			<content:encoded><![CDATA[<p>SONES just moved into the new place &#8211; and after having all the ordering done we&#8217;re now waiting for the delivery of the various bits and pieces of the new office.</p>
<p>To make it a little bit more SONESisch my wife and I decided to paint a 1,5m huge logo of the company on the wall that can be seen first when you walk in. So we went to the nearest hardware store and bought all the needed tools aaaaaaaand we found somebody who could mix the right shade of green to fit our company color.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3789.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3789" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3789_thumb.jpg" width="404" border="0" /></a> </p>
<p>Back at the office we started with placing the projector and the logo itself so we could draw the borders with a pencil on the wall.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3782.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3782" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3782_thumb.jpg" width="404" border="0" /></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3793.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3793" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3793_thumb.jpg" width="404" border="0" /></a> </p>
<p align="left">When the borders where on the wall we started the masking tape attack! It was the first time that I had used masking tape but it everything went surprisingly good.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3800.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3800" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3800_thumb.jpg" width="404" border="0" /></a> </p>
<p align="left">The last and final step is to paint it. So we got the paint, we got the rollers &#8211; and after half an hour:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3809.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3809" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3809_thumb.jpg" width="404" border="0" /></a> </p>
<p align="left">The shades you&#8217;re seeing in the picture above are just because of the wet and already dry paint which has a slightly different shade. So after a bit of drying and the removal of the masking tape:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3827.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="304" alt="IMG_3827" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Paintingthewall_119DB/IMG_3827_thumb.jpg" width="404" border="0" /></a> </p>
<p align="center">Et voil&#225;!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/11/29/painting-the-wall/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>Dye your life&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/28/dye-your-life/</link>
		<comments>http://www.schrankmonster.de/2008/09/28/dye-your-life/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 13:07:12 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Reallife]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/28/DyeYourLife.aspx</guid>
		<description><![CDATA[Some weeks ago I came across those cool color changing LED lamps made by Philips in a hardware store. It&#8217;s a mood light with a remote control &#8211; you can even control up to 6 lamps with one remote&#8230; Oh I really do think that several of these would be great in the new office [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Some weeks ago I came across those cool color changing LED lamps made by Philips in a hardware store. It&#8217;s a mood light with a remote control &#8211; you can even control up to 6 lamps with one remote&#8230; Oh I really do think that several of these would be great in the new office or at home.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dyeyourlife_EA5E/livingcolors.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="livingcolors" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Dyeyourlife_EA5E/livingcolors_thumb.png" width="344" border="0"></a> </p>
<p>Source: <a title="http://www.lighting.philips.com/microsite/living_colors/" href="http://www.lighting.philips.com/microsite/living_colors/">http://www.lighting.philips.com/microsite/living_colors/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/28/dye-your-life/feed/</wfw:commentRss>
		<slash:comments>0</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[Internet]]></category>
		<category><![CDATA[graphics]]></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>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>Since we&#8217;re writing our own google-scale filesystem&#8230; we should &#8230;</title>
		<link>http://www.schrankmonster.de/2008/08/09/since-were-writing-our-own-google-scale-filesystem-we-should/</link>
		<comments>http://www.schrankmonster.de/2008/08/09/since-were-writing-our-own-google-scale-filesystem-we-should/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 16:48:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[rumors]]></category>
		<category><![CDATA[sones]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/08/09/SinceWereWritingOurOwnGooglescaleFilesystemWeShould.aspx</guid>
		<description><![CDATA[&#8230; build ourselves a case for the test machines with lego duplo blocks&#8230; like the founders of google did. &#8220;It’d be hard to believe but yes, Sergey Brin and Larry Page made their first 40GB Google Storage Server with lego casing.&#8221; Source: http://zedomax.com/blog/2008/08/04/original-google-storage-server-made-with-legos/]]></description>
			<content:encoded><![CDATA[<p> &#8230; build ourselves a case for the test machines with lego duplo blocks&#8230; like the founders of google did.</p>
<p><em>&#8220;It’d be hard to believe but yes, Sergey Brin and Larry Page made their first 40GB Google Storage Server with lego casing.&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Sincewerewritingourowngooglescalefilesy_12483/original-google-storage-server_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="404" alt="original-google-storage-server" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Sincewerewritingourowngooglescalefilesy_12483/original-google-storage-server_thumb.jpg" width="274" border="0"></a></p>
<p>Source: <a title="http://zedomax.com/blog/2008/08/04/original-google-storage-server-made-with-legos/" href="http://zedomax.com/blog/2008/08/04/original-google-storage-server-made-with-legos/">http://zedomax.com/blog/2008/08/04/original-google-storage-server-made-with-legos/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/08/09/since-were-writing-our-own-google-scale-filesystem-we-should/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
