<?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/lists">
<title>Public marks with search lists</title>
<description>Public marks with search lists</description>
<link>http://blogmarks.net/marks/search/lists</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/vrossign/mark/1058617667"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058601925"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058596142"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058596146"/>
<rdf:li resource="http://blogmarks.net/api/user/paulantoinem/mark/1058602306"/>
<rdf:li resource="http://blogmarks.net/api/user/oseres/mark/1058573203"/>
<rdf:li resource="http://blogmarks.net/api/user/vrossign/mark/1058572784"/>
<rdf:li resource="http://blogmarks.net/api/user/blackgoldfish/mark/1058569249"/>
<rdf:li resource="http://blogmarks.net/api/user/srcmax/mark/1058567557"/>
<rdf:li resource="http://blogmarks.net/api/user/dzc/mark/1058565773"/>
<rdf:li resource="http://blogmarks.net/api/user/paulantoinem/mark/1058602817"/>
<rdf:li resource="http://blogmarks.net/api/user/mozkart/mark/1058564180"/>
<rdf:li resource="http://blogmarks.net/api/user/blackgoldfish/mark/1058562198"/>
<rdf:li resource="http://blogmarks.net/api/user/wabaus/mark/1058560305"/>
<rdf:li resource="http://blogmarks.net/api/user/Spone/mark/1058547483"/>
<rdf:li resource="http://blogmarks.net/api/user/Fulcanelli/mark/1058528167"/>
<rdf:li resource="http://blogmarks.net/api/user/m.meixide/mark/1058524547"/>
<rdf:li resource="http://blogmarks.net/api/user/shadoko/mark/1058512991"/>
<rdf:li resource="http://blogmarks.net/api/user/tadeufilippini/mark/1058503160"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058596783"/>
<rdf:li resource="http://blogmarks.net/api/user/access2/mark/1058499816"/>
<rdf:li resource="http://blogmarks.net/api/user/sbrothier/mark/1058497186"/>
<rdf:li resource="http://blogmarks.net/api/user/dzc/mark/1058497024"/>
<rdf:li resource="http://blogmarks.net/api/user/decembre/mark/1058547789"/>
<rdf:li resource="http://blogmarks.net/api/user/Fulcanelli/mark/1058469916"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/vrossign/mark/1058617667">
<title>Styling HTML Lists with CSS: Techniques and Resources - Smashing Magazine</title>
<link>http://www.smashingmagazine.com/2009/12/11/styling-html-lists-with-css-techniques-and-resources/</link>
<description></description>
<dc:date>2009-12-11T16:43:38Z</dc:date>
<dc:author>vrossign</dc:author>
<dc:subject>html, resources, lists, css</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.smashingmagazine.com/2009/12/11/styling-html-lists-with-css-techniques-and-resources/"><img border="0" src="http://blogmarks.net/screenshots/2009/12/11/b58e3b610aea55a60995b89885f16c8c.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.smashingmagazine.com/2009/12/11/styling-html-lists-with-css-techniques-and-resources/">Styling HTML Lists with CSS: Techniques and Resources - Smashing Magazine</a></h4>
 
