<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel rdf:about="http://blogmarks.net/api/marks/search/running">
<title>Public marks with search running</title>
<description>Public marks with search running</description>
<link>http://blogmarks.net/marks/search/running</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058562239"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058550405"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058547153"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058547108"/>
<rdf:li resource="http://blogmarks.net/api/user/rmaltete/mark/1058543668"/>
<rdf:li resource="http://blogmarks.net/api/user/srcmax/mark/1058523434"/>
<rdf:li resource="http://blogmarks.net/api/user/sbrothier/mark/1058521316"/>
<rdf:li resource="http://blogmarks.net/api/user/RETFU/mark/1058519739"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058499469"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058496907"/>
<rdf:li resource="http://blogmarks.net/api/user/tadeufilippini/mark/1058492882"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058486058"/>
<rdf:li resource="http://blogmarks.net/api/user/Neewok/mark/1058484596"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058482482"/>
<rdf:li resource="http://blogmarks.net/api/user/ericpaul/mark/1058481433"/>
<rdf:li resource="http://blogmarks.net/api/user/fotopol/mark/1058474709"/>
<rdf:li resource="http://blogmarks.net/api/user/srcmax/mark/1058473572"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058442333"/>
<rdf:li resource="http://blogmarks.net/api/user/oseres/mark/1058434188"/>
<rdf:li resource="http://blogmarks.net/api/user/blackgoldfish/mark/1058425479"/>
<rdf:li resource="http://blogmarks.net/api/user/eaque/mark/1058419064"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058415960"/>
<rdf:li resource="http://blogmarks.net/api/user/znarf/mark/1058414768"/>
<rdf:li resource="http://blogmarks.net/api/user/jk4net/mark/1058389873"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058383873"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058562239">
<title>Time/Weather Desktop on Flickr - Photo Sharing!</title>
<link>http://www.flickr.com/photos/bopuc/4039178260/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Well, most of the work is done by Earthdesk and GeekTool 3.&lt;/p&gt;&lt;p&gt;Earthdesk is set to Natural Color, Equirectangular projection, Natural Color, Real Moonlight, centered on Vienna, Background: Starfield. Zoom 80%, Clouds 80%, Brightness 80%.&lt;/p&gt;&lt;p&gt;In GeekTool, the times and the weathers are all separate Shell &quot;geeklets&quot;.&lt;/p&gt;&lt;p&gt;Times are generated by running shell commands like&lt;/p&gt;&lt;p&gt;env TZ=Asia/Tokyo date &quot; %l:%M %p&quot;&lt;/p&gt;&lt;p&gt;every 20 seconds&lt;/p&gt;&lt;p&gt;The weather is the tricky part. The way I am doing it now, if I am not careful, gets me throttled for too many concurrent requests to the wunderground.com API server. It also fails badly if I am disconnected, so I will need to do it differently.&lt;/p&gt;&lt;p&gt;FWIW: I have a PHP script which I run as separate Shell Geeklets. I invoke it with the name of the city I want. It then hits wunderground and gets back an XML stream of the local weather, which I parse, format and echo. (the way I'd change this is run the script from cron, with a 30 second wait between requests, and cache the results locally, which I would then call from the Shell Geeklets)&lt;/p&gt;&lt;p&gt;From there it's just a question of setting fonts, sizes, colors and moving the little Geeklet boxes around as you want them.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-10-24T15:00:49Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>semanticdesktop, meteo, geek</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.flickr.com/photos/bopuc/4039178260/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/24/5639bd0d870c47d4c396495e456804ec.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.flickr.com/photos/bopuc/4039178260/">Time/Weather Desktop on Flickr - Photo Sharing!</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Well, most of the work is done by Earthdesk and GeekTool 3.</p><p>Earthdesk is set to Natural Color, Equirectangular projection, Natural Color, Real Moonlight, centered on Vienna, Background: Starfield. Zoom 80%, Clouds 80%, Brightness 80%.</p><p>In GeekTool, the times and the weathers are all separate Shell "geeklets".</p><p>Times are generated by running shell commands like</p><p>env TZ=Asia/Tokyo date " %l:%M %p"</p><p>every 20 seconds</p><p>The weather is the tricky part. The way I am doing it now, if I am not careful, gets me throttled for too many concurrent requests to the wunderground.com API server. It also fails badly if I am disconnected, so I will need to do it differently.</p><p>FWIW: I have a PHP script which I run as separate Shell Geeklets. I invoke it with the name of the city I want. It then hits wunderground and gets back an XML stream of the local weather, which I parse, format and echo. (the way I'd change this is run the script from cron, with a 30 second wait between requests, and cache the results locally, which I would then call from the Shell Geeklets)</p><p>From there it's just a question of setting fonts, sizes, colors and moving the little Geeklet boxes around as you want them.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/semanticdesktop">semanticdesktop</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/meteo">meteo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/geek">geek</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058562239">Copy</a> | 
<a href="http://blogmarks.net/link/3392654">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058550405">
<title>lericson/programming/ - Pooling with pylibmc</title>
<link>http://lericson.blogg.se/code/2009/september/draft-sept-20-2009.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;This means that whenever Python code is running, you'll be sure to have exclusive access to all of Python's memory (unless something is misbehaving.) In turn, this means that the usecase for using libmemcachedutil in a Python library is rather slim.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-10-15T01:07:17Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python, memcached</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://lericson.blogg.se/code/2009/september/draft-sept-20-2009.html"><img border="0" src="http://blogmarks.net/screenshots/2009/10/15/35eb323bf36f727ec241974e6bb51f97.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://lericson.blogg.se/code/2009/september/draft-sept-20-2009.html">lericson/programming/ - Pooling with pylibmc</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This means that whenever Python code is running, you'll be sure to have exclusive access to all of Python's memory (unless something is misbehaving.) In turn, this means that the usecase for using libmemcachedutil in a Python library is rather slim.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/memcached">memcached</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058550405">Copy</a> | 
<a href="http://blogmarks.net/link/3383749">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058547153">
<title>jessenoller.com - Django, mod_wsgi, Apache and OS X – do it.</title>
<link>http://jessenoller.com/2009/07/24/django-mod_wsgi-apache-and-os-x-do-it/</link>
<description>&lt;blockquote&gt;&lt;p&gt;whut_2.jpgSo, I’m one of those people where I don’t like running things “too far” from what a production setup might look like (I code on OS/X, deploy to Linux). This is why I jump(ed) through various hoops on my OS X system to get Apache/Django/mod_wsgi/etc all up and running and happy (not for serving the site; just developing).&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-10-11T23:35:02Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>django, apache, python</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://jessenoller.com/2009/07/24/django-mod_wsgi-apache-and-os-x-do-it/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/11/fe4d5eb70b4fed9a01fe01ef368fcf3a.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://jessenoller.com/2009/07/24/django-mod_wsgi-apache-and-os-x-do-it/">jessenoller.com - Django, mod_wsgi, Apache and OS X – do it.</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>whut_2.jpgSo, I’m one of those people where I don’t like running things “too far” from what a production setup might look like (I code on OS/X, deploy to Linux). This is why I jump(ed) through various hoops on my OS X system to get Apache/Django/mod_wsgi/etc all up and running and happy (not for serving the site; just developing).</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/django">django</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/apache">apache</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547153">Copy</a> | 
<a href="http://blogmarks.net/link/3381004">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058547108">
<title>Visualize Your SSH &amp; FTP Behaviour on Datavisualization.ch</title>
<link>http://www.datavisualization.ch/showcases/visualize-your-ssh-ftp-behaviour</link>
<description>&lt;blockquote&gt;&lt;p&gt;Every time that you login into your local Unix-like machine or a remote hosting server through a FTP client to upload a file or use SSH to get your stuff done, you’re leaving behind a trail of evidence showing your online behaviour: where and when you log in, how often and how long your online sessions are, in short: your modus operandi. This visualization tool unveils this hidden data, which is gathered by running a few builtin UNIX commands and is analyzed onsite.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-10-11T22:25:13Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>datavisualization, unix</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.datavisualization.ch/showcases/visualize-your-ssh-ftp-behaviour"><img border="0" src="http://blogmarks.net/screenshots/2009/10/11/5dcc4db87a68471478a091be3e060f61.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.datavisualization.ch/showcases/visualize-your-ssh-ftp-behaviour">Visualize Your SSH &amp; FTP Behaviour on Datavisualization.ch</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Every time that you login into your local Unix-like machine or a remote hosting server through a FTP client to upload a file or use SSH to get your stuff done, you’re leaving behind a trail of evidence showing your online behaviour: where and when you log in, how often and how long your online sessions are, in short: your modus operandi. This visualization tool unveils this hidden data, which is gathered by running a few builtin UNIX commands and is analyzed onsite.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/datavisualization">datavisualization</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/unix">unix</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547108">Copy</a> | 
<a href="http://blogmarks.net/link/3380967">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/rmaltete/mark/1058543668">
<title>FlashFXP :: FTP Client Software</title>
<link>http://www.flashfxp.com/</link>
<description>FlashFXP is a FTP (File Transfer Protocol) client for Windows, it offers you easy and fast ways to transfer any file between other local computers (LAN - Local Area Network) running a FTP server or via the Internet (WAN - Wide Area Network) and even directly between two servers using Site to Site transfers (FXP - File eXchange Protocol). </description>
<dc:date>2009-10-09T14:35:00Z</dc:date>
<dc:author>rmaltete</dc:author>
<dc:subject>ftp, utilitaire, windows</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.flashfxp.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/09/1a0b69e211ce268e6b19daaac1b00123.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.flashfxp.com/">FlashFXP :: FTP Client Software</a></h4>
 
