<?xml version="1.0" encoding="utf-8"?><rss version="0.92">
<channel>
	<title>Lucene, Solr and Crawl consultant</title>
	<link>http://www.supermind.org/blog</link>
	<description>A blog on Lucene, Solr, crawling and vertical search</description>
	<lastBuildDate>Thu, 20 Oct 2011 04:55:36 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress" -->

	<item>
		<title>Batch convert svg to png in Ubuntu</title>
		<description><![CDATA[<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">sudo</span> apt-get <span class="kw2">install</span> librsvg2-bin<br />
<span class="kw1">for</span> i <span class="kw1">in</span> *; <span class="kw1">do</span> rsvg-convert -a <span class="re1">$i</span> -o `<span class="kw3">echo</span> <span class="re1">$i</span> &#124; <span class="kw2">sed</span> -e <span class="st0">'s/svg$/png/'</span>`; <span class="kw1">done</span><br />
&#160;</div>
<p>to rasterize the ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/1010/batch-convert-svg-to-png-in-ubuntu" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/1010/batch-convert-svg-to-png-in-ubuntu</link>
			</item>
	<item>
		<title>Mount a .dmg file in Ubuntu</title>
		<description><![CDATA[<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">sudo</span> apt-get <span class="kw2">install</span> dmg2img<br />
dmg2img /path/to/image.dmg<br />
<span class="kw2">sudo</span> modprobe hfsplus<br />
<span class="kw2">sudo</span> <span class="kw2">mount</span> -t hfsplus -o loop image.img /mnt<br />
&#160;</div>
<p>The .dmg archive is now mounted at /mnt. You ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/1008/mount-a-dmg-file-in-ubuntu" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/1008/mount-a-dmg-file-in-ubuntu</link>
			</item>
	<item>
		<title>Download KhanAcademy videos with a PHP crawler</title>
		<description><![CDATA[<p>At the moment (October 2011), there's no simple way to download all videos from a playlist from KhanAcademy.org.</p>
<p>This simple PHP crawler script changes that. <img src='http://www.supermind.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>What it does is downloads the videos (from archive.org) ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/1001/download-khanacademy-videos-with-a-php-crawler" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/1001/download-khanacademy-videos-with-a-php-crawler</link>
			</item>
	<item>
		<title>Painless CRUD in PHP via AjaxCrud</title>
		<description><![CDATA[<p>I recently discovered an Ajax CRUD library which makes CRUD operations positively painless: <a href="http://ajaxcrud.com/">AjaxCRUD</a></p>
<p>Its features include:</p>
<p>- displaying list in an inline-editable table<br />
- generates a create form<br />
- all operations (add,edit,delete) handled via ajax<br /> ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/998/painless-crud-in-php-via-ajaxcrud" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/998/painless-crud-in-php-via-ajaxcrud</link>
			</item>
	<item>
		<title>What&#039;s new in Solr 3.4.0</title>
		<description><![CDATA[<p>If you are already using Apache Solr 3.1, 3.2 or 3.3, it's <b>strongly recommended</b> you upgrade to 3.4.0 because of the index corruption bug on OS or computer crash or power loss (LUCENE-3418), now fixed in 3.4.0.</p>
<p>Solr 3.4.0 release ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/995/whats-new-in-solr-3-4-0" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/995/whats-new-in-solr-3-4-0</link>
			</item>
	<item>
		<title>Introducing SolrTutorial.com</title>
		<description><![CDATA[<p>Just launched a <a href="http://www.solrtutorial.com">Solr tutorial</a> website, a site styled after my <a href="http://www.lucenetutorial.com">LuceneTutorial.com</a> but tailored towards Solr users.</p>
<p>It also includes high-level overviews to Solr for non-programmers, such as <a href="http://www.solrtutorial.com/overview/solr-for-managers.html">Solr for Managers</a> and <a href="http://www.solrtutorial.com/overview/solr-for-sysadmins.html">Solr for SysAdmins</a>.</p>
]]></description>
		<link>http://www.supermind.org/blog/992/introducing-solrtutorial-com</link>
			</item>
	<item>
		<title>Delete directories older than x days</title>
		<description><![CDATA[<p>Great for cleaning up log directories.</p>
<div class="dean_ch" style="white-space: wrap;">
<span class="kw2">find</span> . -maxdepth <span class="nu0">1</span> -mtime <span class="nu0">+14</span> -<span class="kw3">type</span> d -<span class="kw3">exec</span> <span class="kw2">rm</span> -fr <span class="br0">&#123;</span><span class="br0">&#125;</span> \;<br />
&#160;</div>
<p>Change <b>14</b> to the required age in days.</p>
]]></description>
		<link>http://www.supermind.org/blog/978/delete-directories-older-than-x-days</link>
			</item>
	<item>
		<title>HOWTO: Collect WebDriver HTTP Request and Response Headers</title>
		<description><![CDATA[<p><a href="http://code.google.com/p/selenium/">WebDriver</a>, is a fantastic Java API for web application testing. It has recently been merged into the Selenium project to provide a friendlier API for programmatic simulation of web browser actions. Its unique property is that of executing web pages ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/968/howto-collect-webdriver-http-request-and-response-headers" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/968/howto-collect-webdriver-http-request-and-response-headers</link>
			</item>
	<item>
		<title>Solr 3.2 released!</title>
		<description><![CDATA[<p>I'm a little slow off the block here, but I just wanted to mention that <a href="http://lucene.apache.org/solr">Solr</a> 3.2 had been released!</p>
<p>Get your download here: <a href="http://www.apache.org/dyn/closer.cgi/lucene/solr">http://www.apache.org/dyn/closer.cgi/lucene/solr</a> </p>
<p>Solr 3.2 release highlights include</p>
<ul>
<li>Ability to specify overwrite and commitWithin</li></ul><p> ... <br clear='all'/><div class='alignright'> <a href="http://www.supermind.org/blog/969/solr-3-2-released" class="read_more">Continue reading...</a></div></p>]]></description>
		<link>http://www.supermind.org/blog/969/solr-3-2-released</link>
			</item>
	<item>
		<title>Classical learning curves for some editors</title>
		<description><![CDATA[<p><img src="http://unix.rulez.org/~calver/pictures/curves.jpg"></p>
]]></description>
		<link>http://www.supermind.org/blog/966/classical-learning-curves-for-some-editors</link>
			</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.supermind.org @ 2012-02-06 05:53:18 -->
