<?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/statements">
<title>Public marks with search statements</title>
<description>Public marks with search statements</description>
<link>http://blogmarks.net/marks/search/statements</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/oseres/mark/1058563800"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058428329"/>
<rdf:li resource="http://blogmarks.net/api/user/xibe/mark/1058206588"/>
<rdf:li resource="http://blogmarks.net/api/user/polyxena/mark/1058098803"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1057996061"/>
<rdf:li resource="http://blogmarks.net/api/user/marco/mark/1057732038"/>
<rdf:li resource="http://blogmarks.net/api/user/damdec/mark/1057713004"/>
<rdf:li resource="http://blogmarks.net/api/user/mbertier/mark/1057708757"/>
<rdf:li resource="http://blogmarks.net/api/user/ravi/mark/1057678809"/>
<rdf:li resource="http://blogmarks.net/api/user/sebastien/mark/1057675075"/>
<rdf:li resource="http://blogmarks.net/api/user/ravi/mark/1057668029"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1057518987"/>
<rdf:li resource="http://blogmarks.net/api/user/Rik/mark/1057464949"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1057457640"/>
<rdf:li resource="http://blogmarks.net/api/user/abar65/mark/1057450813"/>
<rdf:li resource="http://blogmarks.net/api/user/mbertier/mark/1057398771"/>
<rdf:li resource="http://blogmarks.net/api/user/sylvainulg/mark/1057390728"/>
<rdf:li resource="http://blogmarks.net/api/user/jpcaruana/mark/1057370566"/>
<rdf:li resource="http://blogmarks.net/api/user/pvergain/mark/1057341487"/>
<rdf:li resource="http://blogmarks.net/api/user/greut/mark/1057319403"/>
<rdf:li resource="http://blogmarks.net/api/user/ms_michel/mark/1057319289"/>
<rdf:li resource="http://blogmarks.net/api/user/mozkart/mark/1057311281"/>
<rdf:li resource="http://blogmarks.net/api/user/mbertier/mark/2634660"/>
<rdf:li resource="http://blogmarks.net/api/user/hjshare/mark/2588872"/>
<rdf:li resource="http://blogmarks.net/api/user/YukihiroKawashi/mark/2070266"/>
</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/karlcow/mark/1058428329">
<title>Mobile Web Application Best Practices</title>
<link>http://www.w3.org/TR/mwabp/</link>
<description>&lt;blockquote&gt;&lt;p&gt;Best Practices for the development and delivery of Web applications on mobile devices. The recommendations expand upon statements made in the Mobile Web Best Practices 1.0 (BP1), especially those that relate to the exploitation of device capabilities and awareness of the delivery context. Furthermore, since BP1 was written, networks and devices have continued to evolve, with the result that a number of Best Practices that were omitted from BP1 can now be included.&lt;/p&gt;&lt;p&gt;The recommendation is primarily directed at creators, maintainers and operators of Web applications. Readers of this document are expected to be familiar with the creation of Web sites, and to have a general familiarity with the technologies involved, such as Web servers, HTTP, and Web application technologies. Readers are not expected to have a background in mobile technologies or previous experience with BP1.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-15T01:17:11Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>mobile, w3c, bestpractices</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.w3.org/TR/mwabp/"><img border="0" src="http://blogmarks.net/screenshots/2009/07/15/5e9b1cb2bd7d74532ddff43fcc58fcdd.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.w3.org/TR/mwabp/">Mobile Web Application Best Practices</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Best Practices for the development and delivery of Web applications on mobile devices. The recommendations expand upon statements made in the Mobile Web Best Practices 1.0 (BP1), especially those that relate to the exploitation of device capabilities and awareness of the delivery context. Furthermore, since BP1 was written, networks and devices have continued to evolve, with the result that a number of Best Practices that were omitted from BP1 can now be included.</p><p>The recommendation is primarily directed at creators, maintainers and operators of Web applications. Readers of this document are expected to be familiar with the creation of Web sites, and to have a general familiarity with the technologies involved, such as Web servers, HTTP, and Web application technologies. Readers are not expected to have a background in mobile technologies or previous experience with BP1.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mobile">mobile</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/w3c">w3c</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bestpractices">bestpractices</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058428329">Copy</a> | 
<a href="http://blogmarks.net/link/3285533">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/xibe/mark/1058206588">
<title>best of craigslist : WARNING!!! Don't shave that hair!</title>
<link>http://www.craigslist.org/about/best/lax/35274458.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;It is a statement that will go down in history with a lot of other regretted statements. &quot;How many Indians could there be?&quot; said by General Custer. &quot;Looks like a good day for a drive!&quot; by JFK. &quot;There! America On-Line now has complete Usenet access!&quot; by some idiot system tech. Such was my anal shaving idea.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-02-12T16:17:15Z</dc:date>
<dc:author>xibe</dc:author>
<dc:subject>épilation, poil, fesse, bestof, craigslist</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.craigslist.org/about/best/lax/35274458.html"><img border="0" src="http://blogmarks.net/screenshots/2009/02/12/38bf5604f9466a4719f4421561655e05.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.craigslist.org/about/best/lax/35274458.html">best of craigslist : WARNING!!! Don't shave that hair!</a></h4>
 