by <a href="http://blogmarks.net/user/vrossign">vrossign</a> 
<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/resources">resources</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lists">lists</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058617667">Copy</a> | 
<a href="http://blogmarks.net/link/3436763">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058601925">
<title>Python word frequency count using sets and lists « ActiveState Code</title>
<link>http://code.activestate.com/recipes/576699/</link>
<description>&lt;blockquote&gt;&lt;p&gt;This lists unique words and word frequencies occurring in a Python string. You can ignore or take account of letter case in distinguishing words, and you can pass it your own inclusion list of characters allowed in words (e.g. is &quot;import123&quot; the kind of word you want to list, or not? It might be if you're a programmer.) By default only alpha chars are allowed in words.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-11-29T11:11:26Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://code.activestate.com/recipes/576699/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://code.activestate.com/recipes/576699/">Python word frequency count using sets and lists « ActiveState Code</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This lists unique words and word frequencies occurring in a Python string. You can ignore or take account of letter case in distinguishing words, and you can pass it your own inclusion list of characters allowed in words (e.g. is "import123" the kind of word you want to list, or not? It might be if you're a programmer.) By default only alpha chars are allowed in words.</p></blockquote></div>
<p class="tags">
<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=1058601925">Copy</a> | 
<a href="http://blogmarks.net/link/3423129">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ycc2106/mark/1058596142">
<title>Compete | Compete</title>
<link>http://www.compete.com/</link>
<description>Site Profiles  Analyze traffic/engagement data Category Profiles  Benchmark vs. a Category Tag Profiles  Explore crowdsourced tagging Analytics Tools Search Analytics  Find keywords driving traffic Referral Analytics  Uncover sources of traffic Ranked Lists  Get lists of site rankings</description>
<dc:date>2009-11-24T21:09:50Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>analytics, keywords, domain, compare</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.compete.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/29/ed3727c206d77e2f0be4db71f25bbd29.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.compete.com/">Compete | Compete</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/1055519">5 other(s)</a> 
<p class="description">Site Profiles  Analyze traffic/engagement data Category Profiles  Benchmark vs. a Category Tag Profiles  Explore crowdsourced tagging Analytics Tools Search Analytics  Find keywords driving traffic Referral Analytics  Uncover sources of traffic Ranked Lists  Get lists of site rankings</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/analytics">analytics</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/keywords">keywords</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/domain">domain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/compare">compare</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058596142">Copy</a> | 
<a href="http://blogmarks.net/link/1055519">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ycc2106/mark/1058596146">
<title>Mozilla Labs » Raindrop</title>
<link>https://mozillalabs.com/raindrop</link>
<description>Raindrop is an exploration of messaging innovation that strives to intelligently assist people in managing their flood of incoming messages. And mailing lists are a common source of messages you need to manage. So, with assistance from the Raindrop hackers, I wrote extensions that make it easier to deal with messages from mailing lists.</description>
<dc:date>2009-11-22T21:48:45Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>mozilla, labs, mailinglist, manager</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://mozillalabs.com/raindrop"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://mozillalabs.com/raindrop">Mozilla Labs » Raindrop</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
<p class="description">Raindrop is an exploration of messaging innovation that strives to intelligently assist people in managing their flood of incoming messages. And mailing lists are a common source of messages you need to manage. So, with assistance from the Raindrop hackers, I wrote extensions that make it easier to deal with messages from mailing lists.</p>
<p class="tags">
<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/labs">labs</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mailinglist">mailinglist</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/manager">manager</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058596146">Copy</a> | 
<a href="http://blogmarks.net/link/3419714">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/paulantoinem/mark/1058602306">
<title>10 Movies That Are So Bad They Are Good - Listverse</title>
<link>http://envrac.posterous.com/10-movies-that-are-so-bad-they-are-good-listv</link>
<description>One of the things I like about Listverse is the way that some lists can be so divisive, especially the lists about movies. Film preference is certainly a matter of taste and opinion, however, t ...</description>
<dc:date>2009-11-15T02:47:50Z</dc:date>
<dc:author>paulantoinem</dc:author>
<dc:subject></dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://envrac.posterous.com/10-movies-that-are-so-bad-they-are-good-listv"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://envrac.posterous.com/10-movies-that-are-so-bad-they-are-good-listv">10 Movies That Are So Bad They Are Good - Listverse</a></h4>
 
