<?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/count">
<title>Public marks with search count</title>
<description>Public marks with search count</description>
<link>http://blogmarks.net/marks/search/count</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058625331"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058601925"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058596425"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058596552"/>
<rdf:li resource="http://blogmarks.net/api/user/night.kame/mark/1058469852"/>
<rdf:li resource="http://blogmarks.net/api/user/blackgoldfish/mark/1058436631"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058316000"/>
<rdf:li resource="http://blogmarks.net/api/user/br1o/mark/1058557118"/>
<rdf:li resource="http://blogmarks.net/api/user/xibe/mark/1058274813"/>
<rdf:li resource="http://blogmarks.net/api/user/marco/mark/1058242586"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058231663"/>
<rdf:li resource="http://blogmarks.net/api/user/greut/mark/1058212229"/>
<rdf:li resource="http://blogmarks.net/api/user/sbrothier/mark/1058210548"/>
<rdf:li resource="http://blogmarks.net/api/user/misspo/mark/1058206547"/>
<rdf:li resource="http://blogmarks.net/api/user/jallatte/mark/1058183263"/>
<rdf:li resource="http://blogmarks.net/api/user/vrossign/mark/1058183210"/>
<rdf:li resource="http://blogmarks.net/api/user/decembre/mark/1058205943"/>
<rdf:li resource="http://blogmarks.net/api/user/m.meixide/mark/1058162176"/>
<rdf:li resource="http://blogmarks.net/api/user/katagena74/mark/1057957031"/>
<rdf:li resource="http://blogmarks.net/api/user/cruz/mark/1057952529"/>
<rdf:li resource="http://blogmarks.net/api/user/dav/mark/1057952307"/>
<rdf:li resource="http://blogmarks.net/api/user/ycc2106/mark/1058597983"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1057741583"/>
<rdf:li resource="http://blogmarks.net/api/user/ms_michel/mark/1057676188"/>
<rdf:li resource="http://blogmarks.net/api/user/jean-gael/mark/1057660947"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058625331">
<title>Robert Harder » Stream iTunes over SSH</title>
<link>http://blog.iharder.net/2009/09/28/itunes-stream-itunes-over-ssh/</link>
<description>&lt;blockquote&gt;&lt;p&gt;how to stream iTunes over SSH, I finally tracked down the difficult bits myself and put together a four-line script (five if you count “shebang”):&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-12-19T12:13:08Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>itunes, ssh</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://blog.iharder.net/2009/09/28/itunes-stream-itunes-over-ssh/"><img border="0" src="http://blogmarks.net/screenshots/2009/12/19/2bb5895a51d29eee467988404b00c068.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://blog.iharder.net/2009/09/28/itunes-stream-itunes-over-ssh/">Robert Harder » Stream iTunes over SSH</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>how to stream iTunes over SSH, I finally tracked down the difficult bits myself and put together a four-line script (five if you count “shebang”):</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/itunes">itunes</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ssh">ssh</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058625331">Copy</a> | 
<a href="http://blogmarks.net/link/3443095">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/1058596425">
<title>Tagaholic - Github Bookmarklet For User Pages</title>
<link>http://tagaholic.me/2009/04/06/github-bookmarklet-for-user-pages.html</link>
<description>adds sort box, you can now sort a user’s repositories by name, fork count, watchers count, or last updated date in ascending or descending order!</description>
<dc:date>2009-10-25T09:01:09Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>github, bookmarklet</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://tagaholic.me/2009/04/06/github-bookmarklet-for-user-pages.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://tagaholic.me/2009/04/06/github-bookmarklet-for-user-pages.html">Tagaholic - Github Bookmarklet For User Pages</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
<p class="description">adds sort box, you can now sort a user’s repositories by name, fork count, watchers count, or last updated date in ascending or descending order!</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/github">github</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bookmarklet">bookmarklet</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058596425">Copy</a> | 
<a href="http://blogmarks.net/link/3419905">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ycc2106/mark/1058596552">
<title>Amplicate - Making Your Opinion Count</title>
<link>http://amplicate.com/</link>
<description>Amplicate collects similar opinions in one place</description>
<dc:date>2009-10-13T07:54:38Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>opinion, twitter, socialsoftware, trends</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://amplicate.com/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://amplicate.com/">Amplicate - Making Your Opinion Count</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
<p class="description">Amplicate collects similar opinions in one place</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/opinion">opinion</a>
<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/socialsoftware">socialsoftware</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/trends">trends</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058596552">Copy</a> | 
<a href="http://blogmarks.net/link/3419990">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/night.kame/mark/1058469852">
<title>Daring Fireball Linked List: Gmail Passes AOL to Capture Third-Place in Web Mail</title>
<link>http://daringfireball.net/linked/2009/08/16/gmail</link>
<description>&lt;blockquote&gt;&lt;p&gt;Many of my friends — technically knowledgeable, demanding email users — use and love Gmail. None of them use Hotmail or Yahoo Mail. Raw user count is the wrong metric; Gmail has already won.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Moi aussi j'utilise Gmail, tous mes abonnements aux mailing-lists et les inscriptions aux sites avec peu de valeur ajoutée. Etant donné que Gmail ne permet pas de trier ces mails, et qu'il est sujet aux faux positifs dans le filtrage des spams, c'est à peu près tout ce qu'on peut lui confier de sérieux.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Google is like Apple in this way. It starts by taking over the premium end of a market.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Bien d'accord, Google a pris le premium des boîtes mail poubelle. Je n'utilise plus jetable.org ni mailinator.com : Gmail fournit un service identique.&lt;/p&gt;</description>
<dc:date>2009-08-17T12:26:52Z</dc:date>
<dc:author>night.kame</dc:author>
<dc:subject>google, mail</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://daringfireball.net/linked/2009/08/16/gmail"><img border="0" src="http://blogmarks.net/screenshots/2009/08/17/2b2da7a5ec97fd873baf23dedb690d22.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://daringfireball.net/linked/2009/08/16/gmail">Daring Fireball Linked List: Gmail Passes AOL to Capture Third-Place in Web Mail</a></h4>
 
