<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://planet-soc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Universe SoC</title>
 <link>http://planet-soc.com/universe</link>
 <description>Universe</description>
 <language>en</language>
<item>
 <title>Testing the CPython Core</title>
 <link>http://planet-soc.com/node/3696</link>
 <description>&lt;p&gt;By Leslie Hawthorn, Open Source Team&lt;/p&gt;

&lt;p&gt;When &lt;a href=&quot;http://www.python.org/~guido&quot;&gt;Guido van Rossum&lt;/a&gt; mentioned that one of our &lt;a href=&quot;http://code.google.com/opensource/ghop/&quot;&gt;Google Highly Open Participation Contest&amp;trade;&lt;/a&gt; (GHOP) students, Benjamin Peterson, was interested in doing a more extensive project on &lt;a href=&quot;http://www.python.org&quot;&gt;Python&lt;/a&gt; testing, we were happy to help. Benjamin Peterson recently finished his work on testing the CPython core and was kind enough to send us this report.&lt;/p&gt;

&lt;p&gt;Benjamin writes:&lt;br /&gt;With sponsorship from Google, I&amp;#8217;ve just spent the summer working on the tests for the  &lt;a href=&quot;http://en.wikipedia.org/wiki/CPython&quot;&gt;CPython&lt;/a&gt; core.&lt;/p&gt;

&lt;p&gt;I spent a lot of time working on the test driver, regrtest.py, in order to make implementing features easier in the future. One of the ugliest parts of regrtest.py is that it kept a list of all the tests that could be expected to be skipped on a platform, so I moved this logic to the tests themselves. In the end, I wasn&amp;#8217;t able to fully remove Python core related logic from it, but the removal of expected skip lists simplified the program greatly.&lt;/p&gt;

&lt;p&gt;I made command line use of regrtest easier in several ways. When specifying tests, one no longer needs to give the test_ prefix. I also implemented test selectors which allow a range of tests to be specified. For these new features, I added unittests. Another major feature is that regrtest automatically writes a list of the tests run, with failures and skips noted, after each testing session. The session can be rerun exactly the same way on another computer by reading the file with the -f option.&lt;/p&gt;

&lt;p&gt;Finely grained test skipping is another important feature. New decorators in test_support allow whole test cases and individual methods to be skipped. Decorators range from the generic skip_if, which skips when the condition passed to it is true, to skip_on_platform, which skips if any of the listed platforms are in sys.platform. I hope that some form of these decorators can be included in unittest eventually.&lt;/p&gt;

&lt;p&gt;I visited each of the 361 tests to upgrade it to use my new features. I was able to consolidate some tests with each other. A few tests that escaped earlier sprints were converted to unittest.&lt;/p&gt;

&lt;p&gt;I really had a fantastic experience this summer. I learned an incredible amount from nice, patient people and look forward to next year! Many thanks to Georg Brandi, my awesome mentor, &lt;a href=&quot;http://www.python.org/~guido&quot;&gt;Guido van Rossum&lt;/a&gt; and the rest of the Python core development team, and Google&amp;#8217;s &lt;a href=&quot;http://code.google.com/opensource/&quot;&gt;Open Source Programs Office&lt;/a&gt; for making this possible.&lt;br /&gt;And in other news Python and GHOP, Zachary Voase, another Python GHOP student, recently attended &lt;a href=&quot;http://www.campus-party.org/&quot;&gt;Campus Party&lt;/a&gt; in &lt;a href=&quot;http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=valencia,+spain&amp;amp;ie=UTF8&amp;amp;ll=39.509339,-0.376282&amp;amp;spn=0.486317,1.39389&amp;amp;t=h&amp;amp;z=10&amp;amp;iwloc=addr&quot;&gt;Valencia, Spain&lt;/a&gt;, and spoke about his experiences in the contest. You can &lt;a href=&quot;http://www.youtube.com/watch?v=3QBCzWI7Rj0&amp;amp;&quot;&gt;check out the video&lt;/a&gt; of Zack, along with some of our &lt;a href=&quot;http://code.google.com/soc/&quot;&gt;Google Summer of Code&amp;trade;&lt;/a&gt; students, on YouTube. (Campus Party site and video are both in Spanish.)&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3696#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/49">Google</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Thu, 04 Sep 2008 19:57:00 +0200</pubDate>
 <dc:creator>lh</dc:creator>
 <guid isPermaLink="false">3696 at http://planet-soc.com</guid>