by <a href="http://blogmarks.net/user/paulantoinem">paulantoinem</a> 
<p class="description">One of the things I like about Listverse is the way that some lists can be so divisive, especially the lists about movies. Film preference is certainly a matter of taste and opinion, however, t ...</p>
<p class="tags">
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058602306">Copy</a> | 
<a href="http://blogmarks.net/link/3423496">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/oseres/mark/1058573203">
<title>Free Twitter Alerts within Lists - Listiti.com</title>
<link>http://listiti.com/alert/create</link>
<description></description>
<dc:date>2009-11-05T20:49:18Z</dc:date>
<dc:author>oseres</dc:author>
<dc:subject>twitter, free</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://listiti.com/alert/create"><img border="0" src="http://blogmarks.net/screenshots/2009/11/05/c32796d04343671e9126541db3cebeda.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://listiti.com/alert/create">Free Twitter Alerts within Lists - Listiti.com</a></h4>
 
by <a href="http://blogmarks.net/user/oseres">oseres</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/twitter">twitter</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/free">free</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058573203">Copy</a> | 
<a href="http://blogmarks.net/link/3401481">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/vrossign/mark/1058572784">
<title>Essential CSS/HTML Lists Styling Techniques - Noupe</title>
<link>http://www.noupe.com/css/essential-html-lists-styling-techniques.html</link>
<description></description>
<dc:date>2009-11-05T08:55:17Z</dc:date>
<dc:author>vrossign</dc:author>
<dc:subject>lists, ul, li, css</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.noupe.com/css/essential-html-lists-styling-techniques.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/05/a3889dd105ecca123851c86756ff8886.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.noupe.com/css/essential-html-lists-styling-techniques.html">Essential CSS/HTML Lists Styling Techniques - Noupe</a></h4>
 
by <a href="http://blogmarks.net/user/vrossign">vrossign</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lists">lists</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ul">ul</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/li">li</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058572784">Copy</a> | 
<a href="http://blogmarks.net/link/3401159">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/blackgoldfish/mark/1058569249">
<title>old lists</title>
<link>http://www.jamaicamakes.com/jamaica/2009/10/old_lists.html</link>
<description></description>
<dc:date>2009-11-01T13:51:54Z</dc:date>
<dc:author>blackgoldfish</dc:author>
<dc:subject>inspiration, paper craft, list-making</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.jamaicamakes.com/jamaica/2009/10/old_lists.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/01/b33009f8a468a82e57769219e55ed027.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.jamaicamakes.com/jamaica/2009/10/old_lists.html">old lists</a></h4>
 
by <a href="http://blogmarks.net/user/blackgoldfish">blackgoldfish</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/inspiration">inspiration</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/paper%2Bcraft">paper craft</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/list-making">list-making</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058569249">Copy</a> | 
<a href="http://blogmarks.net/link/3398295">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/srcmax/mark/1058567557">
<title>Software is hard | Eventbug (alpha) Released</title>
<link>http://www.softwareishard.com/blog/firebug/eventbug-alpha-released/</link>
<description>&lt;blockquote&gt;
&lt;p&gt;This extension brings a new Events panel that lists all of the event handlers on the page grouped by event type. The panel also nicely integrates with other Firebug panels and allows to quickly find out, which HTML element is associated with specific event listener or see the Javascript source code.&lt;/p&gt;
&lt;/blockquote&gt;</description>
<dc:date>2009-10-30T09:12:57Z</dc:date>
<dc:author>srcmax</dc:author>
<dc:subject>javascript, extension, firebug, firefox, eventbug</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.softwareishard.com/blog/firebug/eventbug-alpha-released/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/30/0c50a57822a5683a0790b3d13e359dc5.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.softwareishard.com/blog/firebug/eventbug-alpha-released/">Software is hard | Eventbug (alpha) Released</a></h4>
 
by <a href="http://blogmarks.net/user/srcmax">srcmax</a> 
<div class="description"><blockquote>
<p>This extension brings a new Events panel that lists all of the event handlers on the page grouped by event type. The panel also nicely integrates with other Firebug panels and allows to quickly find out, which HTML element is associated with specific event listener or see the Javascript source code.</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/extension">extension</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firebug">firebug</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/eventbug">eventbug</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058567557">Copy</a> | 
<a href="http://blogmarks.net/link/3396890">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/dzc/mark/1058565773">
<title>Share Lists of Twitter Users | TweepML</title>
<link>http://tweepml.org/</link>
<description></description>
<dc:date>2009-10-28T15:20:01Z</dc:date>
<dc:author>dzc</dc:author>
<dc:subject>twitter, tweepML, micro-blogging, veille, km</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://tweepml.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/28/72564051638794641d6a8d79f021acef.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://tweepml.org/">Share Lists of Twitter Users | TweepML</a></h4>
 
