<?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/brad">
<title>Public marks with search brad</title>
<description>Public marks with search brad</description>
<link>http://blogmarks.net/marks/search/brad</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/oseres/mark/1058563800"/>
<rdf:li resource="http://blogmarks.net/api/user/tadeufilippini/mark/1058563501"/>
<rdf:li resource="http://blogmarks.net/api/user/mozkart/mark/1058521294"/>
<rdf:li resource="http://blogmarks.net/api/user/touristic/mark/1058499767"/>
<rdf:li resource="http://blogmarks.net/api/user/ERSWeb/mark/1058297373"/>
<rdf:li resource="http://blogmarks.net/api/user/ronpish/mark/1058207660"/>
<rdf:li resource="http://blogmarks.net/api/user/holyver/mark/1058075834"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058075652"/>
<rdf:li resource="http://blogmarks.net/api/user/calicoba/mark/1058072446"/>
<rdf:li resource="http://blogmarks.net/api/user/znarf/mark/1058043578"/>
<rdf:li resource="http://blogmarks.net/api/user/smartkit/mark/1057881157"/>
<rdf:li resource="http://blogmarks.net/api/user/Madhu/mark/1057822640"/>
<rdf:li resource="http://blogmarks.net/api/user/jey/mark/1058545714"/>
<rdf:li resource="http://blogmarks.net/api/user/springnet/mark/1057900219"/>
<rdf:li resource="http://blogmarks.net/api/user/jey/mark/1058545808"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1057685984"/>
<rdf:li resource="http://blogmarks.net/api/user/ERSWeb/mark/1057644447"/>
<rdf:li resource="http://blogmarks.net/api/user/ERSWeb/mark/1057639260"/>
<rdf:li resource="http://blogmarks.net/api/user/globeing/mark/1057795378"/>
<rdf:li resource="http://blogmarks.net/api/user/sbrothier/mark/1057477124"/>
<rdf:li resource="http://blogmarks.net/api/user/rwatuny/mark/1057468056"/>
<rdf:li resource="http://blogmarks.net/api/user/znarf/mark/1057388654"/>
<rdf:li resource="http://blogmarks.net/api/user/Desperate Zombie/mark/1057371689"/>
<rdf:li resource="http://blogmarks.net/api/user/arkandis/mark/1057655187"/>
<rdf:li resource="http://blogmarks.net/api/user/pmdm/mark/1057338099"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/oseres/mark/1058563800">
<title>Creating Offline Web Applicat...</title>
<link>http://docs.google.com/View?docid=dhkhksk4_8gdp9gr#sync</link>
<description>Creating Offline Web Applications With Dojo Offline

by Brad Neuberg (SitePen), September 23rd, 2007

This tutorial steps you through creating offline web applications using Dojo Offline.
What is Dojo Offline?

Dojo Offline is an open-source toolkit that makes it easy to create sophisticated, offline web applications. It sits on top of Google Gears, a plugin from Google that helps extend web browsers with new functionality. Dojo Offline makes working with Google Gears easier; extends it with important functionality; creates a higher-level API than Google Gears provides; and exposes developer productivity features. In particular, Dojo Offline provides the following functionality:

An offline widget that you can easily embed in your web page with just a few lines of code, automatically providing the user with network feedback, sync messages, offline instructions, and more
A sync framework to help you store actions done while offline and sync them with a server once back on the network
Automatic network and application-availability detection to determine when your application is on- or off-line so that you can take appropriate action
A slurp() method that automatically scans the page and figures out all the resources that you need offline, including images, stylesheets, scripts, etc.; this is much easier than having to manually maintain which resources should be available offline, especially during development.
Dojo Storage, an easy to use hashtable abstraction for storing offline data for when you don't need the heaviness of Google Gear's SQL abstraction; under the covers Dojo Storage saves its data into Google Gears
Dojo SQL, an easy to use SQL layer that executes SQL statements and returns them as ordinary JavaScript objects
New ENCRYPT() and DECRYPT() SQL keywords that you can mix in when using Dojo SQL, to get transparent cryptography for columns of data. Cryptography is done on a Google Worker Pool thread, so that the browser UI is responsive.
Integration with the rest of Dojo, such as the Dojo Event system
</description>
<dc:date>2009-10-26T12:18:18Z</dc:date>
<dc:author>oseres</dc:author>
<dc:subject>web, google, storage, plugin, browser, sync</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://docs.google.com/View?docid=dhkhksk4_8gdp9gr#sync"><img border="0" src="http://blogmarks.net/screenshots/2009/10/26/6ec0d965b36551c86f02ff03c5f5594a.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://docs.google.com/View?docid=dhkhksk4_8gdp9gr#sync">Creating Offline Web Applicat...</a></h4>
 
by <a href="http://blogmarks.net/user/oseres">oseres</a> 
<p class="description">Creating Offline Web Applications With Dojo Offline

by Brad Neuberg (SitePen), September 23rd, 2007

This tutorial steps you through creating offline web applications using Dojo Offline.
What is Dojo Offline?

