<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Nicolas Lehuen's Weblog - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-f8992faa" type="application/json" /><link>http://nlehuen.disqus.com/</link><description>None</description><language>en</language><lastBuildDate>Sat, 31 Dec 2011 05:52:17 -0000</lastBuildDate><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/NicolasLehuensWeblog-Comments" /><feedburner:info uri="nicolaslehuensweblog-comments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>Re: Pure bliss with MongoDB</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/TwWhve0vBmo/</link><description>Nice article. There is php implementation of the above sharing available named as MongoLantern&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/TwWhve0vBmo" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sougata Pal</dc:creator><pubDate>Sat, 31 Dec 2011 05:52:17 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/04/15/pure-bliss-with-mongodb/#comment-397827732</feedburner:origLink></item><item><title>Re: pytst 1.18</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/jMnMxl-N7vw/</link><description>Hi dbg,&lt;br&gt;&lt;br&gt;The current scan implementation is greedy, it find longest matches and "consume" them. This is precisely what I needed for my projects (I even have a version of the scan algorithm that only accept matches on stop word boundaries), but of course it may not be what you need.&lt;br&gt;&lt;br&gt;What you need is an implementation of the Aho-Corasick algorithm (&lt;a href="http://en.wikipedia.org/wiki/Aho%E2%80%93Corasick_string_matching_algorithm)" rel="nofollow"&gt;http://en.wikipedia.org/wiki/A...&lt;/a&gt;. Initially I tried to implement a custom-made, greedy, non-backtracking algorithm that I thought was Aho-Corasick. But obviously, being greedy, it could not be A-C !&lt;br&gt;&lt;br&gt;Then I found the bug the blog entry mentioned, and I dumped the whole thing for a simpler, safer, greedy-but-backtracking algorithm. Truth is, I don't use pytst anymore and I have no more time to maintain it. But I could not just let the project out there with a bug in the scan algorithm, so I did this last release.&lt;br&gt;&lt;br&gt;The whole source code is under github (&lt;a href="https://github.com/nlehuen/pytst)" rel="nofollow"&gt;https://github.com/nlehuen/pyt...&lt;/a&gt; so don't hesitate to fork the project if needed.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Nicolas&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/jMnMxl-N7vw" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Mon, 12 Sep 2011 16:07:48 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/03/17/pytst-1-18/#comment-308057126</feedburner:origLink></item><item><title>Re: pytst 1.18</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/SJJaz0YEnQs/</link><description>Here is some exact code: &lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; t = tst.TST()&amp;gt;&amp;gt;&amp;gt; t['111'] = 'first'&amp;gt;&amp;gt;&amp;gt; t['222'] = 'second'&amp;gt;&amp;gt;&amp;gt; t['112'] = 'third'&amp;gt;&amp;gt;&amp;gt; string = '111222111'&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; class tst_findall(object):...             def __init__(self):...                 self.pos = 0...                 self.scores = []...                 self.locations = []...                 self.nmers = []...             def hit(self,key,length,obj):...                 if length &amp;gt; 0:...                     self.scores.append(obj)...                     self.nmers.append(key)...                     self.locations.append((self.pos,self.pos+length))...                 self.pos += abs(length)...             def result(self):...                 return (self.nmers,self.locations,self.scores)&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; tstf = tst_findall()&amp;gt;&amp;gt;&amp;gt; call_tst_findall = tst.CallableAction(tstf.hit,tstf.result)&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; t.scan(string,call_tst_findall)(['111', '222', '111'], [(0, 3), (3, 6), (6, 9)], ['first', 'second', 'first'])&lt;br&gt;&lt;br&gt;I would expect:&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; t.scan(string,call_tst_findall)(['111','112','222', '111'], [(0, 3), (1, 4), (3, 6), (6, 9)], ['first', 'third', 'second', 'first'])&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/SJJaz0YEnQs" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dbg</dc:creator><pubDate>Mon, 12 Sep 2011 15:09:18 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/03/17/pytst-1-18/#comment-308024428</feedburner:origLink></item><item><title>Re: pytst 1.18</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/JoyGH3scYgw/</link><description>Hi Nicolas,&lt;br&gt;&lt;br&gt;Thanks for this useful module! I was looking everywhere for a fast substring search implementation. However, I also seem to still have a problem with the scan function. For instance, if I have a dictionary like {'111','222','112'} and a string '111222111', I would expect it to find '111' at positions 0 and 6, '222' at position 3, and '112' at position 1. Currently it is not finding 112 at all, probably because that match begins inside the match '111'. Is this the intended behavior, or was the 1.18 update supposed to fix this? &lt;br&gt;&lt;br&gt;Many thanks for your help, and your useful module.&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/JoyGH3scYgw" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dbg</dc:creator><pubDate>Mon, 12 Sep 2011 14:59:02 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/03/17/pytst-1-18/#comment-308018776</feedburner:origLink></item><item><title>Re: pytst 1.18</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/FRDlhS68bAs/</link><description>Hi Nikolai,&lt;br&gt;&lt;br&gt;Can you send me your test case (nicolas at lehuen dot com) ? It is very simple so it should work straight away... Unless I've missed something.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Nicolas&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/FRDlhS68bAs" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Tue, 03 May 2011 03:56:15 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/03/17/pytst-1-18/#comment-196179396</feedburner:origLink></item><item><title>Re: pytst 1.18</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/57fZ68NdxCM/</link><description>Hi Nicolas,&lt;br&gt;&lt;br&gt;Do you have a version of PyTST 1.18 that I can download for Mac OS? I downloaded latest ZIP in the link you sent me... but I think it still has this problem.&lt;br&gt;&lt;br&gt;I am matching words in text preprocessed to make explicit word boundary. So I match strings like " dog " and " cat ". If a text has " dog cat ", then the second won't match. This is the problem that you fixed, right?&lt;br&gt;&lt;br&gt;I used Aho-Corasick extensively when I worked for Google :-). Trying to use it now too, on an independent project.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Nikolai&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/57fZ68NdxCM" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikolai Yakovenko</dc:creator><pubDate>Wed, 27 Apr 2011 18:19:52 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/03/17/pytst-1-18/#comment-192982940</feedburner:origLink></item><item><title>Re: SOAP Web Services : awkward. Python and Web Services : painful.</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/jdGB8wwRH6M/</link><description>You have written this in 2006. I'm trying it in 2010 and its still painful!&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/jdGB8wwRH6M" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jeshurun</dc:creator><pubDate>Tue, 03 Aug 2010 11:21:42 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2006/05/30/soap-web-services-awkward-python-and-web-services-painful/#comment-65858834</feedburner:origLink></item><item><title>Re: Pure bliss with MongoDB</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/LozgW-62pzU/</link><description>Interesting read - thanks for sharing!&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/LozgW-62pzU" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mike Dirolf</dc:creator><pubDate>Thu, 15 Apr 2010 16:31:03 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2010/04/15/pure-bliss-with-mongodb/#comment-45033009</feedburner:origLink></item><item><title>Re: A case against Twitter</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/6voe3Ly-0AA/</link><description>Ouais t'as raison, twitter c'est de la merde !&lt;br&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/6voe3Ly-0AA" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fab</dc:creator><pubDate>Tue, 30 Mar 2010 05:09:44 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2009/08/12/a-case-against-twitter/#comment-42247944</feedburner:origLink></item><item><title>Re: std::vector is very slow ? - Nicolas Lehuen's Weblog</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/MI2bPmQW210/62-stdvector-is-very-slow</link><description>hey bro my std::vector copy takes seven milliseconds in debug mode, but &amp;lt;400 nanoseconds in release mode. It does a LOT of debug stuff.&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/MI2bPmQW210" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">fd</dc:creator><pubDate>Sat, 13 Feb 2010 06:13:48 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/index.php/post/2005/07/26/62-stdvector-is-very-slow#comment-34095281</feedburner:origLink></item><item><title>Re: Mapping my personal web - Nicolas Lehuen's Weblog</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/uwvmHPCF4S4/My-online-setup2</link><description>I have a trick. I subscribe to Nicolas Lehuen's Shared Items on Google Reader, and that's well enough interesting stuff to read. Thanks. :-)&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/uwvmHPCF4S4" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fil</dc:creator><pubDate>Wed, 09 Dec 2009 15:29:15 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/index.php/post/2009/04/16/My-online-setup2#comment-25323101</feedburner:origLink></item><item><title>Re: Une idée lumineuse ! - Nicolas Lehuen's Weblog</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/0wpd62OWukk/Une-idee-lumineuse</link><description>On a un Nico écolo, ;o) peut-être même qu'il finira par s'inscrire chez les Verts ?&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/0wpd62OWukk" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">maxi69</dc:creator><pubDate>Wed, 30 Sep 2009 11:52:24 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/index.php/post/2007/12/10/Une-idee-lumineuse#comment-17851589</feedburner:origLink></item><item><title>Re: A case against Twitter</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/umveVnaWYlI/</link><description>&lt;p&gt;About infrastructure and money : for what it's worth, compare the $55M that Twitter raised according to Techcrunch ( &lt;a href="http://www.crunchbase.com/company/twitter" rel="nofollow" title="http://www.crunchbase.com/company/twitter"&gt;http://www.crunchbase.com/company/t...&lt;/a&gt; ) to the $5M FriendFeed raised (&lt;a href="http://www.crunchbase.com/company/friendfeed" rel="nofollow" title="http://www.crunchbase.com/company/friendfeed"&gt;http://www.crunchbase.com/company/f...&lt;/a&gt;).&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/umveVnaWYlI" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Wed, 12 Aug 2009 12:47:16 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2009/08/12/a-case-against-twitter/#comment-37587212</feedburner:origLink></item><item><title>Re: A case against Twitter</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/XpQUjoLFXic/</link><description>&lt;p&gt;Two more points :&lt;/p&gt; &lt;p&gt;1) SPAM BOTS ! The open broadcast model of Twitter is a true spam magnet and it shows &lt;a href="http://www.readwriteweb.com/archives/twitters_most_active_users_bots_dogs_and_tila_tequila.php" rel="nofollow" title="http://www.readwriteweb.com/archives/twitters_most_active_users_bots_dogs_and_tila_tequila.php"&gt;http://www.readwriteweb.com/archive...&lt;/a&gt; .&lt;br&gt;&lt;br&gt;1) Twitter sues a developer using their API for improper (spam related) use : &lt;a href="http://www.mytwitterbutler.com/I'm_Being_Sued/" rel="nofollow" title="http://www.mytwitterbutler.com/I'm_Being_Sued/"&gt;http://www.mytwitterbutler.com/I'm_...&lt;/a&gt; . Of course the use may be improper, I don't know of this particular service. But it's ironic to see Twitter turn against developers since they owe them so much.&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/XpQUjoLFXic" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Wed, 12 Aug 2009 10:13:39 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2009/08/12/a-case-against-twitter/#comment-37587211</feedburner:origLink></item><item><title>Re: FriendFeed might actually benefit from Google Wave</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/CDRj1CDo31U/</link><description>&lt;p&gt;Zoho announced that they plan to embrace Google Wave : &lt;a href="http://blogs.zoho.com/general/surfing-google-wave" rel="nofollow" title="http://blogs.zoho.com/general/surfing-google-wave"&gt;http://blogs.zoho.com/general/surfi...&lt;/a&gt; . This is a good example of the strategy FriendFeed could follow, though of course there is a less apparent functional clash between Google Wave and Zoho...&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/CDRj1CDo31U" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Fri, 29 May 2009 05:16:15 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2009/05/29/friendfeed-might-actually-benefit-from-google-wave/#comment-37587209</feedburner:origLink></item><item><title>Re: pytst 1.17</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/yt4iRxqv_l8/</link><description>&lt;p&gt;I am running the unit tests right now. Thanks very much for your work.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/yt4iRxqv_l8" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul Harrington</dc:creator><pubDate>Wed, 01 Apr 2009 19:17:09 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2009/04/02/pytst-1-17/#comment-37587199</feedburner:origLink></item><item><title>Re: pytst 1.15</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/p8yeJTAwIXg/</link><description>&lt;p&gt;Hi Nicolas,&lt;/p&gt; &lt;p&gt;It is a really good news for me that you are developing ctst and the Ruby bindings for it.&lt;br&gt;&lt;br&gt;I don't need to modify Python dependent code to port it to Ruby anymore.&lt;br&gt;&lt;br&gt;&lt;br&gt;I hope ctst will be released anytime soon.&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/p8yeJTAwIXg" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">yatsu</dc:creator><pubDate>Thu, 03 Apr 2008 23:40:45 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2008/04/02/pytst-1-15/#comment-37587197</feedburner:origLink></item><item><title>Re: A tribute to Groovy</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/Jqlofdz4nxM/</link><description>&lt;p&gt;Nicolas, thanks a lot for this great tribute!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/Jqlofdz4nxM" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guillaume Laforge</dc:creator><pubDate>Thu, 21 Feb 2008 04:01:48 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2008/02/13/a-tribute-to-groovy/#comment-37587196</feedburner:origLink></item><item><title>Re: A tribute to Groovy</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/a-t1Qy9kW1Y/</link><description>&lt;p&gt;I knew the beginning of the saga. I now know the end.&lt;br&gt;&lt;br&gt;Knowing you, I just wondered: how long before you find an "even better" framework ?&lt;br&gt;&lt;br&gt;&lt;br&gt;Just teasing ;-)&lt;br&gt;&lt;br&gt;&lt;br&gt;As for the applet vs. flash, I would love to see both disappear and be replaced by some powerful compound document profiles &lt;a href="http://www.w3.org/2004/CDF/" rel="nofollow" title="http://www.w3.org/2004/CDF/"&gt;http://www.w3.org/2004/CDF/&lt;/a&gt; for the sake of customization, device/context adaptation and accessibility.&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers.&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/a-t1Qy9kW1Y" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fabien Gandon</dc:creator><pubDate>Mon, 18 Feb 2008 03:22:42 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2008/02/13/a-tribute-to-groovy/#comment-37587195</feedburner:origLink></item><item><title>Re: PullXML renamed to PushXML, hosted on Google Code</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/Uym0HAt8hCk/</link><description>&lt;p&gt;Well, I've got not plan to support XPath for now. The purpose of the object model that PushXML builds is precisely to remove the need for XPath in most of the case : instead of &lt;code&gt;/foo[1]/bar[1]&lt;/code&gt; you just write &lt;code&gt;$root-&amp;gt;foo[0]-&amp;gt;bar[0]&lt;/code&gt; and you're done. Of course, this doesn't cover the cases where you want to write &lt;code&gt;//bar&lt;/code&gt; or even &lt;code&gt;//bar[@type='anyway']&lt;/code&gt;, but this is not something I need right now.&lt;/p&gt; &lt;p&gt;I guess the best thing to do would be to implement an XPath library that would know how to navigate simple object trees, as it would be useful even in over situations. A few years ago, I wrote something similar in Java, unfortunately my time is too scarce right now for this kind of little pleasures :).&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/Uym0HAt8hCk" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Thu, 14 Jun 2007 10:26:04 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2007/05/10/pullxml-renamed-to-pushxml-hosted-on-google-code/#comment-37587192</feedburner:origLink></item><item><title>Re: PullXML renamed to PushXML, hosted on Google Code</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/T3qPyEOu0S4/</link><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;PushXML looks really nice, but it looks like only simple path like "/foo/bar" can be used. Do you plan to add support for more complex xpath queries ? I currently use simpleXML and I find that xpath support is really essential in my project !&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/T3qPyEOu0S4" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">marina</dc:creator><pubDate>Mon, 04 Jun 2007 05:04:17 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2007/05/10/pullxml-renamed-to-pushxml-hosted-on-google-code/#comment-37587190</feedburner:origLink></item><item><title>Re: Strings mess</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/RU9ojP4-KLA/</link><description>&lt;p&gt;Hi,&lt;br&gt;&lt;br&gt;I am a VC programmer and am grappling with this same issue...&lt;br&gt;&lt;br&gt;&lt;br&gt;spending hours and days altogether to port legacy classes to newer framework..and the amount of time i spend to solve all the string mess...95% of the entire time...&lt;br&gt;&lt;br&gt;&lt;br&gt;i have gone wild hunting for the reason for such a huge mess and hence landed on ur blog...&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/RU9ojP4-KLA" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Samrat</dc:creator><pubDate>Thu, 22 Mar 2007 07:23:27 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2006/01/28/strings-mess/#comment-37587159</feedburner:origLink></item><item><title>Re: Ma très chère Free.</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/UMIFtK4PuR0/</link><description>&lt;p&gt;ah ah ah&lt;br&gt;&lt;br&gt;j'ai beaucoup aimé&lt;br&gt;&lt;br&gt;&lt;br&gt;croustillant&lt;br&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/UMIFtK4PuR0" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mme champarou</dc:creator><pubDate>Mon, 19 Mar 2007 14:48:38 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2006/12/22/ma-tres-chere-free/#comment-37587184</feedburner:origLink></item><item><title>Re: Some fun with the Nintendo DS</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/ED6yZLRgPJo/</link><description>&lt;p&gt;amzingly intriguing , i just hapened appon your root files for the mandelbrot while looking for random homebrew nds files. interesting concept and it accualy works on a real ds&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/ED6yZLRgPJo" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Azlan</dc:creator><pubDate>Thu, 15 Mar 2007 03:50:52 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2006/03/04/some-fun-with-the-nintendo-ds/#comment-37587167</feedburner:origLink></item><item><title>Re: Switched to DotClear 2 beta 6</title><link>http://feedproxy.google.com/~r/NicolasLehuensWeblog-Comments/~3/zBVdGRGCpGM/</link><description>&lt;p&gt;Of course, rewriting the permalink inside my blog so that they point to the new style is not sufficient, because some people out there are pointing to my blog and I can't rewrite their permalinks. So I did a little bit more of mod_rewrite trickery, and everything should be just fine right now.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/NicolasLehuensWeblog-Comments/~4/zBVdGRGCpGM" height="1" width="1"/&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nicolas Lehuen</dc:creator><pubDate>Sun, 11 Mar 2007 10:26:44 -0000</pubDate><feedburner:origLink>http://nicolas.lehuen.com/2007/03/11/switched-to-dotclear-2-beta-6/#comment-37587186</feedburner:origLink></item></channel></rss>