by <a href="http://blogmarks.net/user/dzc">dzc</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3386232">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/twitter">twitter</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tweepML">tweepML</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/micro-blogging">micro-blogging</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/veille">veille</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/km">km</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058565773">Copy</a> | 
<a href="http://blogmarks.net/link/3386232">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/paulantoinem/mark/1058602817">
<title>10 Fascinating Recently Discovered Photographs - Listverse</title>
<link>http://envrac.posterous.com/10-fascinating-recently-discovered-photograph</link>
<description>Photo lists are my favorite to read and write about, so I’m always trying to think of new subject matter for a photo list that would complement the others on the site. Recently my brother disco ...</description>
<dc:date>2009-10-27T02:47:47Z</dc:date>
<dc:author>paulantoinem</dc:author>
<dc:subject></dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://envrac.posterous.com/10-fascinating-recently-discovered-photograph"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://envrac.posterous.com/10-fascinating-recently-discovered-photograph">10 Fascinating Recently Discovered Photographs - Listverse</a></h4>
 
by <a href="http://blogmarks.net/user/paulantoinem">paulantoinem</a> 
<p class="description">Photo lists are my favorite to read and write about, so I’m always trying to think of new subject matter for a photo list that would complement the others on the site. Recently my brother disco ...</p>
<p class="tags">
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058602817">Copy</a> | 
<a href="http://blogmarks.net/link/3424006">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mozkart/mark/1058564180">
<title>8 different ways to beautifully style your HTML lists with CSS</title>
<link>http://www.marcofolio.net/css/8_different_ways_to_beautifully_style_your_lists.html</link>
<description></description>
<dc:date>2009-10-26T23:56:45Z</dc:date>
<dc:author>mozkart</dc:author>
<dc:subject>css</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.marcofolio.net/css/8_different_ways_to_beautifully_style_your_lists.html"><img border="0" src="http://blogmarks.net/screenshots/2009/10/26/0b77d2c1c513e50daf36ad99cebc6194.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.marcofolio.net/css/8_different_ways_to_beautifully_style_your_lists.html">8 different ways to beautifully style your HTML lists with CSS</a></h4>
 
by <a href="http://blogmarks.net/user/mozkart">mozkart</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058564180">Copy</a> | 
<a href="http://blogmarks.net/link/3394250">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/blackgoldfish/mark/1058562198">
<title>lists i keep but do not write</title>
<link>http://papiervalise.typepad.com/scissor_variations/2009/10/lists-i-keep-but-do-not-write.html</link>
<description>{ my keeping lists: tea + checked out library book slips}</description>
<dc:date>2009-10-24T13:51:22Z</dc:date>
<dc:author>blackgoldfish</dc:author>
<dc:subject>somethingbeautiful, inspiration</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://papiervalise.typepad.com/scissor_variations/2009/10/lists-i-keep-but-do-not-write.html"><img border="0" src="http://blogmarks.net/screenshots/2009/10/24/30f2e41b16fd9df175c73a77a5a0c223.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://papiervalise.typepad.com/scissor_variations/2009/10/lists-i-keep-but-do-not-write.html">lists i keep but do not write</a></h4>
 