Dojo Offline is an open-source toolkit that makes it easy to create sophisticated, offline web applications. It sits on top of Google Gears, a plugin from Google that helps extend web browsers with new functionality. Dojo Offline makes working with Google Gears easier; extends it with important functionality; creates a higher-level API than Google Gears provides; and exposes developer productivity features. In particular, Dojo Offline provides the following functionality:

An offline widget that you can easily embed in your web page with just a few lines of code, automatically providing the user with network feedback, sync messages, offline instructions, and more
A sync framework to help you store actions done while offline and sync them with a server once back on the network
Automatic network and application-availability detection to determine when your application is on- or off-line so that you can take appropriate action
A slurp() method that automatically scans the page and figures out all the resources that you need offline, including images, stylesheets, scripts, etc.; this is much easier than having to manually maintain which resources should be available offline, especially during development.
Dojo Storage, an easy to use hashtable abstraction for storing offline data for when you don't need the heaviness of Google Gear's SQL abstraction; under the covers Dojo Storage saves its data into Google Gears
Dojo SQL, an easy to use SQL layer that executes SQL statements and returns them as ordinary JavaScript objects
New ENCRYPT() and DECRYPT() SQL keywords that you can mix in when using Dojo SQL, to get transparent cryptography for columns of data. Cryptography is done on a Google Worker Pool thread, so that the browser UI is responsive.
Integration with the rest of Dojo, such as the Dojo Event system
</p>
<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/google">google</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/storage">storage</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/plugin">plugin</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/browser">browser</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sync">sync</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058563800">Copy</a> | 
<a href="http://blogmarks.net/link/3393947">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/tadeufilippini/mark/1058563501">
<title>Welcome to eBook Mountain</title>
<link>http://www.ebookmountain.com/</link>
<description>Brad Callens PPC Web Spy

Secretly Spy On &amp; Uncover Anyones Google-Adword Keywords While You Browse Google In Real-Time! Download This Revolutionary New Keyword Research Tool for FREE!

Click Here to find out more &gt;&gt;
	

	

Maverick Money Makers

&quot;This System Makes Me At Least $110,324 Per Month And You Can Start Using It 15 Minutes From Now&quot;... &quot;Guaranteed to work even if you're &quot;un-motivated&quot;... In fact, it's best if you only put in an hour or so per day!&quot;

&lt;&lt; Click Here to find out more</description>
<dc:date>2009-10-26T04:14:05Z</dc:date>
<dc:author>tadeufilippini</dc:author>
<dc:subject>mountain, ebookmountain, ebook ebookmountain, ebooks, ebooks ebookmountain, ebook mountain, ebook, mountain ebook</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.ebookmountain.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/26/d23db1339099f272117d17a0516446d0.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.ebookmountain.com/">Welcome to eBook Mountain</a></h4>
 
by <a href="http://blogmarks.net/user/tadeufilippini">tadeufilippini</a> 
<p class="description">Brad Callens PPC Web Spy

Secretly Spy On & Uncover Anyones Google-Adword Keywords While You Browse Google In Real-Time! Download This Revolutionary New Keyword Research Tool for FREE!

Click Here to find out more >>
	

	

Maverick Money Makers

"This System Makes Me At Least $110,324 Per Month And You Can Start Using It 15 Minutes From Now"... "Guaranteed to work even if you're "un-motivated"... In fact, it's best if you only put in an hour or so per day!"

<< Click Here to find out more</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mountain">mountain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebookmountain">ebookmountain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebook%2Bebookmountain">ebook ebookmountain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebooks">ebooks</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebooks%2Bebookmountain">ebooks ebookmountain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebook%2Bmountain">ebook mountain</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebook">ebook</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mountain%2Bebook">mountain ebook</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058563501">Copy</a> | 
<a href="http://blogmarks.net/link/3393694">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mozkart/mark/1058521294">
<title>Amazon.com: Digital Negatives: Using Photoshop to Create Digital Negatives for Silver and Alternative Process Printing (9780240808543): Brad Hinkel, Ron Reeder: Books</title>
<link>http://www.amazon.com/Digital-Negatives-Photoshop-Alternative-Printing/dp/0240808541/ref=pd_bbs_sr_1/103-7386753-3187057?ie=UTF8&amp;s=books&amp;qid=1193283951&amp;sr=8-1</link>
<description></description>
<dc:date>2009-09-27T07:57:03Z</dc:date>
<dc:author>mozkart</dc:author>
<dc:subject>photoshop</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.amazon.com/Digital-Negatives-Photoshop-Alternative-Printing/dp/0240808541/ref=pd_bbs_sr_1/103-7386753-3187057?ie=UTF8&amp;s=books&amp;qid=1193283951&amp;sr=8-1"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.amazon.com/Digital-Negatives-Photoshop-Alternative-Printing/dp/0240808541/ref=pd_bbs_sr_1/103-7386753-3187057?ie=UTF8&amp;s=books&amp;qid=1193283951&amp;sr=8-1">Amazon.com: Digital Negatives: Using Photoshop to Create Digital Negatives for Silver and Alternative Process Printing (9780240808543): Brad Hinkel, Ron Reeder: Books</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/photoshop">photoshop</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058521294">Copy</a> | 
<a href="http://blogmarks.net/link/3357543">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/touristic/mark/1058499767">
<title>@bcandullo.com { Online Portfolio of Freelance Designer   Developer Brad Candullo; }</title>
<link>http://www.bcandullo.com/</link>
<description></description>
<dc:date>2009-09-11T09:33:07Z</dc:date>
<dc:author>touristic</dc:author>
<dc:subject>site top, design, charte graphique</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.bcandullo.com/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/11/99bbe9b81f4ad2144134ffb3de7ee6e5.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.bcandullo.com/">@bcandullo.com { Online Portfolio of Freelance Designer   Developer Brad Candullo; }</a></h4>
 
