<?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/syntax">
<title>Public marks with search syntax</title>
<description>Public marks with search syntax</description>
<link>http://blogmarks.net/marks/search/syntax</link>
<items><rdf:Seq><rdf:li resource="http://blogmarks.net/api/user/srcmax/mark/1058561029"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058553982"/>
<rdf:li resource="http://blogmarks.net/api/user/nicolargo/mark/1058551851"/>
<rdf:li resource="http://blogmarks.net/api/user/tbeaumanoir/mark/1058547445"/>
<rdf:li resource="http://blogmarks.net/api/user/m.meixide/mark/1058542417"/>
<rdf:li resource="http://blogmarks.net/api/user/marco/mark/1058508763"/>
<rdf:li resource="http://blogmarks.net/api/user/Spone/mark/1058472997"/>
<rdf:li resource="http://blogmarks.net/api/user/decembre/mark/1058547876"/>
<rdf:li resource="http://blogmarks.net/api/user/Xavier Lacot/mark/1058453279"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058447479"/>
<rdf:li resource="http://blogmarks.net/api/user/decembre/mark/1058547935"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058446888"/>
<rdf:li resource="http://blogmarks.net/api/user/night.kame/mark/1058446188"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058435381"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058434461"/>
<rdf:li resource="http://blogmarks.net/api/user/marco/mark/1058422660"/>
<rdf:li resource="http://blogmarks.net/api/user/oqdbpo/mark/1058368324"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058338883"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058331116"/>
<rdf:li resource="http://blogmarks.net/api/user/philippej/mark/1058329982"/>
<rdf:li resource="http://blogmarks.net/api/user/karlcow/mark/1058326638"/>
<rdf:li resource="http://blogmarks.net/api/user/Yann_L/mark/1058317680"/>
<rdf:li resource="http://blogmarks.net/api/user/vrossign/mark/1058311807"/>
<rdf:li resource="http://blogmarks.net/api/user/decembre/mark/1058548085"/>
<rdf:li resource="http://blogmarks.net/api/user/br1o/mark/1058557219"/>
</rdf:Seq></items>
</channel>
<item rdf:about="http://blogmarks.net/api/user/srcmax/mark/1058561029">
<title>LESS - Leaner CSS</title>
<link>http://lesscss.org/</link>
<description>LESS extends CSS with: variables, mixins, operations and nested rules. Best of all, LESS uses existing CSS syntax. This means you can rename your current .css files to .less and they'll just work.</description>
<dc:date>2009-10-23T08:22:03Z</dc:date>
<dc:author>srcmax</dc:author>
<dc:subject>less, css, intégration</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://lesscss.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/23/394b8f945f9d8a14b1f312a4477503e6.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://lesscss.org/">LESS - Leaner CSS</a></h4>
 
by <a href="http://blogmarks.net/user/srcmax">srcmax</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3233933">4 other(s)</a> 
<p class="description">LESS extends CSS with: variables, mixins, operations and nested rules. Best of all, LESS uses existing CSS syntax. This means you can rename your current .css files to .less and they'll just work.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/less">less</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/int%25C3%25A9gration">intégration</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058561029">Copy</a> | 
<a href="http://blogmarks.net/link/3233933">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058553982">
<title>pyparsing</title>
<link>http://crpppc19.epfl.ch/doc/python-pyparsing/htmldoc/frames.html</link>
<description>The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. With pyparsing, you don't need to learn a new syntax for defining grammars or matching expressions - the parsing module provides a library of classes that you use to construct the grammar directly in Python.</description>
<dc:date>2009-10-18T18:20:45Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python, parser</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://crpppc19.epfl.ch/doc/python-pyparsing/htmldoc/frames.html"><img border="0" src="http://blogmarks.net/screenshots/2009/10/18/f9d8dcdf49bce6cc4245e0362cfac8bb.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://crpppc19.epfl.ch/doc/python-pyparsing/htmldoc/frames.html">pyparsing</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<p class="description">The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. With pyparsing, you don't need to learn a new syntax for defining grammars or matching expressions - the parsing module provides a library of classes that you use to construct the grammar directly in Python.</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/parser">parser</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058553982">Copy</a> | 
<a href="http://blogmarks.net/link/3386805">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/nicolargo/mark/1058551851">
<title>WordPress › SyntaxHighlighter Evolved « WordPress Plugins</title>
<link>http://wordpress.org/extend/plugins/syntaxhighlighter/installation/</link>
<description>Syntax highlighter pour Wordpress</description>
<dc:date>2009-10-16T10:30:59Z</dc:date>
<dc:author>nicolargo</dc:author>
<dc:subject>wordpress, plugin</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://wordpress.org/extend/plugins/syntaxhighlighter/installation/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/16/1f4abda5a991a8dc5f4bbd4041a177d7.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://wordpress.org/extend/plugins/syntaxhighlighter/installation/">WordPress › SyntaxHighlighter Evolved « WordPress Plugins</a></h4>
 