by <a href="http://blogmarks.net/user/xibe">xibe</a> 
<div class="description"><blockquote><p>It is a statement that will go down in history with a lot of other regretted statements. "How many Indians could there be?" said by General Custer. "Looks like a good day for a drive!" by JFK. "There! America On-Line now has complete Usenet access!" by some idiot system tech. Such was my anal shaving idea.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%25C3%25A9pilation">épilation</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/poil">poil</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/fesse">fesse</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bestof">bestof</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/craigslist">craigslist</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058206588">Copy</a> | 
<a href="http://blogmarks.net/link/3097557">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/polyxena/mark/1058098803">
<title>UK to ditch Pound and enter Euro?</title>
<link>http://www.forexperform.com/2008/12/02/uk-to-ditch-pound-and-enter-euro/</link>
<description>What of the rumors? Rumors that, faced with a currency dropping like a stone, a lot of previous policy statements are going to be junked and the United Kingdom might make a relatively rapid emergency dive into the Eurozone.</description>
<dc:date>2008-12-02T11:45:38Z</dc:date>
<dc:author>polyxena</dc:author>
<dc:subject>forex, markets, money, finance</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.forexperform.com/2008/12/02/uk-to-ditch-pound-and-enter-euro/"><img border="0" src="http://blogmarks.net/screenshots/2008/12/02/67c0d11ce52c0f91af05445ddb9a71e8.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.forexperform.com/2008/12/02/uk-to-ditch-pound-and-enter-euro/">UK to ditch Pound and enter Euro?</a></h4>
 
by <a href="http://blogmarks.net/user/polyxena">polyxena</a> 
<p class="description">What of the rumors? Rumors that, faced with a currency dropping like a stone, a lot of previous policy statements are going to be junked and the United Kingdom might make a relatively rapid emergency dive into the Eurozone.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/forex">forex</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/markets">markets</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/money">money</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/finance">finance</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058098803">Copy</a> | 
<a href="http://blogmarks.net/link/3002046">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1057996061">
<title>Tourism minister apologizes for gaffes | The Japan Times Online</title>
<link>http://search.japantimes.co.jp/cgi-bin/nn20080927a2.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;New tourism minister Nariaki Nakayama wasted no time putting his foot in it. The day after stating that Japanese do not like foreigners and that the country is ethnically homogeneous, Nakayama apologized Friday and retracted his statements.&lt;/p&gt;&lt;/blockquote&gt;

magnifique</description>
<dc:date>2008-09-27T13:52:49Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>japon</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://search.japantimes.co.jp/cgi-bin/nn20080927a2.html"><img border="0" src="http://blogmarks.net/screenshots/2008/09/27/34b690aae7d47aecadc0ad838ca909e6.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://search.japantimes.co.jp/cgi-bin/nn20080927a2.html">Tourism minister apologizes for gaffes | The Japan Times Online</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>New tourism minister Nariaki Nakayama wasted no time putting his foot in it. The day after stating that Japanese do not like foreigners and that the country is ethnically homogeneous, Nakayama apologized Friday and retracted his statements.</p></blockquote>

magnifique</div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/japon">japon</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057996061">Copy</a> | 
<a href="http://blogmarks.net/link/2911274">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/marco/mark/1057732038">
<title>Krs-One Explains Why He's Not Selling Out, Authenticity Is The New Business Model</title>
<link>http://grandgood.com/2008/03/12/krs-one-explains-why-hes-not-selling-out-authenticity-is-the-new-business-model/</link>
<description>When you get KRS ONE, I'm not changing my message for nobody. If you do business with KRS, you're getting anti-war statements, you're getting stuff about the Temple of Hip Hop</description>
<dc:date>2008-03-12T20:26:55Z</dc:date>
<dc:author>marco</dc:author>
<dc:subject>hiphop</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://grandgood.com/2008/03/12/krs-one-explains-why-hes-not-selling-out-authenticity-is-the-new-business-model/"><img border="0" src="http://blogmarks.net/screenshots/2008/03/13/c9e336d52849b4dea255eff01c96801a.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://grandgood.com/2008/03/12/krs-one-explains-why-hes-not-selling-out-authenticity-is-the-new-business-model/">Krs-One Explains Why He's Not Selling Out, Authenticity Is The New Business Model</a></h4>
 
by <a href="http://blogmarks.net/user/marco">marco</a> 
<p class="description">When you get KRS ONE, I'm not changing my message for nobody. If you do business with KRS, you're getting anti-war statements, you're getting stuff about the Temple of Hip Hop</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/hiphop">hiphop</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057732038">Copy</a> | 
<a href="http://blogmarks.net/link/2700684">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/damdec/mark/1057713004">
<title>mysql_real_escape_string() versus Prepared Statements - iBlog - Ilia Alshanetsky</title>
<link>http://ilia.ws/archives/103-mysql_real_escape_string-versus-Prepared-Statements.html</link>
<description></description>
<dc:date>2008-02-28T08:09:05Z</dc:date>
<dc:author>damdec</dc:author>
<dc:subject>php, sécurité</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://ilia.ws/archives/103-mysql_real_escape_string-versus-Prepared-Statements.html"><img border="0" src="http://blogmarks.net/screenshots/2008/02/28/af55dd049e2f8d42dad828dc5e23cc10.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://ilia.ws/archives/103-mysql_real_escape_string-versus-Prepared-Statements.html">mysql_real_escape_string() versus Prepared Statements - iBlog - Ilia Alshanetsky</a></h4>
 