by <a href="http://blogmarks.net/user/touristic">touristic</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2873291">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/site%2Btop">site top</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/design">design</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/charte%2Bgraphique">charte graphique</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058499767">Copy</a> | 
<a href="http://blogmarks.net/link/2873291">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ERSWeb/mark/1058297373">
<title>Dare Obasanjo aka Carnage4Life - ASP.NET Caching vs. memcached: Seeking Efficient Data Partitioning, Lookup, and Retrieval</title>
<link>http://www.25hoursaday.com/weblog/CommentView.aspx?guid=3109dc37-49f8-4249-baf1-56d4c6158321</link>
<description>I recently discovered memcached which is a distributed, object caching system originally developed by Brad Fitzpatrick of LiveJournal fame. You can think of memcached as a giant hash table that can run on multiple servers which automatically handles maintaining the balance of objects hashed to each server and transparently fetches/removes objects from over the network if they aren't on the same machine that is accessing an object in the hash table. Although this sounds fairly simple, there is a lot of grunt work in building a distributed object cache which handles data partitioning across multiple servers and hides the distributed nature of the application from the developer. memcached is a well integrated into the typical LAMP stack and is used by a surprising number of high traffic websites including Slashdot, Facebook, Digg, Flickr and Wikipedia. Below is what C# code that utilizes memcached would look like sans exception handling code </description>
<dc:date>2009-04-24T16:16:26Z</dc:date>
<dc:author>ERSWeb</dc:author>
<dc:subject>network, server, asp.net, system, this, code, c#, work, data, building, flickr</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.25hoursaday.com/weblog/CommentView.aspx?guid=3109dc37-49f8-4249-baf1-56d4c6158321"><img border="0" src="http://blogmarks.net/screenshots/2009/04/24/3273462ef209ef7ebc3385c784584940.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.25hoursaday.com/weblog/CommentView.aspx?guid=3109dc37-49f8-4249-baf1-56d4c6158321">Dare Obasanjo aka Carnage4Life - ASP.NET Caching vs. memcached: Seeking Efficient Data Partitioning, Lookup, and Retrieval</a></h4>
 
by <a href="http://blogmarks.net/user/ERSWeb">ERSWeb</a> 
<p class="description">I recently discovered memcached which is a distributed, object caching system originally developed by Brad Fitzpatrick of LiveJournal fame. You can think of memcached as a giant hash table that can run on multiple servers which automatically handles maintaining the balance of objects hashed to each server and transparently fetches/removes objects from over the network if they aren't on the same machine that is accessing an object in the hash table. Although this sounds fairly simple, there is a lot of grunt work in building a distributed object cache which handles data partitioning across multiple servers and hides the distributed nature of the application from the developer. memcached is a well integrated into the typical LAMP stack and is used by a surprising number of high traffic websites including Slashdot, Facebook, Digg, Flickr and Wikipedia. Below is what C# code that utilizes memcached would look like sans exception handling code </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/network">network</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/server">server</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/asp.net">asp.net</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/system">system</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/this">this</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/code">code</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/c%2523">c#</a>
<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/data">data</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/building">building</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/flickr">flickr</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058297373">Copy</a> | 
<a href="http://blogmarks.net/link/3173853">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ronpish/mark/1058207660">
<title>BRAD ALDRIDGE</title>
<link>http://www.joycerobins.com/artistIndex.php?artist_id=1&amp;category_id=56&amp;BRAD ALDRIDGE</link>
<description></description>
<dc:date>2009-02-13T15:26:12Z</dc:date>
<dc:author>ronpish</dc:author>
<dc:subject>art, peinture, couleur</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.joycerobins.com/artistIndex.php?artist_id=1&amp;category_id=56&amp;BRAD ALDRIDGE"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.joycerobins.com/artistIndex.php?artist_id=1&amp;category_id=56&amp;BRAD ALDRIDGE">BRAD ALDRIDGE</a></h4>
 
by <a href="http://blogmarks.net/user/ronpish">ronpish</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/art">art</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/peinture">peinture</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=1058207660">Copy</a> | 
<a href="http://blogmarks.net/link/3098512">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/holyver/mark/1058075834">
<title>reallysimplehistory - Google Code</title>
<link>http://code.google.com/p/reallysimplehistory/</link>
<description>Really Simple History is a lightweight JavaScript library for the management of bookmarking and browser history in Ajax/DHTML applications. RSH serializes application data in an internal JavaScript cache so that bookmarks and the back button can be used to return your application to an earlier state.