</item>
<item>
 <title>Testing the CPython Core</title>
 <link>http://planet-soc.com/node/3698</link>
 <description>&lt;p&gt;By Leslie Hawthorn, Open Source Team&lt;/p&gt;

&lt;p&gt;When &lt;a href=&quot;http://www.python.org/~guido&quot;&gt;Guido van Rossum&lt;/a&gt; mentioned that one of our &lt;a href=&quot;http://code.google.com/opensource/ghop/&quot;&gt;Google Highly Open Participation Contest&amp;trade;&lt;/a&gt; (GHOP) students, Benjamin Peterson, was interested in doing a more extensive project on &lt;a href=&quot;http://www.python.org&quot;&gt;Python&lt;/a&gt; testing, we were happy to help. Benjamin Peterson recently finished his work on testing the CPython core and was kind enough to send us this report.&lt;/p&gt;

&lt;p&gt;Benjamin writes:&lt;br /&gt;With sponsorship from Google, I&amp;#8217;ve just spent the summer working on the tests for the  &lt;a href=&quot;http://en.wikipedia.org/wiki/CPython&quot;&gt;CPython&lt;/a&gt; core.&lt;/p&gt;

&lt;p&gt;I spent a lot of time working on the test driver, regrtest.py, in order to make implementing features easier in the future. One of the ugliest parts of regrtest.py is that it kept a list of all the tests that could be expected to be skipped on a platform, so I moved this logic to the tests themselves. In the end, I wasn&amp;#8217;t able to fully remove Python core related logic from it, but the removal of expected skip lists simplified the program greatly.&lt;/p&gt;

&lt;p&gt;I made command line use of regrtest easier in several ways. When specifying tests, one no longer needs to give the test_ prefix. I also implemented test selectors which allow a range of tests to be specified. For these new features, I added unittests. Another major feature is that regrtest automatically writes a list of the tests run, with failures and skips noted, after each testing session. The session can be rerun exactly the same way on another computer by reading the file with the -f option.&lt;/p&gt;

&lt;p&gt;Finely grained test skipping is another important feature. New decorators in test_support allow whole test cases and individual methods to be skipped. Decorators range from the generic skip_if, which skips when the condition passed to it is true, to skip_on_platform, which skips if any of the listed platforms are in sys.platform. I hope that some form of these decorators can be included in unittest eventually.&lt;/p&gt;

&lt;p&gt;I visited each of the 361 tests to upgrade it to use my new features. I was able to consolidate some tests with each other. A few tests that escaped earlier sprints were converted to unittest.&lt;/p&gt;

&lt;p&gt;I really had a fantastic experience this summer. I learned an incredible amount from nice, patient people and look forward to next year! Many thanks to Georg Brandl, my awesome mentor, &lt;a href=&quot;http://www.python.org/~guido&quot;&gt;Guido van Rossum&lt;/a&gt; and the rest of the Python core development team, and Google&amp;#8217;s &lt;a href=&quot;http://code.google.com/opensource/&quot;&gt;Open Source Programs Office&lt;/a&gt; for making this possible.&lt;br /&gt;And in other news Python and GHOP, Zachary Voase, another Python GHOP student, recently attended &lt;a href=&quot;http://www.campus-party.org/&quot;&gt;Campus Party&lt;/a&gt; in &lt;a href=&quot;http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=valencia,+spain&amp;amp;ie=UTF8&amp;amp;ll=39.509339,-0.376282&amp;amp;spn=0.486317,1.39389&amp;amp;t=h&amp;amp;z=10&amp;amp;iwloc=addr&quot;&gt;Valencia, Spain&lt;/a&gt;, and spoke about his experiences in the contest. You can &lt;a href=&quot;http://www.youtube.com/watch?v=3QBCzWI7Rj0&amp;amp;&quot;&gt;check out the video&lt;/a&gt; of Zack, along with some of our &lt;a href=&quot;http://code.google.com/soc/&quot;&gt;Google Summer of Code&amp;trade;&lt;/a&gt; students, on YouTube. (Campus Party site and video are both in Spanish.)&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3698#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/49">Google</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Thu, 04 Sep 2008 19:57:00 +0200</pubDate>
 <dc:creator>lh</dc:creator>
 <guid isPermaLink="false">3698 at http://planet-soc.com</guid>