by <a href="http://blogmarks.net/user/damdec">damdec</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/php">php</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/s%25C3%25A9curit%25C3%25A9">sécurité</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057713004">Copy</a> | 
<a href="http://blogmarks.net/link/2683846">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mbertier/mark/1057708757">
<title>It's About the Product, Silly - Jay Pipes</title>
<link>http://jpipes.com/index.php?/archives/214-Its-About-the-Product,-Silly.html</link>
<description>So, my point is that it is not the marketing of a product that counts — indeed, false marketing statements or tactics can backfire quickly. What counts is the product itself. Marketing should be the function of promoting the innovative advantages of a product in the above three categories. </description>
<dc:date>2008-02-22T13:25:43Z</dc:date>
<dc:author>mbertier</dc:author>
<dc:subject>clevermarks, dev</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://jpipes.com/index.php?/archives/214-Its-About-the-Product,-Silly.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://jpipes.com/index.php?/archives/214-Its-About-the-Product,-Silly.html">It's About the Product, Silly - Jay Pipes</a></h4>
 
by <a href="http://blogmarks.net/user/mbertier">mbertier</a> 
<p class="description">So, my point is that it is not the marketing of a product that counts — indeed, false marketing statements or tactics can backfire quickly. What counts is the product itself. Marketing should be the function of promoting the innovative advantages of a product in the above three categories. </p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/clevermarks">clevermarks</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057708757">Copy</a> | 
<a href="http://blogmarks.net/link/2679875">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ravi/mark/1057678809">
<title>The future is bright: Mozilla revenues up 26 percent, Google deal is gold</title>
<link>http://arstechnica.com/news.ars/post/20071024-the-future-is-bright-mozilla-revenues-up-26-percent-for-2006.html?rel</link>
<description>Mozilla published financial statements earlier this week showing that the organization made $66.8 million in revenue for 2006, a 26 percent increase from 2005. That's some strong growth, and it shows that Mozilla has the potential for long-term fiscal sustainability.</description>
<dc:date>2008-01-30T21:04:28Z</dc:date>
<dc:author>ravi</dc:author>
<dc:subject>open-source, tech</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://arstechnica.com/news.ars/post/20071024-the-future-is-bright-mozilla-revenues-up-26-percent-for-2006.html?rel"><img border="0" src="http://blogmarks.net/screenshots/2008/01/30/51a0d2fef6ebd8bb92e48dcd9843865b.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://arstechnica.com/news.ars/post/20071024-the-future-is-bright-mozilla-revenues-up-26-percent-for-2006.html?rel">The future is bright: Mozilla revenues up 26 percent, Google deal is gold</a></h4>
 
by <a href="http://blogmarks.net/user/ravi">ravi</a> 
<p class="description">Mozilla published financial statements earlier this week showing that the organization made $66.8 million in revenue for 2006, a 26 percent increase from 2005. That's some strong growth, and it shows that Mozilla has the potential for long-term fiscal sustainability.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/open-source">open-source</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tech">tech</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057678809">Copy</a> | 
<a href="http://blogmarks.net/link/2653279">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sebastien/mark/1057675075">
<title>Writing a Good Accessibility Statement</title>
<link>http://juicystudio.com/article/writing-a-good-accessibility-statement.php</link>
<description>Accessibility statements are an ideal place to empower visitors to your website. Most accessibility statements are too technical, and don't necessarily address the needs of the visitor. Those that do address the needs of visitors often have the information lost in a myriad of other information that is unlikely to be understood by the average visitor to the website. What should and shouldn't be included in an accessibility statement?</description>
<dc:date>2008-01-28T10:13:34Z</dc:date>
<dc:author>sebastien</dc:author>
<dc:subject>accessibilité, aide, mentions</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://juicystudio.com/article/writing-a-good-accessibility-statement.php"><img border="0" src="http://blogmarks.net/screenshots/2008/01/28/fb8d26bd4c9dbb49534eca9f315115f3.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://juicystudio.com/article/writing-a-good-accessibility-statement.php">Writing a Good Accessibility Statement</a></h4>
 