by <a href="http://blogmarks.net/user/rmaltete">rmaltete</a> 
<p class="description">FlashFXP is a FTP (File Transfer Protocol) client for Windows, it offers you easy and fast ways to transfer any file between other local computers (LAN - Local Area Network) running a FTP server or via the Internet (WAN - Wide Area Network) and even directly between two servers using Site to Site transfers (FXP - File eXchange Protocol). </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ftp">ftp</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/utilitaire">utilitaire</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/windows">windows</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058543668">Copy</a> | 
<a href="http://blogmarks.net/link/3378147">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/srcmax/mark/1058523434">
<title>Zend_Amf with full Zend Framework | Space of Flex/AIR technologies</title>
<link>http://www.riaspace.net/2009/01/zend_amf-with-full-zend-framework/</link>
<description>There are many examples on the web how to use Zend_Amf as a standalone component but couldn’t find one that actually shows how you can run it with the rest of the Zend Framework. Main benefit of running it in a way I will demonstrate in this post is that requests to AMF service classes are automatically bootstrapped with configuration, database initialization and other Zend components.</description>
<dc:date>2009-09-29T16:56:36Z</dc:date>
<dc:author>srcmax</dc:author>
<dc:subject>developpement, amfphp, zend, zend_amf</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.riaspace.net/2009/01/zend_amf-with-full-zend-framework/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/29/e55f427a73624fc1cf7257342fb8c8c0.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.riaspace.net/2009/01/zend_amf-with-full-zend-framework/">Zend_Amf with full Zend Framework | Space of Flex/AIR technologies</a></h4>
 