Originally developed by Brad Neuberg in 2005, RSH has won a large user base for its simplicity, ease of use and lack of dependency on any specific Ajax framework. It's written in plain old JavaScript and can be included on any site according to the terms of its BSD license.

In September 2007, Brian Dillard of Pathfinder Development came on board as maintainer and ongoing code steward for the project. A new version, with support for additional modern browsers (IE7, Safari, Opera), was released as RSH 0.6 on December 3, 2007. </description>
<dc:date>2008-11-30T14:32:14Z</dc:date>
<dc:author>holyver</dc:author>
<dc:subject>history, cache, application, javascript, google, library, ajax, code</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://code.google.com/p/reallysimplehistory/"><img border="0" src="http://blogmarks.net/screenshots/2008/11/30/cdaa3d50d307f573f57867cd8460ba08.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://code.google.com/p/reallysimplehistory/">reallysimplehistory - Google Code</a></h4>
 
by <a href="http://blogmarks.net/user/holyver">holyver</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2506116">1 other(s)</a> 
<p class="description">Really Simple History is a lightweight JavaScript library for the management of bookmarking and browser history in Ajax/DHTML applications. RSH serializes application data in an internal JavaScript cache so that bookmarks and the back button can be used to return your application to an earlier state.

Originally developed by Brad Neuberg in 2005, RSH has won a large user base for its simplicity, ease of use and lack of dependency on any specific Ajax framework. It's written in plain old JavaScript and can be included on any site according to the terms of its BSD license.

In September 2007, Brian Dillard of Pathfinder Development came on board as maintainer and ongoing code steward for the project. A new version, with support for additional modern browsers (IE7, Safari, Opera), was released as RSH 0.6 on December 3, 2007. </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/history">history</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/cache">cache</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/application">application</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/google">google</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/library">library</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ajax">ajax</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/code">code</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058075834">Copy</a> | 
<a href="http://blogmarks.net/link/2506116">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058075652">
<title>BBC World Service - Documentaries - Street art</title>
<link>http://www.bbc.co.uk/worldservice/documentaries/2008/11/081103_street_art_one.shtml</link>
<description>&lt;blockquote&gt;&lt;p&gt;In the year Brad Pitt and Angelina Jolie spent £1m on works by British stencil artist Banksy, this two-part series explores the global boom in street art. &lt;/p&gt;&lt;/blockquote&gt;

cela ne me fait pas bander que ce soit pour un vangogh ou un graffiti. C'est pareil.</description>
<dc:date>2008-11-30T11:08:47Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>art, graffiti</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.bbc.co.uk/worldservice/documentaries/2008/11/081103_street_art_one.shtml"><img border="0" src="http://blogmarks.net/screenshots/2008/11/30/a63bdccec3561a3aa3e91ab11f0c2351.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.bbc.co.uk/worldservice/documentaries/2008/11/081103_street_art_one.shtml">BBC World Service - Documentaries - Street art</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>In the year Brad Pitt and Angelina Jolie spent £1m on works by British stencil artist Banksy, this two-part series explores the global boom in street art. </p></blockquote>

cela ne me fait pas bander que ce soit pour un vangogh ou un graffiti. C'est pareil.</div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/art">art</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graffiti">graffiti</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058075652">Copy</a> | 
<a href="http://blogmarks.net/link/2983842">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/calicoba/mark/1058072446">
<title>Les photos érotiques de mes voyages webiens! - Tendre Bulle</title>
<link>http://www.tendrebulle.fr/index.php?post/2008/11/26/Les-photos-érotiques-de-mes-voyages-webiens!</link>
<description>C'EST L'HEURE DE MON BILLET TRADITIONNEL OU JE VOUS PROPOSE LE MEILLEUR DES IMAGES CROISÉES SUR LE WEB ET QUI ÉVEILLENT EN MOI UN SENTIMENT ARTISTIQUE ET PLUS SI AFFINITÉS! PARMI CETTE SÉLECTION DU WEB VOUS TROUVEREZ (VOIR CI CONTRE) UNE TRÈS BELLE IMAGE DE LA JOLIE JENNIFER ANISTON AU MIEUX DE SA FORME ET QUI SEMBLE SE CONSOLER DE BRAD PITT!</description>
<dc:date>2008-11-26T21:04:57Z</dc:date>
<dc:author>calicoba</dc:author>
<dc:subject>photos, nu, charme, sélection, pieds, Jennifer Aniston</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.tendrebulle.fr/index.php?post/2008/11/26/Les-photos-érotiques-de-mes-voyages-webiens!"><img border="0" src="http://blogmarks.net/screenshots/2008/11/26/0e41ef13b0b24f72c16c0c5ed2f9d9fc.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.tendrebulle.fr/index.php?post/2008/11/26/Les-photos-érotiques-de-mes-voyages-webiens!">Les photos érotiques de mes voyages webiens! - Tendre Bulle</a></h4>
 