by <a href="http://blogmarks.net/user/sebastien">sebastien</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/459785">1 other(s)</a> 
<p class="description">Accessibility statements are an ideal place to empower visitors to your website. Most accessibility statements are too technical, and don't necessarily address the needs of the visitor. Those that do address the needs of visitors often have the information lost in a myriad of other information that is unlikely to be understood by the average visitor to the website. What should and shouldn't be included in an accessibility statement?</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/accessibilit%25C3%25A9">accessibilité</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/aide">aide</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mentions">mentions</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057675075">Copy</a> | 
<a href="http://blogmarks.net/link/459785">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ravi/mark/1057668029">
<title>Web Site Assembles U.S. Prewar Claims - NYT</title>
<link>http://www.nytimes.com/2008/01/23/washington/23database.html?_r=1&amp;ex=1358830800&amp;en=1d00aff3a822aa82&amp;ei=5090&amp;partner=rssuserland&amp;emc=rss&amp;oref=slogin</link>
<description>Students of how the Bush administration led the nation into the Iraq war can now go online to browse a comprehensive database of top officials’ statements before the invasion...</description>
<dc:date>2008-01-23T16:27:13Z</dc:date>
<dc:author>ravi</dc:author>
<dc:subject>iraq</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.nytimes.com/2008/01/23/washington/23database.html?_r=1&amp;ex=1358830800&amp;en=1d00aff3a822aa82&amp;ei=5090&amp;partner=rssuserland&amp;emc=rss&amp;oref=slogin"><img border="0" src="http://blogmarks.net/screenshots/2008/01/23/f2dd3dbdd6f5c062193d8d87b3e2aa7b.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.nytimes.com/2008/01/23/washington/23database.html?_r=1&amp;ex=1358830800&amp;en=1d00aff3a822aa82&amp;ei=5090&amp;partner=rssuserland&amp;emc=rss&amp;oref=slogin">Web Site Assembles U.S. Prewar Claims - NYT</a></h4>
 
by <a href="http://blogmarks.net/user/ravi">ravi</a> 
<p class="description">Students of how the Bush administration led the nation into the Iraq war can now go online to browse a comprehensive database of top officials’ statements before the invasion...</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/iraq">iraq</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057668029">Copy</a> | 
<a href="http://blogmarks.net/link/2643299">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1057518987">
<title>Burningbird » We Can't Afford Another Browser War</title>
<link>http://burningbird.net/technology/we-cant-afford-another-browser-war/</link>
<description>&lt;blockquote&gt;&lt;p&gt;&quot;So I'll expect to see no more of these lies spread by you.&quot; No matter how angry you get, or frustrated, or peeved, if you want to work in an open standards group, particularly if you want to lead an open standards effect, you can't write statements like this! Period. End of story. Along with the authority of leadership comes responsibility, and such statements are irresponsible. &lt;/p&gt;&lt;/blockquote&gt;

L'arrogance est la principale source de problèmes dans les groupes de discussion aujourd'hui. C'est vraiment dommage.</description>
<dc:date>2007-11-02T01:03:34Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>standards, w3c</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://burningbird.net/technology/we-cant-afford-another-browser-war/"><img border="0" src="http://blogmarks.net/screenshots/2007/11/02/ead0e313c7d7b4e3c9444e7f5eba42eb.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://burningbird.net/technology/we-cant-afford-another-browser-war/">Burningbird » We Can't Afford Another Browser War</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>"So I'll expect to see no more of these lies spread by you." No matter how angry you get, or frustrated, or peeved, if you want to work in an open standards group, particularly if you want to lead an open standards effect, you can't write statements like this! Period. End of story. Along with the authority of leadership comes responsibility, and such statements are irresponsible. </p></blockquote>

L'arrogance est la principale source de problèmes dans les groupes de discussion aujourd'hui. C'est vraiment dommage.</div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/standards">standards</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/w3c">w3c</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057518987">Copy</a> | 
<a href="http://blogmarks.net/link/2508114">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Rik/mark/1057464949">
<title>The python logging module is much better than print statements | t 1: Matt Wilson's blog</title>
<link>http://blog.tplus1.com/index.php/2007/09/28/the-python-logging-module-is-much-better-than-print-statements/</link>
<description></description>
<dc:date>2007-10-01T20:44:38Z</dc:date>
<dc:author>Rik</dc:author>
<dc:subject>python, log</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://blog.tplus1.com/index.php/2007/09/28/the-python-logging-module-is-much-better-than-print-statements/"><img border="0" src="http://blogmarks.net/screenshots/2007/10/01/dea02f7a4fee57ba5b522f6b5811eda2.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://blog.tplus1.com/index.php/2007/09/28/the-python-logging-module-is-much-better-than-print-statements/">The python logging module is much better than print statements | t 1: Matt Wilson's blog</a></h4>
 