by <a href="http://blogmarks.net/user/srcmax">srcmax</a> 
<p class="description">There are many examples on the web how to use Zend_Amf as a standalone component but couldn’t find one that actually shows how you can run it with the rest of the Zend Framework. Main benefit of running it in a way I will demonstrate in this post is that requests to AMF service classes are automatically bootstrapped with configuration, database initialization and other Zend components.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/developpement">developpement</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/amfphp">amfphp</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/zend">zend</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/zend_amf">zend_amf</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058523434">Copy</a> | 
<a href="http://blogmarks.net/link/3359350">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sbrothier/mark/1058521316">
<title>Hitchcock - Mobile storyboarding for your iphone</title>
<link>http://cinemek.com/hitchcock/</link>
<description>Hitchcock is the worlds first mobile story boarding application. With Hitchcock you can have your first story board up and running in a matter of minutes. Hitchcock streamlines the process of storyboarding by allowing you to compose storyboards using photos rather than the tedious hand drawing process. This allows professionals and students to portray their vision to others in a easily controllable and transportable format. Click below to learn more about what features Hitchcock has to offer and how it will assist you in bringing your ideas to life. For an indepth look, full featured video tutorials can be found below....</description>
<dc:date>2009-09-27T08:24:03Z</dc:date>
<dc:author>sbrothier</dc:author>
<dc:subject>mobile, iphone, cinema, tools</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://cinemek.com/hitchcock/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/29/61ca8d80fc02169b926c031401d37d7f.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://cinemek.com/hitchcock/">Hitchcock - Mobile storyboarding for your iphone</a></h4>
 
by <a href="http://blogmarks.net/user/sbrothier">sbrothier</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3357565">1 other(s)</a> 
<p class="description">Hitchcock is the worlds first mobile story boarding application. With Hitchcock you can have your first story board up and running in a matter of minutes. Hitchcock streamlines the process of storyboarding by allowing you to compose storyboards using photos rather than the tedious hand drawing process. This allows professionals and students to portray their vision to others in a easily controllable and transportable format. Click below to learn more about what features Hitchcock has to offer and how it will assist you in bringing your ideas to life. For an indepth look, full featured video tutorials can be found below....</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mobile">mobile</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/iphone">iphone</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/cinema">cinema</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tools">tools</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058521316">Copy</a> | 
<a href="http://blogmarks.net/link/3357565">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/RETFU/mark/1058519739">
<title>kaourantin.net: What does GPU acceleration mean?</title>
<link>http://www.kaourantin.net/2008/05/what-does-gpu-acceleration-mean.html</link>
<description>left shows it running using the new gpu mode, right using the normal mode. This a video which is 320x240 pixels large showing red text and as you notice the gpu mode arguably looks better as the hardware does UV bl</description>
<dc:date>2009-09-25T07:43:04Z</dc:date>
<dc:author>RETFU</dc:author>
<dc:subject>flash player</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.kaourantin.net/2008/05/what-does-gpu-acceleration-mean.html"><img border="0" src="http://blogmarks.net/screenshots/2009/09/25/cb8c2898c5a1eb5755da3e0acc2ec84c.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.kaourantin.net/2008/05/what-does-gpu-acceleration-mean.html">kaourantin.net: What does GPU acceleration mean?</a></h4>
 