by <a href="http://blogmarks.net/user/night.kame">night.kame</a> 
<div class="description"><blockquote><p>Many of my friends — technically knowledgeable, demanding email users — use and love Gmail. None of them use Hotmail or Yahoo Mail. Raw user count is the wrong metric; Gmail has already won.</p></blockquote>
<p>Moi aussi j'utilise Gmail, tous mes abonnements aux mailing-lists et les inscriptions aux sites avec peu de valeur ajoutée. Etant donné que Gmail ne permet pas de trier ces mails, et qu'il est sujet aux faux positifs dans le filtrage des spams, c'est à peu près tout ce qu'on peut lui confier de sérieux.</p>
<blockquote><p>Google is like Apple in this way. It starts by taking over the premium end of a market.</p></blockquote>
<p>Bien d'accord, Google a pris le premium des boîtes mail poubelle. Je n'utilise plus jetable.org ni mailinator.com : Gmail fournit un service identique.</p></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/google">google</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mail">mail</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058469852">Copy</a> | 
<a href="http://blogmarks.net/link/3317408">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/blackgoldfish/mark/1058436631">
<title>Be Still.</title>
<link>http://zenhabits.net/2009/07/be-still/</link>
<description>We are always on, always connected, always thinking, always talking. There is no time for stillness — and sitting in front of a frenetic computer all day, and then in front of the hyperactive television, doesn’t count as stillness.

This comes at a cost: we lose that time for contemplation, for observing and listening. We lose peace.</description>
<dc:date>2009-07-21T05:12:46Z</dc:date>
<dc:author>blackgoldfish</dc:author>
<dc:subject>quote, inspiration, 生活態度</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://zenhabits.net/2009/07/be-still/"><img border="0" src="http://blogmarks.net/screenshots/2009/07/21/c87dee6a1cae87f12d44411819d994b4.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://zenhabits.net/2009/07/be-still/">Be Still.</a></h4>
 
by <a href="http://blogmarks.net/user/blackgoldfish">blackgoldfish</a> 
<p class="description">We are always on, always connected, always thinking, always talking. There is no time for stillness — and sitting in front of a frenetic computer all day, and then in front of the hyperactive television, doesn’t count as stillness.