by <a href="http://blogmarks.net/user/Rik">Rik</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/log">log</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057464949">Copy</a> | 
<a href="http://blogmarks.net/link/2461575">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1057457640">
<title>Python: Myths about Indentation</title>
<link>http://www.secnetix.de/~olli/Python/block_indentation.hawk</link>
<description>&lt;blockquote&gt;&lt;p&gt;Only the indentation level of your statements is significant (i.e. the whitespace at the very left of your statements). Everywhere else, whitespace is not significant and can be used as you like, just like in any other language. You can also insert empty lines that contain nothing (or only arbitrary whitespace) anywhere.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2007-09-26T21:14:48Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.secnetix.de/~olli/Python/block_indentation.hawk"><img border="0" src="http://blogmarks.net/screenshots/2007/09/26/83afbadabbf2b795ad576a47d862a839.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.secnetix.de/~olli/Python/block_indentation.hawk">Python: Myths about Indentation</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Only the indentation level of your statements is significant (i.e. the whitespace at the very left of your statements). Everywhere else, whitespace is not significant and can be used as you like, just like in any other language. You can also insert empty lines that contain nothing (or only arbitrary whitespace) anywhere.</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=1057457640">Copy</a> | 
<a href="http://blogmarks.net/link/2454653">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/abar65/mark/1057450813">
<title>The Five-Step Plan for Creating Personal Mission Statements</title>
<link>http://www.quintcareers.com/creating_personal_mission_statements.html</link>
<description></description>
<dc:date>2007-09-21T13:56:17Z</dc:date>
<dc:author>abar65</dc:author>
<dc:subject>lifehacks, work, gtd</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.quintcareers.com/creating_personal_mission_statements.html"><img border="0" src="http://blogmarks.net/screenshots/2007/09/21/9879dc117e0c8072ce78bd494472aad3.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.quintcareers.com/creating_personal_mission_statements.html">The Five-Step Plan for Creating Personal Mission Statements</a></h4>
 
by <a href="http://blogmarks.net/user/abar65">abar65</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/87132">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lifehacks">lifehacks</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/gtd">gtd</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057450813">Copy</a> | 
<a href="http://blogmarks.net/link/87132">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mbertier/mark/1057398771">
<title>Importing Python Modules ::: www.effbot.org</title>
<link>http://effbot.org/zone/import-confusion.htm</link>
<description>The import and from-import statements are a constant cause of serious confusion for newcomers to Python. Luckily, once you've figured out what they really do, you'll never have problems with them again.

This note tries to sort out some of the more common issues related to import and from-import and everything.</description>
<dc:date>2007-08-14T10:53:02Z</dc:date>
<dc:author>mbertier</dc:author>
<dc:subject>python, clevermarks, basics</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://effbot.org/zone/import-confusion.htm"><img border="0" src="http://blogmarks.net/screenshots/2007/08/14/621a1187ecbe8aa975c0583dff10b48f.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://effbot.org/zone/import-confusion.htm">Importing Python Modules ::: www.effbot.org</a></h4>
 
by <a href="http://blogmarks.net/user/mbertier">mbertier</a> 
<p class="description">The import and from-import statements are a constant cause of serious confusion for newcomers to Python. Luckily, once you've figured out what they really do, you'll never have problems with them again.

This note tries to sort out some of the more common issues related to import and from-import and everything.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/clevermarks">clevermarks</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/basics">basics</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057398771">Copy</a> | 
<a href="http://blogmarks.net/link/2402470">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/sylvainulg/mark/1057390728">
<title>XML::XPath - a set of modules for parsing and evaluating XPath statements - search.cpan.org</title>
<link>http://search.cpan.org/dist/XML-XPath/XPath.pm</link>
<description>programmable expressions to access items in an XML document ... massively used in meta-workbench project.</description>
<dc:date>2007-08-08T09:17:33Z</dc:date>
<dc:author>sylvainulg</dc:author>
<dc:subject>desktop, xml, perl, programming</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://search.cpan.org/dist/XML-XPath/XPath.pm"><img border="0" src="http://blogmarks.net/screenshots/2007/08/08/87ca74a0bb2e05be79c7b1c4c6b73d1c.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://search.cpan.org/dist/XML-XPath/XPath.pm">XML::XPath - a set of modules for parsing and evaluating XPath statements - search.cpan.org</a></h4>
 
by <a href="http://blogmarks.net/user/sylvainulg">sylvainulg</a> 
<p class="description">programmable expressions to access items in an XML document ... massively used in meta-workbench project.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/desktop">desktop</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/xml">xml</a>
<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/programming">programming</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057390728">Copy</a> | 
<a href="http://blogmarks.net/link/2395556">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/jpcaruana/mark/1057370566">
<title>Oracle SQL Developer</title>
<link>http://www.oracle.com/technology/products/database/sql_developer/index.html</link>
<description>Oracle SQL Developer is a free graphical tool for database development. With SQL Developer, you can browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. You can also run any number of provided reports, as well as create and save your own. SQL Developer enhances productivity and simplifies your database development tasks.

SQL Developer can connect to any Oracle Database version 9.2.0.1 and later and runs on Windows, Linux and Mac OSX.</description>
<dc:date>2007-07-31T10:24:06Z</dc:date>
<dc:author>jpcaruana</dc:author>
<dc:subject>gratuit, linux, bdd, mac, windows, poste de travail, apps</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.oracle.com/technology/products/database/sql_developer/index.html"><img border="0" src="http://blogmarks.net/screenshots/2007/07/31/e3f6d765a44c2ed1bc599e33069f896e.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.oracle.com/technology/products/database/sql_developer/index.html">Oracle SQL Developer</a></h4>
 
by <a href="http://blogmarks.net/user/jpcaruana">jpcaruana</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/639523">2 other(s)</a> 
<p class="description">Oracle SQL Developer is a free graphical tool for database development. With SQL Developer, you can browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. You can also run any number of provided reports, as well as create and save your own. SQL Developer enhances productivity and simplifies your database development tasks.