by <a href="http://blogmarks.net/user/nicolargo">nicolargo</a> 
<p class="description">Syntax highlighter pour Wordpress</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/wordpress">wordpress</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/plugin">plugin</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058551851">Copy</a> | 
<a href="http://blogmarks.net/link/3385000">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/tbeaumanoir/mark/1058547445">
<title>Home - csscaffold - GitHub</title>
<link>http://wiki.github.com/anthonyshort/csscaffold</link>
<description>CSScaffold is a CSS framework written in PHP. Rather than try and create a static framework that uses the standard abilities of CSS, like Blueprint, it uses PHP to extend CSS. The syntax looks and feels exactly like CSS, except that you have some new, powerful abilities.</description>
<dc:date>2009-10-12T08:15:22Z</dc:date>
<dc:author>tbeaumanoir</dc:author>
<dc:subject>css, framework</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://wiki.github.com/anthonyshort/csscaffold"><img border="0" src="http://blogmarks.net/screenshots/2009/10/12/81477ecdf86a58c16b9aacaa7d14bd17.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://wiki.github.com/anthonyshort/csscaffold">Home - csscaffold - GitHub</a></h4>
 
by <a href="http://blogmarks.net/user/tbeaumanoir">tbeaumanoir</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3320082">3 other(s)</a> 
<p class="description">CSScaffold is a CSS framework written in PHP. Rather than try and create a static framework that uses the standard abilities of CSS, like Blueprint, it uses PHP to extend CSS. The syntax looks and feels exactly like CSS, except that you have some new, powerful abilities.</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/framework">framework</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547445">Copy</a> | 
<a href="http://blogmarks.net/link/3320082">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/m.meixide/mark/1058542417">
<title>Linguistic Tree Constructor: LTC</title>
<link>http://ltc.sourceforge.net/about.html</link>
<description>LTC is a free program for building linguistic syntax trees from text.

The user points and clicks their way to a syntactic analysis.

LTC is intended for quickly producing syntactic analyses of large amounts of text (think 100,000-200,000 words, or more).

The program does no analysis on its own. The user is completely free to draw the tree however he or she wishes. However, the program makes sure that the tree is a tree and not some other kind of graph.</description>
<dc:date>2009-10-08T08:58:04Z</dc:date>
<dc:author>m.meixide</dc:author>
<dc:subject>lingua</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://ltc.sourceforge.net/about.html"><img border="0" src="http://blogmarks.net/screenshots/2009/10/08/dc409d41d8894327e464535a415e827e.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://ltc.sourceforge.net/about.html">Linguistic Tree Constructor: LTC</a></h4>
 
by <a href="http://blogmarks.net/user/m.meixide">m.meixide</a> 
<p class="description">LTC is a free program for building linguistic syntax trees from text.

The user points and clicks their way to a syntactic analysis.

LTC is intended for quickly producing syntactic analyses of large amounts of text (think 100,000-200,000 words, or more).

The program does no analysis on its own. The user is completely free to draw the tree however he or she wishes. However, the program makes sure that the tree is a tree and not some other kind of graph.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/lingua">lingua</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058542417">Copy</a> | 
<a href="http://blogmarks.net/link/3377082">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/marco/mark/1058508763">
<title>Bulletproof @font-face syntax</title>
<link>http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/</link>
<description></description>
<dc:date>2009-09-18T15:43:37Z</dc:date>
<dc:author>marco</dc:author>
<dc:subject>@font-face, bulletproof</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/"><img border="0" src="http://blogmarks.net/screenshots/2009/09/18/3be3476832290e7e1531bb3f6180d3b3.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/">Bulletproof @font-face syntax</a></h4>
 
by <a href="http://blogmarks.net/user/marco">marco</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/%2540font-face">@font-face</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bulletproof">bulletproof</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058508763">Copy</a> | 
<a href="http://blogmarks.net/link/3346853">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Spone/mark/1058472997">
<title>Home - csscaffold - GitHub</title>
<link>http://wiki.github.com/anthonyshort/csscaffold</link>
<description>CSScaffold is a CSS framework written in PHP. Rather than try and create a static framework that uses the standard abilities of CSS, like Blueprint, it uses PHP to extend CSS. The syntax looks and feels exactly like CSS, except that you have some new, powerful abilities.