This comes at a cost: we lose that time for contemplation, for observing and listening. We lose peace.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/quote">quote</a>
<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/%25E7%2594%259F%25E6%25B4%25BB%25E6%2585%258B%25E5%25BA%25A6">生活態度</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058436631">Copy</a> | 
<a href="http://blogmarks.net/link/3291177">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058316000">
<title>twitter-xchat</title>
<link>http://impressive.net/people/gerald/2009/05/xchat-inputcount.pl</link>
<description>&lt;blockquote&gt;&lt;p&gt;xchat-inputcount.pl: add a character count next to xchat's input box. # (useful when twittering, to see if you are within 140 characters)&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-05-08T00:23:18Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>perl, twitter</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://impressive.net/people/gerald/2009/05/xchat-inputcount.pl"><img border="0" src="http://blogmarks.net/screenshots/2009/05/08/a1cc9ab74c5684d8850f61d97741b0f4.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://impressive.net/people/gerald/2009/05/xchat-inputcount.pl">twitter-xchat</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>xchat-inputcount.pl: add a character count next to xchat's input box. # (useful when twittering, to see if you are within 140 characters)</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/perl">perl</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/twitter">twitter</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058316000">Copy</a> | 
<a href="http://blogmarks.net/link/3189635">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/br1o/mark/1058557118">
<title>Simple JS script for faking automatic CSS columns in webpages (column-count)</title>
<link>http://csscripting.com/css-multi-column/</link>
<description></description>
<dc:date>2009-05-06T22:11:08Z</dc:date>
<dc:author>br1o</dc:author>
<dc:subject>columns, script, javascript, js, css, colonnes</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://csscripting.com/css-multi-column/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://csscripting.com/css-multi-column/">Simple JS script for faking automatic CSS columns in webpages (column-count)</a></h4>
 
by <a href="http://blogmarks.net/user/br1o">br1o</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/columns">columns</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/script">script</a>
<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/js">js</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/colonnes">colonnes</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058557118">Copy</a> | 
<a href="http://blogmarks.net/link/3389351">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/xibe/mark/1058274813">
<title>The 100 Most Iconic Internet Videos [Full List] - Urlesque - Internet Trends, Viral Videos, Memes and Web Culture</title>
<link>http://www.urlesque.com/2009/04/07/the-100-most-iconic-internet-videos/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Join Urlesque as we count down our picks for the top 100 viral videos that made the Internet such a wonderful place. These are the clips that make us laugh the most, inspired future videos, or even changed the web as we know it.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-04-14T13:00:11Z</dc:date>
<dc:author>xibe</dc:author>
<dc:subject>web, internet, video, meme, liste</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.urlesque.com/2009/04/07/the-100-most-iconic-internet-videos/"><img border="0" src="http://blogmarks.net/screenshots/2009/04/14/eeb238bb3ba439811ac8967a58915857.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.urlesque.com/2009/04/07/the-100-most-iconic-internet-videos/">The 100 Most Iconic Internet Videos [Full List] - Urlesque - Internet Trends, Viral Videos, Memes and Web Culture</a></h4>
 
by <a href="http://blogmarks.net/user/xibe">xibe</a> 
<div class="description"><blockquote><p>Join Urlesque as we count down our picks for the top 100 viral videos that made the Internet such a wonderful place. These are the clips that make us laugh the most, inspired future videos, or even changed the web as we know it.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/web">web</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/internet">internet</a>
<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/meme">meme</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/liste">liste</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058274813">Copy</a> | 
<a href="http://blogmarks.net/link/3156722">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/marco/mark/1058242586">
<title>When You Can't Count On Your Numbers</title>
<link>http://yuiblog.com/blog/2009/03/10/when-you-cant-count-on-your-numbers/</link>
<description>Every floating point operation can potentially accumulate some noise</description>
<dc:date>2009-03-17T09:39:29Z</dc:date>
<dc:author>marco</dc:author>
<dc:subject>javascript</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://yuiblog.com/blog/2009/03/10/when-you-cant-count-on-your-numbers/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://yuiblog.com/blog/2009/03/10/when-you-cant-count-on-your-numbers/">When You Can't Count On Your Numbers</a></h4>
 