by <a href="http://blogmarks.net/user/calicoba">calicoba</a> 
<p class="description">C'EST L'HEURE DE MON BILLET TRADITIONNEL OU JE VOUS PROPOSE LE MEILLEUR DES IMAGES CROISÉES SUR LE WEB ET QUI ÉVEILLENT EN MOI UN SENTIMENT ARTISTIQUE ET PLUS SI AFFINITÉS! PARMI CETTE SÉLECTION DU WEB VOUS TROUVEREZ (VOIR CI CONTRE) UNE TRÈS BELLE IMAGE DE LA JOLIE JENNIFER ANISTON AU MIEUX DE SA FORME ET QUI SEMBLE SE CONSOLER DE BRAD PITT!</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photos">photos</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/nu">nu</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/charme">charme</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/s%25C3%25A9lection">sélection</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/pieds">pieds</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Jennifer%2BAniston">Jennifer Aniston</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058072446">Copy</a> | 
<a href="http://blogmarks.net/link/2980695">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/znarf/mark/1058043578">
<title>mickavendeta's blog - MICKAEL VENDETTA - Skyrock.com</title>
<link>http://mickavendeta.skyrock.com/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Mickael Vendetta : je suis Brad Pitt pour le physique , Napoléon pour l'ambition , Christophe Colomb pour la conquête !&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2008-10-31T11:13:05Z</dc:date>
<dc:author>François Hodierne</dc:author>
<dc:subject>blog</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://mickavendeta.skyrock.com/"><img border="0" src="http://blogmarks.net/screenshots/2008/10/31/eb0e5155ef0eb37970d377db3191e649.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://mickavendeta.skyrock.com/">mickavendeta's blog - MICKAEL VENDETTA - Skyrock.com</a></h4>
 
by <a href="http://blogmarks.net/user/znarf">François Hodierne</a> 
<div class="description"><blockquote><p>Mickael Vendetta : je suis Brad Pitt pour le physique , Napoléon pour l'ambition , Christophe Colomb pour la conquête !</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/blog">blog</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058043578">Copy</a> | 
<a href="http://blogmarks.net/link/2953301">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/smartkit/mark/1057881157">
<title>riddle/puzzle</title>
<link>http://www.englishforums.com/English/RiddlePuzzle/zvdxv/post.htm</link>
<description>Brad told me a riddle/puzzle about two guards and tiger.</description>
<dc:date>2008-06-16T13:32:01Z</dc:date>
<dc:author>smartkit</dc:author>
<dc:subject>puzzles, Brain Teasers and Puzzles</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.englishforums.com/English/RiddlePuzzle/zvdxv/post.htm"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.englishforums.com/English/RiddlePuzzle/zvdxv/post.htm">riddle/puzzle</a></h4>
 
by <a href="http://blogmarks.net/user/smartkit">smartkit</a> 
<p class="description">Brad told me a riddle/puzzle about two guards and tiger.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/puzzles">puzzles</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Brain%2BTeasers%2Band%2BPuzzles">Brain Teasers and Puzzles</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057881157">Copy</a> | 
<a href="http://blogmarks.net/link/2811771">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Madhu/mark/1057822640">
<title> I’m a Linkin Park Fan</title>
<link>http://toshakishayari.com/shayari-poetry/im-a-linkin-park-fan/</link>
<description>Linkin Park is a truly unique band. They are not just Rock, Rap, or Electronica band. They compromise of a veritable mixture of different styles and stylists in music, this makes them a hybrid in the type of music they play and their fan-base too. I am true lover of Linkin Park

Linkin Park’s origin began in 1996 when rapper guitarist Brad Delson and the in famouis Mike Shinoda started a band called Xero. Other members of the band were Mark Wakefield the vocalist, Joseph Hahn the DJ, Rob Bourdon the drummer, and “Phoenix” Farrell the bassist. Xero made a four track demo tape including: Fuse, Stick N’ Move, Rhinestone, and Reading My Eyes.</description>
<dc:date>2008-05-02T10:24:51Z</dc:date>
<dc:author>Madhu</dc:author>
<dc:subject>life, feelings, love. sharing, song, music, Rock Music, Linkin Park</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://toshakishayari.com/shayari-poetry/im-a-linkin-park-fan/"><img border="0" src="http://blogmarks.net/screenshots/2008/05/02/8ff0b69b252680690ca2c9f2be897c99.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://toshakishayari.com/shayari-poetry/im-a-linkin-park-fan/"> I’m a Linkin Park Fan</a></h4>
 
by <a href="http://blogmarks.net/user/Madhu">Madhu</a> 
<p class="description">Linkin Park is a truly unique band. They are not just Rock, Rap, or Electronica band. They compromise of a veritable mixture of different styles and stylists in music, this makes them a hybrid in the type of music they play and their fan-base too. I am true lover of Linkin Park