The best part is that all of this is done transparently. You can drop Scaffold into your site and you’ll instantly have access to all of its functionality.</description>
<dc:date>2009-08-19T17:02:47Z</dc:date>
<dc:author>Spone</dc:author>
<dc:subject>css, php, framework</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://wiki.github.com/anthonyshort/csscaffold"><img border="0" src="http://blogmarks.net/screenshots/2009/10/12/81477ecdf86a58c16b9aacaa7d14bd17.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://wiki.github.com/anthonyshort/csscaffold">Home - csscaffold - GitHub</a></h4>
 
by <a href="http://blogmarks.net/user/Spone">Spone</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3320082">3 other(s)</a> 
<p class="description">CSScaffold is a CSS framework written in PHP. Rather than try and create a static framework that uses the standard abilities of CSS, like Blueprint, it uses PHP to extend CSS. The syntax looks and feels exactly like CSS, except that you have some new, powerful abilities.

The best part is that all of this is done transparently. You can drop Scaffold into your site and you’ll instantly have access to all of its functionality.</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/php">php</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/framework">framework</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058472997">Copy</a> | 
<a href="http://blogmarks.net/link/3320082">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/decembre/mark/1058547876">
<title>FireRainbow - Javascript syntax highlighting for Firebug 1.3+  - Extension Firefox</title>
<link>https://addons.mozilla.org/en-US/firefox/addon/9603?collection_uuid=bb23f90d%26%2345%3B5fc3%26%2345%3B4b54%26%2345%3B40b3%26%2345%3B1795a2ae4ec1</link>
<description>Javascript syntax highlighting for Firebug 1.3+</description>
<dc:date>2009-08-08T21:16:05Z</dc:date>
<dc:author>decembre</dc:author>
<dc:subject>extension, firefox, dev, firebug, java, javascript</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://addons.mozilla.org/en-US/firefox/addon/9603?collection_uuid=bb23f90d%26%2345%3B5fc3%26%2345%3B4b54%26%2345%3B40b3%26%2345%3B1795a2ae4ec1"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://addons.mozilla.org/en-US/firefox/addon/9603?collection_uuid=bb23f90d%26%2345%3B5fc3%26%2345%3B4b54%26%2345%3B40b3%26%2345%3B1795a2ae4ec1">FireRainbow - Javascript syntax highlighting for Firebug 1.3+  - Extension Firefox</a></h4>
 
by <a href="http://blogmarks.net/user/decembre">decembre</a> 
<p class="description">Javascript syntax highlighting for Firebug 1.3+</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/extension">extension</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox">firefox</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firebug">firebug</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/java">java</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/javascript">javascript</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547876">Copy</a> | 
<a href="http://blogmarks.net/link/3381602">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Xavier Lacot/mark/1058453279">
<title>lessphp</title>
<link>http://leafo.net/lessphp/</link>
<description>lessphp is a compiler for the CSS LESS syntax, written in php.</description>
<dc:date>2009-08-03T14:08:00Z</dc:date>
<dc:author>Xavier Lacot</dc:author>
<dc:subject>php, css, compiler, less, syntax, development</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://leafo.net/lessphp/"><img border="0" src="http://blogmarks.net/screenshots/2009/08/04/d22e313be885cf3a5896fa034f7b47af.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://leafo.net/lessphp/">lessphp</a></h4>
 
