<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A Programmer with Microsoft tools &#187; mozilla</title>
	<atom:link href="http://msprogrammer.serviciipeweb.ro/category/mozilla/feed/" rel="self" type="application/rss+xml" />
	<link>http://msprogrammer.serviciipeweb.ro</link>
	<description>A programmer journey through code, books and tools</description>
	<lastBuildDate>Mon, 14 May 2012 06:59:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Transform Mozilla Bookmarks into a list</title>
		<link>http://msprogrammer.serviciipeweb.ro/2011/11/28/transform-mozilla-bookmarks-into-a-list/</link>
		<comments>http://msprogrammer.serviciipeweb.ro/2011/11/28/transform-mozilla-bookmarks-into-a-list/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 05:50:00 +0000</pubDate>
		<dc:creator>Andrei Ignat</dc:creator>
				<category><![CDATA[addons]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[quick and dirty]]></category>

		<guid isPermaLink="false">http://msprogrammer.serviciipeweb.ro/2011/11/28/transform-mozilla-bookmarks-into-a-list/</guid>
		<description><![CDATA[You have seen that I begin to post “friday links”
It is simple , once you have SqlLite Manager add-on for FF. ( add-on, source)
Just run the following query ( for the last 7 days bookmarks) by selecting &#8220;places.sqllite&#8221;:

SELECT
&#34;&#60;p&#62;&#60;a target='_blank' href='&#34; &#124;&#124; moz_places.url  &#124;&#124; &#34;'&#62;&#34; &#124;&#124; moz_bookmarks.title &#124;&#124; &#34;&#60;/a&#62;&#60;/p&#62;&#34;

FROM moz_bookmarks Inner JOIN moz_places WHERE moz_bookmarks.fk [...]]]></description>
			<content:encoded><![CDATA[<p>You have seen that I begin to post “<a href="http://msprogrammer.serviciipeweb.ro/category/friday-links/" target="_blank">friday links</a>”</p>
<p>It is simple , once you have <a href="https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/" target="_blank">SqlLite Manager add-on</a> for FF. ( <a href="https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/" target="_blank">add-on</a>, <a href="http://code.google.com/p/sqlite-manager/" target="_blank">source</a>)</p>
<p>Just run the following query ( for the last 7 days bookmarks) by selecting &#8220;places.sqllite&#8221;:</p>
<pre class="brush: sql;">
SELECT
&quot;&lt;p&gt;&lt;a target='_blank' href='&quot; || moz_places.url  || &quot;'&gt;&quot; || moz_bookmarks.title || &quot;&lt;/a&gt;&lt;/p&gt;&quot;

FROM moz_bookmarks Inner JOIN moz_places WHERE moz_bookmarks.fk = moz_places.id AND moz_bookmarks.title != &quot;null&quot;
and last_visit_date BETWEEN  strftime('%s',date('now','-7 day'))*1000000 and strftime('%s',date('now'))*1000000
and dateAdded BETWEEN  strftime('%s',date('now','-7 day'))*1000000 and strftime('%s',date('now'))*1000000
</pre>
<p>(OK, I must know why I multiply by 1000000  &#8211; but,hey – it works ….)</p>
]]></content:encoded>
			<wfw:commentRss>http://msprogrammer.serviciipeweb.ro/2011/11/28/transform-mozilla-bookmarks-into-a-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