</item>
<item>
 <title>Mobile fish farms</title>
 <link>http://planet-soc.com/node/3691</link>
 <description></description>
 <comments>http://planet-soc.com/node/3691#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/96">OpenMoko Inc.</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Thu, 04 Sep 2008 17:34:00 +0200</pubDate>
 <dc:creator>lglira</dc:creator>
 <guid isPermaLink="false">3691 at http://planet-soc.com</guid>
</item>
<item>
 <title>A quick update, just to break the silence</title>
 <link>http://planet-soc.com/node/3693</link>
 <description>&lt;p&gt;I&amp;#8217;ve posted a new Windows &lt;a href=&quot;http://www.thousandparsec.net/~jmtan/&quot;&gt;build&lt;/a&gt;, and am currently trying to get the client to work fully with the &lt;a href=&quot;http://groups.google.com/group/python-ogre-developers/browse_thread/thread/919f11aa78615fce?hl=en&quot;&gt;python-ogre deb&lt;/a&gt; on Ubuntu. As expected, getting python-ogre to work on Mac is quite a chore, I&amp;#8217;m almost there, got everything compiled but running the demos gives me a &lt;a href=&quot;http://groups.google.com/group/python-ogre-developers/browse_thread/thread/3ada3eadf587320b?hl=en&quot;&gt;&amp;#8220;wrapper&amp;#8221; error&lt;/a&gt;, and I&amp;#8217;ll probably have to understand how the code generation in python-ogre works to figure it out.&lt;br /&gt;Packaging issues aside, I&amp;#8217;ve made a few updates to the client. The lines in the screen represent &amp;#8220;Wormholes&amp;#8221;, which are basically routes between star systems. Currently, only the &lt;a href=&quot;http://www.thousandparsec.net/wiki/Risk&quot;&gt;Risk&lt;/a&gt; ruleset uses this feature, so lines won&amp;#8217;t display anywhere else, such as on the demo1.thousandparsec.net server which usually runs Minisec.&lt;br /&gt;&lt;img src=&quot;http://2.bp.blogspot.com/_H-JNu2WhCxk/SMAIyPfXtYI/AAAAAAAAAOY/RluRPGreOwk/s400/screenshot.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5242199625503847810&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://2.bp.blogspot.com/_H-JNu2WhCxk/SMAIyVRKX8I/AAAAAAAAAOg/aRczzXuYtsc/s400/screenshot_2.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5242199627054866370&quot; /&gt;I&amp;#8217;ve also tweaked the &amp;#8220;Information&amp;#8221; window to show more useful information such as the planetary resources (I tested it with the &amp;#8220;Armies&amp;#8221; resource in Risk). In general, I&amp;#8217;m trying to locate more crashes by testing the client with different systems and python-ogre builds. OgreAL has been a little problematic, and it&amp;#8217;s one of the things which I am trying to get working with the linux python-ogre deb file.&lt;br /&gt;My main concern about the client is the performance on older hardware. Mithro informed me that even the login screen runs at a crawl on his laptop, which is probably due to the large textures used in the skybox (1024x1024). I guess a solution to this would be to offer a lower-resolution skybox thats selectable from the options menu.&lt;br /&gt;I&amp;#8217;ve started my industrial attachment, so I&amp;#8217;m pretty much limited to weekends. Nevertheless, I&amp;#8217;ll be continuing to update the client, and when &lt;a href=&quot;http://www.thousandparsec.net/wiki/TP04&quot;&gt;tp04&lt;/a&gt; support has been added content management will be a lot more elegant, allowing &amp;#8220;media&amp;#8221; tags which mean no more hardcoded graphics. Another thing I&amp;#8217;m looking forward to is more battlexml support in the servers. On my end, I also hope to include some shaders to give game objects a more realistic look, but there are still many things to work out before I have time for that.&lt;/p&gt;