by <a href="http://blogmarks.net/user/marco">marco</a> 
<p class="description">Every floating point operation can potentially accumulate some noise</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/javascript">javascript</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058242586">Copy</a> | 
<a href="http://blogmarks.net/link/3128776">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058231663">
<title>S is for Semantics: MIN and MAX in SPARQL</title>
<link>http://dallemang.typepad.com/my_weblog/2007/09/min-and-max-in-.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;It is a bit embarassing when I teach SPARQL to someone with a background in SQL.  Once they figure out how it works, they start to appreciate it as a powerful language for representing just what information you want from a graph.  Then they start asking about some of the commonly used query operations from SQL - things like aggregators and grouping operations like COUNT, SUM, MAX, MIN and AVG.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-03-08T03:04:19Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>SPARQL</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://dallemang.typepad.com/my_weblog/2007/09/min-and-max-in-.html"><img border="0" src="http://blogmarks.net/screenshots/2009/03/08/5c870229f9efb4b5affbf60689ba2ef6.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://dallemang.typepad.com/my_weblog/2007/09/min-and-max-in-.html">S is for Semantics: MIN and MAX in SPARQL</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>It is a bit embarassing when I teach SPARQL to someone with a background in SQL.  Once they figure out how it works, they start to appreciate it as a powerful language for representing just what information you want from a graph.  Then they start asking about some of the commonly used query operations from SQL - things like aggregators and grouping operations like COUNT, SUM, MAX, MIN and AVG.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/SPARQL">SPARQL</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058231663">Copy</a> | 
<a href="http://blogmarks.net/link/3119148">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/greut/mark/1058212229">
<title>A List Apart: Articles: Filling Your Dance Card in Hard Economic Times</title>
<link>http://alistapart.com/articles/fillingyourdancecard</link>
<description>&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Step seven: find the love&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
Ask yourself: do I want to work here? You’d be surprised how clearly job indifference shows. A lack of interest begets a lack of action and initiative. A lack of action and initiative means that your colleagues are less inclined to count on you, and worse, will do your tasks themselves rather than enlisting your help. This puts unnecessary pressure on them and maximizes the chance for error.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;it's time to find the love yes or to make it happen&lt;/p&gt;</description>
<dc:date>2009-02-17T15:41:45Z</dc:date>
<dc:author>greut</dc:author>
<dc:subject>work, job, love</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://alistapart.com/articles/fillingyourdancecard"><img border="0" src="http://blogmarks.net/screenshots/2009/02/17/57cebaf303a98880fd41f75cf6aa4229.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://alistapart.com/articles/fillingyourdancecard">A List Apart: Articles: Filling Your Dance Card in Hard Economic Times</a></h4>
 
by <a href="http://blogmarks.net/user/greut">greut</a> 
<div class="description"><blockquote><p><strong>Step seven: find the love</strong></p>
<p>
Ask yourself: do I want to work here? You’d be surprised how clearly job indifference shows. A lack of interest begets a lack of action and initiative. A lack of action and initiative means that your colleagues are less inclined to count on you, and worse, will do your tasks themselves rather than enlisting your help. This puts unnecessary pressure on them and maximizes the chance for error.</p></blockquote><p>it's time to find the love yes or to make it happen</p></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/work">work</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/job">job</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/love">love</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058212229">Copy</a> | 
<a href="http://blogmarks.net/link/3102434">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sbrothier/mark/1058210548">
<title>Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</title>
<link>http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html</link>
<description>Circles are sized by the number of medals that countries won in summer Olympic Games. Use the slider to view past Olympics, or click on a country to display a list of its medal winners.</description>
<dc:date>2009-02-16T08:58:32Z</dc:date>
<dc:author>sbrothier</dc:author>
<dc:subject>timeline, sports</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/27/3694dc8c12f4dc5c7bf9f6df5aba783e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html">Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</a></h4>
 