by <a href="http://blogmarks.net/user/RETFU">RETFU</a> 
<p class="description">left shows it running using the new gpu mode, right using the normal mode. This a video which is 320x240 pixels large showing red text and as you notice the gpu mode arguably looks better as the hardware does UV bl</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/flash%2Bplayer">flash player</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058519739">Copy</a> | 
<a href="http://blogmarks.net/link/3356326">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058499469">
<title>browsertests - Project Hosting on Google Code</title>
<link>http://code.google.com/p/browsertests/</link>
<description>&lt;blockquote&gt;&lt;p&gt;This project is about running test cases automatically on several versions of the main Web browsers available today. See the StartPage for more information. Tests and results are visible on http://www.browsertests.org.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-09-11T03:11:49Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>browser, testing, testsuite</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://code.google.com/p/browsertests/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/11/fd918bfc72e2402ee7bca2b2bd774d6a.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://code.google.com/p/browsertests/">browsertests - Project Hosting on Google Code</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This project is about running test cases automatically on several versions of the main Web browsers available today. See the StartPage for more information. Tests and results are visible on http://www.browsertests.org.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/browser">browser</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/testing">testing</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/testsuite">testsuite</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058499469">Copy</a> | 
<a href="http://blogmarks.net/link/3339489">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058496907">
<title>Fabric — Fabric v0.9 beta 1 documentation</title>
<link>http://docs.fabfile.org/0.9/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Fabric is a Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol. It provides tools for running arbitrary shell commands (either as a normal login user, or via sudo), uploading and downloading files, and so forth.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-09-08T10:20:50Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python, tools</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://docs.fabfile.org/0.9/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/08/dffc2202d75188f05a65523047325c24.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://docs.fabfile.org/0.9/">Fabric — Fabric v0.9 beta 1 documentation</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3337504">1 other(s)</a> 
<div class="description"><blockquote><p>Fabric is a Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol. It provides tools for running arbitrary shell commands (either as a normal login user, or via sudo), uploading and downloading files, and so forth.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tools">tools</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058496907">Copy</a> | 
<a href="http://blogmarks.net/link/3337504">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/tadeufilippini/mark/1058492882">
<title>Installation/FromImgFiles - Community Ubuntu Documentation</title>
<link>https://help.ubuntu.com/community/Installation/FromImgFiles</link>
<description># Download the desired .img file
# Install the usb-imagewriter package

    *

      If your release does not include this, download it from Oliver's PPA
    *

      If imagewriter fails to launch, you may need to install python glade2 support. Install the python-glade2 package or Run sudo apt-get install python-glade2
    * If your release does not include it and you are running 9.04 Jaunty Jackalope then run this command from the console:
          o

            sudo apt-get install usb-imagewriter 

#

Open Applications -&gt; Accessories -&gt; Image Writer

    *

      KDE users will find this in Applications -&gt; Utilities -&gt; Image Writer
    *

      on some usb-imagewriter versions (console command: imagewriter) the application fails to write if the image path contains blank spaces, exiting with &quot;IndexError: list index out of range&quot;. Also, in case you prefer to launch it from the command line, don't forget to sudo it, otherwise it will give a permission error. 

# Insert your flash media
# Select the downloaded file and flash device, and click &quot;Write to Device&quot;
# Remove your device when the operation is complete </description>
<dc:date>2009-09-04T08:05:43Z</dc:date>
<dc:author>tadeufilippini</dc:author>
<dc:subject>pendrive ubuntu, Imager, disk, usb, ubuntu community, community ubuntu, ubuntu help, help ubuntu, writer, image, image writer, imagewriter, usb ubuntu, ubuntu usb, disk imager, ubuntu pendrive</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://help.ubuntu.com/community/Installation/FromImgFiles"><img border="0" src="http://blogmarks.net/screenshots/2009/09/04/0b58fb82db2f0f67a63c1a579142fb28.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://help.ubuntu.com/community/Installation/FromImgFiles">Installation/FromImgFiles - Community Ubuntu Documentation</a></h4>
 
by <a href="http://blogmarks.net/user/tadeufilippini">tadeufilippini</a> 
<p class="description"># Download the desired .img file
# Install the usb-imagewriter package

    *

      If your release does not include this, download it from Oliver's PPA
    *

      If imagewriter fails to launch, you may need to install python glade2 support. Install the python-glade2 package or Run sudo apt-get install python-glade2
    * If your release does not include it and you are running 9.04 Jaunty Jackalope then run this command from the console:
          o

            sudo apt-get install usb-imagewriter 

#

Open Applications -> Accessories -> Image Writer

    *

      KDE users will find this in Applications -> Utilities -> Image Writer
    *

      on some usb-imagewriter versions (console command: imagewriter) the application fails to write if the image path contains blank spaces, exiting with "IndexError: list index out of range". Also, in case you prefer to launch it from the command line, don't forget to sudo it, otherwise it will give a permission error. 

