<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Save the ions!</title>
	<atom:link href="http://savetheions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://savetheions.com</link>
	<description></description>
	<lastBuildDate>Fri, 25 Mar 2011 11:01:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Say hello to Python Korea!</title>
		<link>http://savetheions.com/2011/03/25/say-hello-to-python-korea/</link>
		<comments>http://savetheions.com/2011/03/25/say-hello-to-python-korea/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 11:01:37 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=236</guid>
		<description><![CDATA[Right after PyCon (victory!), I went to Seoul. Before leaving, I figured &#8220;Hey, they may have a Seoul-Python or something!&#8221;, so I looked around, and found a forum: python.kr. I posted a message there introducing myself and asking if anyone wanted to meet to discuss our favorite language. I got a few responses, and I [...]]]></description>
			<content:encoded><![CDATA[<p>Right after PyCon (victory!), I went to Seoul. Before leaving, I figured &#8220;Hey, they may have a Seoul-Python or something!&#8221;, so I looked around, and found a forum: <a href="http://python.kr/">python.kr</a>.</p>
<p>I posted a message there introducing myself and asking if anyone wanted to meet to discuss our favorite language. I got a few responses, and I met 7 of them a few days ago.</p>
<p class="center"><a href="http://picplz.com/user/cyrilrbt/pic/rk3n3/"><img src="http://s2.i1.picplzthumbs.com/upload/img/53/a3/03/53a3031c2de706fb76528821cda964155577b1a4_wmeg.jpg" width="400px" height="300px" /></a></p>
<p>What surprised me at first was how similar to our community they all were: they enjoy beer, and more than half of them were in startups, one similar to groupon, and the other one is kind of a mix between foursquare and kik.</p>
<p>One of the first things I asked was if they had regular meetings, much like we do, and I was surprised that they didn&#8217;t. They explained that in 2006, everyone wanted to do Python, so they held a conference in Seoul that ended up attracting over 1500 programmers! They continued to explain that Python was now the mainstream language, it is even taught in their universities.</p>
<p>They concluded by saying that a community like ours was no longer necessary, but a FAQ forum like they have now was more than enough.</p>
<p>I think we have a lot to do to reach that point, but it certainly gave me hope!</p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2011/03/25/say-hello-to-python-korea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CalDAV slides from Montréal-Python</title>
		<link>http://savetheions.com/2010/12/16/caldav-slides-from-montreal-python/</link>
		<comments>http://savetheions.com/2010/12/16/caldav-slides-from-montreal-python/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 02:36:50 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=233</guid>
		<description><![CDATA[Someone just said maybe he&#8217;d like to see my slides from my flash presentation about CalDAV at Montréal-Python. Here it is.]]></description>
			<content:encoded><![CDATA[<p>Someone just said maybe he&#8217;d like to see my slides from my flash presentation about <a href="http://bitbucket.org/cyrilrbt/caldav">CalDAV</a> at <a href="http://montrealpython.org/">Montréal-Python</a>.</p>
<p><a href="http://random.cyrilrobert.org/caldav.pdf">Here it is.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/12/16/caldav-slides-from-montreal-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newton&#8217;s method for square root</title>
		<link>http://savetheions.com/2010/12/06/newtons-method-for-square-root/</link>
		<comments>http://savetheions.com/2010/12/06/newtons-method-for-square-root/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 02:08:02 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=219</guid>
		<description><![CDATA[A while back, my friend Yannick showed me that the source code for Return to Castle Wolfenstein had been made public. The part that interested him the most was the way they (he knew the name of the developer, I forgot it, sorry) calculated square roots. I&#8217;ll let you have a look at it first: [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, my friend <a href="http://ygingras.net">Yannick</a> showed me that the source code for Return to Castle Wolfenstein had been made public.</p>
<p>The part that interested him the most was the way they (he knew the name of the developer, I forgot it, sorry) calculated square roots.</p>
<p>I&#8217;ll let you have a look at it first:</p>
<pre class="prettyprint">
/*
** float q_rsqrt( float number )
*/
float Q_rsqrt( float number ) {
	long i;
	float x2, y;
	const float threehalfs = 1.5F;

	x2 = number * 0.5F;
	y  = number;
	i  = *( long * ) &#038;y;                        // evil floating point bit level hacking
	i  = 0x5f3759df - ( i >> 1 );               // what the fuck?
	y  = *( float * ) &#038;i;
	y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
//	y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

	return y;
}
</pre>
<p>The first thing you may notice is that this looks like it doesn&#8217;t make any sense&#8230;</p>
<p>The second thing you might notice is that this is in <code>O(1)</code> order, which is very peculiar.</p>
<p>The third thing you probably notice is that comment saying <i>what the fuck?</i></p>
<p>It took my quite some time to understand what was being done in that method, but it became pretty clear that it is loosely based on <a href="http://en.wikipedia.org/wiki/Newton's_method#Square_root_of_a_number">Newton&#8217;s method</a>, which works by providing an estimate on the resulting value</p>
<p>As an example, consider the following line of python:</p>
<pre class="prettyprint">
a = a - ((a ** 2 - o)/(2 * a))
</pre>
<p>This is the basic implementation of Newton&#8217;s method (considering <code>a</code> the estimate and <code>o</code> the number from which we want the square root), and usually, with about 5 iterations, you get the correct value at 8 or 10 digits:</p>
<pre class="prettyprint">
>>> o = 612.0
>>> a = 10.0
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
35.6
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
26.395505618
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
24.7906354925
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
24.7386882941
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
24.7386337538
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
24.7386337537
>>> a = a - ((a ** 2 - o)/(2 * a)) ; print a
24.7386337537
</pre>
<p>With the example above, you can see that in 4 iterations, we have a correct value up until the 7th digit, and by the fifth iteration we are correct up to the 10th digit!</p>
<p>Now the really puzzling part about the implementation in Return to Castle Wolfenstein is that the guess is so accurate (for the values commonly passed), that only one iteration is enough.</p>
<p>Pretty cool, isn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/12/06/newtons-method-for-square-root/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CalDAV at Montréal Python!</title>
		<link>http://savetheions.com/2010/10/17/caldav-at-montreal-python/</link>
		<comments>http://savetheions.com/2010/10/17/caldav-at-montreal-python/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 01:54:28 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=212</guid>
		<description><![CDATA[I&#8217;ll be doing a short presentation on my python CalDAV library tomorrow at Montréal Python! I&#8217;m really looking forward to have some questions about it, maybe find a few contributors. I&#8217;ve already had some, as you can see on bitbucket, but for this library to be a success, we&#8217;ll have to do more than bug [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be doing a short presentation on my <a href="http://pypi.python.org/pypi/caldav/">python CalDAV library</a> tomorrow at Montréal Python!</p>
<p>I&#8217;m really looking forward to have some questions about it, maybe find a few contributors. I&#8217;ve already had some, as you can see on <a href="http://bitbucket.org/cyrilrbt/caldav">bitbucket</a>, but for this library to be a success, we&#8217;ll have to do more than bug fixes, especially since everyone interprets the <a href="http://www.ietf.org/rfc/rfc4791.txt">RFC</a> differently!</p>
<p>Just come over and have fun listening to the talks, and enjoy a beer afterwards!</p>
<p>For more information, please see: <a href="http://montrealpython.org/2010/10/mp-16/">http://montrealpython.org/2010/10/mp-16/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/10/17/caldav-at-montreal-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presentation at Montreal.rb</title>
		<link>http://savetheions.com/2010/09/25/presentation-at-montreal-rb/</link>
		<comments>http://savetheions.com/2010/09/25/presentation-at-montreal-rb/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 03:57:31 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=206</guid>
		<description><![CDATA[Hey guys, I&#8217;ve been extremely busy this week (I&#8217;m working on a very large e-commerce system at the moment, and I&#8217;ve just been elected VP of Montréal Python), so I couldn&#8217;t find any time to post this sooner, I&#8217;m sorry! On tuesday, I was invited to give a speech at montreal.rb, to do a rehash [...]]]></description>
			<content:encoded><![CDATA[<p>Hey guys,</p>
<p>I&#8217;ve been extremely busy this week (I&#8217;m working on a very large e-commerce system at the moment, and I&#8217;ve just been elected VP of <a href="http://montrealpython.org/">Montréal Python</a>), so I couldn&#8217;t find any time to post this sooner, I&#8217;m sorry!</p>
<p>On tuesday, I was invited to give a speech at <a href="http://montrealonrails.com/">montreal.rb</a>, to do a rehash of the famous <a href="http://rubyonrails.org/screencasts">Ruby on rails&#8217; 15 minute blog</a>, but using Python and Django. I have to admit, my livecoding demo took a bit more than 15 minutes, but I think the ruby crowd enjoyed it, I got many interesting questions afterwards!</p>
<p>Thanks to everyone who&#8217;s been there, I hope Montreal&#8217;s user groups will continue sharing!</p>
<p>I&#8217;ve uploaded the source code for the blog I built live, <a href="http://random.cyrilrobert.org/mtlrb.tar.bz2">download it here</a>.<br />
To use it:<br />
<code><br />
$ tar jvxf mtlrb.tar.bz2<br />
$ cd mtlrb<br />
$ python bootstrap.py<br />
$ bin/buildout -c devel.cfg<br />
$ bin/django runserver<br />
$ firefox http://127.0.0.1:8000/<br />
$ firefox http://127.0.0.1:8000/admin/<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/09/25/presentation-at-montreal-rb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing (python-)caldav</title>
		<link>http://savetheions.com/2010/06/04/introducing-python-caldav/</link>
		<comments>http://savetheions.com/2010/06/04/introducing-python-caldav/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 19:35:22 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=187</guid>
		<description><![CDATA[During the last few days, I&#8217;ve been busy writing a CalDAV client library for work. This is a requirement because we are going to integrate calendars from various sources in one of our websites. CalDAV is clearly the way to go, but as far as libraries go, the only one I&#8217;ve been able to find [...]]]></description>
			<content:encoded><![CDATA[<p>During the last few days, I&#8217;ve been busy writing a CalDAV client library for work. This is a requirement because we are going to integrate calendars from various sources in one of our websites.</p>
<p>CalDAV is clearly the way to go, but as far as libraries go, the only one I&#8217;ve been able to find was <a href="http://trac.calendarserver.org/wiki/CalDAVClientLibrary" target="_blank">CalDAVClientLibrary</a>, which, quite frankly, scares me. I&#8217;m already familiar with CalendarServer, and I can&#8217;t qualify that as &#8220;lightweight&#8221;, &#8220;simple&#8221; or &#8220;easily installable&#8221;.</p>
<h1>CalDAV</h1>
<p>In case you don&#8217;t know what CalDAV is, it&#8217;s an extension to webdav for calendaring, and is defined in <a href="http://www.ietf.org/rfc/rfc4791.txt" target="_blank">rfc4791</a>. If you don&#8217;t feel like reading all of this, it&#8217;s mostly HTTP with XML requests and responses, but not always, which is why it gets kind of weird&#8230;</p>
<h2>Example requests</h2>
<p>Creating a calendar:</p>
<pre>
MKCOL /calendars/pythoncaldav-test HTTP/1.1
Host: example.com
Accept-Encoding: identity
Content-Length: 249

&lt;?xml version='1.0' encoding='utf-8'?>
&lt;D:mkcol xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:D="DAV:">
  &lt;D:set>
    &lt;D:prop>
      &lt;D:resourcetype>
        &lt;D:collection>
          &lt;C:calendar-collection/>
        &lt;/D:collection>
      &lt;/D:resourcetype>
      &lt;D:displayname>Yep</D:displayname>
    &lt;/D:prop>
  &lt;/D:set>
&lt;/D:mkcol>
</pre>
<p>Deleting a calendar:</p>
<pre>
DELETE /calendars/pythoncaldav-test HTTP/1.1
Host: example.com
Accept-Encoding: identity
</pre>
<h1>caldav</h1>
<p>The version I just released is the very beginning of the project: it has basic functionality, but lacks many things, such as error handling and full support for the protocol. The documentation also needs a lot more work.</p>
<h2>Example</h2>
<p>I tried keeping the API very simple, and close to what an ORM would be used like, here&#8217;s an example:</p>
<pre class="prettyprint">
import caldav
from caldav.lib.namespace import ns

# Principal url
url = "https://user:pass@hostname/user/Calendar"
vcal = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:1234567890
DTSTAMP:20100510T182145Z
DTSTART:20100512T170000Z
DTEND:20100512T180000Z
SUMMARY:This is an event
END:VEVENT
END:VCALENDAR
"""

client = caldav.DAVClient(url)
principal = caldav.Principal(url)
calendars = principal.calendars()
if len(calendars) > 0:
    calendar = calendars[0]
    print "Using calendar", calendar

    print "Renaming"
    calendar.set_properties({ns("D", "displayname"): "Test calendar",})
    print calendar.get_properties([ns("D", "displayname"),])

    event = caldav.Event(client, data = vcal, parent = calendar).save()
    print "Event", event, "created"

    print "Looking for events after 2010-05-01"
    results = calendar.date_search("20100501T000000Z")
    for event in results:
        print "Found", event
</pre>
<h1>Links</h1>
<p>I released caldav and its documentation on pypi, and the code is on bitbucket:</p>
<ul>
<li>Pypi: <a href="http://pypi.python.org/pypi/caldav" target="_blank">http://pypi.python.org/pypi/caldav</a></li>
<li>Documentation: <a href="http://packages.python.org/caldav" target="_blank">http://packages.python.org/caldav</a></li>
<li>Bitbucket: <a href="http://bitbucket.org/cyrilrbt/caldav" target="_blank">http://bitbucket.org/cyrilrbt/caldav</a></li>
</ul>
<p>Contributions are welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/06/04/introducing-python-caldav/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Portrait de blogueurs</title>
		<link>http://savetheions.com/2010/04/20/portrait-de-blogueurs/</link>
		<comments>http://savetheions.com/2010/04/20/portrait-de-blogueurs/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 13:53:13 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Teh internets]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=178</guid>
		<description><![CDATA[J&#8217;ai été interviewé pour Portrait de blogueurs hier soir!]]></description>
			<content:encoded><![CDATA[<p>J&#8217;ai été interviewé pour <a href="http://portraitdeblogueurs.com/2010/04/19/cyril-robert/" target="_blank">Portrait de blogueurs</a> hier soir!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/eSddSch67dw&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/eSddSch67dw&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/04/20/portrait-de-blogueurs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django Debug Toolbar</title>
		<link>http://savetheions.com/2010/04/12/django-debug-toolbar/</link>
		<comments>http://savetheions.com/2010/04/12/django-debug-toolbar/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 04:21:20 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=171</guid>
		<description><![CDATA[I wish for two things: That there was some kind of RT function with rss feeds (the only feature I like about twitter) That Django Debug Toolbar is merged in django 1.2+ &#160; via Planet GNOME BTW, I can&#8217;t believe no one else on Planet Django mentioned it yet!]]></description>
			<content:encoded><![CDATA[<p>I wish for two things:</p>
<ul>
<li>That there was some kind of RT function with rss feeds (the only feature I like about twitter)</li>
<li>That <a href="http://www.ogmaciel.com/?p=874">Django Debug Toolbar</a> is merged in django 1.2+</li>
</ul>
<p>&nbsp;</p>
<p>via <a href="http://planet.gnome.org/">Planet GNOME</a></p>
<p>BTW, I can&#8217;t believe no one else on Planet Django mentioned it yet!</p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/04/12/django-debug-toolbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When a crazy person talks to bots&#8230;</title>
		<link>http://savetheions.com/2010/04/09/when-a-crazy-person-talks-to-bots/</link>
		<comments>http://savetheions.com/2010/04/09/when-a-crazy-person-talks-to-bots/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 22:50:05 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Teh internets]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=166</guid>
		<description><![CDATA[Allright, fine, it was me&#8230; I have just discovered that Google Translate can be used through XMPP! Details in this article about translation bots. The odd thing is, once I have a &#8220;contact&#8221; in my contact list, I don&#8217;t expect it to be a bot (yes, I would suck at being a judge for a [...]]]></description>
			<content:encoded><![CDATA[<p>Allright, fine, it was me&#8230;</p>
<p>I have just discovered that <a href="http://translate.google.com/" target="_blank">Google Translate</a> can be used through XMPP! Details in this article about <a href="http://www.google.com/support/talk/bin/answer.py?hl=en&#038;answer=89921" target="_blank">translation bots</a>.</p>
<p>The odd thing is, once I have a &#8220;contact&#8221; in my contact list, I don&#8217;t expect it to be a bot (yes, I would suck at being a judge for a Turing test), so I get carried away&#8230;</p>
<pre>
(15:40:36) ion: you're the best, mr. googlebot!
(15:40:36) en2fr@bot.talk.google.com: tu es le meilleur, Monsieur. googlebot!
(15:40:48) ion: i'm not a googlebot!
(15:40:49) en2fr@bot.talk.google.com: Je ne suis pas un robot Googlebot!
(15:41:02) ion: yes you are!
(15:41:03) en2fr@bot.talk.google.com: Oui vous êtes!
(15:41:14) ion: hey!
(15:41:14) en2fr@bot.talk.google.com: hey!
(15:41:21) ion: you're making me angry!
(15:41:22) en2fr@bot.talk.google.com: vous me mettre en colère!
(15:41:36) ion: quit repeating all I say!
(15:41:36) en2fr@bot.talk.google.com: arrêter de répéter tout ce que je dis!
</pre>
<p>Anyways, have fun with the bots!</p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/04/09/when-a-crazy-person-talks-to-bots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Chatroulette phenomenon</title>
		<link>http://savetheions.com/2010/03/26/the-chatroulette-phenomenon/</link>
		<comments>http://savetheions.com/2010/03/26/the-chatroulette-phenomenon/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 13:39:31 +0000</pubDate>
		<dc:creator>cyril</dc:creator>
				<category><![CDATA[Teh internets]]></category>

		<guid isPermaLink="false">http://savetheions.com/?p=160</guid>
		<description><![CDATA[I&#8217;m fairly certain that by now everyone knows what Chatroulette is, so I won&#8217;t introduce the concept. I just wanted to mention what has been happening over there in the last couple of months. About 2 months ago, I opened it up, and just saw a few people staring at their webcams, but mostly lots [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m fairly certain that by now everyone knows what <a href="http://chatroulette.com" target="_blank">Chatroulette</a> is, so I won&#8217;t introduce the concept.</p>
<p>I just wanted to mention what has been happening over there in the last couple of months. About 2 months ago, I opened it up, and just saw a few people staring at their webcams, but mostly lots of dudes showing off (or touching) their junk. That was&#8230; let&#8217;s say unpleasant.</p>
<p>However, since then, I keep seeing these videos of people using chatroulette very creatively, and most of those videos went viral (or somewhat viral), so I think it shows that people are excited about the possibilities offered by chatroulette.</p>
<h2>A few examples</h2>
<p><a href="http://www.youngrival.com/" target="_blank">Young Rival</a> made a music video, which is pretty awesome.</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/unoqbrBOmEM&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/unoqbrBOmEM&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Everyone now knows Merton</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/JTwJetox_tU&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JTwJetox_tU&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Ben Folds made the Ode to Merton</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/UxcRq-1B148&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UxcRq-1B148&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Then there&#8217;s this dude, who looks alot like <a href="http://www.imdb.com/media/rm771066112/tt1441096" target="_blank">Nicolas Wright</a></p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/8qBFNaA7u1E&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8qBFNaA7u1E&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Anyways, those are only a few of my favorites, and you can find a lot more on <a href="http://www.youtube.com/results?search_query=chatroulette">youtube</a></p>
]]></content:encoded>
			<wfw:commentRss>http://savetheions.com/2010/03/26/the-chatroulette-phenomenon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