by <a href="http://blogmarks.net/user/Xavier Lacot">Xavier Lacot</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3304994">2 other(s)</a> 
<p class="description">lessphp is a compiler for the CSS LESS syntax, written in php.</p>
<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/css">css</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/compiler">compiler</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/less">less</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax">syntax</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=1058453279">Copy</a> | 
<a href="http://blogmarks.net/link/3304994">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058447479">
<title>Automatic Generation of Syntax Diagrams with a Given Grammar</title>
<link>http://www-cgi.uni-regensburg.de/~brf09510/syntax.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;The following form calls a program written in C  , that converts a grammar into syntax diagrams. The diagrams can be used for direct printing and inclusion in printable text files. Two examples for a grammar are given (a variant of the EBNF-grammar and the XPath-grammar).&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-29T02:02:35Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>syntax, graph, grammaire, ebnf</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www-cgi.uni-regensburg.de/~brf09510/syntax.html"><img border="0" src="http://blogmarks.net/screenshots/2009/07/29/97803832b4ddf2c860426123e0052c13.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www-cgi.uni-regensburg.de/~brf09510/syntax.html">Automatic Generation of Syntax Diagrams with a Given Grammar</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3299251">1 other(s)</a> 
<div class="description"><blockquote><p>The following form calls a program written in C  , that converts a grammar into syntax diagrams. The diagrams can be used for direct printing and inclusion in printable text files. Two examples for a grammar are given (a variant of the EBNF-grammar and the XPath-grammar).</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax">syntax</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/graph">graph</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/grammaire">grammaire</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebnf">ebnf</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058447479">Copy</a> | 
<a href="http://blogmarks.net/link/3299251">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/decembre/mark/1058547935">
<title>Phoenix :: Add-ons for Firefox</title>
<link>https://addons.mozilla.org/en-US/firefox/addon/11708/</link>
<description>An editor with real time syntax highlighting which allows edit, run and test CSS, HTML and JavaScript code. Phoenix will tell you how many CSS and JS files are loaded into a page, how big these are,...</description>
<dc:date>2009-07-28T11:23:38Z</dc:date>
<dc:author>decembre</dc:author>
<dc:subject>firefox, css, javascript, editor, editeur, html, extension, webdev, utilitaire, dev, tool, site, script</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="https://addons.mozilla.org/en-US/firefox/addon/11708/"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="https://addons.mozilla.org/en-US/firefox/addon/11708/">Phoenix :: Add-ons for Firefox</a></h4>
 
by <a href="http://blogmarks.net/user/decembre">decembre</a> 
<p class="description">An editor with real time syntax highlighting which allows edit, run and test CSS, HTML and JavaScript code. Phoenix will tell you how many CSS and JS files are loaded into a page, how big these are,...</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/firefox">firefox</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</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/editor">editor</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/editeur">editeur</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/html">html</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/extension">extension</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/webdev">webdev</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/utilitaire">utilitaire</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tool">tool</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/site">site</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/script">script</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058547935">Copy</a> | 
<a href="http://blogmarks.net/link/3381649">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058446888">
<title>OkudaKit — Project Kenai</title>
<link>http://kenai.com/projects/okudakit</link>
<description>&lt;blockquote&gt;&lt;p&gt;Cocoa Syntax Highlighting Framework for use in Mac OS X desktop applications. Depends on ParseKit http://parsekit.com&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-28T10:42:45Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>cocoa, syntaxhighlight</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://kenai.com/projects/okudakit"><img border="0" src="http://blogmarks.net/screenshots/2009/07/28/514172c312a7257be139240d41e27209.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://kenai.com/projects/okudakit">OkudaKit — Project Kenai</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Cocoa Syntax Highlighting Framework for use in Mac OS X desktop applications. Depends on ParseKit http://parsekit.com</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/cocoa">cocoa</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntaxhighlight">syntaxhighlight</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058446888">Copy</a> | 
<a href="http://blogmarks.net/link/3299825">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/night.kame/mark/1058446188">
<title>Automatic Generation of Syntax Diagrams with a Given Grammar</title>
<link>http://www-cgi.uni-regensburg.de/~brf09510/syntax.html</link>
<description>&lt;blockquote&gt;&lt;p&gt;The following form calls a program written in C  , that converts a grammar into syntax diagrams.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Générateur de diagramme de syntaxe.&lt;/p&gt;</description>
<dc:date>2009-07-27T20:30:28Z</dc:date>
<dc:author>night.kame</dc:author>
<dc:subject>syntax diagram, ebnf, bnf</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www-cgi.uni-regensburg.de/~brf09510/syntax.html"><img border="0" src="http://blogmarks.net/screenshots/2009/07/29/97803832b4ddf2c860426123e0052c13.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www-cgi.uni-regensburg.de/~brf09510/syntax.html">Automatic Generation of Syntax Diagrams with a Given Grammar</a></h4>
 