Linkin Park’s origin began in 1996 when rapper guitarist Brad Delson and the in famouis Mike Shinoda started a band called Xero. Other members of the band were Mark Wakefield the vocalist, Joseph Hahn the DJ, Rob Bourdon the drummer, and “Phoenix” Farrell the bassist. Xero made a four track demo tape including: Fuse, Stick N’ Move, Rhinestone, and Reading My Eyes.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/life">life</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/feelings">feelings</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/love.%2Bsharing">love. sharing</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/song">song</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/music">music</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Rock%2BMusic">Rock Music</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/Linkin%2BPark">Linkin Park</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057822640">Copy</a> | 
<a href="http://blogmarks.net/link/2766171">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jey/mark/1058545714">
<title>Brad Appleton's ACME Blog: Commonality and Variability Management</title>
<link>http://bradapp.blogspot.com/2008/03/commonality-and-variability-management.html</link>
<description></description>
<dc:date>2008-04-23T15:50:33Z</dc:date>
<dc:author>jey</dc:author>
<dc:subject>SoftwareProductLines</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://bradapp.blogspot.com/2008/03/commonality-and-variability-management.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://bradapp.blogspot.com/2008/03/commonality-and-variability-management.html">Brad Appleton's ACME Blog: Commonality and Variability Management</a></h4>
 
by <a href="http://blogmarks.net/user/jey">jey</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/SoftwareProductLines">SoftwareProductLines</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058545714">Copy</a> | 
<a href="http://blogmarks.net/link/3379802">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/springnet/mark/1057900219">
<title>Print I Think You're Fat</title>
<link>http://www.esquire.com/print-this/features/honesty0707</link>
<description>Radical Honesty. The movement was founded by a sixty-six-year-old Virginia-based psychotherapist named Brad Blanton. He says everybody would be happier if we just stopped lying. Tell the truth, all the time. This would be radical enough -- a world without</description>
<dc:date>2008-03-22T15:43:57Z</dc:date>
<dc:author>springnet</dc:author>
<dc:subject>*, springnet, lying, honesty, truth, life, ideas, funny, springnet blogmarks</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.esquire.com/print-this/features/honesty0707"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.esquire.com/print-this/features/honesty0707">Print I Think You're Fat</a></h4>
 
by <a href="http://blogmarks.net/user/springnet">springnet</a> 
<p class="description">Radical Honesty. The movement was founded by a sixty-six-year-old Virginia-based psychotherapist named Brad Blanton. He says everybody would be happier if we just stopped lying. Tell the truth, all the time. This would be radical enough -- a world without</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%252A">*</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/springnet">springnet</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lying">lying</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/honesty">honesty</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/truth">truth</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/life">life</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ideas">ideas</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/funny">funny</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/springnet%2Bblogmarks">springnet blogmarks</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057900219">Copy</a> | 
<a href="http://blogmarks.net/link/2825790">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jey/mark/1058545808">
<title>Brad Appleton's ACME Blog: Software Modifiability Tactics</title>
<link>http://bradapp.blogspot.com/2008/03/software-modifiability-tactics.html</link>
<description></description>
<dc:date>2008-03-09T21:21:35Z</dc:date>
<dc:author>jey</dc:author>
<dc:subject>modifiability</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://bradapp.blogspot.com/2008/03/software-modifiability-tactics.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://bradapp.blogspot.com/2008/03/software-modifiability-tactics.html">Brad Appleton's ACME Blog: Software Modifiability Tactics</a></h4>
 
by <a href="http://blogmarks.net/user/jey">jey</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/modifiability">modifiability</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058545808">Copy</a> | 
<a href="http://blogmarks.net/link/3379877">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1057685984">
<title>Statement from Brad Smith, General Counsel, Microsoft</title>
<link>http://www.microsoft.com/presspass/press/2008/feb08/02-03Statement.mspx?rss_fdn=Press Releases</link>
<description>&lt;blockquote&gt;&lt;p&gt;Today, Google is the dominant search engine and advertising company on the Web. Google has amassed about 75 percent of paid search revenues worldwide and its share continues to grow. According to published reports, Google currently has more than 65 percent search query share in the U.S. and more than 85 percent in Europe. Microsoft and Yahoo! on the other hand have roughly 30 percent combined in the U.S. and approximately 10 percent combined in Europe.&lt;/p&gt;&lt;/blockquote&gt;

La guerre des gaules</description>
<dc:date>2008-02-04T00:26:13Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>google, microsoft, yahoo</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.microsoft.com/presspass/press/2008/feb08/02-03Statement.mspx?rss_fdn=Press Releases"><img border="0" src="http://blogmarks.net/screenshots/2008/02/04/6ded50c3d3adf31d763612fd66be0aaf.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.microsoft.com/presspass/press/2008/feb08/02-03Statement.mspx?rss_fdn=Press Releases">Statement from Brad Smith, General Counsel, Microsoft</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Today, Google is the dominant search engine and advertising company on the Web. Google has amassed about 75 percent of paid search revenues worldwide and its share continues to grow. According to published reports, Google currently has more than 65 percent search query share in the U.S. and more than 85 percent in Europe. Microsoft and Yahoo! on the other hand have roughly 30 percent combined in the U.S. and approximately 10 percent combined in Europe.</p></blockquote>