by <a href="http://blogmarks.net/user/sbrothier">sbrothier</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2858976">5 other(s)</a> 
<p class="description">Circles are sized by the number of medals that countries won in summer Olympic Games. Use the slider to view past Olympics, or click on a country to display a list of its medal winners.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/timeline">timeline</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sports">sports</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058210548">Copy</a> | 
<a href="http://blogmarks.net/link/2858976">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/misspo/mark/1058206547">
<title>Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</title>
<link>http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html</link>
<description></description>
<dc:date>2009-02-12T14:58:08Z</dc:date>
<dc:author>misspo</dc:author>
<dc:subject>flash, graphic_information, timeline</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/27/3694dc8c12f4dc5c7bf9f6df5aba783e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html">Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</a></h4>
 
by <a href="http://blogmarks.net/user/misspo">misspo</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2858976">5 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/flash">flash</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graphic_information">graphic_information</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/timeline">timeline</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058206547">Copy</a> | 
<a href="http://blogmarks.net/link/2858976">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jallatte/mark/1058183263">
<title>How To Display Feed Count For Google FeedProxy In Text » Loon Design</title>
<link>http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/</link>
<description></description>
<dc:date>2009-02-05T09:52:28Z</dc:date>
<dc:author>jallatte</dc:author>
<dc:subject>google, feed, rss, gmail</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/"><img border="0" src="http://blogmarks.net/screenshots/2009/02/05/7678c0d05553989a98a9bf0bc18ad484.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/">How To Display Feed Count For Google FeedProxy In Text » Loon Design</a></h4>
 
by <a href="http://blogmarks.net/user/jallatte">jallatte</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3075935">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/google">google</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/feed">feed</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/gmail">gmail</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058183263">Copy</a> | 
<a href="http://blogmarks.net/link/3075935">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/vrossign/mark/1058183210">
<title>How To Display Feed Count For Google FeedProxy In Text » Loon Design</title>
<link>http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/</link>
<description></description>
<dc:date>2009-02-05T09:10:16Z</dc:date>
<dc:author>vrossign</dc:author>
<dc:subject>google, feed, rss, feedproxy</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/"><img border="0" src="http://blogmarks.net/screenshots/2009/02/05/7678c0d05553989a98a9bf0bc18ad484.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://kailoon.com/how-to-display-feed-counter-in-text-for-feedproxy-google/">How To Display Feed Count For Google FeedProxy In Text » Loon Design</a></h4>
 
by <a href="http://blogmarks.net/user/vrossign">vrossign</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3075935">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/google">google</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/feed">feed</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/feedproxy">feedproxy</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058183210">Copy</a> | 
<a href="http://blogmarks.net/link/3075935">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/decembre/mark/1058205943">
<title>Web Beacons : Learn about your ability to opt-out of interest-matched advertising served by Yahoo!.___Op-PUT Forme : Garder son ordinateur hors Yahoo et Partners Adds , Sortez Couvert !</title>
<link>http://info.yahoo.com/privacy/us/yahoo/webbeacons/</link>
<description>Prefer not to receive advertising based on your interests? Learn about your ability to opt-out of interest-matched advertising served by Yahoo!. Web pages may contain an electronic file called a web beacon, that allows a web site to count users who have visited that page or to access certain cookies. Yahoo! uses web beacons in the following ways:</description>
<dc:date>2009-01-16T17:34:42Z</dc:date>
<dc:author>decembre</dc:author>
<dc:subject>ads, privacy, publicite, web, yahoo, internet, web2.0, FlickrSurf+, anonymat, security</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://info.yahoo.com/privacy/us/yahoo/webbeacons/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://info.yahoo.com/privacy/us/yahoo/webbeacons/">Web Beacons : Learn about your ability to opt-out of interest-matched advertising served by Yahoo!.___Op-PUT Forme : Garder son ordinateur hors Yahoo et Partners Adds , Sortez Couvert !</a></h4>
 