by <a href="http://blogmarks.net/user/blackgoldfish">blackgoldfish</a> 
<p class="description">{ my keeping lists: tea + checked out library book slips}</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/somethingbeautiful">somethingbeautiful</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/inspiration">inspiration</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058562198">Copy</a> | 
<a href="http://blogmarks.net/link/3392621">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/wabaus/mark/1058560305">
<title>How to Migrate to Linux</title>
<link>http://knol.google.com/k/ruben-rubio-rey/howto-migrate-to-linux/2zt8z36uq2soj/2#</link>
<description>Good Knol article on Linux migration (from Windows) with links to lists of Linux application equivalents for Windows applications</description>
<dc:date>2009-10-22T15:29:25Z</dc:date>
<dc:author>wabaus</dc:author>
<dc:subject>linux, switch, migrate, windows, applications, apps</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://knol.google.com/k/ruben-rubio-rey/howto-migrate-to-linux/2zt8z36uq2soj/2#"><img border="0" src="http://blogmarks.net/screenshots/2009/10/22/176b5bce784e5d0de4445d9d03706ada.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://knol.google.com/k/ruben-rubio-rey/howto-migrate-to-linux/2zt8z36uq2soj/2#">How to Migrate to Linux</a></h4>
 
by <a href="http://blogmarks.net/user/wabaus">wabaus</a> 
<p class="description">Good Knol article on Linux migration (from Windows) with links to lists of Linux application equivalents for Windows applications</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/linux">linux</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/switch">switch</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/migrate">migrate</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/windows">windows</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/applications">applications</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/apps">apps</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058560305">Copy</a> | 
<a href="http://blogmarks.net/link/3391011">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Spone/mark/1058547483">
<title>Portable Contacts</title>
<link>http://portablecontacts.net/</link>
<description>The vision for Portable Contacts has been around for a long time. Sites large and small share the goal of providing users a secure way to access their address books and friends lists without having to take their credentials or scrape their data. But only in recent weeks has it begun to feel that now is the right time to rally the community and the industry to work together to make this vision real by developing an open spec for exchange of contact info that everyone can embrace.</description>
<dc:date>2009-10-12T09:15:42Z</dc:date>
<dc:author>Spone</dc:author>
<dc:subject>spécification, contacts, Centralisation</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://portablecontacts.net/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/12/3279c9bcc72036c89a232249dbce3742.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://portablecontacts.net/">Portable Contacts</a></h4>
 
by <a href="http://blogmarks.net/user/Spone">Spone</a> 
<p class="description">The vision for Portable Contacts has been around for a long time. Sites large and small share the goal of providing users a secure way to access their address books and friends lists without having to take their credentials or scrape their data. But only in recent weeks has it begun to feel that now is the right time to rally the community and the industry to work together to make this vision real by developing an open spec for exchange of contact info that everyone can embrace.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sp%25C3%25A9cification">spécification</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/contacts">contacts</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Centralisation">Centralisation</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547483">Copy</a> | 
<a href="http://blogmarks.net/link/3381273">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Fulcanelli/mark/1058528167">
<title>30 Color Scheme Tools &amp; Websites for Designers | Lists | Tutorial Blog</title>
<link>http://tutorialblog.org/30-color-scheme-tools-websites-for-designers/</link>
<description></description>
<dc:date>2009-10-02T09:55:08Z</dc:date>
<dc:author>Fulcanelli</dc:author>
<dc:subject>tools, outils, couleur</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://tutorialblog.org/30-color-scheme-tools-websites-for-designers/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/02/b9701867a588dfdaf71c796efd4a414b.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://tutorialblog.org/30-color-scheme-tools-websites-for-designers/">30 Color Scheme Tools &amp; Websites for Designers | Lists | Tutorial Blog</a></h4>
 