# Insert your flash media
# Select the downloaded file and flash device, and click "Write to Device"
# Remove your device when the operation is complete </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/pendrive%2Bubuntu">pendrive ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Imager">Imager</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/disk">disk</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/usb">usb</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Bcommunity">ubuntu community</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/community%2Bubuntu">community ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Bhelp">ubuntu help</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/help%2Bubuntu">help ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/writer">writer</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/image">image</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/image%2Bwriter">image writer</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/imagewriter">imagewriter</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/usb%2Bubuntu">usb ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Busb">ubuntu usb</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/disk%2Bimager">disk imager</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Bpendrive">ubuntu pendrive</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058492882">Copy</a> | 
<a href="http://blogmarks.net/link/3334277">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058486058">
<title>Character encoding detection for external scripts</title>
<link>http://lists.w3.org/Archives/Public/www-archive/2009Aug/att-0086/script-encoding-detection.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;This is (EF BB BF) C3 B6 3D 22 21 22 loaded into browsers under various labels. That happens to be properly formed ECMAScript code for all the encodings used. The bogus results for Opera9 can easily be reproduced in context of the testing script, but probably not individually from a clean cache; what's going on there is unknown. I also noted in running these tests that Opera claims &quot;Opera supports the entire ECMA-262 2nd and 3rd standards with no exceptions&quot; while in fact their implementation does not, the parser rejects code that follows the IdentifierStart ::  UnicodeEscapeSequence production of ECMA-262 section 7.6. Instead it implements Opera-only extensions, like comma-free arrays ala [ 1 2 3 ]. Other fun facts include: IE does not implement onload for iframes and cannot modify the innerHTML or tr elements; Firefox ignores &quot;tags&quot; when setting the innerHTML of dynamically created tr elements with no ownerElement... Oh and Opera again needs /th &quot;tags&quot; so it won't nest adjacent th elements when setting innerHTML.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-08-30T13:29:55Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>html, implementation, parser, testing, unicode, charset</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://lists.w3.org/Archives/Public/www-archive/2009Aug/att-0086/script-encoding-detection.html"><img border="0" src="http://blogmarks.net/screenshots/2009/08/30/4f7b20c7ec9e67ca1c48ae5c6a352e37.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://lists.w3.org/Archives/Public/www-archive/2009Aug/att-0086/script-encoding-detection.html">Character encoding detection for external scripts</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This is (EF BB BF) C3 B6 3D 22 21 22 loaded into browsers under various labels. That happens to be properly formed ECMAScript code for all the encodings used. The bogus results for Opera9 can easily be reproduced in context of the testing script, but probably not individually from a clean cache; what's going on there is unknown. I also noted in running these tests that Opera claims "Opera supports the entire ECMA-262 2nd and 3rd standards with no exceptions" while in fact their implementation does not, the parser rejects code that follows the IdentifierStart ::  UnicodeEscapeSequence production of ECMA-262 section 7.6. Instead it implements Opera-only extensions, like comma-free arrays ala [ 1 2 3 ]. Other fun facts include: IE does not implement onload for iframes and cannot modify the innerHTML or tr elements; Firefox ignores "tags" when setting the innerHTML of dynamically created tr elements with no ownerElement... Oh and Opera again needs /th "tags" so it won't nest adjacent th elements when setting innerHTML.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/html">html</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/implementation">implementation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/parser">parser</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/testing">testing</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/unicode">unicode</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/charset">charset</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058486058">Copy</a> | 
<a href="http://blogmarks.net/link/3328424">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Neewok/mark/1058484596">
<title>Armadillo Cam - Armadillo Running and Sniffing Small Shrub</title>
<link>http://www.flickr.com/photos/museumofanimalperspectives/3360436884/</link>
<description></description>
<dc:date>2009-08-28T22:19:04Z</dc:date>
<dc:author>Neewok</dc:author>
<dc:subject></dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.flickr.com/photos/museumofanimalperspectives/3360436884/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/28/7870536b0dfb089c6a33090d3072afe8.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.flickr.com/photos/museumofanimalperspectives/3360436884/">Armadillo Cam - Armadillo Running and Sniffing Small Shrub</a></h4>
 
by <a href="http://blogmarks.net/user/Neewok">Neewok</a> 
<p class="tags">
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058484596">Copy</a> | 
<a href="http://blogmarks.net/link/3327217">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058482482">
<title>convert MARC to SKOS</title>
<link>http://inkdroid.org/bzr/lcsh/README</link>
<description>&lt;blockquote&gt;&lt;p&gt;This set of programs lets you convert MARC subject authority data to SKOS and then serve it up as linked data for use on the semantic web. If you just want to get the triples, and don't want to be bothered with converting legacy MARC data, and running an instance of lcsh.info then you should probably just download the complete set of triples at:&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-08-27T03:13:54Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>SKOS, livre, python</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://inkdroid.org/bzr/lcsh/README"><img border="0" src="http://blogmarks.net/screenshots/2009/08/27/13ae791549e924b5bb385aba93fa650f.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://inkdroid.org/bzr/lcsh/README">convert MARC to SKOS</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This set of programs lets you convert MARC subject authority data to SKOS and then serve it up as linked data for use on the semantic web. If you just want to get the triples, and don't want to be bothered with converting legacy MARC data, and running an instance of lcsh.info then you should probably just download the complete set of triples at:</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/SKOS">SKOS</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/livre">livre</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058482482">Copy</a> | 
<a href="http://blogmarks.net/link/3325437">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ericpaul/mark/1058481433">
<title>Frank's Corner, Running Windows applications and games on Linux</title>
<link>http://www.frankscorner.org/</link>
<description></description>
<dc:date>2009-08-25T22:52:11Z</dc:date>
<dc:author>ericpaul</dc:author>
<dc:subject>LinuxWine</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.frankscorner.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/25/a4be618137b175e32b9eaa49d027ecc2.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.frankscorner.org/">Frank's Corner, Running Windows applications and games on Linux</a></h4>
 
