<?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 for Sam&#039;s occasional tech thinkings</title>
	<atom:link href="http://www.ziazoo.co.uk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ziazoo.co.uk/blog</link>
	<description>I wish I got it right more!</description>
	<lastBuildDate>Tue, 18 May 2010 00:58:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1-alpha-15359</generator>
	<item>
		<title>Comment on The fussy type by Josh McDonald</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-411</link>
		<dc:creator>Josh McDonald</dc:creator>
		<pubDate>Tue, 18 May 2010 00:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-411</guid>
		<description>Hey, @darscan sent me a link to this, nice work. I&#039;ve been rejigging my own reflection lib so it was very timely. I&#039;m a big fan of fluent API design, but your idea of building the query first and then execute it against a class later is quite unique.</description>
		<content:encoded><![CDATA[<p>Hey, @darscan sent me a link to this, nice work. I&#8217;ve been rejigging my own reflection lib so it was very timely. I&#8217;m a big fan of fluent API design, but your idea of building the query first and then execute it against a class later is quite unique.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The fussy type by Mike cann</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-406</link>
		<dc:creator>Mike cann</dc:creator>
		<pubDate>Mon, 17 May 2010 19:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-406</guid>
		<description>Very interesting! 

Remind be of the FunkAS3 Lib by Joa: http://code.google.com/p/funk-as3/

Seems like functional programming is slipping out of the realms of Haskel more and more these days :p

Mike</description>
		<content:encoded><![CDATA[<p>Very interesting! </p>
<p>Remind be of the FunkAS3 Lib by Joa: <a href="http://code.google.com/p/funk-as3/" rel="nofollow">http://code.google.com/p/funk-as3/</a></p>
<p>Seems like functional programming is slipping out of the realms of Haskel more and more these days :p</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The fussy type by sammy</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-391</link>
		<dc:creator>sammy</dc:creator>
		<pubDate>Sun, 16 May 2010 14:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-391</guid>
		<description>Hello there jos,

That is an interesting idea.  I believe it would be technically possible, but I think perhaps a more useful way to work with other reflection libraries would be to re-implement the IResultParsers (converts XML into strongly typed objects) to return Method, Variable, Metadata objects etc for other libraries.  Then fussy could replace the implementation of the reflection libs in your code without affecting code that expect the objects generated by them.</description>
		<content:encoded><![CDATA[<p>Hello there jos,</p>
<p>That is an interesting idea.  I believe it would be technically possible, but I think perhaps a more useful way to work with other reflection libraries would be to re-implement the IResultParsers (converts XML into strongly typed objects) to return Method, Variable, Metadata objects etc for other libraries.  Then fussy could replace the implementation of the reflection libs in your code without affecting code that expect the objects generated by them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The fussy type by Mark</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-373</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 15 May 2010 17:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-373</guid>
		<description>Very nice library! Works very intuitive.

Would it be an idea to quickly filter out metadata tags somehow? something like this:

fussy.query().getTypeQuery().forType(type).metadata.get(&quot;Remote&quot;); // returns Metadata with remote

fussy.query().findProperties().withMetadata(&quot;DataMember&quot;).forType(type).metadata.get(&quot;DataMember&quot;);

This concept could also be applied on the properties list of the metadata.</description>
		<content:encoded><![CDATA[<p>Very nice library! Works very intuitive.</p>
<p>Would it be an idea to quickly filter out metadata tags somehow? something like this:</p>
<p>fussy.query().getTypeQuery().forType(type).metadata.get(&#8220;Remote&#8221;); // returns Metadata with remote</p>
<p>fussy.query().findProperties().withMetadata(&#8220;DataMember&#8221;).forType(type).metadata.get(&#8220;DataMember&#8221;);</p>
<p>This concept could also be applied on the properties list of the metadata.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The fussy type by J.</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-339</link>
		<dc:creator>J.</dc:creator>
		<pubDate>Wed, 12 May 2010 14:36:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-339</guid>
		<description>I just read your article, and don&#039;t test your Fussy, but it seems kick ass !! Really good !</description>
		<content:encoded><![CDATA[<p>I just read your article, and don&#8217;t test your Fussy, but it seems kick ass !! Really good !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The fussy type by Jos</title>
		<link>http://www.ziazoo.co.uk/blog/2010/05/12/the-fussy-type/comment-page-1/#comment-338</link>
		<dc:creator>Jos</dc:creator>
		<pubDate>Wed, 12 May 2010 13:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=323#comment-338</guid>
		<description>Without really knowing what i&#039;m asking, is it possible to pull out the query language into its own Interface, and allow the use of different reflection libs? I&#039;m thinking that ppl sometimes are attached to their own reflection stuff, but if the query &quot;part&quot; could be separated out, it might allow for more Reflection libs to support that part of it. 

I don&#039;t know if what i&#039;m asking is crazy-talk or not however, and it could just be coffee speaking. 

Looking forward to spending some time looking at this! Thanks for sharing!

jos</description>
		<content:encoded><![CDATA[<p>Without really knowing what i&#8217;m asking, is it possible to pull out the query language into its own Interface, and allow the use of different reflection libs? I&#8217;m thinking that ppl sometimes are attached to their own reflection stuff, but if the query &#8220;part&#8221; could be separated out, it might allow for more Reflection libs to support that part of it. </p>
<p>I don&#8217;t know if what i&#8217;m asking is crazy-talk or not however, and it could just be coffee speaking. </p>
<p>Looking forward to spending some time looking at this! Thanks for sharing!</p>
<p>jos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Similar, but different! Private Configurations by Tom Kordys</title>
		<link>http://www.ziazoo.co.uk/blog/2010/04/26/similar-but-different-private-configurations/comment-page-1/#comment-301</link>
		<dc:creator>Tom Kordys</dc:creator>
		<pubDate>Fri, 07 May 2010 09:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=311#comment-301</guid>
		<description>I see more documentation :)
Nice</description>
		<content:encoded><![CDATA[<p>I see more documentation <img src='http://www.ziazoo.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on dawn injectors multi-mappings by sammy</title>
		<link>http://www.ziazoo.co.uk/blog/2010/04/07/dawn-injectors-multi-mappings/comment-page-1/#comment-300</link>
		<dc:creator>sammy</dc:creator>
		<pubDate>Fri, 07 May 2010 09:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=308#comment-300</guid>
		<description>Hey Glidas, I havent used SwiftSuspenders but I believe it does have a solution to your problem.  I notice in the docs &quot;rules (which allows sharing singletons between multiple mapping rules)&quot; ... might help you out

I dont think multi-mappings are enabling anything new as such, I&#039;m just trying to make life easier :)

Sammy</description>
		<content:encoded><![CDATA[<p>Hey Glidas, I havent used SwiftSuspenders but I believe it does have a solution to your problem.  I notice in the docs &#8220;rules (which allows sharing singletons between multiple mapping rules)&#8221; &#8230; might help you out</p>
<p>I dont think multi-mappings are enabling anything new as such, I&#8217;m just trying to make life easier <img src='http://www.ziazoo.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Sammy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Similar, but different! Private Configurations by sammy</title>
		<link>http://www.ziazoo.co.uk/blog/2010/04/26/similar-but-different-private-configurations/comment-page-1/#comment-273</link>
		<dc:creator>sammy</dc:creator>
		<pubDate>Tue, 04 May 2010 08:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=311#comment-273</guid>
		<description>Thanks for pointing me to your project, I will take a look.  Interesting thoughts about using separate application domains.  I am working on a demo of using dawn in separate application domains atm which should help raise any issues :) sammy</description>
		<content:encoded><![CDATA[<p>Thanks for pointing me to your project, I will take a look.  Interesting thoughts about using separate application domains.  I am working on a demo of using dawn in separate application domains atm which should help raise any issues <img src='http://www.ziazoo.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  sammy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Similar, but different! Private Configurations by sammy</title>
		<link>http://www.ziazoo.co.uk/blog/2010/04/26/similar-but-different-private-configurations/comment-page-1/#comment-272</link>
		<dc:creator>sammy</dc:creator>
		<pubDate>Tue, 04 May 2010 08:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ziazoo.co.uk/blog/?p=311#comment-272</guid>
		<description>Hey Jon, yes I have seen Till&#039;s child injectors, excellent stuff!!  Private configurations actually are child injectors under the hood, the installPrivate method returns the child injector created for that private configuration should you want it.  And you can also just create a child injector through the createChildInjector method on IInjector.  Take a peek at the new &lt;a href=&quot;http://github.com/sammyt/dawn/blob/5e88a3f511c0eaf231683499dbc746196a840a50/injector/src/uk/co/ziazoo/injector/IInjector.as&quot; rel=&quot;nofollow&quot;&gt;IInjector api&lt;/a&gt;

Though I would advise using private configurations wherever possible.  Manually creating child injectors looks more suited to dealing with modules than separating object graphs (in dawn anyhow), more on that in another post :)

Always interested to hear whats coming in RL! Its an awesome framework.

Cheers
Sammy

EDIT: Corrected all my spelling mistakes, I hope</description>
		<content:encoded><![CDATA[<p>Hey Jon, yes I have seen Till&#8217;s child injectors, excellent stuff!!  Private configurations actually are child injectors under the hood, the installPrivate method returns the child injector created for that private configuration should you want it.  And you can also just create a child injector through the createChildInjector method on IInjector.  Take a peek at the new <a href="http://github.com/sammyt/dawn/blob/5e88a3f511c0eaf231683499dbc746196a840a50/injector/src/uk/co/ziazoo/injector/IInjector.as" rel="nofollow">IInjector api</a></p>
<p>Though I would advise using private configurations wherever possible.  Manually creating child injectors looks more suited to dealing with modules than separating object graphs (in dawn anyhow), more on that in another post <img src='http://www.ziazoo.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Always interested to hear whats coming in RL! Its an awesome framework.</p>
<p>Cheers<br />
Sammy</p>
<p>EDIT: Corrected all my spelling mistakes, I hope</p>
]]></content:encoded>
	</item>
</channel>
</rss>
