<?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; addons</title>
	<atom:link href="http://msprogrammer.serviciipeweb.ro/category/addons/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, 20 Feb 2012 05:57:00 +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>
		<item>
		<title>Sql Server Management Studio free awesome addons</title>
		<link>http://msprogrammer.serviciipeweb.ro/2010/04/05/sql-server-management-studio-free-awesome-addons/</link>
		<comments>http://msprogrammer.serviciipeweb.ro/2010/04/05/sql-server-management-studio-free-awesome-addons/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 04:31:00 +0000</pubDate>
		<dc:creator>Andrei Ignat</dc:creator>
				<category><![CDATA[SqlServer]]></category>
		<category><![CDATA[addons]]></category>

		<guid isPermaLink="false">http://msprogrammer.serviciipeweb.ro/2010/04/05/sql-server-management-studio-free-awesome-addons/</guid>
		<description><![CDATA[The two addons that I can not live without in Sql Server and that, more , are free :

SSMS Tools Pack – now 1.7.5.1 , http://www.ssmstoolspack.com/Download
SQL Search – now1.0 http://www.red-gate.com/products/SQL_Search/

&#160;
The SSMS Tools Pack maintains a history of your commands . More, it saves on the C:\SSMSTools\SQLQueryActionLog
 
&#160;
The Sql Search finds a text in the objects [...]]]></description>
			<content:encoded><![CDATA[<p>The two addons that I can not live without in Sql Server and that, more , are free :
<ol>
<li>SSMS Tools Pack – now 1.7.5.1 , <a title="http://www.ssmstoolspack.com/Download" href="http://www.ssmstoolspack.com/Download">http://www.ssmstoolspack.com/Download</a></li>
<li>SQL Search – now1.0 <a title="http://www.red-gate.com/products/SQL_Search/" href="http://www.red-gate.com/products/SQL_Search/">http://www.red-gate.com/products/SQL_Search/</a></li>
</ol>
<p>&#160;</p>
<p>The SSMS Tools Pack maintains a history of your commands . More, it saves on the C:\SSMSTools\SQLQueryActionLog</p>
<p><a href="http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/image_thumb.png" width="925" height="251" /></a> </p>
<p>&#160;</p>
<p>The Sql Search finds a text in the objects in the database – very useful if you decide to change a column name and find all stored procedures that have this reference</p>
<p><a href="http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/image_thumb1.png" width="977" height="243" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://msprogrammer.serviciipeweb.ro/2010/04/05/sql-server-management-studio-free-awesome-addons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