by <a href="http://blogmarks.net/user/ericpaul">ericpaul</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/625665">4 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/LinuxWine">LinuxWine</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058481433">Copy</a> | 
<a href="http://blogmarks.net/link/625665">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/fotopol/mark/1058474709">
<title>Tor Lillqvist--PSPI: Running Photoshop plug-ins in GIMP</title>
<link>http://www.gimp.org/~tml/gimp/win32/pspi.html</link>
<description>Les plugins Photoshop 8bf fonctionnent sous Gimp</description>
<dc:date>2009-08-21T14:36:12Z</dc:date>
<dc:author>fotopol</dc:author>
<dc:subject>photoshop, gimp, plugins</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.gimp.org/~tml/gimp/win32/pspi.html"><img border="0" src="http://blogmarks.net/screenshots/2009/08/21/1fa7e2fcf987de9093bbbb539df7b4e7.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.gimp.org/~tml/gimp/win32/pspi.html">Tor Lillqvist--PSPI: Running Photoshop plug-ins in GIMP</a></h4>
 
by <a href="http://blogmarks.net/user/fotopol">fotopol</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/1797355">2 other(s)</a> 
<p class="description">Les plugins Photoshop 8bf fonctionnent sous Gimp</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photoshop">photoshop</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/gimp">gimp</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/plugins">plugins</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058474709">Copy</a> | 
<a href="http://blogmarks.net/link/1797355">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/srcmax/mark/1058473572">
<title>Mozilla Developer News » Blog Archive » Firefox 3 about to get a major update</title>
<link>https://developer.mozilla.org/devnews/index.php/2009/08/13/firefox-3-about-to-get-a-major-update/</link>
<description>&lt;blockquote&gt;
&lt;p&gt;Starting a little later tonight, users with the latest version of Firefox 3 will be getting an offer to update to Firefox 3.5. If you’re running Firefox 3.0.13 you will see the offer in the next couple of days, though if you’re eager you can always “Check for Updates” in the “Help” menu.&lt;/p&gt;
&lt;/blockquote&gt;</description>
<dc:date>2009-08-20T10:27:58Z</dc:date>
<dc:author>srcmax</dc:author>
<dc:subject>firefox3, firefox 3.5, mozilla, firefox, blog, update</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://developer.mozilla.org/devnews/index.php/2009/08/13/firefox-3-about-to-get-a-major-update/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/20/8ce95d28b87a70978df804aad055509c.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://developer.mozilla.org/devnews/index.php/2009/08/13/firefox-3-about-to-get-a-major-update/">Mozilla Developer News » Blog Archive » Firefox 3 about to get a major update</a></h4>
 
by <a href="http://blogmarks.net/user/srcmax">srcmax</a> 
<div class="description"><blockquote>
<p>Starting a little later tonight, users with the latest version of Firefox 3 will be getting an offer to update to Firefox 3.5. If you’re running Firefox 3.0.13 you will see the offer in the next couple of days, though if you’re eager you can always “Check for Updates” in the “Help” menu.</p>
</blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox3">firefox3</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox%2B3.5">firefox 3.5</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mozilla">mozilla</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox">firefox</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/blog">blog</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/update">update</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058473572">Copy</a> | 
<a href="http://blogmarks.net/link/3320556">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058442333">
<title>4store - Scalable RDF storage</title>
<link>http://4store.org/</link>
<description>&lt;blockquote&gt;&lt;p&gt;4store was designed by Steve Harris and developed at Garlik to underpin their Semantic Web applications. It has been providing the base platform for around 3 years. At times holding and running queries over databases of 15GT, supporting a Web application used by thousands of people.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-27T00:46:06Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>rdf, websemantique</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://4store.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/07/27/d2d9ac75d8e74f5e5f33f034760d9d17.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://4store.org/">4store - Scalable RDF storage</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3286679">1 other(s)</a> 
<div class="description"><blockquote><p>4store was designed by Steve Harris and developed at Garlik to underpin their Semantic Web applications. It has been providing the base platform for around 3 years. At times holding and running queries over databases of 15GT, supporting a Web application used by thousands of people.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/rdf">rdf</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/websemantique">websemantique</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058442333">Copy</a> | 
<a href="http://blogmarks.net/link/3286679">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/oseres/mark/1058434188">
<title>  Opening up conversation on browser interrogation tools with Browser Memory Tool Prototype on Dion Almaer's Blog</title>
<link>http://almaer.com/blog/browser-memory-tool-prototype</link>
<description>Do you sometimes feel like the browser is a black box? We are building richer and richer applications on the Web platform and this means that developers are running up against new issues to debug and test.