SQL Developer can connect to any Oracle Database version 9.2.0.1 and later and runs on Windows, Linux and Mac OSX.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/gratuit">gratuit</a>
<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/bdd">bdd</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/mac">mac</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/windows">windows</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/poste%2Bde%2Btravail">poste de travail</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/apps">apps</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057370566">Copy</a> | 
<a href="http://blogmarks.net/link/639523">React (1)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/pvergain/mark/1057341487">
<title>Try Python - a Python statement evaluator</title>
<link>http://www.mired.org/home/mwm/try_python/</link>
<description>Just type Python statements into the console window. If you are entering text at the end of the console and hit return, the last line will be evaluated, and the results will be printed. While most statements — print, import and assignment — work, you can't define functions or classes (yet, I hope).

The anchors on this page will open or close bits of documentation on Python or Try Python, helping to guide you through the various things you can do with Python, or about the page.</description>
<dc:date>2007-07-13T10:13:28Z</dc:date>
<dc:author>pvergain</dc:author>
<dc:subject>python</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.mired.org/home/mwm/try_python/"><img border="0" src="http://blogmarks.net/screenshots/2007/07/18/bb309268d384c5a1a40d396b94c3d334.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.mired.org/home/mwm/try_python/">Try Python - a Python statement evaluator</a></h4>
 
by <a href="http://blogmarks.net/user/pvergain">pvergain</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/1132449">2 other(s)</a> 
<p class="description">Just type Python statements into the console window. If you are entering text at the end of the console and hit return, the last line will be evaluated, and the results will be printed. While most statements — print, import and assignment — work, you can't define functions or classes (yet, I hope).

The anchors on this page will open or close bits of documentation on Python or Try Python, helping to guide you through the various things you can do with Python, or about the page.</p>
<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=1057341487">Copy</a> | 
<a href="http://blogmarks.net/link/1132449">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/greut/mark/1057319403">
<title>css-redundancy-checker - Google Code</title>
<link>http://code.google.com/p/css-redundancy-checker/</link>
<description>A simple script that, given a CSS stylesheet and either a .txt file listing URLs of HTML files, or a directory of HTML files, will iterate over them all and list the CSS statements in the stylesheet which are never called in the HTML.</description>
<dc:date>2007-07-06T15:04:16Z</dc:date>
<dc:author>greut</dc:author>
<dc:subject>css, code, google, html</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://code.google.com/p/css-redundancy-checker/"><img border="0" src="http://blogmarks.net/screenshots/2007/07/06/881d203e984f9605cf9e5d5f8dccd119.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://code.google.com/p/css-redundancy-checker/">css-redundancy-checker - Google Code</a></h4>
 
by <a href="http://blogmarks.net/user/greut">greut</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2335797">1 other(s)</a> 
<p class="description">A simple script that, given a CSS stylesheet and either a .txt file listing URLs of HTML files, or a directory of HTML files, will iterate over them all and list the CSS statements in the stylesheet which are never called in the HTML.</p>
<p class="tags">
<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/code">code</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/html">html</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057319403">Copy</a> | 
<a href="http://blogmarks.net/link/2335797">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/ms_michel/mark/1057319289">
<title>The CSS Redundancy Checker</title>
<link>http://infovore.org/archives/2007/07/06/the-css-redundancy-checker/</link>
<description>A simple script that, given a CSS stylesheet and either a .txt file listing URLs of HTML files, or a directory of HTML files, will iterate over them all and list the CSS statements in the stylesheet which are never called in the HTML.</description>
<dc:date>2007-07-06T13:15:47Z</dc:date>
<dc:author>ms_michel</dc:author>
<dc:subject>css</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://infovore.org/archives/2007/07/06/the-css-redundancy-checker/"><img border="0" src="http://blogmarks.net/screenshots/2007/07/06/baa29b7503f0d8427ce7b5f78fbbe960.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://infovore.org/archives/2007/07/06/the-css-redundancy-checker/">The CSS Redundancy Checker</a></h4>
 
by <a href="http://blogmarks.net/user/ms_michel">ms_michel</a> 
<p class="description">A simple script that, given a CSS stylesheet and either a .txt file listing URLs of HTML files, or a directory of HTML files, will iterate over them all and list the CSS statements in the stylesheet which are never called in the HTML.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057319289">Copy</a> | 
<a href="http://blogmarks.net/link/2335691">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mozkart/mark/1057311281">
<title>Imagining the Internet</title>
<link>http://www.elon.edu/e-web/predictions/early90s/</link>
<description>4,200 predictions, biographies, and more

This section of Imagining the Internet, the Early 1990s Predictions Database, includes a revealing slice of history reflected in various informative data sets and in the carefully recorded words of an eclectic group of internet pioneers.