by <a href="http://blogmarks.net/user/decembre">decembre</a> 
<p class="description">Prefer not to receive advertising based on your interests? Learn about your ability to opt-out of interest-matched advertising served by Yahoo!. Web pages may contain an electronic file called a web beacon, that allows a web site to count users who have visited that page or to access certain cookies. Yahoo! uses web beacons in the following ways:</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ads">ads</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/privacy">privacy</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/publicite">publicite</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/web">web</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/yahoo">yahoo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/internet">internet</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/web2.0">web2.0</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/FlickrSurf%252B">FlickrSurf+</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/security">security</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058205943">Copy</a> | 
<a href="http://blogmarks.net/link/3097004">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/m.meixide/mark/1058162176">
<title>Census of Marine Life | Making Ocean Life Count</title>
<link>http://www.coml.org/</link>
<description></description>
<dc:date>2009-01-16T11:16:42Z</dc:date>
<dc:author>m.meixide</dc:author>
<dc:subject>peixe</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.coml.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/01/16/09a16d938ff1fe4b9eed135651f4524d.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.coml.org/">Census of Marine Life | Making Ocean Life Count</a></h4>
 
by <a href="http://blogmarks.net/user/m.meixide">m.meixide</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/peixe">peixe</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058162176">Copy</a> | 
<a href="http://blogmarks.net/link/3059285">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/katagena74/mark/1057957031">
<title>Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</title>
<link>http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html</link>
<description>Listes des médailles obtenues aux jeux olympiques, dans chaque sport et pour chaque pays.</description>
<dc:date>2008-08-22T08:52:00Z</dc:date>
<dc:author>katagena74</dc:author>
<dc:subject>sport, loisir</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/27/3694dc8c12f4dc5c7bf9f6df5aba783e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html">Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</a></h4>
 
by <a href="http://blogmarks.net/user/katagena74">katagena74</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2858976">5 other(s)</a> 
<p class="description">Listes des médailles obtenues aux jeux olympiques, dans chaque sport et pour chaque pays.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sport">sport</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/loisir">loisir</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057957031">Copy</a> | 
<a href="http://blogmarks.net/link/2858976">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/cruz/mark/1057952529">
<title>Top 10 Stinky Cheeses in the World</title>
<link>http://blog.hotelclub.com/top-10-stinky-cheeses/</link>
<description>&quot;There are many types of stinky cheeses in the world and they all smell so bad that they make your dirty socks smell like expensive cologne. So picking the smelliest ones was no easy feat, but we’ve done it, so put on your gas-masks as we count down the top 10.&quot;</description>
<dc:date>2008-08-18T21:49:29Z</dc:date>
<dc:author>cruz</dc:author>
<dc:subject>fromage, Anglais, americain, nimp</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://blog.hotelclub.com/top-10-stinky-cheeses/"><img border="0" src="http://blogmarks.net/screenshots/2008/08/18/d14796e032273b6005dc5a03943f304e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://blog.hotelclub.com/top-10-stinky-cheeses/">Top 10 Stinky Cheeses in the World</a></h4>
 
by <a href="http://blogmarks.net/user/cruz">cruz</a> 
<p class="description">"There are many types of stinky cheeses in the world and they all smell so bad that they make your dirty socks smell like expensive cologne. So picking the smelliest ones was no easy feat, but we’ve done it, so put on your gas-masks as we count down the top 10."</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/fromage">fromage</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Anglais">Anglais</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/americain">americain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/nimp">nimp</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057952529">Copy</a> | 
<a href="http://blogmarks.net/link/2871935">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/dav/mark/1057952307">
<title>Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</title>
<link>http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html</link>
<description></description>
<dc:date>2008-08-18T15:48:37Z</dc:date>
<dc:author>dav</dc:author>
<dc:subject>flash, jo</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html"><img border="0" src="http://blogmarks.net/screenshots/2009/11/27/3694dc8c12f4dc5c7bf9f6df5aba783e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nytimes.com/interactive/2008/08/04/sports/olympics/20080804_MEDALCOUNT_MAP.html">Olympic Medal Count Map - 2008 Beijing Olympics - Interactive Graphic - NYTimes.com</a></h4>
 
by <a href="http://blogmarks.net/user/dav">dav</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2858976">5 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/flash">flash</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/jo">jo</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057952307">Copy</a> | 
<a href="http://blogmarks.net/link/2858976">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ycc2106/mark/1058597983">
<title>yWriter4 - word processor for authors</title>
<link>http://www.spacejock.com/yWriter4.html</link>
<description>Features: Organise your novel using a 'project'. Add chapters to the project. Add scenes, characters, items and locations. Display the word count for every file in the project, along with a total. Saves a log file every day, showing words per file an</description>
<dc:date>2008-03-21T10:56:32Z</dc:date>
<dc:author>ycc2106</dc:author>
<dc:subject>freeware, software, mswindows, books, writing, editor, portable</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.spacejock.com/yWriter4.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.spacejock.com/yWriter4.html">yWriter4 - word processor for authors</a></h4>
 