We feel like it is a great time to develop new tools that afford you the ability to look into the runtime to hopefully help you find a bug, or allow you to keep your application as responsive as possible.

Today we want to start a conversation about some of our thinking, with the hope that you will join in.

We have been taking a hard look at the tools landscape, and here is a presentation that gives you an idea of our thinking:</description>
<dc:date>2009-07-18T16:12:37Z</dc:date>
<dc:author>oseres</dc:author>
<dc:subject>browser, mozilla, firefox, memory</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://almaer.com/blog/browser-memory-tool-prototype"><img border="0" src="http://blogmarks.net/screenshots/2009/07/18/28ed0d869c38c2f3a1d0ee330ddefc15.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://almaer.com/blog/browser-memory-tool-prototype">  Opening up conversation on browser interrogation tools with Browser Memory Tool Prototype on Dion Almaer's Blog</a></h4>
 
by <a href="http://blogmarks.net/user/oseres">oseres</a> 
<p class="description">Do you sometimes feel like the browser is a black box? We are building richer and richer applications on the Web platform and this means that developers are running up against new issues to debug and test.

We feel like it is a great time to develop new tools that afford you the ability to look into the runtime to hopefully help you find a bug, or allow you to keep your application as responsive as possible.

Today we want to start a conversation about some of our thinking, with the hope that you will join in.

We have been taking a hard look at the tools landscape, and here is a presentation that gives you an idea of our thinking:</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/browser">browser</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mozilla">mozilla</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox">firefox</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/memory">memory</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058434188">Copy</a> | 
<a href="http://blogmarks.net/link/3289154">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/blackgoldfish/mark/1058425479">
<title>little heart</title>
<link>http://www.flickr.com/photos/mav_port2port/3555163542/</link>
<description>I am running so behind today! ... just needed my little heart to help me push through.</description>
<dc:date>2009-07-12T08:04:45Z</dc:date>
<dc:author>blackgoldfish</dc:author>
<dc:subject>flickr sets, photography, somethingbeautiful</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.flickr.com/photos/mav_port2port/3555163542/"><img border="0" src="http://blogmarks.net/screenshots/2009/07/12/5cea5c8f11cb50336b6a507cc0fc76db.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.flickr.com/photos/mav_port2port/3555163542/">little heart</a></h4>
 
by <a href="http://blogmarks.net/user/blackgoldfish">blackgoldfish</a> 
<p class="description">I am running so behind today! ... just needed my little heart to help me push through.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/flickr%2Bsets">flickr sets</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photography">photography</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/somethingbeautiful">somethingbeautiful</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058425479">Copy</a> | 
<a href="http://blogmarks.net/link/3283165">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/eaque/mark/1058419064">
<title>Running a Reverse Proxy with Apache:</title>
<link>http://www.apachetutor.org/admin/reverseproxies</link>
<description>Step by step guide to set up a working reverse proxy</description>
<dc:date>2009-07-06T08:24:44Z</dc:date>
<dc:author>eaque</dc:author>
<dc:subject>reverse proxy, network, configuration</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.apachetutor.org/admin/reverseproxies"><img border="0" src="http://blogmarks.net/screenshots/2009/07/06/154259dfeee28d33ca8432ad323e0477.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.apachetutor.org/admin/reverseproxies">Running a Reverse Proxy with Apache:</a></h4>
 