&lt;p&gt;P.S. If you zoom in on the pictures it kinda looks like those old VGA games.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://picasaweb.google.com/lh/photo/PwfvaN0lXHu4I1wlExgrXQ?authkey=4OUN4uKKegM&quot;&gt;&lt;img src=&quot;http://lh3.ggpht.com/jmingtan/SMARIvRAfyI/AAAAAAAAAOo/dOu4xp8uGMY/s800/vga.png&quot; /&gt;&lt;/a&gt;From &lt;a href=&quot;http://picasaweb.google.com/jmingtan/DevHobby?authkey=4OUN4uKKegM&quot;&gt;Dev Hobby&lt;/a&gt;&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3693#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/160">Thousand Parsec</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Thu, 04 Sep 2008 17:23:00 +0200</pubDate>
 <dc:creator>jmingtan</dc:creator>
 <guid isPermaLink="false">3693 at http://planet-soc.com</guid>
</item>
<item>
 <title>Knight Foundation&#039;s News Challenge Contest</title>
 <link>http://planet-soc.com/node/3684</link>
 <description>&lt;p&gt;Knight Foundation has launched the third year of the Knight News Challenge, a contest awarding as much as $5 million for innovative ideas using digital experiments to transform community news and information exchange. The deadline for applications is Nov. 1, 2008.&lt;/p&gt;

&lt;p&gt;A simple online entry form is available at &lt;a href=&quot;http://www.newschallenge.org/&quot;&gt;www.newschallenge.org&lt;/a&gt;.&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3684#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/96">OpenMoko Inc.</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Wed, 03 Sep 2008 21:29:00 +0200</pubDate>
 <dc:creator>lglira</dc:creator>
 <guid isPermaLink="false">3684 at http://planet-soc.com</guid>
</item>
<item>
 <title>Comienza la Liga</title>
 <link>http://planet-soc.com/node/3671</link>
 <description>&lt;p&gt;Pequeño descanso en mi apretado horario esta semana. Ojeada a la prensa deportiva, que este fin de semana de primera jornada no he podido seguir el comienzo de la liga.&lt;br /&gt;
Noticia destacada del Marca: &amp;#8220;el R.Madrid vuelve a la carga con Villa&amp;#8221;.&lt;br /&gt;
Noticia destacada del Mundo Deportivo: &amp;#8220;[Arshavin] No se mueve&amp;#8221;.&lt;br /&gt;
¿Los resultados de ayer? Barça y Madrid perdieron. Y me alegro. Soy simpatizante del Barça, pero esto es fútbol y no un circo, que es lo que montan estos dos equipos.&lt;br /&gt;
Espero que este año gane la liga el Osasuna.&lt;br /&gt;
&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/categories/penyaskitodice.wordpress.com/349/&quot; /&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/tags/penyaskitodice.wordpress.com/349/&quot; /&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/penyaskitodice.wordpress.com/349/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/penyaskitodice.wordpress.com/349/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/penyaskitodice.wordpress.com/349/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/penyaskitodice.wordpress.com/349/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/penyaskitodice.wordpress.com/349/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/penyaskitodice.wordpress.com/349/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/penyaskitodice.wordpress.com/349/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/penyaskitodice.wordpress.com/349/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/penyaskitodice.wordpress.com/349/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/penyaskitodice.wordpress.com/349/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=penyaskitodice.wordpress.com&amp;amp;blog=207228&amp;amp;post=349&amp;amp;subd=penyaskitodice&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3671#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/5">ArgoUML</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Mon, 01 Sep 2008 20:11:29 +0200</pubDate>
 <dc:creator>penyaskito</dc:creator>
 <guid isPermaLink="false">3671 at http://planet-soc.com</guid>