by <a href="http://blogmarks.net/user/ycc2106">ycc2106</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2813247">1 other(s)</a> 
<p class="description">Features: Organise your novel using a 'project'. Add chapters to the project. Add scenes, characters, items and locations. Display the word count for every file in the project, along with a total. Saves a log file every day, showing words per file an</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/freeware">freeware</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/software">software</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mswindows">mswindows</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/books">books</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/writing">writing</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/editor">editor</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/portable">portable</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058597983">Copy</a> | 
<a href="http://blogmarks.net/link/2813247">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1057741583">
<title>Community Life Cycle</title>
<link>http://c2.com/cgi/wiki?CommunityLifeCycle</link>
<description>&lt;blockquote&gt;&lt;p&gt;The Golden Age, when you could always count on interesting interchanges, most of the personalities are familiar but there are enough new faces for things to be interesting. During this phase the software achieves a relatively stable form, the unwritten rules are written down so that they need not be explained and re-explained, it's a period of growth and discovery.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2008-03-18T02:31:03Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>societé</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://c2.com/cgi/wiki?CommunityLifeCycle"><img border="0" src="http://blogmarks.net/screenshots/2008/03/18/d68a785592b6bacd04446ab99c428083.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://c2.com/cgi/wiki?CommunityLifeCycle">Community Life Cycle</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>The Golden Age, when you could always count on interesting interchanges, most of the personalities are familiar but there are enough new faces for things to be interesting. During this phase the software achieves a relatively stable form, the unwritten rules are written down so that they need not be explained and re-explained, it's a period of growth and discovery.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/societ%25C3%25A9">societé</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057741583">Copy</a> | 
<a href="http://blogmarks.net/link/2706774">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ms_michel/mark/1057676188">
<title>Achieving Code Symmetry</title>
<link>http://aspnetresources.com/blog/achieving_code_symmetry.aspx</link>
<description>De : &quot;void process () {  input ();  count++;  output (); }&quot;
A : void process() {  input ();  tally ();  output (); }</description>
<dc:date>2008-01-29T06:40:20Z</dc:date>
<dc:author>ms_michel</dc:author>
<dc:subject>developpement</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://aspnetresources.com/blog/achieving_code_symmetry.aspx"><img border="0" src="http://blogmarks.net/screenshots/2008/01/29/c3214de83627f36b5c0c2a968f96165b.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://aspnetresources.com/blog/achieving_code_symmetry.aspx">Achieving Code Symmetry</a></h4>
 
by <a href="http://blogmarks.net/user/ms_michel">ms_michel</a> 
<p class="description">De : "void process () {  input ();  count++;  output (); }"
A : void process() {  input ();  tally ();  output (); }</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/developpement">developpement</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057676188">Copy</a> | 
<a href="http://blogmarks.net/link/2650867">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jean-gael/mark/1057660947">
<title>dnsblcount - Count RBL Rejections in Postix Log</title>
<link>http://www.joreybump.com/code/dnsblcount/index.html</link>
<description>dnsblcount</description>
<dc:date>2008-01-18T08:33:27Z</dc:date>
<dc:author>jean-gael</dc:author>
<dc:subject>linux, mail</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.joreybump.com/code/dnsblcount/index.html"><img border="0" src="http://blogmarks.net/screenshots/2008/01/18/f7b3b37511c49a5a5d2abf6e9b2bf1d4.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.joreybump.com/code/dnsblcount/index.html">dnsblcount - Count RBL Rejections in Postix Log</a></h4>
 
by <a href="http://blogmarks.net/user/jean-gael">jean-gael</a> 
<p class="description">dnsblcount</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/mail">mail</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057660947">Copy</a> | 
<a href="http://blogmarks.net/link/2637456">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>