by <a href="http://blogmarks.net/user/night.kame">night.kame</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3299251">1 other(s)</a> 
<div class="description"><blockquote><p>The following form calls a program written in C  , that converts a grammar into syntax diagrams.</p></blockquote>
<p>Générateur de diagramme de syntaxe.</p></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax%2Bdiagram">syntax diagram</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ebnf">ebnf</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/bnf">bnf</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058446188">Copy</a> | 
<a href="http://blogmarks.net/link/3299251">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058435381">
<title>Elixir – Trac</title>
<link>http://elixir.ematia.de/trac/wiki</link>
<description>&lt;blockquote&gt;&lt;p&gt;Elixir is a declarative layer on top of the SQLAlchemy library. It is a fairly thin wrapper, which provides the ability to create simple Python classes that map directly to relational database tables (this pattern is often referred to as the Active Record design pattern), providing many of the benefits of traditional databases without losing the convenience of Python objects.&lt;/p&gt;&lt;p&gt;Elixir is intended to replace the ActiveMapper SQLAlchemy extension, and the TurboEntity project but does not intend to replace SQLAlchemy's core features, and instead focuses on providing a simpler syntax for defining model objects when you do not need the full expressiveness of SQLAlchemy's manual mapper definitions.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-20T02:16:35Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>python, database, orm, activerecord</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://elixir.ematia.de/trac/wiki"><img border="0" src="http://blogmarks.net/screenshots/2009/07/20/16fa2bd82a4e5a6005eb0dbe995e2ce7.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://elixir.ematia.de/trac/wiki">Elixir – Trac</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Elixir is a declarative layer on top of the SQLAlchemy library. It is a fairly thin wrapper, which provides the ability to create simple Python classes that map directly to relational database tables (this pattern is often referred to as the Active Record design pattern), providing many of the benefits of traditional databases without losing the convenience of Python objects.</p><p>Elixir is intended to replace the ActiveMapper SQLAlchemy extension, and the TurboEntity project but does not intend to replace SQLAlchemy's core features, and instead focuses on providing a simpler syntax for defining model objects when you do not need the full expressiveness of SQLAlchemy's manual mapper definitions.</p></blockquote></div>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/python">python</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/database">database</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/orm">orm</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/activerecord">activerecord</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058435381">Copy</a> | 
<a href="http://blogmarks.net/link/3290155">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058434461">
<title>Sass - Syntactically Awesome Stylesheets</title>
<link>http://sass-lang.com//</link>
<description>&lt;blockquote&gt;&lt;p&gt;Sass makes CSS fun again. Sass is CSS, plus nested rules, variables, mixins, and more, all in a concise, readable syntax.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-07-18T23:02:56Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>css, ruby, sass</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://sass-lang.com//"><img border="0" src="http://blogmarks.net/screenshots/2009/07/18/978230efb9732f6cd966b95a5120a7b8.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://sass-lang.com//">Sass - Syntactically Awesome Stylesheets</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>Sass makes CSS fun again. Sass is CSS, plus nested rules, variables, mixins, and more, all in a concise, readable syntax.</p></blockquote></div>
<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/ruby">ruby</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sass">sass</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058434461">Copy</a> | 
<a href="http://blogmarks.net/link/3289363">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/marco/mark/1058422660">
<title>SafariSource</title>
<link>http://www.tildesoft.com/Misc.html</link>
<description>SafariSource is a SIMBL plugin that adds syntax coloring to Safari's source view</description>
<dc:date>2009-07-09T14:39:06Z</dc:date>
<dc:author>marco</dc:author>
<dc:subject>safari, plugin, source code, color, source</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.tildesoft.com/Misc.html"><img border="0" src="http://blogmarks.net/screenshots/2009/07/09/1c408a4ce77116c102f567e03bf30471.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.tildesoft.com/Misc.html">SafariSource</a></h4>
 
by <a href="http://blogmarks.net/user/marco">marco</a> 
<p class="description">SafariSource is a SIMBL plugin that adds syntax coloring to Safari's source view</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/safari">safari</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/source%2Bcode">source code</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/color">color</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/source">source</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058422660">Copy</a> | 
<a href="http://blogmarks.net/link/3280833">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/oqdbpo/mark/1058368324">
<title>LESS - Leaner CSS</title>
<link>http://lesscss.org/</link>
<description>Less uses existing css syntax. This means you can migrate your current .css files to .less in seconds and there is virtually no learning curve.

The best way to explain Less is to show you some code, so please go ahead and check out the examples below:</description>
<dc:date>2009-06-17T06:08:19Z</dc:date>
<dc:author>oqdbpo</dc:author>
<dc:subject>css, compile, ruby</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://lesscss.org/"><img border="0" src="http://blogmarks.net/screenshots/2009/10/23/394b8f945f9d8a14b1f312a4477503e6.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://lesscss.org/">LESS - Leaner CSS</a></h4>
 
by <a href="http://blogmarks.net/user/oqdbpo">oqdbpo</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3233933">4 other(s)</a> 
<p class="description">Less uses existing css syntax. This means you can migrate your current .css files to .less in seconds and there is virtually no learning curve.

