<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7027184789435315069</atom:id><lastBuildDate>Fri, 13 Sep 2024 18:37:04 +0000</lastBuildDate><category>.Net</category><category>c#</category><category>LINQ</category><category>java</category><category>open source</category><category>css</category><category>gof</category><category>patterns</category><category>python</category><category>snippet</category><category>sun</category><category>web 2.0</category><title>Reflection.Emit;</title><description></description><link>http://reflectionemit.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-6915678782048013277</guid><pubDate>Wed, 20 Dec 2006 09:54:00 +0000</pubDate><atom:updated>2007-01-20T07:40:50.849-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">web 2.0</category><title>Reflection.Emit; mood!</title><description>These last days i&#39;ve been working in a web 2.0 service for blogs, what this service does, is to read your blog and depending of what you are writing on it guess your mood and give you a flower matching with that mood, The website (really nice design , but currently only in dutch :( [multilanguage soon :)]) is &lt;a href=&quot;http://www.readmymood.com&quot;&gt;www.readmymood.com&lt;/a&gt;  and this is the flower representing the mood of our blog!&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;a href= &quot;http://www.readmymood.com/?id=148&quot;&gt;&lt;br /&gt;&lt;img src=&quot;http://flowers.readmymood.com/img/png/148.png&quot; alt=&quot;My Flower&quot; border=&quot;0&quot;/&gt;&lt;br /&gt;&lt;/a&gt;&lt;/center&gt;&lt;/br&gt;</description><link>http://reflectionemit.blogspot.com/2006/12/reflectionemit-mood.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-3099592172884952560</guid><pubDate>Fri, 15 Dec 2006 09:41:00 +0000</pubDate><atom:updated>2006-12-18T02:07:27.862-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">gof</category><category domain="http://www.blogger.com/atom/ns#">patterns</category><title>.Net Patterns</title><description>When I was studying Software Engineering I look at the website &lt;a href=&quot;http://www.dofactory.com/Patterns/Patterns.aspx&quot;&gt;data &amp;amp; object factory&lt;/a&gt;. There you can find the Gang of Four (&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_0&quot; onclick=&quot;BLOG_clickHandler(this)&quot;&gt;GoF&lt;/span&gt;) typical patterns translated to C#. You know, Factories, &lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_1&quot; onclick=&quot;BLOG_clickHandler(this)&quot;&gt;Sigletones&lt;/span&gt;, Facades... I found that this patterns have a heavy Java look and feel, and pretty boring, being a big hole for a formal definition of the patterns being used in the .Net world taking profit of the .Net &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_2&quot; onclick=&quot;BLOG_clickHandler(this)&quot;&gt;languages&lt;/span&gt; &lt;span class=&quot;blsp-spelling-corrected&quot; id=&quot;SPELLING_ERROR_3&quot; onclick=&quot;BLOG_clickHandler(this)&quot;&gt;improvements&lt;/span&gt;, as generics, delegates...&lt;br /&gt;&lt;br /&gt;One example of pattern that fits in this hole is the &lt;a href=&quot;http://msdn.microsoft.com/msdnmag/issues/06/09/NETMatters/default.aspx&quot;&gt;Scope pattern&lt;/a&gt;.</description><link>http://reflectionemit.blogspot.com/2006/12/net-patterns.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-5193321897808837157</guid><pubDate>Wed, 06 Dec 2006 11:16:00 +0000</pubDate><atom:updated>2006-12-06T06:22:23.097-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">css</category><title>Colors and Hex: Back to the very basics</title><description>Today I&#39;ve been doing a WinForms aplication at work and I want to reuse a color scheme for a web site. Since WinForms don&#39;t allow you to use css :) I&#39;ve to convert the HTML colors (#006600) to System.Drawing.Colors.&lt;br /&gt;&lt;br /&gt;You can do that with one of the thousands Color Calculators but I was expecting the Color class having a method like FromHTML. It was&#39;t there but I found something like this.&lt;br /&gt;&lt;br /&gt;static Color FromArgb(int argb);&lt;br /&gt;&lt;br /&gt;So, just writing &lt;span style=&quot;font-family:courier new;&quot;&gt;FromArgb(0x006600)&lt;/span&gt; it should work... No way. The problem is that in this situation the alpha channel has the value 0, so the color is transparent.&lt;br /&gt;&lt;br /&gt;All right, let&#39;s try &lt;span style=&quot;font-family:courier new;&quot;&gt;FromArgb(0xFF006600).&lt;/span&gt; Doesn&#39;t compile! it&#39;s a uint instead of a int because is bigger than int.MaxInt, the compiler it&#39;s right, but the one who made this function should make a uint overload. It&#39;s the problem of sharing framework with VB people.&lt;br /&gt;&lt;br /&gt;So... What can I do? Because int uses &lt;a href=&quot;http://en.wikipedia.org/wiki/Two&quot;&gt;Two&#39;s_complement&lt;/a&gt; to represent negative values, we can do that: &lt;span style=&quot;font-family:courier new;&quot;&gt;FromArgb(-0x01000000  0x006600)&lt;/span&gt; because &lt;span style=&quot;font-family:courier new;&quot;&gt;-0x01000000&lt;/span&gt; will be represented just as &lt;span style=&quot;font-family:courier new;&quot;&gt;0xFF000000&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Using the first day computer science lecture to pick a color!.</description><link>http://reflectionemit.blogspot.com/2006/12/colors-and-hex-back-to-very-basics.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-72970812596061573</guid><pubDate>Tue, 05 Dec 2006 12:52:00 +0000</pubDate><atom:updated>2006-12-05T07:02:51.761-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">python</category><category domain="http://www.blogger.com/atom/ns#">snippet</category><title>Code Snippet (Python): Localize your users by IP</title><description>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img style=&quot;height: 231px; width: 350px;&quot; src=&quot;http://docs.google.com/File?id=dwjxwmg_52qkszm&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt; On very useful trick if you are developing an international site (and you have local sites) it&#39;s to redirect your users to their local site depending on the IP address they are coming from. This is an easy (and optimized) way to do it just with a few lines in &lt;a href=&quot;http://www.python.org/&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Python&lt;/span&gt; &lt;/a&gt;and &lt;a href=&quot;http://www.mysql.com/&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;mySQL&lt;/span&gt; &lt;/a&gt;database.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;1.- Getting the info:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;First of all, we will need the data with all IP-Country information, there are &lt;a href=&quot;http://www.google.com/search?hs=VbX&amp;sa=X&amp;amp;oi=spell&amp;resnum=0&amp;amp;ct=result&amp;cd=1&amp;amp;q=IP+country&amp;spell=1&quot; title=&quot;a lot&quot;&gt;a lot&lt;/a&gt; of pay sites offering this feature but i have used &lt;a href=&quot;http://www.maxmind.com/app/geoip_country&quot; title=&quot;this&quot;&gt;this&lt;/a&gt; free (reduced version) of one of them.&lt;br /&gt;The data provided by this site is a CSV (comma separated value) file, which we can import into a  fully optimized &lt;span style=&quot;font-weight: bold;&quot;&gt;MySQL&lt;/span&gt; database ;) (the import method  is easily explained in &lt;a href=&quot;http://www.delau.net/php/geoip.html&quot; title=&quot;this site&quot;&gt;this site&lt;/a&gt; )&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;2.- Working with the Data:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Actually a good way to work/store the IP information is to use the long notation, this notation is represented as:&lt;br /&gt;&lt;br /&gt;IP in Long format = 16777216*a + 65536*b + 256*c + d&lt;br /&gt;&lt;pre&gt;where:&lt;br /&gt;&lt;br /&gt;IP Address = a.b.c.d&lt;/pre&gt; Normally in &lt;a href=&quot;http://www.php.net/&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;PHP&lt;/span&gt; &lt;/a&gt;we have ip2long() / long2ip() funtions that help us with the conversion, the &lt;a href=&quot;http://www.python.org/&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Python&lt;/span&gt; &lt;/a&gt;implementation of this functions , (and here is when the snippet comes):&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;def ip2long(ip):&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;splittedaddr = ip.split(&#39;.&#39;)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;ipnum = 16777216*int(splittedaddr[0]) + 65536*int(splittedaddr[1]) +   256*int(splittedaddr[2]) + int(splittedaddr[3])&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;return ipnum&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;def long2ip(ipnum):&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;w = int ( ipnum / 16777216 ) % 256&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;x = int ( ipnum / 65536    ) % 256&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;y = int ( ipnum / 256      ) % 256&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;z = int ( ipnum            ) % 256&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;ip = str(w) + &quot;.&quot; + str(x) + &quot;.&quot;+ str(y) + &quot;.&quot; + str(z)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:courier new;&quot;&gt;return ip&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;By this way and with the help of your IP-Conutry Database we will be able to give our users a &lt;span style=&quot;&quot;&gt;personalized &lt;/span&gt;assistance &lt;span style=&quot;&quot;&gt;;)&lt;/span&gt;</description><link>http://reflectionemit.blogspot.com/2006/12/code-snippet-python-localize-your-users.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-3028327941878000211</guid><pubDate>Fri, 01 Dec 2006 09:20:00 +0000</pubDate><atom:updated>2006-12-05T06:41:06.974-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">LINQ</category><title>Parallel linqdigestion</title><description>An speculation for the future plans for LINQ, once parallel computing became mainstream, in &lt;a href=&quot;http://donxml.com/allthingstechie/archive/2006/11/28/Parallel-Language-Integrated-Query-_2800_PLINQ_2900_.aspx&quot;&gt;Don Desmak blog.&lt;/a&gt;</description><link>http://reflectionemit.blogspot.com/2006/12/parallel-linqdigestion.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-2812431178500274027</guid><pubDate>Wed, 22 Nov 2006 17:53:00 +0000</pubDate><atom:updated>2006-12-05T06:40:23.004-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">LINQ</category><title>Linqdigestion</title><description>Today I&#39;ve downloaded the May CTP of &lt;a href=&quot;http://msdn.microsoft.com/data/ref/linq/&quot;&gt;Linq &lt;/a&gt;. I was expecting something more new but... Anyway, there is a lot of cool examples on it. One of them, LogicProgramming, builds a small Logic Programming lenguage inside C#!!!. You can do something like:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;;font-family:courier new;font-size:85%;&quot;  &gt;Rules rules = new Rules();&lt;br /&gt;&lt;br /&gt;Func1 isToy = Func.Arity1(&quot;isToy&quot;);&lt;br /&gt;Func2 playsWith = Func.Arity2(&quot;playsWith&quot;);&lt;br /&gt;Func2 likes = Func.Arity2(&quot;likes&quot;);&lt;br /&gt;&lt;br /&gt;// A doll is a toy.&lt;br /&gt;rules += isToy(&quot;doll&quot;);&lt;br /&gt;// A train is a toy.&lt;br /&gt;rules += isToy(&quot;train&quot;);&lt;br /&gt;// Ann plays with a train.&lt;br /&gt;rules += playsWith(&quot;ann&quot;,&quot;train&quot;);&lt;br /&gt;// John likes a toy if Ann likes that toy.&lt;br /&gt;rules += Y =&gt; likes(&quot;john&quot;,Y)==likes(&quot;ann&quot;,Y);&lt;br /&gt;// Ann likes toys that she plays with.&lt;br /&gt;rules += X =&gt; likes(&quot;ann&quot;,X)==(isToy(X) &amp; playsWith(&quot;ann&quot;,X));&lt;br /&gt;&lt;br /&gt;// Ask a question: What does John like?&lt;br /&gt;foreach(string s in rules.Solve&lt;string&gt;(N =&gt; likes(&quot;john&quot;, N))) {&lt;br /&gt; Console.WriteLine(s);&lt;br /&gt;}&lt;/string&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;;font-family:Courier New;font-size:85%;&quot;  &gt;&lt;/span&gt;&lt;br /&gt;Cool right? The code is full of lambda expressions, extensional methods... swahili.</description><link>http://reflectionemit.blogspot.com/2006/11/linqdigestion.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-7947833896273337812</guid><pubDate>Wed, 15 Nov 2006 10:04:00 +0000</pubDate><atom:updated>2006-11-15T02:39:52.166-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">.Net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">java</category><category domain="http://www.blogger.com/atom/ns#">open source</category><title>Open Java and Innovation</title><description>Congratulations for the Java developers community, I&#39;m sure this is the move everybody was expecting Sun to make. Maybe is a good idea that Microsoft makes something like that, &lt;a href=&quot;http://msmvps.com/blogs/jon.skeet/archive/2006/09/11/Opening-up-the-.NET-framework-source-code.aspx&quot;&gt;opening the source of .Net Framework.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But, maybe not. I&#39;m not very sure that this medicine is what Java needs to stay in the climb. In the last years Java hasn&#39;t been very innovative by itself. I&#39;ve heard about a lot of improvements in the Java platform, in the libraries, etc But the language is rarely changed and, as far as I know, there&#39;s almost no changes in the JVM as well. I thing this is the reason .Net and Ruby on Rails are improving their market share.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Standardization and Innovation&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;My point of view is that the open your software and following standards is a double edge sword sometimes. In stuff like HTML and CSS maybe is a good idea to have a well-understood platform with fixed rules, because that allows interoperability and that means competency (like Firefox) and that means innovation (tabs [ok, tabs comes from Opera… who cares!]). But sometimes a big open source community and a strong focus on the standards has just the opposite effect.&lt;br /&gt;&lt;br /&gt;Imagine that, Microsoft Office has the 80% of the market share, Open Office have the 10% and Apple WhateverOffice another 10%, and all together belongs to the United Happy Office Association (UHOA). Then Microsoft ( who have thousand of programmers behind every single menu in office [and now Office don&#39;t have menus!]) feels that Word really needs a new improvement, let me say, resurrect Clipper, the office helper, and make it mucho smarter. But to do so he needs to introduce some metadata in the docs, and to do so he have to go to UHOA and ask Apple and the people behind Star Office (Sun?) to do so. They two don&#39;t ; have so many developers, so they prefer to postpone this functionality for UHOA Doc Boring Specification 2010 and then there´s no resurrected Clipper (and all the whales die at the same time)… Can you imagine a world like this?&lt;br /&gt;&lt;br /&gt;&lt;img style=&quot;FLOAT: right; MARGIN: 0px 0px 10px 10px;&quot; src=&quot;http://jcp.org/images/common/logo_jcp.gif&quot; border=&quot;0&quot; /&gt;Ok, that´s not the case of Java, but is something like that. I´m not very in in the Java Community Process mechanisms, but they are not working very well because Java is evolving very slowly. Maybe they have to handle with legacy code and thousands of OS and Phones and… ; washing machines??, or maybe they are just not brave enough. They are not the owner of his destiny, so they are stuck.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What´s better for Java, thousand of different compilers and JVM implementations, or just one but free to move?.&lt;br /&gt;&lt;br /&gt;This is the approach that Microsoft is following with .Net, and they have done with C# and .Net more work than all the improvements Sun has added to Java since they launch it (Jitting, Properties, Delegates and Events, Value Types, Attributes, Operator Overloading, Unsafe Code….). But then with legacy code in the back, they have launch .Net 2.0 with a lot of new things like Iterators and Anonymous Methods and, for sure, real Generics that need changes in the ‘Virtual Machine’. And they are not stuck there. .Net 3.0 really shines! with Lambda Expressions, Objects and Collection Initializers, Extension Methods, everything with the target to make Linq possible.&lt;br /&gt;&lt;br /&gt;To look deeper in the details, I´ve made a &lt;a href=&quot;http://www.alfdemometrica.com/reflectionemit/LINQforJava.ppt&quot;&gt;fun PPT&lt;/a&gt; about how an implementation of Linq can be done in the ‘Sun way’.&lt;br /&gt;&lt;br /&gt;Anyway, Sun have do almost nothing in all this time, so maybe Open the Java code and let it go is not a bad thing.</description><link>http://reflectionemit.blogspot.com/2006/11/open-java-and-innovation.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-96723922275538301</guid><pubDate>Mon, 13 Nov 2006 12:58:00 +0000</pubDate><atom:updated>2006-11-13T08:58:49.992-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">java</category><category domain="http://www.blogger.com/atom/ns#">open source</category><category domain="http://www.blogger.com/atom/ns#">sun</category><title>Something great is happening.....</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://photos1.blogger.com/blogger2/4989/857810643241615/1600/zot_1113_curtain.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://photos1.blogger.com/blogger2/4989/857810643241615/400/zot_1113_curtain.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;This evening (for my time zone) something great is going to happen ....&lt;br /&gt;&lt;br /&gt;&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.sun.com/2006-1113/feature/index.jsp&quot;&gt;&quot;What is it?&quot;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;... Ok i&#39;ll give you some clues.&lt;br /&gt;&lt;br /&gt;&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://developers.slashdot.org/article.pl?sid=06/11/13/0724252&amp;from=rss&quot;&gt;One&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;a href=&quot;http://www.infoq.com/news/2006/11/open-source-java&quot;&gt;two&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;I will write a new post explaining the consecuences and advantages once the anouncement will be official.&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;</description><link>http://reflectionemit.blogspot.com/2006/11/something-great-is-happening.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7027184789435315069.post-4701754576991430217</guid><pubDate>Fri, 10 Nov 2006 17:50:00 +0000</pubDate><atom:updated>2006-11-10T10:00:37.111-08:00</atom:updated><title>New blog launch!</title><description>Thank&#39;s Panch! This is my first post in Reflection.Emit()! It&#39;s going to be veeery sort couse I&#39;m at work.&lt;br /&gt;&lt;br /&gt;My name&#39;s Olmo, today I&#39;m 23, and I&#39;m a C# enthusiastic. My friend Francisco, on the other side, is more in Java, Python, Ruby and other heretic stuff. &lt;br /&gt;&lt;br /&gt;So I think this blog will be about two good friedns sometimes, and a battleground &#39;othertimes&#39;.&lt;br /&gt;&lt;br /&gt;It&#39;s my first post in english, maybe this blog will be about &#39;misspellingtimes&#39; as well :)&lt;br /&gt;&lt;br /&gt;But that will be tomorrow, today is party time!</description><link>http://reflectionemit.blogspot.com/2006/11/new-blog-launch.html</link><author>noreply@blogger.com (olmocc)</author><thr:total>2</thr:total></item></channel></rss>