<?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/"
	>

<channel>
	<title>Winpdb - A Platform Independent Python Debugger</title>
	<atom:link href="http://winpdb.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://winpdb.org</link>
	<description></description>
	<pubDate>Tue, 09 Mar 2010 07:12:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple Solution to Classic Problem in Software Development</title>
		<link>http://winpdb.org/2010/03/simple-solution-to-a-classic-problem-in-software-development/</link>
		<comments>http://winpdb.org/2010/03/simple-solution-to-a-classic-problem-in-software-development/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:53:22 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=446</guid>
		<description><![CDATA[Pick a good sized CS book and put it in front of your monitor so that is hides the screen unless you sit up straight.
]]></description>
			<content:encoded><![CDATA[<p>Pick a good sized CS book and put it in front of your monitor so that is hides the screen unless you sit up straight.</p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2010/03/simple-solution-to-a-classic-problem-in-software-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Copyright and Delayed Release</title>
		<link>http://winpdb.org/2010/03/copyright-and-delayed-release/</link>
		<comments>http://winpdb.org/2010/03/copyright-and-delayed-release/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 21:21:21 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=408</guid>
		<description><![CDATA[Ever since I discovered Free Software I was haunted by the problem of developing software sustainably. Today I would like to suggest a possible model which may be suitable to individual developers and small business. That is, distributing software using relaxed non Free Software license, combined with releasing each modification as Free Software a determined [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since I discovered Free Software I was haunted by the problem of developing software sustainably. Today I would like to suggest a possible model which may be suitable to individual developers and small business. That is, distributing software using relaxed non Free Software license, combined with releasing each modification as Free Software a determined time after its introduction, or in other words - Delayed Release.</p>
<p>This approach may be inline with views expressed by Richard Stallman in an interesting article on Copyright by the title &#8220;Misinterpreting Copyright—A Series of Errors&#8221; (1). Referring to copyright on software he writes &#8220;In my own field, computer programming, three years should suffice&#8221;. Stallman does not reject copyright as a concept but is interested in &#8220;Finding the right bargain&#8221;.</p>
<p>Possibly the most well known scheme for developing Free Software profitably is that of charging for related services. The problem is this model requires business skills most software developers do not have and is often not even applicable.</p>
<p>With Delayed Release, software developers may have easier time developing Free Software profitably, leading to increase in production of Free Software. Once people find that ideals of Free Software can practically co-exist with their realities, those ideals will have easier time spreading.</p>
<p>(1) <a href="http://www.gnu.org/philosophy/misinterpreting-copyright.html">http://www.gnu.org/philosophy/misinterpreting-copyright.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2010/03/copyright-and-delayed-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>130,000 IPC Calls per Second in Python</title>
		<link>http://winpdb.org/2010/02/100k-ipc-calls-per-second-in-python/</link>
		<comments>http://winpdb.org/2010/02/100k-ipc-calls-per-second-in-python/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 21:20:34 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=418</guid>
		<description><![CDATA[rfoo is a new Python RPC package which can do 130,000 IPC calls per second on a regular PC. It includes a fast serialization module called rfoo.marsh which extends the Python built in marshal module by eliminating serialization of code objects and protecting against bad input. The result is a safe to use ultra fast [...]]]></description>
			<content:encoded><![CDATA[<p>rfoo is a new Python RPC package which can do 130,000 IPC calls per second on a regular PC. It includes a fast serialization module called rfoo.marsh which extends the Python built in marshal module by eliminating serialization of code objects and protecting against bad input. The result is a safe to use ultra fast serializer. Go get it at <a href="http://code.google.com/p/rfoo/">http://code.google.com/p/rfoo/</a></p>
<p><strong>Interface of rfoo.marsh</strong></p>
<pre>rfoo.marsh.dumps(expression)
rfoo.marsh.loads(binary_string)</pre>
<p><strong>Serve RPC method to clients</strong></p>
<pre>class MyHandler(rfoo.BaseHandler):
    def echo(self, str):
        return str

rfoo.InetServer(MyHandler).start(port=50000)</pre>
<p><strong>Call method on RPC server</strong></p>
<pre>c = rfoo.InetConnection().connect(port=50000)
rfoo.Proxy(c).echo('Hello, world!')</pre>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2010/02/100k-ipc-calls-per-second-in-python/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Beta Inc.</title>
		<link>http://winpdb.org/2009/11/google-beta-inc/</link>
		<comments>http://winpdb.org/2009/11/google-beta-inc/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 18:49:06 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<category><![CDATA[Notices]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=388</guid>
		<description><![CDATA[Someone should slap these guys on the head. 
Today I visited the Winpdb Google Group and was shocked to see it was swamped with SPAM. I never got notifications for any of that SPAM. So, I thought what the hell, I will clear the mess in a second. I was in for a surprise. Google [...]]]></description>
			<content:encoded><![CDATA[<p>Someone should slap these guys on the head. </p>
<p>Today I visited the Winpdb Google Group and was shocked to see it was swamped with SPAM. I never got notifications for any of that SPAM. So, I thought what the hell, I will clear the mess in a second. I was in for a surprise. Google Groups admin panel is the worst ever created for a web service. To delete each SPAM message you need to click five (!) links, and if you also want to report the message as SPAM you need to click once more. you can&#8217;t select several discussions or messages or delete all message by a bot author. </p>
<p>The team members who created Google Groups should be sent to Siberia and never allowed to touch a computer again.</p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/11/google-beta-inc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Enter JPC</title>
		<link>http://winpdb.org/2009/11/enter-jpc/</link>
		<comments>http://winpdb.org/2009/11/enter-jpc/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 17:35:25 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=363</guid>
		<description><![CDATA[jpc is a fast Python JSON RPC package, partially compliant with JSON-RPC version 1 - <a href="http://code.google.com/p/python-jpc/">http://code.google.com/p/python-jpc/</a>

I started jpc trying to figure out why an existing Python RPC package was slow and before long I found myself hacking at a new package [...]]]></description>
			<content:encoded><![CDATA[<p>jpc is a fast Python JSON RPC package, partially compliant with JSON-RPC version 1 - <a href="http://code.google.com/p/python-jpc/">http://code.google.com/p/python-jpc/</a></p>
<p>I started jpc trying to figure out why an existing Python RPC package was slow and before long I found myself hacking at a new package.</p>
<p>On my 2.4GHz Core 2 Duo laptop it can start/end 4000 new local TCP connections, handle 13,000 local RPC calls and 40,000 JSON-RPC notifications per second per process. Here is an example:</p>
<pre># Serve a method to clients

class MyHandler(jpc.BaseHandler):
    def echo(self, str):
        return str

jpc.start_server(host='localhost', port=50000, handler=MyHandler)

# Call a method on server

c = jpc.connect(host='localhost', port=50000)
jpc.Proxy(c).echo('Hello, world!')</pre>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/11/enter-jpc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scalability</title>
		<link>http://winpdb.org/2009/07/scalability/</link>
		<comments>http://winpdb.org/2009/07/scalability/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 03:37:02 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=345</guid>
		<description><![CDATA[The world is a giant OS with a mysterious scheduling algorithm.
]]></description>
			<content:encoded><![CDATA[<p>The world is a giant OS with a mysterious scheduling algorithm.</p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/07/scalability/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The State of Free Software</title>
		<link>http://winpdb.org/2009/07/the-state-of-free-software/</link>
		<comments>http://winpdb.org/2009/07/the-state-of-free-software/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 09:07:44 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=338</guid>
		<description><![CDATA[It is easy to identify a Free Software project. It includes the term &#8220;Free Software&#8221; in its website. Open Source projects created by corporations, by hackers who reject the ideals of Free Software or by developers who do not know the difference NEVER include the term. 
Some notable Free Software projects are therefore:
http://www.debian.org/
http://www.gnome.org/
http://kde.org/
There are of [...]]]></description>
			<content:encoded><![CDATA[<p>It is easy to identify a Free Software project. It includes the term &#8220;Free Software&#8221; in its website. Open Source projects created by corporations, by hackers who reject the ideals of Free Software or by developers who do not know the difference NEVER include the term. </p>
<p>Some notable Free Software projects are therefore:<br />
<a href="http://www.debian.org/">http://www.debian.org/</a><br />
<a href="http://www.gnome.org/">http://www.gnome.org/</a><br />
<a href="http://kde.org/">http://kde.org/</a></p>
<p>There are of course many others and please comment with your favorite ones, but in fact, if you try to think of a recent notable FOSS project and check out its website you are most likely to find it is an Open Source project rather than Free Software.</p>
<p>For example, Apache, Lighttpd, MySQL, PostgreSQL, Python, Django, Drupal, Firefox, Ubuntu and others.</p>
<p>For those of you who wonder what the difference between Free Software and Open Source is, I recommend the following article: <a href="http://www.gnu.org/philosophy/open-source-misses-the-point.html">http://www.gnu.org/philosophy/open-source-misses-the-point.html</a></p>
<p>There can be several reasons why this is the state of Free Software. I believe one of them is that there is no economical energy behind Free Software. </p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/07/the-state-of-free-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ice Programming</title>
		<link>http://winpdb.org/2009/07/ice-programming/</link>
		<comments>http://winpdb.org/2009/07/ice-programming/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 21:43:53 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=333</guid>
		<description><![CDATA[Programming is like Ice Sculpting. For me programming is an art form. At its best it is driven by muse, involves a technical achievement, and is a form of expression. But as an art form programming is like Ice sculpting. It lasts for 5 to 10 years and then returns to the mind of its [...]]]></description>
			<content:encoded><![CDATA[<p>Programming is like Ice Sculpting. For me programming is an art form. At its best it is driven by muse, involves a technical achievement, and is a form of expression. But as an art form programming is like Ice sculpting. It lasts for 5 to 10 years and then returns to the mind of its creator as sweet memory, nothing more. </p>
<p>When I was 16 I wrote with a friend an arcade game for the Commodore 64. It was a beautiful piece of software written in Assembler with heart breaking graphics. I dare to say it was one of the most technically advanced games ever developed for the Commodore but although we negotiated with several game publishers it was never released. </p>
<p>This game is now the software equivalent of Schrödinger&#8217;s cat experiment. It exists on a 20 years old 5.25 Inch floppy disk inside a plastic box at my parent&#8217;s house. There is a probability that it is still intact, but touch that diskette and it is gone forever.</p>
<p>Such is the fate of all software.</p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/07/ice-programming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Revolutionary Technology</title>
		<link>http://winpdb.org/2009/06/revolutionary-technology/</link>
		<comments>http://winpdb.org/2009/06/revolutionary-technology/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 18:52:50 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=329</guid>
		<description><![CDATA[Where I live the media goes on and on about how The Iranian people is using web technology against its regime - for example Twitter, Youtube, e-mails and also cellular phones, SMS, etc&#8230; These technologies are described as giving an upper hand to the people as opposed for example to the revolution which took place [...]]]></description>
			<content:encoded><![CDATA[<p>Where I live the media goes on and on about how The Iranian people is using web technology against its regime - for example Twitter, Youtube, e-mails and also cellular phones, SMS, etc&#8230; These technologies are described as giving an upper hand to the people as opposed for example to the revolution which took place 30 years ago.</p>
<p>I think this technology is actually being used against the people. You can not use it without being completely exposed. Anyone using it is being monitored and ironically has his/her social network mapped. Once someone is determined to be an organizer or worth the effort of taking down, he/she can be easily arrested.</p>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/06/revolutionary-technology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bigfoot Linux</title>
		<link>http://winpdb.org/2009/06/bigfoot-linux/</link>
		<comments>http://winpdb.org/2009/06/bigfoot-linux/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:34:24 +0000</pubDate>
		<dc:creator>nir</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://winpdb.org/?p=323</guid>
		<description><![CDATA[I&#8217;ve got a Core 2 Duo with 3GB of memory running Ubuntu 64 bit and it can barely handle 3 or 4 applications I use for everyday development work.
Both memory usage and CPU load are annoyingly high. Firefox has about 5-10 open tabs and needs restarting every day or so unless it crashes unexpectedly.
I typically [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a Core 2 Duo with 3GB of memory running Ubuntu 64 bit and it can barely handle 3 or 4 applications I use for everyday development work.</p>
<p>Both memory usage and CPU load are annoyingly high. Firefox has about 5-10 open tabs and needs restarting every day or so unless it crashes unexpectedly.</p>
<p>I typically need to close an application to start another if I don&#8217;t want the disk to start trashing around indefinitely.</p>
<p>Can anyone explain why on earth does a browser need 1.7GB of virtual memory to run 10 tabs and why does a code editor need 1.2GB to keep 10 files in memory? Is this anything less than utterly ridiculous?</p>
<p>Here is a slightly edited output from <em>top</em>:</p>
<pre>VIRT  RES  SHR  %CPU %MEM COMMAND
1719m 736m 33m  29   24.6 firefox
1247m 514m 14m  0    17.2 netbeans
483m  67m  9508 5    2.3  Xorg
301m  48m  3700 0    1.6  apache2
301m  45m  4500 0    1.5  apache2
316m  39m  4496 0    1.3  apache2</pre>
]]></content:encoded>
			<wfw:commentRss>http://winpdb.org/2009/06/bigfoot-linux/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