The best way to explain Less is to show you some code, so please go ahead and check out the examples below:</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/compile">compile</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/ruby">ruby</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058368324">Copy</a> | 
<a href="http://blogmarks.net/link/3233933">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058338883">
<title>Linked Data Tutorial - NG</title>
<link>http://ld2sd.deri.org/lod-ng-tutorial/</link>
<description>&lt;blockquote&gt;&lt;p&gt;a practical guide to publish and consume linked data based on URIs, specified in [RFC3986], and RDFa (see [RDFA-SYNTAX]). It is in a sense an advanced tutorial as it requires some basic understanding regarding URIs, HTML, linked data, and RDFa. Guidelines what to do when are provided with this note.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-05-28T02:02:18Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>data, rdfa, tutorial, guide</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://ld2sd.deri.org/lod-ng-tutorial/"><img border="0" src="http://blogmarks.net/screenshots/2009/05/28/ecf2203a7f1427c4ab784402494b3882.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://ld2sd.deri.org/lod-ng-tutorial/">Linked Data Tutorial - NG</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>a practical guide to publish and consume linked data based on URIs, specified in [RFC3986], and RDFa (see [RDFA-SYNTAX]). It is in a sense an advanced tutorial as it requires some basic understanding regarding URIs, HTML, linked data, and RDFa. Guidelines what to do when are provided with this note.</p></blockquote></div>
<p class="tags">
<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/rdfa">rdfa</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tutorial">tutorial</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/guide">guide</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058338883">Copy</a> | 
<a href="http://blogmarks.net/link/3209378">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058331116">
<title>Understanding the Striped RDF/XML Syntax</title>
<link>http://www.w3.org/2001/10/stripes/</link>
<description>&lt;blockquote&gt;&lt;p&gt;This document provides a brief introduction to the underlying structure of the RDF/XML 1.0 graph serialization syntax. The Intended audience is mainly content and tool developers familiar with XML basics, and with the RDF model, who want a minimalistic understanding of RDF's XML syntax, so they can read and write RDF/XML with more confidence.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-05-20T20:02:21Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>xml, rdf</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.w3.org/2001/10/stripes/"><img border="0" src="http://blogmarks.net/screenshots/2009/05/20/27cedc49884e38f783dc1e8d129da2fc.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.w3.org/2001/10/stripes/">Understanding the Striped RDF/XML Syntax</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
<div class="description"><blockquote><p>This document provides a brief introduction to the underlying structure of the RDF/XML 1.0 graph serialization syntax. The Intended audience is mainly content and tool developers familiar with XML basics, and with the RDF model, who want a minimalistic understanding of RDF's XML syntax, so they can read and write RDF/XML with more confidence.</p></blockquote></div>
<p class="tags">
<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/rdf">rdf</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058331116">Copy</a> | 
<a href="http://blogmarks.net/link/3202598">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/philippej/mark/1058329982">
<title>Getting started with RDFa: Creating a basic FOAF profile</title>
<link>http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa</link>
<description>&quot;Now that the RDFa syntax is a full standard, and organisations like Yahoo! and Google are starting to index the data (see Google announces support for RDFa and Yahoo! into semantic web), it's worth putting more of your own data into your web-pages, by way of RDFa. A simple place to start is to modify your home-page or blog profile so that it includes FOAF information.&quot;</description>
<dc:date>2009-05-19T20:59:55Z</dc:date>
<dc:author>philippej</dc:author>
<dc:subject>foaf, rdfa</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa"><img border="0" src="http://blogmarks.net/screenshots/2009/05/19/19f6c41f2ef9eccf9cd9ac81fd3a9139.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa">Getting started with RDFa: Creating a basic FOAF profile</a></h4>
 