by <a href="http://blogmarks.net/user/Fulcanelli">Fulcanelli</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/1653384">4 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tools">tools</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/outils">outils</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/couleur">couleur</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058528167">Copy</a> | 
<a href="http://blogmarks.net/link/1653384">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/m.meixide/mark/1058524547">
<title>Welcome to the LINGUIST List</title>
<link>http://linguistlist.org/</link>
<description>The LINGUIST List is dedicated to providing information on language and language analysis, and to providing the discipline of linguistics with the infrastructure necessary to function in the digital world. LINGUIST maintains a web-site with over 2000 pages and runs a mailing list with over 25,000 subscribers worldwide. LINGUIST also hosts searchable archives of over 100 other linguistic mailing lists and runs research projects which develop tools for the field, e.g., a peer-reviewed database of language and language-family information, and recommendations of best practice for digitizing endangered languages data.
LINGUIST is a free resource, run by linguistics professors and graduate students, and supported entirely by your donations.</description>
<dc:date>2009-09-30T23:59:18Z</dc:date>
<dc:author>m.meixide</dc:author>
<dc:subject>lingua</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://linguistlist.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/01/81ae117f933b7ee76a0647c530bfa2b4.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://linguistlist.org/">Welcome to the LINGUIST List</a></h4>
 
by <a href="http://blogmarks.net/user/m.meixide">m.meixide</a> 
<p class="description">The LINGUIST List is dedicated to providing information on language and language analysis, and to providing the discipline of linguistics with the infrastructure necessary to function in the digital world. LINGUIST maintains a web-site with over 2000 pages and runs a mailing list with over 25,000 subscribers worldwide. LINGUIST also hosts searchable archives of over 100 other linguistic mailing lists and runs research projects which develop tools for the field, e.g., a peer-reviewed database of language and language-family information, and recommendations of best practice for digitizing endangered languages data.
LINGUIST is a free resource, run by linguistics professors and graduate students, and supported entirely by your donations.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lingua">lingua</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058524547">Copy</a> | 
<a href="http://blogmarks.net/link/482402">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/shadoko/mark/1058512991">
<title>Guitar Hero Songs Lists - Guitar Hero World Tour List of Songs</title>
<link>http://www.guitarherosongs.co.uk/guitar-hero-song-lists.php?versionid=4</link>
<description></description>
<dc:date>2009-09-22T17:54:16Z</dc:date>
<dc:author>shadoko</dc:author>
<dc:subject>paroles, jeux vidéo, rock</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.guitarherosongs.co.uk/guitar-hero-song-lists.php?versionid=4"><img border="0" src="http://blogmarks.net/screenshots/2009/09/22/0c142e8d257470ab1bf6fc8c06f47689.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.guitarherosongs.co.uk/guitar-hero-song-lists.php?versionid=4">Guitar Hero Songs Lists - Guitar Hero World Tour List of Songs</a></h4>
 
by <a href="http://blogmarks.net/user/shadoko">shadoko</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/paroles">paroles</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/jeux%2Bvid%25C3%25A9o">jeux vidéo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/rock">rock</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058512991">Copy</a> | 
<a href="http://blogmarks.net/link/3350172">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/tadeufilippini/mark/1058503160">
<title>KPhotoAlbum : KphotoAlbum's manuals</title>
<link>http://kphotoalbum.org/index.php?page=documentation</link>
<description>Documentation

There are many great features. Many are really straightforward.

The good starting point is to look at this fast overview and to watch these videos

Unfortunately we have no up-to-date documentation. If you wish to help us don't hesitate to contact us at IRC or at mailing-lists</description>
<dc:date>2009-09-14T17:59:05Z</dc:date>
<dc:author>tadeufilippini</dc:author>
<dc:subject>graphics kde, kde graphics, kde photo, photo kde, graficos ubuntu, ubuntu graficos, photo album, album photo, graphics ubuntu, kde, ubuntu, graphics, photo, image, album, kphoto, kphotoalbum, ubuntu graphics</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://kphotoalbum.org/index.php?page=documentation"><img border="0" src="http://blogmarks.net/screenshots/2009/09/14/5ead104fdc1914bf6c564b52a074f94d.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://kphotoalbum.org/index.php?page=documentation">KPhotoAlbum : KphotoAlbum's manuals</a></h4>
 
by <a href="http://blogmarks.net/user/tadeufilippini">tadeufilippini</a> 
<p class="description">Documentation