La guerre des gaules</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/microsoft">microsoft</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/yahoo">yahoo</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057685984">Copy</a> | 
<a href="http://blogmarks.net/link/2658708">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ERSWeb/mark/1057644447">
<title>Brad Abrams : Internal Coding Guidelines</title>
<link>http://blogs.msdn.com/brada/articles/361363.aspx</link>
<description>Design Guidelines, Managed code and the .NET Framework</description>
<dc:date>2008-01-07T19:29:10Z</dc:date>
<dc:author>ERSWeb</dc:author>
<dc:subject>best practices, development, software, .net</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://blogs.msdn.com/brada/articles/361363.aspx"><img border="0" src="http://blogmarks.net/screenshots/2008/01/07/4e5d0db3d160b8754053eb31f745c2db.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://blogs.msdn.com/brada/articles/361363.aspx">Brad Abrams : Internal Coding Guidelines</a></h4>
 
by <a href="http://blogmarks.net/user/ERSWeb">ERSWeb</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2273350">1 other(s)</a> 
<p class="description">Design Guidelines, Managed code and the .NET Framework</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/best%2Bpractices">best practices</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/development">development</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/.net">.net</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057644447">Copy</a> | 
<a href="http://blogmarks.net/link/2273350">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ERSWeb/mark/1057639260">
<title>Amazon.com: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries (Microsoft .NET Development Series): Books: Krzysztof Cwalina,Brad Abrams</title>
<link>http://www.amazon.com/Framework-Design-Guidelines-Conventions-Development/dp/0321246756</link>
<description>&quot;This book is an absolute must-read for all .NET developers. It gives clear do and don't guidance on how to design class libraries for .NET. It also offers insight into the design and creation of .NET that really helps developers understand the reasons why things are the way they are. This information will aid developers designing their own class libraries and will also allow them to take advantage of the .NET class library more effectively.&quot;</description>
<dc:date>2008-01-04T13:40:44Z</dc:date>
<dc:author>ERSWeb</dc:author>
<dc:subject>.net, design, development</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.amazon.com/Framework-Design-Guidelines-Conventions-Development/dp/0321246756"><img border="0" src="http://blogmarks.net/screenshots/2008/01/04/d5e906ad42f83ca3409a1e2300a3c3c3.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.amazon.com/Framework-Design-Guidelines-Conventions-Development/dp/0321246756">Amazon.com: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries (Microsoft .NET Development Series): Books: Krzysztof Cwalina,Brad Abrams</a></h4>
 
by <a href="http://blogmarks.net/user/ERSWeb">ERSWeb</a> 
<p class="description">"This book is an absolute must-read for all .NET developers. It gives clear do and don't guidance on how to design class libraries for .NET. It also offers insight into the design and creation of .NET that really helps developers understand the reasons why things are the way they are. This information will aid developers designing their own class libraries and will also allow them to take advantage of the .NET class library more effectively."</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/.net">.net</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/design">design</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/development">development</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057639260">Copy</a> | 
<a href="http://blogmarks.net/link/2618784">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/globeing/mark/1057795378">
<title>YouTube - Brad &amp; Phil's Information R/evolution</title>
<link>http://youtube.com/watch?v=WWmERReCRvg&amp;watch_response</link>
<description></description>
<dc:date>2008-01-02T21:27:32Z</dc:date>
<dc:author>globeing</dc:author>
<dc:subject>everything_misc, video</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://youtube.com/watch?v=WWmERReCRvg&amp;watch_response"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://youtube.com/watch?v=WWmERReCRvg&amp;watch_response">YouTube - Brad &amp; Phil's Information R/evolution</a></h4>
 
by <a href="http://blogmarks.net/user/globeing">globeing</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/everything_misc">everything_misc</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/video">video</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057795378">Copy</a> | 
<a href="http://blogmarks.net/link/2747529">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sbrothier/mark/1057477124">
<title>Bienvenue à la Salle Pleyel : Brad Mehldau Trio</title>
<link>http://sallepleyel.fr/francais/programme/detail_representation.asp?id_rep=15534</link>
<description>Au milieu des années 1990, il s’est fait connaître comme partenaire attentif du saxophoniste Joshua Redman. Mais très vite, Brad Mehldau sera reconnu pour sa série intitulée “The Art Of Trio”, des albums qui, sous le vernis du classique trio jazz, recèlent une singulière personnalité, l’originalité véritable de celui qui revendique autant l’héritage de Schubert que de Bill Evans. </description>
<dc:date>2007-10-23T13:24:19Z</dc:date>
<dc:author>sbrothier</dc:author>
<dc:subject>music, event, jazz, location:paris, ♫</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://sallepleyel.fr/francais/programme/detail_representation.asp?id_rep=15534"><img border="0" src="http://blogmarks.net/screenshots/2007/10/23/882d19578da1e4715d6ef7db27696424.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://sallepleyel.fr/francais/programme/detail_representation.asp?id_rep=15534">Bienvenue à la Salle Pleyel : Brad Mehldau Trio</a></h4>
 
