<?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>Johlero - Cardoen Lieven</title>
	<atom:link href="http://blog.johlero.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.johlero.eu</link>
	<description>Software development</description>
	<lastBuildDate>Wed, 24 Feb 2010 20:44:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configure WebORB with Log4Net</title>
		<link>http://blog.johlero.eu/2010/01/17/configure-weborb-with-log4net/</link>
		<comments>http://blog.johlero.eu/2010/01/17/configure-weborb-with-log4net/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 10:54:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Weborb]]></category>
		<category><![CDATA[Log4Net]]></category>
		<category><![CDATA[Logging]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=533</guid>
		<description><![CDATA[This will be a quick one because time is not on my side these days... If you've never worked with Log4Net, I suggest to go and read some documentation on this an try to set it up.
A while ago I was searching how I could merge the logging from WebORB with my Log4Net configuration. As [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2010/01/17/configure-weborb-with-log4net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nested TransactionScopes in .NET</title>
		<link>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/</link>
		<comments>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 13:23:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[nested]]></category>
		<category><![CDATA[transactionscope]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=527</guid>
		<description><![CDATA[In next example, the persistence to the database will not be executed.
PLAIN TEXT
C#:




IBinaryAssetStructureRepository rep = new BinaryAssetStructureRepository&#40;&#41;;


var userDto = new UserDto &#123; id = 3345 &#125;;


var dto = new BinaryAssetBranchNodeDto&#40;"name", userDto, userDto&#41;;


using &#40;var scope1 = new TransactionScope&#40;&#41;&#41;


&#123;


&#160; &#160; using &#40;var scope2 = new TransactionScope&#40;&#41;&#41;


&#160; &#160; &#123;


&#160; &#160; &#160; &#160; //Persist to database


&#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/nested-transactionscopes-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting an embedded resource out of the assembly + convert to bytearray</title>
		<link>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/</link>
		<comments>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[bytearray]]></category>
		<category><![CDATA[embedded resource]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=523</guid>
		<description><![CDATA[My file is located under /images/donkey.jpg, so in that case, don't forget to add .images.
PLAIN TEXT
C#:




var assemblyName =&#160; typeof&#40;BinaryAssetFileDataProviderTest&#41;.Assembly.GetName&#40;&#41;.Name;


var str = typeof &#40;BinaryAssetFileDataProviderTest&#41;.Assembly.GetManifestResourceStream&#40;assemblyName + ".images." + "donkey.jpg"&#41;;


var blob = new byte&#91;str.Length&#93;;


str.Read&#40;blob, 0, &#40;int&#41;str.Length&#41;;


var size = &#40;int&#41;str.Length;


str.Close&#40;&#41;; 






]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/getting-an-embedded-resource-out-of-the-assembly-convert-to-bytearray/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving a connectionString at runtime to .NET app.config</title>
		<link>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/</link>
		<comments>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:18:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[app.config]]></category>
		<category><![CDATA[connectionString]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=521</guid>
		<description><![CDATA[PLAIN TEXT
C#:




var config = ConfigurationManager.OpenExeConfiguration&#40;ConfigurationUserLevel.None&#41;;


var connectionStringSettings =


new ConnectionStringSettings&#40;"ConnectionString", _arguments&#91;"connectionString"&#93;, "System.Data.SqlClient"&#41;;


config.ConnectionStrings.ConnectionStrings.Add&#40;connectionStringSettings&#41;;


config.Save&#40;ConfigurationSaveMode.Modified&#41;;


ConfigurationManager.RefreshSection&#40;"connectionStrings"&#41;; 






]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/12/07/saving-a-connectionstring-at-runtime-to-net-app-config/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database version control MSSQL C#[dot]NET Program</title>
		<link>http://blog.johlero.eu/2009/11/05/database-version-control-mssql-cdotnet-program/</link>
		<comments>http://blog.johlero.eu/2009/11/05/database-version-control-mssql-cdotnet-program/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 21:08:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Version Control]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Jeff Atwood]]></category>
		<category><![CDATA[MSSQLServer]]></category>
		<category><![CDATA[update scripts]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=465</guid>
		<description><![CDATA[Some time ago I read an article on the importance of version control for databases by Jeff Atwood. I knew that in our team we had to start using something like this because updating different databases to a new release took a lot of time. We always used sql compare to look for the difference [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/11/05/database-version-control-mssql-cdotnet-program/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Teach Yourself Programming in Ten Years</title>
		<link>http://blog.johlero.eu/2009/10/26/teach-yourself-programming-in-ten-years/</link>
		<comments>http://blog.johlero.eu/2009/10/26/teach-yourself-programming-in-ten-years/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 08:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=463</guid>
		<description><![CDATA[Just read a very interesting article on programming by Peter Norvig. If you're a programmer, read it and check out some of the links.
--> http://norvig.com/21-days.html
]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/10/26/teach-yourself-programming-in-ten-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Educational software</title>
		<link>http://blog.johlero.eu/2009/10/18/educational-software/</link>
		<comments>http://blog.johlero.eu/2009/10/18/educational-software/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 15:54:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[CD-ROMS]]></category>
		<category><![CDATA[Indie Group]]></category>
		<category><![CDATA[SCORM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Televic-Education]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=450</guid>
		<description><![CDATA[I've been working almost 5 years now on educational software in two companies (first Indie Group, now Televic-Education). We mainly created CD-ROMS (that were enclosed with schoolbooks) and online solutions. All those applications were not built from scratch, instead we created a framework that could read in all exercises and hierarchy of the exercises. Those [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/10/18/educational-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Journey to Puimichel early this year watching Moon and Venus</title>
		<link>http://blog.johlero.eu/2009/10/17/journey-to-puimichel-early-this-year/</link>
		<comments>http://blog.johlero.eu/2009/10/17/journey-to-puimichel-early-this-year/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 18:54:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Interference]]></category>
		<category><![CDATA[Moon]]></category>
		<category><![CDATA[Observatory]]></category>
		<category><![CDATA[Optics]]></category>
		<category><![CDATA[Puimichel]]></category>
		<category><![CDATA[Stars]]></category>
		<category><![CDATA[Venus]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=422</guid>
		<description><![CDATA[This post is a little bit off topic (no RIA) but I had to write it down.
Early this year we went on a trip to Puimichel in France. My father has been living there a long time and is passionated by the stars and optics.
Puimichel :
Grotere kaart weergeven
On his site you can see some of [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/10/17/journey-to-puimichel-early-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oldschool Flashing</title>
		<link>http://blog.johlero.eu/2009/08/02/oldschool-flashing/</link>
		<comments>http://blog.johlero.eu/2009/08/02/oldschool-flashing/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 11:12:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[FlexBuilder]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=369</guid>
		<description><![CDATA[After some years of Flexing I've restarted to Flash. I'm creating a flash site for Peter Platel (know from 'Kleren maken de man') and it has been lots of fun and lots of frustration. Luckily I've gotten support from Ward De Langhe, one of the best Flash Developers around! (Check the Art he's creating with [...]]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/08/02/oldschool-flashing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server DateTime v’s .Net DateTime – Battle of Accuracy!</title>
		<link>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/</link>
		<comments>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:54:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://blog.johlero.eu/?p=366</guid>
		<description><![CDATA[Link
]]></description>
		<wfw:commentRss>http://blog.johlero.eu/2009/06/10/sql-server-datetime-v%e2%80%99s-net-datetime-%e2%80%93-battle-of-accuracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