There are many great features. Many are really straightforward.

The good starting point is to look at this fast overview and to watch these videos

Unfortunately we have no up-to-date documentation. If you wish to help us don't hesitate to contact us at IRC or at mailing-lists</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graphics%2Bkde">graphics kde</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/kde%2Bgraphics">kde graphics</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/kde%2Bphoto">kde photo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photo%2Bkde">photo kde</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graficos%2Bubuntu">graficos ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Bgraficos">ubuntu graficos</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photo%2Balbum">photo album</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/album%2Bphoto">album photo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graphics%2Bubuntu">graphics ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/kde">kde</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu">ubuntu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graphics">graphics</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photo">photo</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/album">album</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/kphoto">kphoto</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/kphotoalbum">kphotoalbum</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ubuntu%2Bgraphics">ubuntu graphics</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058503160">Copy</a> | 
<a href="http://blogmarks.net/link/3342444">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ycc2106/mark/1058596783">
<title>mozdev.org - reminderfox: index</title>
<link>http://reminderfox.mozdev.org/index.html</link>
<description>ReminderFox is an extension for Firefox and Thunderbird that displays and manages lists of date-based reminders and ToDo's.</description>
<dc:date>2009-09-13T18:18:20Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>extension, firefox, alert, reminder, todo, calendar</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://reminderfox.mozdev.org/index.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://reminderfox.mozdev.org/index.html">mozdev.org - reminderfox: index</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
<p class="description">ReminderFox is an extension for Firefox and Thunderbird that displays and manages lists of date-based reminders and ToDo's.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/extension">extension</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/alert">alert</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/reminder">reminder</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/todo">todo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/calendar">calendar</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058596783">Copy</a> | 
<a href="http://blogmarks.net/link/3420150">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/access2/mark/1058499816">
<title>Who Is Megan Casey ?</title>
<link>http://www.squidoo.com/Who-Is-Megan-Casey</link>
<description>It's so hard to keep up with tween phenomena these days. By the time the Internet Movie Database lists them they may already be passé I happened upon this newcomer quite by accident. She is apparently better known in Germany.

Follow Megan's meteoric rise to obscurity here, as she battle impossible situations and ridiculous odds.
</description>
<dc:date>2009-09-11T10:55:08Z</dc:date>
<dc:author>access2</dc:author>
<dc:subject>Megan Casey, Black Rose Castle</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.squidoo.com/Who-Is-Megan-Casey"><img border="0" src="http://blogmarks.net/screenshots/2009/09/11/17d729bad5d137238d0a95cad17bb6b8.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.squidoo.com/Who-Is-Megan-Casey">Who Is Megan Casey ?</a></h4>
 
by <a href="http://blogmarks.net/user/access2">access2</a> 
<p class="description">It's so hard to keep up with tween phenomena these days. By the time the Internet Movie Database lists them they may already be passé I happened upon this newcomer quite by accident. She is apparently better known in Germany.

Follow Megan's meteoric rise to obscurity here, as she battle impossible situations and ridiculous odds.
</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Megan%2BCasey">Megan Casey</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Black%2BRose%2BCastle">Black Rose Castle</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058499816">Copy</a> | 
<a href="http://blogmarks.net/link/3339786">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sbrothier/mark/1058497186">
<title>Tinychat - Free Chat Rooms &amp; audio video conferences</title>
<link>http://tinychat.com/</link>
<description>Video conferencing today is broken: typically requiring cumbersome downloads, logins, and endless contact lists, it too often becomes a service that is slow and unreliable. Enter tinychat. Tinychat delivers dead simple video conferences without the extraneous ad-ons and inconvenience, making video conferencing an accessible, uncomplicated experience. It works on Windows, Mac and Linux; with Firefox, IE, Safari, and Chrome; and there is a version available for iPhones.</description>
<dc:date>2009-09-08T17:47:09Z</dc:date>
<dc:author>sbrothier</dc:author>
<dc:subject>video, chat</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://tinychat.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/22/9d661cb28b324429db171e296ed4d789.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://tinychat.com/">Tinychat - Free Chat Rooms &amp; audio video conferences</a></h4>
 