by <a href="http://blogmarks.net/user/sbrothier">sbrothier</a> 
<p class="description">Au milieu des années 1990, il s’est fait connaître comme partenaire attentif du saxophoniste Joshua Redman. Mais très vite, Brad Mehldau sera reconnu pour sa série intitulée “The Art Of Trio”, des albums qui, sous le vernis du classique trio jazz, recèlent une singulière personnalité, l’originalité véritable de celui qui revendique autant l’héritage de Schubert que de Bill Evans. </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/music">music</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/event">event</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/jazz">jazz</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/location%253Aparis">location:paris</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%25E2%2599%25AB">♫</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057477124">Copy</a> | 
<a href="http://blogmarks.net/link/2470408">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/rwatuny/mark/1057468056">
<title>Munky Haus - The Photography of Brad Miller</title>
<link>http://www.munkyhaus.com/</link>
<description></description>
<dc:date>2007-09-01T19:45:16Z</dc:date>
<dc:author>rwatuny</dc:author>
<dc:subject>portfolio, photographie, glamour, cirque, étrange</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.munkyhaus.com/"><img border="0" src="http://blogmarks.net/screenshots/2007/03/02/64df4ff76ff480f75ea3c43b7e4817a6.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.munkyhaus.com/">Munky Haus - The Photography of Brad Miller</a></h4>
 
by <a href="http://blogmarks.net/user/rwatuny">rwatuny</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/991820">2 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/portfolio">portfolio</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photographie">photographie</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/glamour">glamour</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/cirque">cirque</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%25C3%25A9trange">étrange</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057468056">Copy</a> | 
<a href="http://blogmarks.net/link/991820">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/znarf/mark/1057388654">
<title>Brad Fitzpatrick: LiveJournal creator leaves as Six Apart fails to spin - Valleywag</title>
<link>http://valleywag.com/tech/brad-fitzpatrick/livejournal-creator-leaves-as-six-apart-fails-to-spin-286218.php</link>
<description>Rumor but ...</description>
<dc:date>2007-08-06T20:18:01Z</dc:date>
<dc:author>François Hodierne</dc:author>
<dc:subject>six apart</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://valleywag.com/tech/brad-fitzpatrick/livejournal-creator-leaves-as-six-apart-fails-to-spin-286218.php"><img border="0" src="http://blogmarks.net/screenshots/2007/08/06/4e5c67f78ee002e5ff16c01ce443c290.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://valleywag.com/tech/brad-fitzpatrick/livejournal-creator-leaves-as-six-apart-fails-to-spin-286218.php">Brad Fitzpatrick: LiveJournal creator leaves as Six Apart fails to spin - Valleywag</a></h4>
 
by <a href="http://blogmarks.net/user/znarf">François Hodierne</a> 
<p class="description">Rumor but ...</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/six%2Bapart">six apart</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057388654">Copy</a> | 
<a href="http://blogmarks.net/link/2393581">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Desperate Zombie/mark/1057371689">
<title>Munky Haus - The Photography of Brad Miller</title>
<link>http://www.munkyhaus.com/lobby.html</link>
<description></description>
<dc:date>2007-07-30T23:22:07Z</dc:date>
<dc:author>Desperate Zombie</dc:author>
<dc:subject>sexy, photos, art</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.munkyhaus.com/lobby.html"><img border="0" src="http://blogmarks.net/screenshots/2007/07/30/ff5e023bd422aa062399b916c70691b1.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.munkyhaus.com/lobby.html">Munky Haus - The Photography of Brad Miller</a></h4>
 
by <a href="http://blogmarks.net/user/Desperate Zombie">Desperate Zombie</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sexy">sexy</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/photos">photos</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/art">art</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057371689">Copy</a> | 
<a href="http://blogmarks.net/link/2381309">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/arkandis/mark/1057655187">
<title>Brad DeLong--Economics Only: Charlie Stross: Tomorrow's Future Today!</title>
<link>http://delong.typepad.com/delong_economics_only/2007/05/charlie_stross_.html</link>
<description></description>
<dc:date>2007-07-20T12:21:53Z</dc:date>
<dc:author>arkandis</dc:author>
<dc:subject>delicious, lifelog, billet, 2007</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://delong.typepad.com/delong_economics_only/2007/05/charlie_stross_.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://delong.typepad.com/delong_economics_only/2007/05/charlie_stross_.html">Brad DeLong--Economics Only: Charlie Stross: Tomorrow's Future Today!</a></h4>
 
by <a href="http://blogmarks.net/user/arkandis">arkandis</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/delicious">delicious</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lifelog">lifelog</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/billet">billet</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/2007">2007</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057655187">Copy</a> | 
<a href="http://blogmarks.net/link/2632755">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/pmdm/mark/1057338099">
<title>Copyright and media in France</title>
<link>http://copyrightfrance.blogspot.com/</link>
<description>Blog de Brad Spitz &amp; Jean-Louis Langlois.</description>
<dc:date>2007-07-15T18:35:45Z</dc:date>
<dc:author>pmdm</dc:author>
<dc:subject>copyright</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://copyrightfrance.blogspot.com/"><img border="0" src="http://blogmarks.net/screenshots/2007/07/15/3ca343088205dcf1a6c424bf0490d75f.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://copyrightfrance.blogspot.com/">Copyright and media in France</a></h4>
 
by <a href="http://blogmarks.net/user/pmdm">pmdm</a> 
<p class="description">Blog de Brad Spitz & Jean-Louis Langlois.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/copyright">copyright</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057338099">Copy</a> | 
<a href="http://blogmarks.net/link/2351269">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>