<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.2" -->
<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/"
>

<channel>
	<title>Micetto Nero</title>
	<link>http://robiweb90.altervista.org/wordpress/wordpress</link>
	<description>Ancora un altro blog su Internet e la programmazione</description>
	<pubDate>Thu, 12 Jan 2006 13:47:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.2</generator>
	<language>en</language>

		<item>
		<title>Cambio indirizzo</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=12</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=12#comments</comments>
		<pubDate>Tue, 10 Jan 2006 13:13:05 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Dlin-Dlon, informazioni di servizio</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=12</guid>
		<description><![CDATA[	Il blog ora è qui.

]]></description>
			<content:encoded><![CDATA[	<p>Il blog ora è <a href="http://micettonero.altervista.org">qui</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=12</wfw:commentRSS>
	</item>
		<item>
		<title>Nuovo costruttore monomio</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=11</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=11#comments</comments>
		<pubDate>Mon, 31 Oct 2005 18:01:12 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Python</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=11</guid>
		<description><![CDATA[	Ho ottimizzato il costruttore del monomio. Ora non vengono automaticamente incluse le incognite di grado minore o uguale a 0 e il valore dell&#8217;attributo &#8220;degree&#8221; indica il grado complessivo del monomio.
	def __init__(self, coefficient, **kwargs):
&#160;&#160;&#160;&#160;self.letteralPart = dict()
&#160;&#160;&#160;&#160;for unknown in kwargs:
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;# Doesn't include in the dictionary the unknowns with
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;# degree < = 0
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if kwargs[unknown] > 0:
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;self.letteralPart[unknown] = [...]]]></description>
			<content:encoded><![CDATA[	<p>Ho ottimizzato il costruttore del monomio. Ora non vengono automaticamente incluse le incognite di grado minore o uguale a 0 e il valore dell&#8217;attributo &#8220;degree&#8221; indica il grado complessivo del monomio.</p>
	<p><code>def __init__(self, coefficient, **kwargs):<br />
&nbsp;&nbsp;&nbsp;&nbsp;self.letteralPart = dict()<br />
&nbsp;&nbsp;&nbsp;&nbsp;for unknown in kwargs:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# Doesn't include in the dictionary the unknowns with<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# degree < = 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if kwargs[unknown] > 0:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.letteralPart[unknown] = kwargs[unknown]</p>
	<p>&nbsp;&nbsp;&nbsp;&nbsp;self.coefficient = Rational(coefficient)</p>
	<p>&nbsp;&nbsp;&nbsp;&nbsp;# Calculates the degree of the monomial<br />
&nbsp;&nbsp;&nbsp;&nbsp;self.degree = 0<br />
&nbsp;&nbsp;&nbsp;&nbsp;for unknownDegree in self.letteralPart.values():<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.degree += unknownDegree</code>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=11</wfw:commentRSS>
	</item>
		<item>
		<title>Piccoli monomi crescono</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=10</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=10#comments</comments>
		<pubDate>Sun, 30 Oct 2005 19:32:13 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Python</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=10</guid>
		<description><![CDATA[	La classe sta venendo su bene: ho fatto qualche modifica al costruttore, ho aggiunto il supporto all&#8217;addizione e alla sottrazione di monomi e ho scritto anche qualche test. Prima o poi la metterò on-line&#8230;

]]></description>
			<content:encoded><![CDATA[	<p>La classe sta venendo su bene: ho fatto qualche modifica al costruttore, ho aggiunto il supporto all&#8217;addizione e alla sottrazione di monomi e ho scritto anche qualche test. Prima o poi la metterò on-line&#8230;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=10</wfw:commentRSS>
	</item>
		<item>
		<title>Monomi con Python</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=7</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=7#comments</comments>
		<pubDate>Sun, 30 Oct 2005 15:15:44 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Python</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=7</guid>
		<description><![CDATA[	Sto scrivendo una classe per gestire i monomi con Python. Questo è il costruttore:
	class Monomial:
&#160;&#160;&#160;&#160;"""A class which provides some methods to manage monomials"""
	&#160;&#160;&#160;&#160;def __init__(self, coefficient, *args, **kwargs):
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;"""Build a list which has for first element the
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;coefficient of the monomial and for second a dictionary
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;that has for keys the unknown quantities and for values
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;the grade of the [...]]]></description>
			<content:encoded><![CDATA[	<p>Sto scrivendo una classe per gestire i monomi con Python. Questo è il costruttore:</p>
	<p><code>class Monomial:<br />
&nbsp;&nbsp;&nbsp;&nbsp;"""A class which provides some methods to manage monomials"""</p>
	<p>&nbsp;&nbsp;&nbsp;&nbsp;def __init__(self, coefficient, *args, **kwargs):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"""Build a list which has for first element the<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;coefficient of the monomial and for second a dictionary<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;that has for keys the unknown quantities and for values<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the grade of the unknown quantities.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Example:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;>>> myMonomial = Monomial(3, x=1, y=3)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;>>> print myMonomial.structure()<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[3, {'x': 1, 'y': 2}]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;>>> print myMonomial<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3xy^2<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; """<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.letteralPart = {}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.coefficient = Rational(coefficient)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.monomial = [self.coefficient, self.letteralPart]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for unknown in kwargs.items():<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;## unknown[0] -> letter of the unknown quantity<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;## unknown[1] -> grade of the unknown quantity<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.letteralPart[unknown[0]] = unknown[1]</code>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=7</wfw:commentRSS>
	</item>
		<item>
		<title>Frazioni con Python</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=6</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=6#comments</comments>
		<pubDate>Sun, 30 Oct 2005 15:06:38 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Python</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=6</guid>
		<description><![CDATA[	Segnalo questa libreria che estende i tipi di variabili presenti nella distrubuzione standard di Python.

]]></description>
			<content:encoded><![CDATA[	<p>Segnalo <a href="http://www.egenix.com/files/python/mxNumber.html">questa libreria</a> che estende i tipi di variabili presenti nella distrubuzione standard di <a href="http://www.python.org">Python</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=6</wfw:commentRSS>
	</item>
		<item>
		<title>Flock!</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=4</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=4#comments</comments>
		<pubDate>Sun, 30 Oct 2005 14:07:13 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Browser</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=4</guid>
		<description><![CDATA[	Segnalo questo nuovo browser basato su Firefox. Ha un sacco di feature integrate, tipo l&#8217;editor di blog, l&#8217;interazione con servizi tipo del.icio.us e Flickr!.

]]></description>
			<content:encoded><![CDATA[	<p>Segnalo <a href="http://www.flock.com">questo nuovo browser</a> basato su <a href="http://www.mozilla.org/products/firefox">Firefox</a>. Ha un sacco di feature integrate, tipo l&#8217;editor di blog, l&#8217;interazione con servizi tipo <a href="http://del.icio.us">del.icio.us</a> e <a href="http://flickr.com">Flickr!</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=4</wfw:commentRSS>
	</item>
		<item>
		<title>Drag &#8216;n Drop coi CSS</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=3</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=3#comments</comments>
		<pubDate>Sat, 29 Oct 2005 13:51:57 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>CSS e XHTML</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=3</guid>
		<description><![CDATA[	Ecco un utilissimo articolo per creare delle liste ordinabili con il drag &#8216;n drop degli elementi usando solo CSS e DOM del W3C.

]]></description>
			<content:encoded><![CDATA[	<p>Ecco <a href="http://tool-man.org/examples/sorting.html">un utilissimo articolo per creare</a> delle liste ordinabili con il drag &#8216;n drop degli elementi usando solo <a href="http://www.w3.org/Style/CSS">CSS</a> e <a href="http://www.w3.org/DOM/">DOM del W3C</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=3</wfw:commentRSS>
	</item>
		<item>
		<title>WordPress VS Blogger</title>
		<link>http://robiweb90.altervista.org/wordpress/wordpress/?p=2</link>
		<comments>http://robiweb90.altervista.org/wordpress/wordpress/?p=2#comments</comments>
		<pubDate>Fri, 28 Oct 2005 17:13:29 +0000</pubDate>
		<dc:creator>micettonero</dc:creator>
		
	<category>Dlin-Dlon, informazioni di servizio</category>
		<guid>http://robiweb90.altervista.org/wordpress/wordpress/?p=2</guid>
		<description><![CDATA[	Sto migrando da Blogger a WordPress. Ne vale la pena?

]]></description>
			<content:encoded><![CDATA[	<p>Sto migrando da Blogger a WordPress. Ne vale la pena?
</p>
]]></content:encoded>
			<wfw:commentRSS>http://robiweb90.altervista.org/wordpress/wordpress/?feed=rss2&amp;p=2</wfw:commentRSS>
	</item>
	</channel>
</rss>
