<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Design patterns in GObject at FOSDEM</title>
	<atom:link href="http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem/feed" rel="self" type="application/rss+xml" />
	<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem</link>
	<description>From the mind of Philip</description>
	<lastBuildDate>Sun, 28 Aug 2011 12:59:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>By: Francisco Rojas</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-103</link>
		<dc:creator>Francisco Rojas</dc:creator>
		<pubDate>Sat, 30 May 2009 11:19:39 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-103</guid>
		<description>Hi, how can I see the examples? i don&#039;t have acces to the svn.

Thanks in advance
Francisco</description>
		<content:encoded><![CDATA[<p>Hi, how can I see the examples? i don&#8217;t have acces to the svn.</p>
<p>Thanks in advance<br />
Francisco</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pvanhoof</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-102</link>
		<dc:creator>pvanhoof</dc:creator>
		<pubDate>Wed, 25 Jan 2006 18:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-102</guid>
		<description>I found myself two reasonable good reasons why it&#039;s important to be skilled in the tactics of design patterns when doing GObject libraries. And why, in general, do GObject libraries.

I ruled out performance as an important reason. It&#039;s a reason, but not always an important one. I&#039;m sure Federico will now want to reply that for many libraries, it is an important reason. He&#039;s right and it&#039;s very good that these libraries (for me they are the infrastructure layer) are being maintained with performance in mind. So, agreed .. it&#039;s a reason.

My main reason is more obvious. With or without reason, these days a lot people are a little bit scared about the licensing and patenting issues that might or aren&#039;t coupled with some of the popular modern development environments and programming languages. Yet a lot people want to use them. As long as we make sure that our most important libraries are written in a patent-free environment like GObject, we have not much to fear. For GObject there are very good language binding code generators that will generate a language binding for your popular modern programming language.

The other reason (it&#039;s more or less the same reason, but a different point of view) is that you can develop core shareable components of your software in libraries that contain pure and well designed GObjects. You&#039;ll have the ability to enjoy the power of a higher programming environment after creating bindings. The good news is that you can pick the, for your situation, most interesting higher programming language to develop on top of your library. Yet the big picture for all the softwares that will depend on your GObject libraries will be exactly the same. It won&#039;t (really) matter which higher programming language will be used.

So why design patterns in GObject? Obviously because a) most design patterns are platform and language neutral, you can make the implementations platform and language neutral too. And b) because you&#039;ll steer &lt;b&gt;all&lt;/b&gt; your developers (no matter how low or how high their favorite programming language is nor which one they picked for the task) into developing the design pattern way. Yet not having to duplicate shareable implementation code. And of course c) because of the many benefits that come with practising design patterns while making design decisions (integration with unit testing and extreme programming, knowing the fact that you are using proven solutions for typical problems, decoupled classes which results in less interdependencies which results in more reusability, etcetera).</description>
		<content:encoded><![CDATA[<p>I found myself two reasonable good reasons why it&#8217;s important to be skilled in the tactics of design patterns when doing GObject libraries. And why, in general, do GObject libraries.</p>
<p>I ruled out performance as an important reason. It&#8217;s a reason, but not always an important one. I&#8217;m sure Federico will now want to reply that for many libraries, it is an important reason. He&#8217;s right and it&#8217;s very good that these libraries (for me they are the infrastructure layer) are being maintained with performance in mind. So, agreed .. it&#8217;s a reason.</p>
<p>My main reason is more obvious. With or without reason, these days a lot people are a little bit scared about the licensing and patenting issues that might or aren&#8217;t coupled with some of the popular modern development environments and programming languages. Yet a lot people want to use them. As long as we make sure that our most important libraries are written in a patent-free environment like GObject, we have not much to fear. For GObject there are very good language binding code generators that will generate a language binding for your popular modern programming language.</p>
<p>The other reason (it&#8217;s more or less the same reason, but a different point of view) is that you can develop core shareable components of your software in libraries that contain pure and well designed GObjects. You&#8217;ll have the ability to enjoy the power of a higher programming environment after creating bindings. The good news is that you can pick the, for your situation, most interesting higher programming language to develop on top of your library. Yet the big picture for all the softwares that will depend on your GObject libraries will be exactly the same. It won&#8217;t (really) matter which higher programming language will be used.</p>
<p>So why design patterns in GObject? Obviously because a) most design patterns are platform and language neutral, you can make the implementations platform and language neutral too. And b) because you&#8217;ll steer <b>all</b> your developers (no matter how low or how high their favorite programming language is nor which one they picked for the task) into developing the design pattern way. Yet not having to duplicate shareable implementation code. And of course c) because of the many benefits that come with practising design patterns while making design decisions (integration with unit testing and extreme programming, knowing the fact that you are using proven solutions for typical problems, decoupled classes which results in less interdependencies which results in more reusability, etcetera).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phenomena in the days of Philip &#38;#187; Blog Archive &#38;#187; Some conclusions, more on codegen and GObject</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-101</link>
		<dc:creator>Phenomena in the days of Philip &#38;#187; Blog Archive &#38;#187; Some conclusions, more on codegen and GObject</dc:creator>
		<pubDate>Tue, 24 Jan 2006 20:42:18 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-101</guid>
		<description>[...] Phenomena in the days of Philip Just another WordPress weblog      &laquo; Design patterns in GObject at FOSDEM [...]</description>
		<content:encoded><![CDATA[<p>[...] Phenomena in the days of Philip Just another WordPress weblog      &#38;laquo; Design patterns in GObject at FOSDEM [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mzabaluev</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-100</link>
		<dc:creator>mzabaluev</dc:creator>
		<pubDate>Mon, 23 Jan 2006 20:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-100</guid>
		<description>A GObject generator with XSLT sounds interesting. I could lend a hand, if only in irregular bursts of activity. I&#039;ve written XSLT for a few automated tasks.
I&#039;ve also designed an experimental I/O framework over GObject called GOIO (https://gna.org/projects/goio), some interface-heavy stuff, so I&#039;m quite into &quot;this type of development&quot;. Write if you need any help.</description>
		<content:encoded><![CDATA[<p>A GObject generator with XSLT sounds interesting. I could lend a hand, if only in irregular bursts of activity. I&#8217;ve written XSLT for a few automated tasks.<br />
I&#8217;ve also designed an experimental I/O framework over GObject called GOIO (<a href="https://gna.org/projects/goio" rel="nofollow">https://gna.org/projects/goio</a>), some interface-heavy stuff, so I&#8217;m quite into &#8220;this type of development&#8221;. Write if you need any help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flav</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-99</link>
		<dc:creator>flav</dc:creator>
		<pubDate>Mon, 23 Jan 2006 15:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-99</guid>
		<description>Thank You!

I have been working on my GObject skills, and have also been _attempting_ to implement examples from the Head First book.  It is really cool to see it done from someone with some real experience.</description>
		<content:encoded><![CDATA[<p>Thank You!</p>
<p>I have been working on my GObject skills, and have also been _attempting_ to implement examples from the Head First book.  It is really cool to see it done from someone with some real experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samokk is a Geek &#38;#187; GObject hell !</title>
		<link>http://pvanhoof.be/blog/index.php/2006/01/22/design-patterns-in-gobject-at-fosdem#comment-98</link>
		<dc:creator>Samokk is a Geek &#38;#187; GObject hell !</dc:creator>
		<pubDate>Sun, 22 Jan 2006 15:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://pvanhoof.be/blog/?p=354#comment-98</guid>
		<description>[...] I find it particularly interesting to see people actually enjoying GObject development. [...]</description>
		<content:encoded><![CDATA[<p>[...] I find it particularly interesting to see people actually enjoying GObject development. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