</item>
<item>
 <title>Алфавит 2008 по версии Google.ru</title>
 <link>http://planet-soc.com/node/3668</link>
 <description>&lt;p&gt;Алфавит по версии версии google suggest:&lt;/p&gt;

&lt;p&gt;а=анекдоты&lt;br /&gt;б=билайн&lt;br /&gt;в= в контакте&lt;br /&gt;г=гороскоп&lt;br /&gt;д=дом 2&lt;br /&gt;е=евросеть&lt;br /&gt;ё=ёж&lt;br /&gt;ж=жди меня&lt;br /&gt;з=зайцев нет&lt;br /&gt;и=игры&lt;br /&gt;й=йога&lt;br /&gt;к=контакт&lt;br /&gt;л=любовные смс&lt;br /&gt;м=музыка&lt;br /&gt;н=новости&lt;br /&gt;о=одноклассники&lt;br /&gt;п=погода&lt;br /&gt;р=работа&lt;br /&gt;с=сонник&lt;br /&gt;т=техносила&lt;br /&gt;у=укрзалізниця&lt;br /&gt;ф=фото&lt;br /&gt;х=хонда&lt;br /&gt;ц=цитаты&lt;br /&gt;ч=чат&lt;br /&gt;ь=ьнызфсу(myspace)&lt;br /&gt;ш=шкода&lt;br /&gt;щ=щитовидная железа&lt;br /&gt;ъ=ъж&lt;br /&gt;э=эльдорадо&lt;br /&gt;ю=южная осетия&lt;br /&gt;я=яндекс&lt;/p&gt;

&lt;p&gt;Интересно  то, что алфавит для .ru и для .com немного отличаются.&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3668#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/122">Ruby Central</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Mon, 01 Sep 2008 06:58:00 +0200</pubDate>
 <dc:creator>sv</dc:creator>
 <guid isPermaLink="false">3668 at http://planet-soc.com</guid>
</item>
<item>
 <title>Алфавит 2008 по версии Google.ru</title>
 <link>http://planet-soc.com/node/3669</link>
 <description>&lt;p&gt;Алфавит по версии версии google suggest:&lt;/p&gt;

&lt;p&gt;а=анекдоты&lt;br /&gt;б=билайн&lt;br /&gt;в= в контакте&lt;br /&gt;г=гороскоп&lt;br /&gt;д=дом 2&lt;br /&gt;е=евросеть&lt;br /&gt;ё=ёж&lt;br /&gt;ж=жди меня&lt;br /&gt;з=зайцев нет&lt;br /&gt;и=игры&lt;br /&gt;й=йога&lt;br /&gt;к=контакт&lt;br /&gt;л=любовные смс&lt;br /&gt;м=музыка&lt;br /&gt;н=новости&lt;br /&gt;о=одноклассники&lt;br /&gt;п=погода&lt;br /&gt;р=работа&lt;br /&gt;с=сонник&lt;br /&gt;т=техносила&lt;br /&gt;у=укрзалізниця&lt;br /&gt;ф=фото&lt;br /&gt;х=хонда&lt;br /&gt;ц=цитаты&lt;br /&gt;ч=чат&lt;br /&gt;ш=шкода&lt;br /&gt;щ=щитовидная железа&lt;br /&gt;ь=ьнызфсу(myspace)&lt;br /&gt;ы=ыьщекш(smotri.com)&lt;br /&gt;ъ=ъж&lt;br /&gt;э=эльдорадо&lt;br /&gt;ю=южная осетия&lt;br /&gt;я=яндекс&lt;/p&gt;