The highlight here is the searchable and browseable selection of predictive remarks made between 1990 and 1995 about the future of networked communications. The early 1990s Predictions Database contains more than 4,200 statements made by 1,000 different voices of the time, from well-connected stakeholders to common netizens. They tell about their hopes and fears, their concerns and conflicts. It is the story of the people who supported or opposed a networked world, and they tell it in their own words.</description>
<dc:date>2007-07-03T12:42:51Z</dc:date>
<dc:author>mozkart</dc:author>
<dc:subject>internet</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.elon.edu/e-web/predictions/early90s/"><img border="0" src="http://blogmarks.net/screenshots/2007/07/03/e062afbe4e3aa9da5d1a5336cec6841d.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.elon.edu/e-web/predictions/early90s/">Imagining the Internet</a></h4>
 
by <a href="http://blogmarks.net/user/mozkart">mozkart</a> 
<p class="description">4,200 predictions, biographies, and more

This section of Imagining the Internet, the Early 1990s Predictions Database, includes a revealing slice of history reflected in various informative data sets and in the carefully recorded words of an eclectic group of internet pioneers.

The highlight here is the searchable and browseable selection of predictive remarks made between 1990 and 1995 about the future of networked communications. The early 1990s Predictions Database contains more than 4,200 statements made by 1,000 different voices of the time, from well-connected stakeholders to common netizens. They tell about their hopes and fears, their concerns and conflicts. It is the story of the people who supported or opposed a networked world, and they tell it in their own words.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/internet">internet</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1057311281">Copy</a> | 
<a href="http://blogmarks.net/link/2328037">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/mbertier/mark/2634660">
<title>Google Code - Updates: Google releases patches that enhance the manageability and reliability of MySQL</title>
<link>http://google-code-updates.blogspot.com/2007/04/google-releases-patches-that-enhance.html</link>
<description>The high availability features include support for semi-synchronous replication, mirroring the binlog from a master to a slave, quickly promoting a slave to a master during failover, and keeping InnoDB and replication state on a slave consistent during crash recovery.

The manageability features include new SQL statements for monitoring resource usage by table and account. This includes the ability to count the number of rows fetched or changed per account or per table. It also includes the number of seconds of database time an account uses to execute SQL commands.</description>
<dc:date>2007-04-24T12:27:06Z</dc:date>
<dc:author>mbertier</dc:author>
<dc:subject>groupe:clever age, open source, google, mysql</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://google-code-updates.blogspot.com/2007/04/google-releases-patches-that-enhance.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://google-code-updates.blogspot.com/2007/04/google-releases-patches-that-enhance.html">Google Code - Updates: Google releases patches that enhance the manageability and reliability of MySQL</a></h4>
 
by <a href="http://blogmarks.net/user/mbertier">mbertier</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2161978">1 other(s)</a> 
<p class="description">The high availability features include support for semi-synchronous replication, mirroring the binlog from a master to a slave, quickly promoting a slave to a master during failover, and keeping InnoDB and replication state on a slave consistent during crash recovery.

The manageability features include new SQL statements for monitoring resource usage by table and account. This includes the ability to count the number of rows fetched or changed per account or per table. It also includes the number of seconds of database time an account uses to execute SQL commands.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/groupe%253Aclever%2Bage">groupe:clever age</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/open%2Bsource">open source</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/mysql">mysql</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2634660">Copy</a> | 
<a href="http://blogmarks.net/link/2161978">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/hjshare/mark/2588872">
<title>How to prevent spyware</title>
<link>http://www.bestshareware.net/spywareguide/spywareprevent.htm</link>
<description>     Spyware and other unwanted software can invade your privacy, bombard you with pop-up windows, slow down your computer, and even make your computer crash. Here are several ways you can help protect your computer against spyware and other unwanted software.

    On This Page:

    Step 1: Update your software
    Step 2: Adjust Internet Explorer security settings
    Step 3: Use a firewall
    Step 4: Explore and download more safely
    Step 5: Download and install antispyware protection

    Step 1: Update your software
    If you use Windows XP, one way to help prevent spyware and other unwanted software is to make sure all your software is updated. First, visit Microsoft Update to confirm that you have Automatic Updates turned on and that you've downloaded all the latest critical and security updates.
    To get the latest updates:

       1. In Internet Explorer, click Tools and then click Windows Update.
       2. Choose right programs you need to update your windows system. 


    Step 2: Adjust Internet Explorer security settings
    You can adjust your Internet Explorer Web browser's security settings to determine how-much or how-little information you are willing to accept from a Web site. We recommends that you set the security settings for the Internet zone to Medium or higher.
    To view your current Internet Explorer security settings:

       1. In Internet Explorer, click Tools and then click Internet Options.
       2. Select the Security tab. 


    Step 3: Use a firewall
    While most spyware and other unwanted software come bundled with other programs or originate from unscrupulous Web sites, a small amount of spyware can actually be placed on your computer remotely by hackers. Installing a firewall or using the firewall that's built into Windows XP provides a helpful defense against these hackers. Also, you can visit our firewall software site: Personal Firewall and Business Firewall to choose the right software for you.
    Step 4: Explore and download more safely
    The best defense against spyware and other unwanted software is not to download it in the first place. Here are a few helpful tips that can protect you from downloading software you don't want:

        * Only download programs from Web sites you trust. If you're not sure whether to trust a program you are considering downloading, ask a knowledgeable friend or enter the name of the program into your favorite search engine to see if anyone else has reported that it contains spyware.
        * Read all security warnings, license agreements, and privacy statements associated with any software you download.
        * Never click &quot;agree&quot; or &quot;OK&quot; to close a window. Instead, click the red &quot;x&quot; in the top right corner of the window or press the Alt + F4 buttons on your keyboard to close a window.
        * Be wary of popular &quot;free&quot; music and movie file-sharing programs, and be sure you clearly understand all of the software packaged with those programs. 


    Step 5: Download and install antispyware protection
    Bestshareware currently offers antispyware software for you; more information is available on our Bestshareware AntiSpy Software site.

    Additional security tools to help detect, block, and remove unwanted software from your computer are available on our Security resources page. 

