<?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 Frozentux</title>
	<atom:link href="http://www.frozentux.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frozentux.net</link>
	<description>Yet another site</description>
	<lastBuildDate>Sat, 20 Feb 2010 12:08:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on libEveApi by Screenmovie released : Frozentux</title>
		<link>http://www.frozentux.net/projects/python/libeveapi/comment-page-1/#comment-259</link>
		<dc:creator>Screenmovie released : Frozentux</dc:creator>
		<pubDate>Sat, 20 Feb 2010 12:08:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.frozentux.net/?page_id=499#comment-259</guid>
		<description>[...] I&#8217;ve come quite far along with the pyEveApi, a rather large project I began a few weeks back. The project is perfect imho, it gives enough [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve come quite far along with the pyEveApi, a rather large project I began a few weeks back. The project is perfect imho, it gives enough [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python by Screenmovie released : Frozentux</title>
		<link>http://www.frozentux.net/projects/python/comment-page-1/#comment-258</link>
		<dc:creator>Screenmovie released : Frozentux</dc:creator>
		<pubDate>Fri, 19 Feb 2010 07:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.frozentux.net/?page_id=512#comment-258</guid>
		<description>[...] Python [...]</description>
		<content:encoded><![CDATA[<p>[...] Python [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Thoughts on Intellectual Property by shawn</title>
		<link>http://www.frozentux.net/2009/11/thoughts-on-intellectual-property/comment-page-1/#comment-254</link>
		<dc:creator>shawn</dc:creator>
		<pubDate>Sat, 13 Feb 2010 10:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.frozentux.net/?p=442#comment-254</guid>
		<description>I have a website idea and have been brainstorming and organizing the overrall layout.  To what degree must a website have patents? I always thought it was open game since the functionality of most websites are pretty universal outside the name of the URL.  If i plan on running a sql database, does the way the information is accessed need to be patented? would that be considered the source code? Do the icons and symbols we employ subject to patent laws? I think that the more similar websites there are, the better it is for business.  Seems to get people talking and comparing similar websites, but the same service provided.  Do I have the internet all wrong?</description>
		<content:encoded><![CDATA[<p>I have a website idea and have been brainstorming and organizing the overrall layout.  To what degree must a website have patents? I always thought it was open game since the functionality of most websites are pretty universal outside the name of the URL.  If i plan on running a sql database, does the way the information is accessed need to be patented? would that be considered the source code? Do the icons and symbols we employ subject to patent laws? I think that the more similar websites there are, the better it is for business.  Seems to get people talking and comparing similar websites, but the same service provided.  Do I have the internet all wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Python by Oskar Andreasson</title>
		<link>http://www.frozentux.net/2010/02/working-with-python/comment-page-1/#comment-245</link>
		<dc:creator>Oskar Andreasson</dc:creator>
		<pubDate>Fri, 05 Feb 2010 08:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.frozentux.net/?p=508#comment-245</guid>
		<description>Mmm, maybe I am a tad skeptical, but it&#039;s only opinion. My main problem with unittesting for languages like this, is that you need to test the entire binary. The dynamic typing means you will be in a lot of trouble if you accidentally return a class of one type but expect something else at some other point. Ie, you need to spend a lot of time either unittesting, or function testing on a very high level (which would come automatically with compiled languages). 

That said, the eve client is written in python. I haven&#039;t even looked at the unit testing framework and how to use it in python yet =)</description>
		<content:encoded><![CDATA[<p>Mmm, maybe I am a tad skeptical, but it&#8217;s only opinion. My main problem with unittesting for languages like this, is that you need to test the entire binary. The dynamic typing means you will be in a lot of trouble if you accidentally return a class of one type but expect something else at some other point. Ie, you need to spend a lot of time either unittesting, or function testing on a very high level (which would come automatically with compiled languages). </p>
<p>That said, the eve client is written in python. I haven&#8217;t even looked at the unit testing framework and how to use it in python yet =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with Python by Mikael</title>
		<link>http://www.frozentux.net/2010/02/working-with-python/comment-page-1/#comment-244</link>
		<dc:creator>Mikael</dc:creator>
		<pubDate>Thu, 04 Feb 2010 01:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.frozentux.net/?p=508#comment-244</guid>
		<description>Interesting thoughts, Oskar.

Sad then that you don&#039;t believe in large projects for Python, since I have a great idea in my mind (which I have to keep for myself for now). I was hoping you would participate -- and the project I have in mind will become... very large.

Well, we&#039;ll see. I am hacking myself into Trac, or around, playing with plugins. Quite fun I would say, and I agree with your observations. Python seems very &quot;hackable&quot;, but it also seem very competent. But you are definitely right when your state that the loose (dynamic) typing can cause problems.

Unit testing will be a major concern for all Python projects. Perhaps that&#039;s why they&#039;ve included a whole unit testing module?

Best regards!</description>
		<content:encoded><![CDATA[<p>Interesting thoughts, Oskar.</p>
<p>Sad then that you don&#8217;t believe in large projects for Python, since I have a great idea in my mind (which I have to keep for myself for now). I was hoping you would participate &#8212; and the project I have in mind will become&#8230; very large.</p>
<p>Well, we&#8217;ll see. I am hacking myself into Trac, or around, playing with plugins. Quite fun I would say, and I agree with your observations. Python seems very &#8220;hackable&#8221;, but it also seem very competent. But you are definitely right when your state that the loose (dynamic) typing can cause problems.</p>
<p>Unit testing will be a major concern for all Python projects. Perhaps that&#8217;s why they&#8217;ve included a whole unit testing module?</p>
<p>Best regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LG KC910 woes by John Baratta</title>
		<link>http://www.frozentux.net/2009/07/lg-kc910-woes/comment-page-1/#comment-241</link>
		<dc:creator>John Baratta</dc:creator>
		<pubDate>Tue, 02 Feb 2010 04:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://fs1/fs1/?p=203#comment-241</guid>
		<description>I also have a KC910 and agree with the comments above. I also discovered that recurring appointments are totally screwed up on the phone making the whole exercise of syncing totally pointless. Today I thought I&#039;d give LG tech support a call to see if there was a solution. Don&#039;t bother! They denied there was any problem with the phone and there software and basically implied that any problems were my fault.
I will never buy an LG phone again!</description>
		<content:encoded><![CDATA[<p>I also have a KC910 and agree with the comments above. I also discovered that recurring appointments are totally screwed up on the phone making the whole exercise of syncing totally pointless. Today I thought I&#8217;d give LG tech support a call to see if there was a solution. Don&#8217;t bother! They denied there was any problem with the phone and there software and basically implied that any problems were my fault.<br />
I will never buy an LG phone again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally a new Ipsysctl tutorial (version 1.0.3) by Rafael</title>
		<link>http://www.frozentux.net/2003/04/finally-a-new-ipsysctl-tutorial-version-103/comment-page-1/#comment-235</link>
		<dc:creator>Rafael</dc:creator>
		<pubDate>Thu, 21 Jan 2010 23:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://fs1/fs1/?p=113#comment-235</guid>
		<description>Hello. Im from Mexico. I don&#039;t speak English, so.</description>
		<content:encoded><![CDATA[<p>Hello. Im from Mexico. I don&#8217;t speak English, so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LG KC910 woes by Crispy</title>
		<link>http://www.frozentux.net/2009/07/lg-kc910-woes/comment-page-1/#comment-224</link>
		<dc:creator>Crispy</dc:creator>
		<pubDate>Tue, 22 Dec 2009 04:12:17 +0000</pubDate>
		<guid isPermaLink="false">http://fs1/fs1/?p=203#comment-224</guid>
		<description>I&#039;ve got a KC910, installed mini opera. Installed fine, works great.  I agree, the standard browser is terrible, but mini opera goes great.  make sure you have latest firmware and try again.  Also, if anyone has found a way to sync wit google calendar(s), would be great to know.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got a KC910, installed mini opera. Installed fine, works great.  I agree, the standard browser is terrible, but mini opera goes great.  make sure you have latest firmware and try again.  Also, if anyone has found a way to sync wit google calendar(s), would be great to know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LG KC910 woes by Igogi</title>
		<link>http://www.frozentux.net/2009/07/lg-kc910-woes/comment-page-1/#comment-212</link>
		<dc:creator>Igogi</dc:creator>
		<pubDate>Wed, 02 Dec 2009 10:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://fs1/fs1/?p=203#comment-212</guid>
		<description>Totally agree with you. I started to search for a deecent google calendar sync to the KC910 and stopped at the point where I discovered, that none of the other OS (like Android / Windows) can be instaloled on this phone. This phone has totaly changed my future shoping preferences...</description>
		<content:encoded><![CDATA[<p>Totally agree with you. I started to search for a deecent google calendar sync to the KC910 and stopped at the point where I discovered, that none of the other OS (like Android / Windows) can be instaloled on this phone. This phone has totaly changed my future shoping preferences&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Inproductive productivity by Oskar Andreasson</title>
		<link>http://www.frozentux.net/2009/04/inproductive-productivity/comment-page-1/#comment-156</link>
		<dc:creator>Oskar Andreasson</dc:creator>
		<pubDate>Thu, 19 Nov 2009 07:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://fs1/fs1/?p=201#comment-156</guid>
		<description>Thank you! I started blogging on blogger just for my self... kind of like a public/private diary to see how it is and what can be done with it, but I finally decided to go with wordpress on frozentux.net, instead of doing my own new framework. When I did so, I decided to simply import the old blogposts I had, and here you are ;).

Python seems like an awesome language tbh. I started a little fiddling with it half a year ago or so. In one evening (3-4 hours perhaps) I went from writing my first &quot;hello world&quot; to writing a complete bluetooth scanner. Admittedly some cut&#039;n&#039;paste, but very much possible to do on your own very quickly :).</description>
		<content:encoded><![CDATA[<p>Thank you! I started blogging on blogger just for my self&#8230; kind of like a public/private diary to see how it is and what can be done with it, but I finally decided to go with wordpress on frozentux.net, instead of doing my own new framework. When I did so, I decided to simply import the old blogposts I had, and here you are <img src='http://www.frozentux.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Python seems like an awesome language tbh. I started a little fiddling with it half a year ago or so. In one evening (3-4 hours perhaps) I went from writing my first &#8220;hello world&#8221; to writing a complete bluetooth scanner. Admittedly some cut&#8217;n'paste, but very much possible to do on your own very quickly <img src='http://www.frozentux.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
