<?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/"
	
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"

	>
<channel>
	<title>Comments for SDLC Blog</title>
	<atom:link href="http://www.rodenas.org/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rodenas.org/blog</link>
	<description>Software Development Life Cycle: Methodologies and Tools for the Enterprise</description>
	<lastBuildDate>Sat, 11 Jun 2011 02:22:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.2</generator>
	<item>
		<title>Comment on Erlang ring problem by David Grenier</title>
		<link>http://www.rodenas.org/blog/2007/08/27/erlang-ring-problem/#comment-10074</link>
		<dc:creator><![CDATA[David Grenier]]></dc:creator>
		<pubDate>Sat, 11 Jun 2011 02:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/08/27/erlang-ring-problem/#comment-10074</guid>
		<description><![CDATA[Hello,

The following implementation in C# using Rx.NET runs in 1min58 in LINQPad on quad core Q6600@2.4ghz:

var listeners =
	Enumerable.Range(0, 10000)
		.Select(_ =&#062; new Subject(Scheduler.TaskPool))
		.MemoizeAll();
		
listeners.Publish(o =&#062; o.Zip(o.Skip(1), (l, r) =&#062; new { l, r}))
	.Run(o =&#062; o.l.Subscribe(o.r));
	
Observable
	.Range(0, 10000)
	.Delay(TimeSpan.FromMilliseconds(1000))
	.Subscribe(listeners.First());
	
listeners.Last().Last().Dump();

I also have the following F# implementation running in 50s on the same machine (F# interactive):

type Agent = MailboxProcessor

let count = 10000
let now = System.DateTime.Now

Agent.Start (fun inbox -&#062;
    async {
        while true do
            let! msg = inbox.Receive()
            if msg = count then
                printfn &quot;%A&quot; (System.DateTime.Now - now).TotalMilliseconds })
&#124;&#062; Seq.unfold (fun next -&#062;
                let agent = Agent.Start (fun inbox -&#062;
                                async {
                                    while true do
                                        let! msg = inbox.Receive()
                                        next.Post msg } )
                Some (agent, agent))
&#124;&#062; Seq.nth count
&#124;&#062; (fun agent -&#062; for i in 1..count do agent.Post i)

Both code seems to scale pretty well versus the timing I had on my dual core laptop at work (T7400), although I only remember the time for the C#-Rx version at 5min50.

David]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>The following implementation in C# using Rx.NET runs in 1min58 in LINQPad on quad core <a href="mailto:Q6600@2.4ghz">Q6600@2.4ghz</a>:</p>
<p>var listeners =<br />
	Enumerable.Range(0, 10000)<br />
		.Select(_ =&gt; new Subject(Scheduler.TaskPool))<br />
		.MemoizeAll();</p>
<p>listeners.Publish(o =&gt; o.Zip(o.Skip(1), (l, r) =&gt; new { l, r}))<br />
	.Run(o =&gt; o.l.Subscribe(o.r));</p>
<p>Observable<br />
	.Range(0, 10000)<br />
	.Delay(TimeSpan.FromMilliseconds(1000))<br />
	.Subscribe(listeners.First());</p>
<p>listeners.Last().Last().Dump();</p>
<p>I also have the following F# implementation running in 50s on the same machine (F# interactive):</p>
<p>type Agent = MailboxProcessor</p>
<p>let count = 10000<br />
let now = System.DateTime.Now</p>
<p>Agent.Start (fun inbox -&gt;<br />
    async {<br />
        while true do<br />
            let! msg = inbox.Receive()<br />
            if msg = count then<br />
                printfn &#8220;%A&#8221; (System.DateTime.Now &#8211; now).TotalMilliseconds })<br />
|&gt; Seq.unfold (fun next -&gt;<br />
                let agent = Agent.Start (fun inbox -&gt;<br />
                                async {<br />
                                    while true do<br />
                                        let! msg = inbox.Receive()<br />
                                        next.Post msg } )<br />
                Some (agent, agent))<br />
|&gt; Seq.nth count<br />
|&gt; (fun agent -&gt; for i in 1..count do agent.Post i)</p>
<p>Both code seems to scale pretty well versus the timing I had on my dual core laptop at work (T7400), although I only remember the time for the C#-Rx version at 5min50.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Andy</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9973</link>
		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Wed, 02 Mar 2011 15:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9973</guid>
		<description><![CDATA[Hi there,

I&#039;m building a site for The Nerve Centre, a place in Huddersfield UK, which supports people with neurological conditions. As such your plugin is very useful. :o)

My problem is that it doesn&#039;t appear on the homepage. Is there a way of getting it to appear on every page? Some of our users are visually impaired so it would be great to have this option as soon as they arrive.

Thanks a lot, Andy]]></description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I&#8217;m building a site for The Nerve Centre, a place in Huddersfield UK, which supports people with neurological conditions. As such your plugin is very useful. :o)</p>
<p>My problem is that it doesn&#8217;t appear on the homepage. Is there a way of getting it to appear on every page? Some of our users are visually impaired so it would be great to have this option as soon as they arrive.</p>
<p>Thanks a lot, Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Antoine</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9970</link>
		<dc:creator><![CDATA[Antoine]]></dc:creator>
		<pubDate>Sun, 20 Feb 2011 17:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9970</guid>
		<description><![CDATA[Hello thanks for this great plugin, it is the best one that is available for Wordpress. One feature would make it utterly perfect, and that is a class id for the selected textsize in the &quot;Steps&quot; view. So that a user can see directly which fontsize is selected. Do you have any tip for me how this can be accomplished? Thanks in advance!]]></description>
		<content:encoded><![CDATA[<p>Hello thanks for this great plugin, it is the best one that is available for WordPress. One feature would make it utterly perfect, and that is a class id for the selected textsize in the &#8220;Steps&#8221; view. So that a user can see directly which fontsize is selected. Do you have any tip for me how this can be accomplished? Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Sulekha</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9962</link>
		<dc:creator><![CDATA[Sulekha]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 00:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9962</guid>
		<description><![CDATA[Hi...
Nice Plugin. But it doesnt work for me fine. I am using wordpress version 3.0.4 and default theme &quot;Twenty Ten 1.1 by the WordPress team&quot;. When I use Div base element as &quot;content&quot;, it changes the size of post content only, when I use DIV base element as &quot;wrapper&quot;, it changes size of heading of right sidebar only. Can you please help me which elementshoul I use in Div base element so that it will increase and decrease the font-size of whole page.

Thanks,
Sulekha]]></description>
		<content:encoded><![CDATA[<p>Hi&#8230;<br />
Nice Plugin. But it doesnt work for me fine. I am using wordpress version 3.0.4 and default theme &#8220;Twenty Ten 1.1 by the WordPress team&#8221;. When I use Div base element as &#8220;content&#8221;, it changes the size of post content only, when I use DIV base element as &#8220;wrapper&#8221;, it changes size of heading of right sidebar only. Can you please help me which elementshoul I use in Div base element so that it will increase and decrease the font-size of whole page.</p>
<p>Thanks,<br />
Sulekha</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparency in Software Development by Surge</title>
		<link>http://www.rodenas.org/blog/2008/05/07/transparency-in-software-development/#comment-9943</link>
		<dc:creator><![CDATA[Surge]]></dc:creator>
		<pubDate>Tue, 25 Jan 2011 17:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/?p=289#comment-9943</guid>
		<description><![CDATA[“you must be politically astute, but don’t play politics“. 

This is a great quote thanks to Ferdy for posting it.  I have found office politics to be difficult to deal with.  And it has become more so with the economy going the way it is. 
I found this in another blog and found it extremely beneficial to me;  &quot;Software transparency is immediate visibility into the quality and security of all code in development, without disrupting the development process&quot;.  I must say that transparency is a great idea but the implementation of it could be rather a kaotic one and dealing with that kaos would make it even more befuddling.  How do you not do this though.  The client is hard enough to understand and get answers out of, in some cases.  Without doing some kind of transparency you might have a useless instance.  Creating trancparnecy is a canundrum.  Thanks for the post.]]></description>
		<content:encoded><![CDATA[<p>“you must be politically astute, but don’t play politics“. </p>
<p>This is a great quote thanks to Ferdy for posting it.  I have found office politics to be difficult to deal with.  And it has become more so with the economy going the way it is.<br />
I found this in another blog and found it extremely beneficial to me;  &#8220;Software transparency is immediate visibility into the quality and security of all code in development, without disrupting the development process&#8221;.  I must say that transparency is a great idea but the implementation of it could be rather a kaotic one and dealing with that kaos would make it even more befuddling.  How do you not do this though.  The client is hard enough to understand and get answers out of, in some cases.  Without doing some kind of transparency you might have a useless instance.  Creating trancparnecy is a canundrum.  Thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Susan</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9941</link>
		<dc:creator><![CDATA[Susan]]></dc:creator>
		<pubDate>Sun, 23 Jan 2011 05:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9941</guid>
		<description><![CDATA[I just found it and really like how easy it makes it for changing font size. It&#039;s cool that you guys offer this for free also. Thanks!]]></description>
		<content:encoded><![CDATA[<p>I just found it and really like how easy it makes it for changing font size. It&#8217;s cool that you guys offer this for free also. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by gufran</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9368</link>
		<dc:creator><![CDATA[gufran]]></dc:creator>
		<pubDate>Fri, 19 Nov 2010 07:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9368</guid>
		<description><![CDATA[Hi,

i have installed your plug-in on my local WP site.

but it will not work as expected.Please help me to rectify this.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>i have installed your plug-in on my local WP site.</p>
<p>but it will not work as expected.Please help me to rectify this.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Luke</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9366</link>
		<dc:creator><![CDATA[Luke]]></dc:creator>
		<pubDate>Wed, 17 Nov 2010 13:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9366</guid>
		<description><![CDATA[I&#039;ve just got your plugin which I&#039;ve seen on other websites. For some reason I can only get it to show one small A to change the text to size 12. However I want it to show 3 A&#039;s. 

A - to change to 12
A - to change to 14
A - to change to 16

Any idea how I can do this?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve just got your plugin which I&#8217;ve seen on other websites. For some reason I can only get it to show one small A to change the text to size 12. However I want it to show 3 A&#8217;s. </p>
<p>A &#8211; to change to 12<br />
A &#8211; to change to 14<br />
A &#8211; to change to 16</p>
<p>Any idea how I can do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Patrick</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9364</link>
		<dc:creator><![CDATA[Patrick]]></dc:creator>
		<pubDate>Tue, 16 Nov 2010 21:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9364</guid>
		<description><![CDATA[I love the plugin. I have one feature suggestion. When you display the text size options like so: &quot;A(small) A)medium) A(large)&quot; could there be a &quot;.current&quot; or similar class added to the anchor tag for styling purposes? That would be awesome.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>I love the plugin. I have one feature suggestion. When you display the text size options like so: &#8220;A(small) A)medium) A(large)&#8221; could there be a &#8220;.current&#8221; or similar class added to the anchor tag for styling purposes? That would be awesome.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WP-chgFontSize WordPress plugin by Ric</title>
		<link>http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9357</link>
		<dc:creator><![CDATA[Ric]]></dc:creator>
		<pubDate>Fri, 05 Nov 2010 14:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rodenas.org/blog/2007/03/08/wp-chgfontsize/#comment-9357</guid>
		<description><![CDATA[Sorry, actually I finally just solved it! Just forced and overwrite so I could use the same div element. The functionality would still be nice though for future updates!]]></description>
		<content:encoded><![CDATA[<p>Sorry, actually I finally just solved it! Just forced and overwrite so I could use the same div element. The functionality would still be nice though for future updates!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