by <a href="http://blogmarks.net/user/eaque">eaque</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2727343">1 other(s)</a> 
<p class="description">Step by step guide to set up a working reverse proxy</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/reverse%2Bproxy">reverse proxy</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/network">network</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/configuration">configuration</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058419064">Copy</a> | 
<a href="http://blogmarks.net/link/2727343">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058415960">
<title>Google Open Source Blog: Introducing Android Scripting Environment</title>
<link>http://google-opensource.blogspot.com/2009/06/introducing-android-scripting.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;Scripts can be run interactively in a terminal, started as a long running service, or started via Locale. Python, Lua and BeanShell are currently supported, and we're planning to add Ruby and JavaScript support, as well.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-05T02:48:45Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>javascript, python, lua, ruby, android</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://google-opensource.blogspot.com/2009/06/introducing-android-scripting.html"><img border="0" src="http://blogmarks.net/screenshots/2009/07/05/8e00ea814ec5c2bf1d67cc97bda566c5.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://google-opensource.blogspot.com/2009/06/introducing-android-scripting.html">Google Open Source Blog: Introducing Android Scripting Environment</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Scripts can be run interactively in a terminal, started as a long running service, or started via Locale. Python, Lua and BeanShell are currently supported, and we're planning to add Ruby and JavaScript support, as well.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/javascript">javascript</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lua">lua</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ruby">ruby</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/android">android</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058415960">Copy</a> | 
<a href="http://blogmarks.net/link/3275260">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/znarf/mark/1058414768">
<title>The P2P Web (part one) : Daytime Running Lights</title>
<link>http://jchrisa.net/drl/_design/sofa/_show/post/The-P2P-Web-part-one</link>
<description></description>
<dc:date>2009-07-04T13:22:08Z</dc:date>
<dc:author>François Hodierne</dc:author>
<dc:subject>html</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://jchrisa.net/drl/_design/sofa/_show/post/The-P2P-Web-part-one"><img border="0" src="http://blogmarks.net/screenshots/2009/07/04/011db3fc4c6ac547156e83431064d236.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://jchrisa.net/drl/_design/sofa/_show/post/The-P2P-Web-part-one">The P2P Web (part one) : Daytime Running Lights</a></h4>
 
by <a href="http://blogmarks.net/user/znarf">François Hodierne</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/html">html</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058414768">Copy</a> | 
<a href="http://blogmarks.net/link/3274160">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jk4net/mark/1058389873">
<title>PUMA Menâs Alacron L Running Shoe</title>
<link>http://feedproxy.google.com/~r/MenAthleticShoes/~3/LEcCSPopp_Y/</link>
<description>
    
      
    
    
      Made for night-running, PUMAÂs Alacron will ensure you're seen thanks to its reflective fabrication. The iCell midsole and midfoot TPU shank provides the support you need-day or night.
    
    
      From the Manufacturer
      PUMA is the global athletic brand that successfully fuses influences from sport, lifestyle and fashion. PUMA's unique industry perspective delivers the unexpected in sport-lifestyle footwear,
      apparel and accessories, through technical innovation and revolutionary design. PUMA Running offers options for a marathon trainer or a casual jogger. The Running Collection intertwines
      innovative technology and superior comfort with smart style.
    
    
      (more…)
    
</description>
<dc:date>2009-06-24T13:33:56Z</dc:date>
<dc:author>jk4net</dc:author>
<dc:subject>Men's Athletic Shoes</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://feedproxy.google.com/~r/MenAthleticShoes/~3/LEcCSPopp_Y/"><img border="0" src="http://blogmarks.net/screenshots/2009/06/24/b2837fa8c45b7f83b5546535e07695ca.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://feedproxy.google.com/~r/MenAthleticShoes/~3/LEcCSPopp_Y/">PUMA Menâs Alacron L Running Shoe</a></h4>
 
by <a href="http://blogmarks.net/user/jk4net">jk4net</a> 
<p class="description">
    
      
    
    
      Made for night-running, PUMAÂs Alacron will ensure you're seen thanks to its reflective fabrication. The iCell midsole and midfoot TPU shank provides the support you need-day or night.
    
    
      From the Manufacturer
      PUMA is the global athletic brand that successfully fuses influences from sport, lifestyle and fashion. PUMA's unique industry perspective delivers the unexpected in sport-lifestyle footwear,
      apparel and accessories, through technical innovation and revolutionary design. PUMA Running offers options for a marathon trainer or a casual jogger. The Running Collection intertwines
      innovative technology and superior comfort with smart style.
    
    
      (more…)
    
</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Men%2527s%2BAthletic%2BShoes">Men's Athletic Shoes</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058389873">Copy</a> | 
<a href="http://blogmarks.net/link/3253611">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058383873">
<title>Building Collapses in New York: Google Street View Shows a Crack</title>
<link>http://mashable.com/2009/06/21/google-street-view-collapse/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Images of the fallen building were quickly posted to photo-sharing sites Twitpic (Twitpic) (here and here) and Yfrog (here and here). But what makes this story more intriguing is that the imagery on Google Maps Street View clearly shows a large crack running up the front of the building (below)&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-06-21T23:16:08Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>geolocation, histoire, yesterdayisnow</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://mashable.com/2009/06/21/google-street-view-collapse/"><img border="0" src="http://blogmarks.net/screenshots/2009/06/21/fb204390b752f8c4d509c532bab0dd12.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://mashable.com/2009/06/21/google-street-view-collapse/">Building Collapses in New York: Google Street View Shows a Crack</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Images of the fallen building were quickly posted to photo-sharing sites Twitpic (Twitpic) (here and here) and Yfrog (here and here). But what makes this story more intriguing is that the imagery on Google Maps Street View clearly shows a large crack running up the front of the building (below)</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/geolocation">geolocation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/histoire">histoire</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/yesterdayisnow">yesterdayisnow</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058383873">Copy</a> | 
<a href="http://blogmarks.net/link/3248205">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>