&lt;p&gt;Интересно  то, что алфавит для .ru и для .com немного отличаются.&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3669#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/122">Ruby Central</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Mon, 01 Sep 2008 06:58:00 +0200</pubDate>
 <dc:creator>sv</dc:creator>
 <guid isPermaLink="false">3669 at http://planet-soc.com</guid>
</item>
<item>
 <title>Summer of Coders at Google Krakow</title>
 <link>http://planet-soc.com/node/3662</link>
 <description>&lt;p&gt;By Martin Harvan, 2008 Student for the SIP Communicator project&lt;/p&gt;

&lt;p&gt;I was thrilled when I found out there would be a &lt;a href=&quot;http://code.google.com/soc/&quot;&gt;Google Summer of Code&lt;/a&gt; meetup in Krakow, not far from where I live. I not only wanted to visit Google&amp;#8217;s offices and see behind the scenes of Google, I was excited to meet fellow Summer of Code students and some of Google&amp;#8217;s engineers. The office visit, which was held on August 4th, turned out to be just as fun as I anticipated.&lt;/p&gt;

&lt;p&gt;After we arrived,  our hosts showed us around the office and offered &amp;#8220;java&amp;#8221; and snacks. Following refreshments, a few of the employees informally introduced the projects they are working on and told us about life at Google.  It was very interesting to see how many different projects are done in this single office.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://1.bp.blogspot.com/_aqCuHvDvLj8/SLpAV8v9spI/AAAAAAAAAAM/P2MH4ioPc40/s1600-h/photo_top.jpg&quot;&gt;&lt;img src=&quot;http://1.bp.blogspot.com/_aqCuHvDvLj8/SLpAV8v9spI/AAAAAAAAAAM/P2MH4ioPc40/s320/photo_top.jpg&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5240571862227726994&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Each of us 20+ students then got a short time to introduce what we were working on for our Summer of Code projects. Once again it was interesting to see the wide variety of projects. After we finished talking about our projects, we were given some cool Google swag and there was time for discussion, more food and some fun (table tennis, Wii tennis, RockBand etc.). Time went by very quickly and too soon it was time to go, so we took some pictures and said goodbye to our hosts.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://3.bp.blogspot.com/_aqCuHvDvLj8/SLpAnBfiJZI/AAAAAAAAAAU/YExlbUlEybI/s1600-h/photo_bottom.jpg&quot;&gt;&lt;img src=&quot;http://3.bp.blogspot.com/_aqCuHvDvLj8/SLpAnBfiJZI/AAAAAAAAAAU/YExlbUlEybI/s320/photo_bottom.jpg&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5240572155558765970&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3662#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/49">Google</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Sun, 31 Aug 2008 08:48:00 +0200</pubDate>
 <dc:creator>lh</dc:creator>
 <guid isPermaLink="false">3662 at http://planet-soc.com</guid>
</item>
<item>
 <title>The Science and Policy Behind Water</title>
 <link>http://planet-soc.com/node/3660</link>
 <description>&lt;p&gt;The National Academies have released &amp;#8220;&lt;a href=&quot;http://dels.nas.edu/dels/rpt_briefs/drinking_water.pdf&quot;&gt;Drinking Water: Understanding the Science and Policy Behind a Critical Resource&lt;/a&gt;&amp;#8221;. It is a free booklet designed to give the public a comprehensive introduction to drinking water issues.&lt;/p&gt;
</description>
 <comments>http://planet-soc.com/node/3660#comments</comments>
 <category domain="http://planet-soc.com/taxonomy/term/96">OpenMoko Inc.</category>
 <category domain="http://planet-soc.com/taxonomy/term/182">Universe SoC</category>
 <pubDate>Sat, 30 Aug 2008 20:44:00 +0200</pubDate>
 <dc:creator>lglira</dc:creator>
 <guid isPermaLink="false">3660 at http://planet-soc.com</guid>
</item>
</channel>
</rss>