</description>
<dc:date>2007-04-18T02:29:58Z</dc:date>
<dc:author>hjshare</dc:author>
<dc:subject>prevent spyware</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.bestshareware.net/spywareguide/spywareprevent.htm"><img border="0" src="http://blogmarks.net/screenshots/2007/04/18/3f54639ed075684ab8e17dc18230815c.png" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.bestshareware.net/spywareguide/spywareprevent.htm">How to prevent spyware</a></h4>
 
by <a href="http://blogmarks.net/user/hjshare">hjshare</a> 
<p class="description">     Spyware and other unwanted software can invade your privacy, bombard you with pop-up windows, slow down your computer, and even make your computer crash. Here are several ways you can help protect your computer against spyware and other unwanted software.

    On This Page:

    Step 1: Update your software
    Step 2: Adjust Internet Explorer security settings
    Step 3: Use a firewall
    Step 4: Explore and download more safely
    Step 5: Download and install antispyware protection

    Step 1: Update your software
    If you use Windows XP, one way to help prevent spyware and other unwanted software is to make sure all your software is updated. First, visit Microsoft Update to confirm that you have Automatic Updates turned on and that you've downloaded all the latest critical and security updates.
    To get the latest updates:

       1. In Internet Explorer, click Tools and then click Windows Update.
       2. Choose right programs you need to update your windows system. 


    Step 2: Adjust Internet Explorer security settings
    You can adjust your Internet Explorer Web browser's security settings to determine how-much or how-little information you are willing to accept from a Web site. We recommends that you set the security settings for the Internet zone to Medium or higher.
    To view your current Internet Explorer security settings:

       1. In Internet Explorer, click Tools and then click Internet Options.
       2. Select the Security tab. 


    Step 3: Use a firewall
    While most spyware and other unwanted software come bundled with other programs or originate from unscrupulous Web sites, a small amount of spyware can actually be placed on your computer remotely by hackers. Installing a firewall or using the firewall that's built into Windows XP provides a helpful defense against these hackers. Also, you can visit our firewall software site: Personal Firewall and Business Firewall to choose the right software for you.
    Step 4: Explore and download more safely
    The best defense against spyware and other unwanted software is not to download it in the first place. Here are a few helpful tips that can protect you from downloading software you don't want:

        * Only download programs from Web sites you trust. If you're not sure whether to trust a program you are considering downloading, ask a knowledgeable friend or enter the name of the program into your favorite search engine to see if anyone else has reported that it contains spyware.
        * Read all security warnings, license agreements, and privacy statements associated with any software you download.
        * Never click "agree" or "OK" to close a window. Instead, click the red "x" in the top right corner of the window or press the Alt + F4 buttons on your keyboard to close a window.
        * Be wary of popular "free" music and movie file-sharing programs, and be sure you clearly understand all of the software packaged with those programs. 


    Step 5: Download and install antispyware protection
    Bestshareware currently offers antispyware software for you; more information is available on our Bestshareware AntiSpy Software site.

    Additional security tools to help detect, block, and remove unwanted software from your computer are available on our Security resources page. 

</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/prevent%2Bspyware">prevent spyware</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2588872">Copy</a> | 
<a href="http://blogmarks.net/link/2119699">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/YukihiroKawashi/mark/2070266">
<title>Christians Help Victims of Recent Florida Tornado</title>
<link>http://yukiohirohata.mohdlazim.name.my/</link>
<description>Help Our People Eat or HOPE is an emergency response vehicle owned by the Society of St Vincent de Paul and operated under statements of understanding with FEMA the American Red Cross and other disasterreliefmasscare agencies</description>
<dc:date>2007-02-21T07:22:36Z</dc:date>
<dc:author>YukihiroKawashi</dc:author>
<dc:subject>dreams, funny, videos, power, review</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://yukiohirohata.mohdlazim.name.my/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://yukiohirohata.mohdlazim.name.my/">Christians Help Victims of Recent Florida Tornado</a></h4>
 
by <a href="http://blogmarks.net/user/YukihiroKawashi">YukihiroKawashi</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/1751694">2 other(s)</a> 
<p class="description">Help Our People Eat or HOPE is an emergency response vehicle owned by the Society of St Vincent de Paul and operated under statements of understanding with FEMA the American Red Cross and other disasterreliefmasscare agencies</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dreams">dreams</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/videos">videos</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/power">power</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/review">review</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=2070266">Copy</a> | 
<a href="http://blogmarks.net/link/1751694">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>