by <a href="http://blogmarks.net/user/philippej">philippej</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3197207">2 other(s)</a> 
<p class="description">"Now that the RDFa syntax is a full standard, and organisations like Yahoo! and Google are starting to index the data (see Google announces support for RDFa and Yahoo! into semantic web), it's worth putting more of your own data into your web-pages, by way of RDFa. A simple place to start is to modify your home-page or blog profile so that it includes FOAF information."</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/foaf">foaf</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/rdfa">rdfa</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058329982">Copy</a> | 
<a href="http://blogmarks.net/link/3197207">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/karlcow/mark/1058326638">
<title>Getting started with RDFa: Creating a basic FOAF profile | webBackplane</title>
<link>http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa</link>
<description>&lt;blockquote&gt;&lt;p&gt;Now that the RDFa syntax is a full standard, and organisations like Yahoo! and Google are starting to index the data (see Google announces support for RDFa and Yahoo! into semantic web), it's worth putting more of your own data into your web-pages, by way of RDFa. A simple place to start is to modify your home-page or blog profile so that it includes FOAF information.&lt;/p&gt;&lt;/blockquote&gt;</description>
<dc:date>2009-05-16T20:23:09Z</dc:date>
<dc:author>karlcow</dc:author>
<dc:subject>data, rdfa, foaf</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa"><img border="0" src="http://blogmarks.net/screenshots/2009/05/19/19f6c41f2ef9eccf9cd9ac81fd3a9139.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa">Getting started with RDFa: Creating a basic FOAF profile | webBackplane</a></h4>
 
by <a href="http://blogmarks.net/user/karlcow">karlcow</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3197207">2 other(s)</a> 
<div class="description"><blockquote><p>Now that the RDFa syntax is a full standard, and organisations like Yahoo! and Google are starting to index the data (see Google announces support for RDFa and Yahoo! into semantic web), it's worth putting more of your own data into your web-pages, by way of RDFa. A simple place to start is to modify your home-page or blog profile so that it includes FOAF information.</p></blockquote></div>
<p class="tags">
<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/rdfa">rdfa</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/foaf">foaf</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058326638">Copy</a> | 
<a href="http://blogmarks.net/link/3197207">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/Yann_L/mark/1058317680">
<title>Crucial Concepts Behind Advanced Regular Expressions | How-To | Smashing Magazine</title>
<link>http://www.smashingmagazine.com/2009/05/06/introduction-to-advanced-regular-expressions/</link>
<description>we present an introduction to advanced regular expressions, with eight commonly used concepts and examples. Each example outlines a simple way to match patterns in complex strings. If you do not yet have experience with basic regular expressions, have a look at this article to get started. The syntax used here matches PHP’s Perl-compatible regular expressions.</description>
<dc:date>2009-05-09T07:08:19Z</dc:date>
<dc:author>Yann_L</dc:author>
<dc:subject>regex</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.smashingmagazine.com/2009/05/06/introduction-to-advanced-regular-expressions/"><img border="0" src="http://blogmarks.net/screenshots/2009/05/09/01dcdf6a40ea3cb68b7cddbebc4d9717.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.smashingmagazine.com/2009/05/06/introduction-to-advanced-regular-expressions/">Crucial Concepts Behind Advanced Regular Expressions | How-To | Smashing Magazine</a></h4>
 
by <a href="http://blogmarks.net/user/Yann_L">Yann_L</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/3189349">2 other(s)</a> 
<p class="description">we present an introduction to advanced regular expressions, with eight commonly used concepts and examples. Each example outlines a simple way to match patterns in complex strings. If you do not yet have experience with basic regular expressions, have a look at this article to get started. The syntax used here matches PHP’s Perl-compatible regular expressions.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/regex">regex</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058317680">Copy</a> | 
<a href="http://blogmarks.net/link/3189349">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/vrossign/mark/1058311807">
<title>11 Syntax Highlighters To Beautify Code Presentation</title>
<link>http://www.webresourcesdepot.com/11-syntax-highlighters-to-beautify-code-presentation/</link>
<description></description>
<dc:date>2009-05-04T14:39:58Z</dc:date>
<dc:author>vrossign</dc:author>
<dc:subject>moo, js, css, syntax highlighting, highlighting, syntax, dev, code</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.webresourcesdepot.com/11-syntax-highlighters-to-beautify-code-presentation/"><img border="0" src="http://blogmarks.net/screenshots/2009/05/04/3bcfcb6456ad56900206f9a821a4be9b.jpg" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.webresourcesdepot.com/11-syntax-highlighters-to-beautify-code-presentation/">11 Syntax Highlighters To Beautify Code Presentation</a></h4>
 