by <a href="http://blogmarks.net/user/sbrothier">sbrothier</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3337744">2 other(s)</a> 
<p class="description">Video conferencing today is broken: typically requiring cumbersome downloads, logins, and endless contact lists, it too often becomes a service that is slow and unreliable. Enter tinychat. Tinychat delivers dead simple video conferences without the extraneous ad-ons and inconvenience, making video conferencing an accessible, uncomplicated experience. It works on Windows, Mac and Linux; with Firefox, IE, Safari, and Chrome; and there is a version available for iPhones.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/video">video</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/chat">chat</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058497186">Copy</a> | 
<a href="http://blogmarks.net/link/3337744">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/dzc/mark/1058497024">
<title>HowTo: OPML for Twitter subscription lists</title>
<link>http://rsscloud.org/twitterSubscriptionlists.html</link>
<description></description>
<dc:date>2009-09-08T13:36:27Z</dc:date>
<dc:author>dzc</dc:author>
<dc:subject>twitter, opml, export, following, rss, syndication</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://rsscloud.org/twitterSubscriptionlists.html"><img border="0" src="http://blogmarks.net/screenshots/2009/09/08/737c2443b9beeab4b0e9b830cb7d2c97.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://rsscloud.org/twitterSubscriptionlists.html">HowTo: OPML for Twitter subscription lists</a></h4>
 
by <a href="http://blogmarks.net/user/dzc">dzc</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/twitter">twitter</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/opml">opml</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/export">export</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/following">following</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/rss">rss</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syndication">syndication</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058497024">Copy</a> | 
<a href="http://blogmarks.net/link/3337603">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/decembre/mark/1058547789">
<title>ProxySel - Import proxy lists - Modules pour Firefox</title>
<link>https://addons.mozilla.org/fr/firefox/addon/4457</link>
<description>Import proxy lists in different formats, available from http://proxy-list.org/en/ or http://www.checkedproxylists.com/ or import Proxys from any webpage directly.</description>
<dc:date>2009-09-07T16:15:34Z</dc:date>
<dc:author>decembre</dc:author>
<dc:subject>extension, proxy, ip2, p2p, anonymat, anonymous, securite, security, firefox, tool, utilitaire, outil</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://addons.mozilla.org/fr/firefox/addon/4457"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://addons.mozilla.org/fr/firefox/addon/4457">ProxySel - Import proxy lists - Modules pour Firefox</a></h4>
 
by <a href="http://blogmarks.net/user/decembre">decembre</a> 
<p class="description">Import proxy lists in different formats, available from http://proxy-list.org/en/ or http://www.checkedproxylists.com/ or import Proxys from any webpage directly.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/extension">extension</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/proxy">proxy</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ip2">ip2</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/p2p">p2p</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/anonymat">anonymat</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/anonymous">anonymous</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/securite">securite</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/security">security</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/tool">tool</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/outil">outil</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547789">Copy</a> | 
<a href="http://blogmarks.net/link/3381528">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Fulcanelli/mark/1058469916">
<title>oobject - Daily User Ranked Gadget Lists</title>
<link>http://www.oobject.com/</link>
<description></description>
<dc:date>2009-08-17T14:46:30Z</dc:date>
<dc:author>Fulcanelli</dc:author>
<dc:subject>objets, gadgets</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.oobject.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/17/af286144c8bc5d5eaa3edc61f5ed1986.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.oobject.com/">oobject - Daily User Ranked Gadget Lists</a></h4>
 
by <a href="http://blogmarks.net/user/Fulcanelli">Fulcanelli</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2912826">2 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/objets">objets</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/gadgets">gadgets</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058469916">Copy</a> | 
<a href="http://blogmarks.net/link/2912826">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>