by <a href="http://blogmarks.net/user/vrossign">vrossign</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/moo">moo</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/js">js</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/css">css</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax%2Bhighlighting">syntax highlighting</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/highlighting">highlighting</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax">syntax</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/dev">dev</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=1058311807">Copy</a> | 
<a href="http://blogmarks.net/link/3186219">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/decembre/mark/1058548085">
<title>Regular Expressions - Popular Tools, Utilities and Programming Languages That Support Regular Expressions -  Specialized Tools and Utilities for Working with Regular Expressions - TutorialTools &amp; LanguagesExamplesBooks &amp; Reference</title>
<link>http://www.regular-expressions.info/tools.html</link>
<description>These tools and utilities have regular expressions as the core of their functionality.  grep - The utility from the UNIX world that first made regular expressions popular  PowerGREP - Next generation grep for Microsoft Windows  RegexBuddy - Learn, create, understand, test, use and save regular expressions. RegexBuddy makes working with regular expressions easier than ever before. General Applications with Notable Support for Regular Expressions  There are a lot of applications these days that support regular expressions in one way or another, enhancing certain part of their functionality. But certain applications stand out from the crowd by implementing a full-featured Perl-style regular expression flavor and allowing regular expressions to be used instead of literal search terms throughout the application.  EditPad Pro - Convenient text editor with a powerful regex-based search and replace feature, as well as regex-based customizable syntax coloring.</description>
<dc:date>2009-05-02T04:35:09Z</dc:date>
<dc:author>decembre</dc:author>
<dc:subject>outil, greasemonkey, script, tutoriel, tutorial, tool, code, reference, utilitaire, java, regex, regular-expression, expression</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://www.regular-expressions.info/tools.html"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://www.regular-expressions.info/tools.html">Regular Expressions - Popular Tools, Utilities and Programming Languages That Support Regular Expressions -  Specialized Tools and Utilities for Working with Regular Expressions - TutorialTools &amp; LanguagesExamplesBooks &amp; Reference</a></h4>
 
by <a href="http://blogmarks.net/user/decembre">decembre</a> 
<p class="description">These tools and utilities have regular expressions as the core of their functionality.  grep - The utility from the UNIX world that first made regular expressions popular  PowerGREP - Next generation grep for Microsoft Windows  RegexBuddy - Learn, create, understand, test, use and save regular expressions. RegexBuddy makes working with regular expressions easier than ever before. General Applications with Notable Support for Regular Expressions  There are a lot of applications these days that support regular expressions in one way or another, enhancing certain part of their functionality. But certain applications stand out from the crowd by implementing a full-featured Perl-style regular expression flavor and allowing regular expressions to be used instead of literal search terms throughout the application.  EditPad Pro - Convenient text editor with a powerful regex-based search and replace feature, as well as regex-based customizable syntax coloring.</p>
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/outil">outil</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/greasemonkey">greasemonkey</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/script">script</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tutoriel">tutoriel</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tutorial">tutorial</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tool">tool</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/code">code</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/reference">reference</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/utilitaire">utilitaire</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/java">java</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/regex">regex</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/regular-expression">regular-expression</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/expression">expression</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058548085">Copy</a> | 
<a href="http://blogmarks.net/link/3381773">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> <item rdf:about="http://blogmarks.net/api/user/br1o/mark/1058557219">
<title>twitter-syntax · Microformats Wiki</title>
<link>http://microformats.org/wiki/twitter-syntax</link>
<description></description>
<dc:date>2009-04-20T23:10:31Z</dc:date>
<dc:author>br1o</dc:author>
<dc:subject>social, cellphone, sms, wiki, tag, api, microformats, twitter, service, tags, syntax, phone, microformat, usage, commands, status, hash</dc:subject>
<content:encoded><![CDATA[<div class="mark">
<a href="http://microformats.org/wiki/twitter-syntax"><img border="0" src="http://blogmarks.net/screenshots/404.php" alt="" /></a>
<div class="xfolkentry">
<h4><a class="taggedlink" href="http://microformats.org/wiki/twitter-syntax">twitter-syntax · Microformats Wiki</a></h4>
 
by <a href="http://blogmarks.net/user/br1o">br1o</a> 
 &amp; <a class="public" href="http://blogmarks.net/link/2787603">1 other(s)</a> 
<p class="tags">
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/social">social</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/cellphone">cellphone</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/sms">sms</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/wiki">wiki</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tag">tag</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/api">api</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/microformats">microformats</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/twitter">twitter</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/service">service</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/tags">tags</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/syntax">syntax</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/phone">phone</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/microformat">microformat</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/usage">usage</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/commands">commands</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/status">status</a>
<a rel="tag" class="tag public_tag" href="http://blogmarks.net/marks/tag/hash">hash</a>
</p>
<div class="action-bar">
<a href="http://blogmarks.net/my/marks,new?id=1058557219">Copy</a> | 
<a href="http://blogmarks.net/link/2787603">React (0)</a></div>
</div>
</div>
]]></content:encoded>
</item> </rdf:RDF>