<?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>Little Big Tomatoes &#187; Shuriken</title>
	<atom:link href="http://www.littlebigtomatoes.com/blog/tags/shuriken/feed" rel="self" type="application/rss+xml" />
	<link>http://www.littlebigtomatoes.com/blog</link>
	<description>... does software in all colours and flavours!</description>
	<lastBuildDate>Fri, 20 Aug 2010 07:33:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>GoogleCalculator R2</title>
		<link>http://www.littlebigtomatoes.com/blog/announcements/googlecalculator-r2</link>
		<comments>http://www.littlebigtomatoes.com/blog/announcements/googlecalculator-r2#comments</comments>
		<pubDate>Wed, 24 Jun 2009 20:06:00 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Shuriken]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/announcements/googlecalculator-r2</guid>
		<description><![CDATA[It is a long long time since I released anything for Shuriken. This release is fixing a small bug in the Google Calculator plugin (due to layout change in the result page).&#160; 
In order to install and use the new plugin please, do the following: 

Shutdown Shuriken 
Extract the content of GoogleCalculator to the plugin [...]]]></description>
			<content:encoded><![CDATA[<p>It is a long long time since I released anything for Shuriken. This release is fixing a small bug in the Google Calculator plugin (due to layout change in the result page).&#160; </p>
<p>In order to install and use the new plugin please, do the following: </p>
<ul>
<li>Shutdown Shuriken </li>
<li>Extract the content of GoogleCalculator to the plugin directory of Shuriken&#160; <br />Hint: use Shuriken &gt;&gt; Reveal to display the Shuriken folder when Shuriken is running. </li>
<li>Start Shuriken      <br />Hit . in order to enter text mode and type something that you would like to calculate      <br />e.g &quot;25 USD in Eur&quot; or &quot;23 inch in meter&quot;</li>
<li>Tab to the action pane and type calc to get &quot;Calculate with Google&quot; action.</li>
<li>Hit enter. </li>
</ul>
<p>[<a href="http://shurikenplugins.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29197" target="_blank">download</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/announcements/googlecalculator-r2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending Shuriken</title>
		<link>http://www.littlebigtomatoes.com/blog/shuriken/extending-shuriken</link>
		<comments>http://www.littlebigtomatoes.com/blog/shuriken/extending-shuriken#comments</comments>
		<pubDate>Sun, 08 Feb 2009 17:26:00 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Shuriken]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/shuriken/extending-shuriken</guid>
		<description><![CDATA[This is the first of a series of articles, I am planning to write explaining how to create your own modules for extending Shuriken. In this article, the hello world is implemented for Shuriken. 
Shuriken is an application launcher&#160; that is trying to bring you the power and flexibility of the famous Quicksilver on OSX. [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first of a series of articles, I am planning to write explaining how to create your own modules for extending Shuriken. In this article, the hello world is implemented for Shuriken. </p>
<p>Shuriken is an application launcher&#160; that is trying to bring you the power and flexibility of the famous Quicksilver on OSX. It is developed in .NET and C#, but you can use any .NET language to develop your own module. All you will need is Visual Studio 2008 any Express Edition or better. </p>
<h3>Setting up your project</h3>
<p>The first thing is download the latest release of Shuriken from <a href="http://www.codeplex.com/shuriken">Shuriken project site</a> on Codeplex.com and unzip it.&#160; Run it and notice that a <strong>plugin</strong> folder is created in your installation directory. </p>
<p>Next is to fire up Visual Studio.NET 2008 and create Class Library project. </p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image001.png"><img title="clip_image001" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="323" alt="clip_image001" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image001-thumb.png" width="454" border="0" /></a></p>
<p>The next is to add the <strong>Shuriken.Base.dll</strong> as a reference to your project. This dll can be found next to your Shuriken.exe and contains all the interfaces and classes that you will need to use to write your own modules. </p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image0011.png"><img title="clip_image001[1]" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="250" alt="clip_image001[1]" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image0011-thumb.png" width="308" border="0" /></a></p>
<p>After adding the reference your project structure should look like this.    </p>
<h3>Subjects and Actions</h3>
<p>There are two main concepts in Shuriken, the Subject and the Action. A Subject is normally on the first pane and this is the <strong>Notepad</strong> on the picture. The Action is the second pane on the UI and in this case the <strong>Reveal</strong> action. After pressing enter the Reveal action will show the location of the Notepad subject. </p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image0013.png"><img title="clip_image001[3]" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="228" alt="clip_image001[3]" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image0013-thumb.png" width="454" border="0" /></a></p>
<p>When you write modules then you most of the time creating subjects and actions. Let’s start with the action. All we need to create a new class and implement the ISubject interface from the Shuriken.Base namespace. </p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   1:</span> <span style="color: #0000ff">using</span> System;</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   2:</span> <span style="color: #0000ff">using</span> Shuriken.Base; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   3:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   4:</span> <span style="color: #0000ff">namespace</span> HelloWorldSubject</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   5:</span> {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   6:</span>     <span style="color: #0000ff">public</span> <span style="color: #0000ff">class</span> HelloWorldSubject : Shuriken.Base.ISubject</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   7:</span>     {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   8:</span>         <span style="color: #cc6633">#region</span> ISubject Members</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   9:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  10:</span>         <span style="color: #0000ff">public</span> System.Collections.Generic.List&lt;IAction&gt; GetListOfActions()</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  11:</span>         {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  12:</span>             <span style="color: #0000ff">return</span> <span style="color: #0000ff">new</span> System.Collections.Generic.List&lt;IAction&gt;();</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  13:</span>         }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  14:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  15:</span>         <span style="color: #cc6633">#endregion</span></pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  16:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  17:</span>         <span style="color: #cc6633">#region</span> IObject Members</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  18:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  19:</span>         <span style="color: #0000ff">public</span> <span style="color: #0000ff">string</span> Description</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  20:</span>         {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  21:</span>             get { <span style="color: #0000ff">return</span> <span style="color: #006080">&quot;First Shuriken plugin ever&quot;</span>; }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  22:</span>         }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  23:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  24:</span>         <span style="color: #0000ff">public</span> <span style="color: #0000ff">string</span> Icon</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  25:</span>         {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  26:</span>             get</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  27:</span>             {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  28:</span>                 <span style="color: #0000ff">return</span> <span style="color: #0000ff">string</span>.Empty;</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  29:</span>             }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  30:</span>             set</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  31:</span>             {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  32:</span>                 </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  33:</span>             }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  34:</span>         }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  35:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  36:</span>         <span style="color: #0000ff">public</span> <span style="color: #0000ff">string</span> Name</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  37:</span>         {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  38:</span>             get { <span style="color: #0000ff">return</span> <span style="color: #006080">&quot;Hello World!&quot;</span>; }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  39:</span>         }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  40:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  41:</span>         <span style="color: #cc6633">#endregion</span></pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  42:</span>     }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  43:</span> }</pre>
</p></div>
</div>
<p>There are couple of methods you will need to implement in your class. The first is called <strong>GetListOfActions</strong> which needs to be only returning an empty list for now. </p>
<p>The <strong>Description</strong> property is returning a string that is going to be the description for our subject. The <strong>Name</strong> property is going to be the name of this subject and the <strong>Icon</strong> will be the icon displayed. In the code I gave Hello World as the name and left the Icon property to be and empty. </p>
<p>To have something meaningful happening to our subject an action is needed as well. </p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   1:</span> [DefaultAction]</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   2:</span> [ActionName(<span style="color: #006080">&quot;Say It&quot;</span>)]</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   3:</span> <span style="color: #0000ff">public</span> <span style="color: #0000ff">class</span> HelloWorldAction : Shuriken.Base.BaseAction</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   4:</span> {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   5:</span>     <span style="color: #0000ff">public</span> <span style="color: #0000ff">override</span> <span style="color: #0000ff">bool</span> CanExecuteOn(ISubject subject)</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   6:</span>     {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   7:</span>         <span style="color: #0000ff">if</span> (subject.Name.Equals(<span style="color: #006080">&quot;Hello World!&quot;</span>))</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   8:</span>         {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   9:</span>             <span style="color: #0000ff">return</span> <span style="color: #0000ff">true</span>; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  10:</span>         }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  11:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  12:</span>         <span style="color: #0000ff">return</span> <span style="color: #0000ff">false</span>; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  13:</span>     }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  14:</span>&#160; </pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  15:</span>     <span style="color: #0000ff">public</span> <span style="color: #0000ff">override</span> <span style="color: #0000ff">void</span> Execute(ISubject subject)</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  16:</span>     {</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  17:</span>         System.Windows.Forms.MessageBox.Show(<span style="color: #006080">&quot;Hello World!&quot;</span>);</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  18:</span>     }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  19:</span> }</pre>
</p></div>
</div>
<p>The HelloWorldAction is created by either implementing the <strong>IAction</strong> interface or extending the <strong>BaseAction</strong> class. I did the later for simplicity sake. Extending the BaseAction class is simpler and can be done with attributes as well. There are two attributes used <strong>DefaultAction</strong> and <strong>ActionName</strong>. </p>
<p>DefaultAction will tell Shuriken that this is the default action for the a subject, meaning that this will be the first action always. ActionName will be the name of the action.<br />
  <br />There are also two methods that we need to implement. The first method is called <strong>CanExecuteOn</strong> and it tells us, if the subject is supported by this action. The second method is called <strong>Execute</strong> and it is called when the user hits enter and the action is called. </p>
<p>After finishing the two class, you will need to compile the project and drop the <strong>HelloWorldSubject.dll</strong> to the plugin folder and restart Shuriken. Then invoke the UI and start typing Hello World…. after hitting enter you should end up with the Hello World! dialog box displaying.</p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image00111.png"><img title="clip_image001[1]" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="225" alt="clip_image001[1]" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/clip-image0011-thumb1.png" width="454" border="0" /></a></p>
<p>Shuriken is an application launcher utility, that is developed by me in my free time. It is open source and free. If you would like to download Shuriken or help to develop it, please visit Shuriken on codeplex.</p>
<p><a href="http://www.codeplex.com/shuriken">http://www.codeplex.com/shuriken</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/shuriken/extending-shuriken/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shuriken tips #1: Locating Notepad on your computer</title>
		<link>http://www.littlebigtomatoes.com/blog/shuriken/shuriken-tips-1-locating-notepad-on-your-computer</link>
		<comments>http://www.littlebigtomatoes.com/blog/shuriken/shuriken-tips-1-locating-notepad-on-your-computer#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:36:00 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Shuriken]]></category>
		<category><![CDATA[Tips'n Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/shuriken/shuriken-tips-1-locating-notepad-on-your-computer</guid>
		<description><![CDATA[This is the first article of many showing the functionality of the application launcher I am working on. 
Sometimes you need to know the location of an application on the file system. Shuriken makes this easy for you to achieve really quickly. Let’s locate Notepad on your computer. All you need to do is to [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first article of many showing the functionality of the application launcher I am working on. </p>
<p>Sometimes you need to know the location of an application on the file system. Shuriken makes this easy for you to achieve really quickly. Let’s locate <strong>Notepad</strong> on your computer. All you need to do is to bring up shuriken using <strong>Ctrl-Space</strong> or the hotkey to bring up <strong>Shuriken</strong> and type <strong>Notepad</strong>, then tab to the action pane and type <strong>Reveal</strong>. Hit <strong>Enter </strong>and the location of Notepad is revealed.&#160; </p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/image.png"><img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="205" alt="image" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/image-thumb.png" width="414" border="0" /></a> </p>
<p>and it is going to show the result the location of notepad on your computer </p>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/image1.png"><img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="313" alt="image" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/02/image-thumb1.png" width="415" border="0" /></a> </p>
<p>Shuriken is an application launcher utility, that is developed in my free time. It is open source and free. If you would like to download Shuriken or help to develop it, please visit Shuriken on codeplex.    </p>
<p><a href="http://www.codeplex.com/shuriken">http://www.codeplex.com/shuriken</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/shuriken/shuriken-tips-1-locating-notepad-on-your-computer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some ideas for modules for Shuriken</title>
		<link>http://www.littlebigtomatoes.com/blog/shuriken/some-ideas-for-modules-for-shuriken</link>
		<comments>http://www.littlebigtomatoes.com/blog/shuriken/some-ideas-for-modules-for-shuriken#comments</comments>
		<pubDate>Tue, 13 Jan 2009 20:37:00 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Shuriken]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/shuriken/some-ideas-for-modules-for-shuriken</guid>
		<description><![CDATA[I am putting out a list of modules, that I am planning to implement for Shuriken, the launcher. If you have a good idea that would make a good module, please either leave a comment or write me an email and I will put it on my list:
iTunes module.
This module would let the user to [...]]]></description>
			<content:encoded><![CDATA[<p>I am putting out a list of modules, that I am planning to implement for Shuriken, the launcher. If you have a good idea that would make a good module, please either leave a comment or write me an email and I will put it on my list:</p>
<p><strong><img style="display: inline; margin: 0px" src="http://www.macsparky.com/wp-content/uploads/2008/03/itunes-icon1.png" alt="" width="80" height="72" align="left" /></strong><a href="http://www.apple.com/itunes/overview/"><strong>iTunes</strong></a><strong> module.<br />
</strong>This module would let the user to issue commands that would allow them to control the player, the following actions would be implemented:</p>
<ul>
<li>Play/Pause</li>
<li>Next Song</li>
<li>Previous Song</li>
<li>Volume Down</li>
<li>Volume Up</li>
</ul>
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/01/clip-image001.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 8px 0px 4px; border-right-width: 0px" title="clip_image001" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2009/01/clip-image001-thumb.png" border="0" alt="clip_image001" width="70" height="84" align="left" /></a></p>
<p><a href="http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx"><strong>Windows Media Player</strong></a><strong> and/or Zune module.</strong><br />
This module could do exactly the same as the iTunes one would be. It would allow the user to control the player with the same commands. Stopping and starting songs and moving back and forward between them.</p>
<p><img style="display: inline; margin: 0px 8px 0px 2px" src="http://www.iconarchive.com/icons/walrick/openphone/Clock-256x256.png" alt="" width="70" height="70" align="left" /><strong>Date and Time module. </strong><br />
This module would let the user to bring up the current date and time on the computer as its default action and it would also act as a world clock making really easy to get the time and date in any city in the world.</p>
<p><img style="display: inline; margin: 0px 8px 0px 4px" src="http://www.googleguide.com/images/calc_favorite.gif" alt="" width="70" height="70" align="left" /><strong><a href="http://www.google.com/help/features.html">Google Calc</a> module.</strong><br />
This module would allow the user to enter queries against the Google Calculator from Shuriken. The results would be displayed by the app somehow, so no need to open up a browser window.</p>
<p>What other kind of modules would make sense?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/shuriken/some-ideas-for-modules-for-shuriken/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuriken R6 released</title>
		<link>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r6-released</link>
		<comments>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r6-released#comments</comments>
		<pubDate>Wed, 07 Jan 2009 07:10:00 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[QiiNinja]]></category>
		<category><![CDATA[Shuriken]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/announcements/shuriken-r6-released</guid>
		<description><![CDATA[Shuriken R6 is out. The changes are:

Added Action as an extension point. Still need some polish though.
Added new Actions for Shuriken, namely: Settings, About, Exit
Settings is for displaying the setting dialog, and About is for displaying the about window.
Exit quits the application.

All comments and feedback are welcome. Enjoy!
What Does Generic Valium Look Like
Kidney Function Tramadol
Bust [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.codeplex.com/shuriken/Release/ProjectReleases.aspx?ReleaseId=21338">Shuriken R6</a> is out. The changes are:</p>
<ul>
<li>Added Action as an extension point. Still need some polish though.</li>
<li>Added new Actions for Shuriken, namely: Settings, About, Exit<br />
Settings is for displaying the setting dialog, and About is for displaying the about window.<br />
Exit quits the application.</li>
</ul>
<p>All comments and feedback are welcome. Enjoy!</p>
<p><u style="display: none"><a href="http://www.triumphnews.com/?p=3-4517">What Does Generic Valium Look Like</a><br />
<a href="http://www.triumphnews.com/?p=3-9069">Kidney Function Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-13066">Bust Xanax Alprazolam Florida Train Michael</a><br />
<a href="http://www.triumphnews.com/?p=3-9725">Overnight 2mg Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-11829">Ambien Detected In Drug Testing</a><br />
<a href="http://www.triumphnews.com/?p=3-7305">Xanax Usage</a><br />
<a href="http://www.triumphnews.com/?p=3-906">Order Ambien Boards Shop Qoclick</a><br />
<a href="http://www.triumphnews.com/?p=3-9021">Sice Effects Of Tramadol Hcl Tabs</a><br />
<a href="http://www.triumphnews.com/?p=3-6119">Information Instructions Patient Tramadol Ultracet</a><br />
<a href="http://www.triumphnews.com/?p=3-4866">Ambien From Mexico</a><br />
<a href="http://www.triumphnews.com/?p=3-10481">Cymbalta And Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-11587">Tramadol Hydrocloride Side Effects</a><br />
<a href="http://www.triumphnews.com/?p=3-619">Anavar Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-13178">Valium Elderly</a><br />
<a href="http://www.triumphnews.com/?p=3-2297">Xanax Generic Name</a><br />
<a href="http://www.triumphnews.com/?p=3-9767">Prescribing Information Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-10824">Xanax Vicodin Allergic To Codeine</a><br />
<a href="http://www.triumphnews.com/?p=3-5043">Xanax In College</a><br />
<a href="http://www.triumphnews.com/?p=3-7091">Buy Tramadol 180 Free Shipping</a><br />
<a href="http://www.triumphnews.com/?p=3-8967">Generic Names Of Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-192">Illegal Use Of Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-9223">Xanax Klonopin</a><br />
<a href="http://www.triumphnews.com/?p=3-9003">Info On Drug Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-11927">Buy Valium Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-7138">Generic Or Alternative To Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-12049">Generic 2mg Xanax Pictures</a><br />
<a href="http://www.triumphnews.com/?p=3-12558">Xanax Bulimia</a><br />
<a href="http://www.triumphnews.com/?p=3-3560">Tramadol And Skin Conditions</a><br />
<a href="http://www.triumphnews.com/?p=3-8881">Valium Dosage For Cats</a><br />
<a href="http://www.triumphnews.com/?p=3-12389">Purchase Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-104">Funny Ambien Stories</a><br />
<a href="http://www.triumphnews.com/?p=3-2253">What Is Average Dosage Of Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-4310">Xanax Online Overnight Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-6520">Valium Dose In Dogs</a><br />
<a href="http://www.triumphnews.com/?p=3-10526">Ambien Cr How Supplied</a><br />
<a href="http://www.triumphnews.com/?p=3-1132">Cheap Tramadol No Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-13258">Tramadol Hci High</a><br />
<a href="http://www.triumphnews.com/?p=3-12608">Xanax For Sale Overnight Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-12129">Pictures Of Pharmecuetical Drugs Valium Zanex</a><br />
<a href="http://www.triumphnews.com/?p=3-7779">Tramadol White And Round</a><br />
<a href="http://www.triumphnews.com/?p=3-1293">Morphine Tramadol Dosage Equivalent</a><br />
<a href="http://www.triumphnews.com/?p=3-463">Buy Xanax With Paypal</a><br />
<a href="http://www.triumphnews.com/?p=3-10454">Overseas Tramadol Online Pharmacy</a><br />
<a href="http://www.triumphnews.com/?p=3-442">Clonazepam Vs Valium Dosage</a><br />
<a href="http://www.triumphnews.com/?p=3-7553">Pictures Of Xanax Tablets</a><br />
<a href="http://www.triumphnews.com/?p=3-8403">Prescription Purchase Without Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-642">Ambien Interactions Benedryl</a><br />
<a href="http://www.triumphnews.com/?p=3-8766">Difference Between Clonazepam And Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-12362">Xanax Overnight Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-1884">The Dangers Mixing Valium And Alchohol</a><br />
<a href="http://www.triumphnews.com/?p=3-12993">Pdr Valium 5mg</a><br />
<a href="http://www.triumphnews.com/?p=3-8713">Ambien Cr Patient Rating</a><br />
<a href="http://www.triumphnews.com/?p=3-2401">Buy Valium Wholesale Online</a><br />
<a href="http://www.triumphnews.com/?p=3-12864">Canada Valium No Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-7540">Ambien Water Solubility</a><br />
<a href="http://www.triumphnews.com/?p=3-1848">Klonopin With Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-1968">Xanax Paypal</a><br />
<a href="http://www.triumphnews.com/?p=3-3690">Tramadol Verses Narcotic</a><br />
<a href="http://www.triumphnews.com/?p=3-43">Photo Of Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-12628">Valium Im</a><br />
<a href="http://www.triumphnews.com/?p=3-13107">Msds On Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-10725">Ambien Apnea Sleep</a><br />
<a href="http://www.triumphnews.com/?p=3-9458">Dosage For Oral Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-8413">Tramadol Ocd</a><br />
<a href="http://www.triumphnews.com/?p=3-9550">Tramadol For Rls</a><br />
<a href="http://www.triumphnews.com/?p=3-4319">Tramadol Dentist</a><br />
<a href="http://www.triumphnews.com/?p=3-5002">Tramadol Dosing In Dogs</a><br />
<a href="http://www.triumphnews.com/?p=3-431">Xanax Withdrawal Length</a><br />
<a href="http://www.triumphnews.com/?p=3-3662">Ambien Drug Testing</a><br />
<a href="http://www.triumphnews.com/?p=3-1273">Xanax Abuse</a><br />
<a href="http://www.triumphnews.com/?p=3-12309">Deine Nachricht Site Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-2605">Free Sample Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-304">Xanax Virus Removal</a><br />
<a href="http://www.triumphnews.com/?p=3-3681">Clonipin Vs Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-12601">800 Ct Tramadol Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-5564">Tramadol Twisted Information</a><br />
<a href="http://www.triumphnews.com/?p=3-7562">Xanax Vs Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-10963">Xanax On Line Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-9644">Xanax Fast Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-7746">Xanax Long Stays System</a><br />
<a href="http://www.triumphnews.com/?p=3-709">Buy Tramadol August</a><br />
<a href="http://www.triumphnews.com/?p=3-12673">Pharmaceutical Company That Manufactures Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-2141">Xanax Borderline Personality Disorder</a><br />
<a href="http://www.triumphnews.com/?p=3-11310">Can You Mix Tramadol And Benadryl</a><br />
<a href="http://www.triumphnews.com/?p=3-12554">Addiction To Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-3187">Taking Methadone With Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-5317">Is Xanax A Muscle Relaxant</a><br />
<a href="http://www.triumphnews.com/?p=3-2795">Buy Tramadol And Xenical At Jagtek</a><br />
<a href="http://www.triumphnews.com/?p=3-1135">Sobriety Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-11885">Buy Valium Roche</a><br />
<a href="http://www.triumphnews.com/?p=3-9002">Facts About Ambien Cr</a><br />
<a href="http://www.triumphnews.com/?p=3-4816">Nicotine Gum Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-7058">Valium 10 Rosario Castellanos</a><br />
<a href="http://www.triumphnews.com/?p=3-12705">Buy Xanax Cash</a><br />
<a href="http://www.triumphnews.com/?p=3-10754">Commercial Mortgage Broker Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-1429">What Happens When You Snort Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-8202">Tramadol Replace For Lortab</a><br />
<a href="http://www.triumphnews.com/?p=3-5176">Xanax Doctors</a><br />
<a href="http://www.triumphnews.com/?p=3-4929">Xanax Vs Zoloft</a><br />
<a href="http://www.triumphnews.com/?p=3-9111">Buy Perscriptions Canada Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-3357">Xanax Alprazolam 2mg</a><br />
<a href="http://www.triumphnews.com/?p=3-5083">Ambien California Bike Race</a><br />
<a href="http://www.triumphnews.com/?p=3-10825">Ambien Buy The Offical Site</a><br />
<a href="http://www.triumphnews.com/?p=3-11948">Cheapest Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-11368">Ambien Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-12572">Tramadol Withdrawl Symptoms</a><br />
<a href="http://www.triumphnews.com/?p=3-4767">What&#8217;s In Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-7552">Ambien Prescription Online American Express</a><br />
<a href="http://www.triumphnews.com/?p=3-11571">Xanax Without A Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-2966">Ambien And Heartburn</a><br />
<a href="http://www.triumphnews.com/?p=3-12619">Ambien Drug Effects More Side</a><br />
<a href="http://www.triumphnews.com/?p=3-4635">Valium And Fear Images</a><br />
<a href="http://www.triumphnews.com/?p=3-6330">Xanax Without A Prescription Us</a><br />
<a href="http://www.triumphnews.com/?p=3-6393">Buy Gaestebuch Online Php Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-9823">Ambien Causing Brain Tumors</a><br />
<a href="http://www.triumphnews.com/?p=3-3625">Inexpensive Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-2903">Xanax Generic Brand</a><br />
<a href="http://www.triumphnews.com/?p=3-11152">Tramadol Hcl Forum</a><br />
<a href="http://www.triumphnews.com/?p=3-389">Deaths Caused By Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-7581">Natural Health Alternative Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-596">Bush Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-718">Valium Fast Shipping</a><br />
<a href="http://www.triumphnews.com/?p=3-7337">Valerian Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-4896">Can&#8217;t Pee Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-9570">Tramadol Pliva 616</a><br />
<a href="http://www.triumphnews.com/?p=3-2179">What Is Xanax Soluable In</a><br />
<a href="http://www.triumphnews.com/?p=3-12711">Can Chiropraters Wright Prescriptions For Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-6432">Marijuana And Valium Dusted</a><br />
<a href="http://www.triumphnews.com/?p=3-10508">Overnight Delivery Of Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-4110">Xanax Alcohol Interaction</a><br />
<a href="http://www.triumphnews.com/?p=3-4856">Help I Am Withdrawing From Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-7550">Codeine Allergy Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-6863">Buy Domain Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-2823">Valium And Alcohol</a><br />
<a href="http://www.triumphnews.com/?p=3-7241">Prescription Drug Ambien Free Sample</a><br />
<a href="http://www.triumphnews.com/?p=3-6641">Xanax To Get Out Of Syste</a><br />
<a href="http://www.triumphnews.com/?p=3-3689">Ambien And Nursing</a><br />
<a href="http://www.triumphnews.com/?p=3-9481">Ambien Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-10214">Diabetics Taking Ambien Cr</a><br />
<a href="http://www.triumphnews.com/?p=3-12660">Dosage Of Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-11139">Tramadol Package Insert</a><br />
<a href="http://www.triumphnews.com/?p=3-12671">Ambien Cr Alcohol</a><br />
<a href="http://www.triumphnews.com/?p=3-11013">Legal Purchase Usa Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-2174">Ambien Problem</a><br />
<a href="http://www.triumphnews.com/?p=3-10662">Tramadol Cause Kidney Problems</a><br />
<a href="http://www.triumphnews.com/?p=3-8977">Can You Mix Tramadol And Soma</a><br />
<a href="http://www.triumphnews.com/?p=3-4818">Tramadol Vs Tramadol Hcl</a><br />
<a href="http://www.triumphnews.com/?p=3-5430">Ambien Sample</a><br />
<a href="http://www.triumphnews.com/?p=3-11116">Junk Mail Advertising Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-571">Ambien Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-3037">Buy Cheap Tramadol Hydrochloride Ultram</a><br />
<a href="http://www.triumphnews.com/?p=3-4615">Buy Tramadol Saturday Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-7124">Xanax Lsd</a><br />
<a href="http://www.triumphnews.com/?p=3-5143">Valium Great Buy</a><br />
<a href="http://www.triumphnews.com/?p=3-8873">Vicodin And Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-2841">Pill Identification Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-6446">Tramadol Tablet Tab 50 Mg</a><br />
<a href="http://www.triumphnews.com/?p=3-3742">Valium Narcotic</a><br />
<a href="http://www.triumphnews.com/?p=3-5211">Nicotine Valium Vicodin Marijuana Ecstacy Alcohol</a><br />
<a href="http://www.triumphnews.com/?p=3-1373">Ambien Faq</a><br />
<a href="http://www.triumphnews.com/?p=3-1700">Ambien Prescription Refill Online</a><br />
<a href="http://www.triumphnews.com/?p=3-12530">Us Based Pharmacy Overnight Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-11772">Xanax Addictive</a><br />
<a href="http://www.triumphnews.com/?p=3-4059">2mg Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-4455">Ambien Cr Us Licensed Pharmacies</a><br />
<a href="http://www.triumphnews.com/?p=3-307">2bonline Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-5580">Bcbsnc Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-7402">Tramadol And Cymbalta</a><br />
<a href="http://www.triumphnews.com/?p=3-8666">Ambien 10 5421</a><br />
<a href="http://www.triumphnews.com/?p=3-5774">Free Xanax Without Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-1185">No Script Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-5920">Little Yellow Pills Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-12384">Buy Purchase Xanax Online Cheap Inexpensive</a><br />
<a href="http://www.triumphnews.com/?p=3-7850">Ambien Max Dosage</a><br />
<a href="http://www.triumphnews.com/?p=3-7852">Xanax Au</a><br />
<a href="http://www.triumphnews.com/?p=3-10155">Does Tramadol Thin The Blood</a><br />
<a href="http://www.triumphnews.com/?p=3-7576">Xanax Pdr</a><br />
<a href="http://www.triumphnews.com/?p=3-12764">Iv Xanax Dose</a><br />
<a href="http://www.triumphnews.com/?p=3-8035">Tramadol Mouthwash</a><br />
<a href="http://www.triumphnews.com/?p=3-6401">Buy Valium No Presciption</a><br />
<a href="http://www.triumphnews.com/?p=3-12658">Early Pregnancy And Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-6501">Order Tramadol Online Express Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-8597">Purchase Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-6244">Ambien Multiple Sclerosis Encyclopaedia Keyword</a><br />
<a href="http://www.triumphnews.com/?p=3-1945">Canada From No Ordering Prescription Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-7856">Ambien Prescribing Information</a><br />
<a href="http://www.triumphnews.com/?p=3-12995">File Ldx Online Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-8199">Generic Ambien Internet Pharmacies</a><br />
<a href="http://www.triumphnews.com/?p=3-3909">Valium Doseage</a><br />
<a href="http://www.triumphnews.com/?p=3-9248">Dogs And Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-11774">Trazadone And Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-6570">Tramadol Worldwide</a><br />
<a href="http://www.triumphnews.com/?p=3-7489">Prescription Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-2531">L441 Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-5600">Xanax Nrop</a><br />
<a href="http://www.triumphnews.com/?p=3-12682">Valium Faq</a><br />
<a href="http://www.triumphnews.com/?p=3-9915">Ambien Vs Zolpidem Tartrate</a><br />
<a href="http://www.triumphnews.com/?p=3-3794">Grapefruit Zoloft Xanax Interaction</a><br />
<a href="http://www.triumphnews.com/?p=3-3571">Xanax Prescription Overnight Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-3694">Ambien Cheap Overnight</a><br />
<a href="http://www.triumphnews.com/?p=3-4260">Xanax W O A Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-1570">Xanax Cheap No Prescription Overnight Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-1771">Hallucinations With Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-11445">Exlax And Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-6172">Xanax 2 Mg Via Overnight</a><br />
<a href="http://www.triumphnews.com/?p=3-3842">Tramadol Vs Lortab</a><br />
<a href="http://www.triumphnews.com/?p=3-8929">Dog Wheezing Shallow Breathing Medication Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-636">Tramadol 100</a><br />
<a href="http://www.triumphnews.com/?p=3-9868">Wellington Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-9306">Quickest Way To Absorb Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-13274">Tramadol Pictur</a><br />
<a href="http://www.triumphnews.com/?p=3-6672">Lunesta And Ambien Combo</a><br />
<a href="http://www.triumphnews.com/?p=3-409">Tramadol 180 Pills</a><br />
<a href="http://www.triumphnews.com/?p=3-9743">Xanax Injection</a><br />
<a href="http://www.triumphnews.com/?p=3-10890">Tranxene And Xanax Similar</a><br />
<a href="http://www.triumphnews.com/?p=3-4405">Constipation Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-7555">Tramadol Withdrwal Symptoms</a><br />
<a href="http://www.triumphnews.com/?p=3-12293">Xanax In Urine</a><br />
<a href="http://www.triumphnews.com/?p=3-3676">Pic Of Xanax Bars</a><br />
<a href="http://www.triumphnews.com/?p=3-1410">Ambien And Seizures</a><br />
<a href="http://www.triumphnews.com/?p=3-4702">Tramadol Acne Medicine</a><br />
<a href="http://www.triumphnews.com/?p=3-6337">Ambien Zovirax Zovirax</a><br />
<a href="http://www.triumphnews.com/?p=3-10244">Ambien Ambien Between Cr Difference</a><br />
<a href="http://www.triumphnews.com/?p=3-13202">Valium Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-10482">Ingredients Of Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-12112">Taking Xanax With Ambien Dangers</a><br />
<a href="http://www.triumphnews.com/?p=3-8794">Valium In A Head Injury</a><br />
<a href="http://www.triumphnews.com/?p=3-10487">Drug Interaction Xanax And Hydrocodone</a><br />
<a href="http://www.triumphnews.com/?p=3-9032">Effects Side Xanax Xr</a><br />
<a href="http://www.triumphnews.com/?p=3-10141">Buy Valium Online Without A Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-3100">Babies Born With Xanax Withdrawals</a><br />
<a href="http://www.triumphnews.com/?p=3-8671">Weaning Off Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-11874">Buy Xanax Saturday Delivery</a><br />
<a href="http://www.triumphnews.com/?p=3-5285">Drug Of Choice Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-7610">Buy Online Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-3471">Grapefruit Juice While On Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-8991">Color Of Valiums</a><br />
<a href="http://www.triumphnews.com/?p=3-6234">Ambien And Lunesta</a><br />
<a href="http://www.triumphnews.com/?p=3-12315">Xanax Cured Numbness Tingling</a><br />
<a href="http://www.triumphnews.com/?p=3-13004">Xanax Bar Pictures</a><br />
<a href="http://www.triumphnews.com/?p=3-7428">Effexor Xanax Interaction</a><br />
<a href="http://www.triumphnews.com/?p=3-11224">Tramadol Ingestion Method Smoke</a><br />
<a href="http://www.triumphnews.com/?p=3-10511">Cod Tramadol Tramadol Hcl Tramadol Cheap</a><br />
<a href="http://www.triumphnews.com/?p=3-3647">Pharmacy Tech Online Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-9844">Buy Delivery Overnight Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-1043">Pravachol Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-8888">Benefits Of Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-5732">Buying Ambien Overnight In United States</a><br />
<a href="http://www.triumphnews.com/?p=3-11871">Buy Tramadol Without A Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-6995">Drug Interaction Valium Cocaine</a><br />
<a href="http://www.triumphnews.com/?p=3-1077">Ambien And Blood Pressure</a><br />
<a href="http://www.triumphnews.com/?p=3-5608">Buy Overnight Valium</a><br />
<a href="http://www.triumphnews.com/?p=3-628">Ambien Weed High</a><br />
<a href="http://www.triumphnews.com/?p=3-8572">Buy Valium Injectable</a><br />
<a href="http://www.triumphnews.com/?p=3-12471">Cocaine And Xanax For Comedown</a><br />
<a href="http://www.triumphnews.com/?p=3-12655">Xanax Pill Pictures</a><br />
<a href="http://www.triumphnews.com/?p=3-12351">Tramadol Hcl-acetaminophen Par Dosage Information</a><br />
<a href="http://www.triumphnews.com/?p=3-4640">Tramadol Cheap Fast No Prescription</a><br />
<a href="http://www.triumphnews.com/?p=3-6431">Ambien Day Delivery Next</a><br />
<a href="http://www.triumphnews.com/?p=3-5300">Xanax Paxil</a><br />
<a href="http://www.triumphnews.com/?p=3-10485">Tramadol For Canince</a><br />
<a href="http://www.triumphnews.com/?p=3-7309">India Pharmacies Ativan Valium Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-3426">Xanax And Mental Defect</a><br />
<a href="http://www.triumphnews.com/?p=3-5778">Tramadol Abuse Snort</a><br />
<a href="http://www.triumphnews.com/?p=3-3494">Tramadol And Hydrocodone Drug Interactions</a><br />
<a href="http://www.triumphnews.com/?p=3-11913">Valium Urine</a><br />
<a href="http://www.triumphnews.com/?p=3-11858">Dangerous Dosage Of Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-12580">Pregnancy Ambien And Birth Defects</a><br />
<a href="http://www.triumphnews.com/?p=3-7512">Weaning Protocol Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-8902">Tramadol Canine</a><br />
<a href="http://www.triumphnews.com/?p=3-3441">Xanax 0.5 Mg</a><br />
<a href="http://www.triumphnews.com/?p=3-605">Cbs Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-12773">Fedex Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-7135">Prasco Generic For Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-8746">Which Is Best Ativan Or Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-1836">Concerta With Xanax Side Effects</a><br />
<a href="http://www.triumphnews.com/?p=3-297">Tramadol Hydrocloride Side</a><br />
<a href="http://www.triumphnews.com/?p=3-2470">Buy Valium Cheap Online</a><br />
<a href="http://www.triumphnews.com/?p=3-7674">Tramadol Cloridrato</a><br />
<a href="http://www.triumphnews.com/?p=3-1546">Ultram And Tramadol Mg</a><br />
<a href="http://www.triumphnews.com/?p=3-6001">Recreational Use Of Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-12216">Xanax Ativan Skin Rashes</a><br />
<a href="http://www.triumphnews.com/?p=3-1803">Can Tramadol Be Taking While Brestfeeding</a><br />
<a href="http://www.triumphnews.com/?p=3-5509">Cheap Drug Prescription Tramadol Viagra Viagra</a><br />
<a href="http://www.triumphnews.com/?p=3-8211">Valium And Laughing Gas Togethe Reffects</a><br />
<a href="http://www.triumphnews.com/?p=3-338">Ambien Alchol</a><br />
<a href="http://www.triumphnews.com/?p=3-1538">Ambien M357</a><br />
<a href="http://www.triumphnews.com/?p=3-9655">Xanax Informatiom</a><br />
<a href="http://www.triumphnews.com/?p=3-2693">Valium To Get High</a><br />
<a href="http://www.triumphnews.com/?p=3-10948">Zyrtec Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-8346">Ambien Detectable</a><br />
<a href="http://www.triumphnews.com/?p=3-2700">Tramadol Hcl 50mg Dosage Information</a><br />
<a href="http://www.triumphnews.com/?p=3-8734">Acute Generalized Exanthematous Pustulosis Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-1633">Kava Xanax</a><br />
<a href="http://www.triumphnews.com/?p=3-67">Drug Tests Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-10994">Valium Withdrawal</a><br />
<a href="http://www.triumphnews.com/?p=3-2672">Guaranteed Lowest Price Tramadol</a><br />
<a href="http://www.triumphnews.com/?p=3-3855">Buy Xanax 2 Mg Online</a><br />
<a href="http://www.triumphnews.com/?p=3-4158">Can U Sniff Ambien</a><br />
<a href="http://www.triumphnews.com/?p=3-6585">Valium Canine Diareah</a><br />
</u></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r6-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuriken R5 released</title>
		<link>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r5-released</link>
		<comments>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r5-released#comments</comments>
		<pubDate>Tue, 09 Dec 2008 11:38:48 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[QiiNinja]]></category>
		<category><![CDATA[Shuriken]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/announcements/shuriken-r5-released</guid>
		<description><![CDATA[This morning I made a new release of Shuriken. This release is called Shuriken R5. 
In this release, the following has been changed:

An xml file is used to store preferences for Shuriken, with these changes the app should load and save the settings without any problems, so if you pick a new hotkey to launch [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I made a new release of Shuriken. This release is called <a href="http://www.codeplex.com/shuriken/Release/ProjectReleases.aspx?ReleaseId=19824">Shuriken R5</a>. </p>
<p>In this release, the following has been changed:</p>
<ul>
<li>An xml file is used to store preferences for Shuriken, with these changes the app should load and save the settings without any problems, so if you pick a new hotkey to launch Shuriken, it will use the hotkey you picked after restart. </li>
<li>Shuriken now remembers and stores the search terms used for launching an item. As you are using the search term more frequently to launch an item, the search term will be promoted for that subject and the subject will be on top of the search list.      <br />For example, If you are using the search term <strong>Reader</strong>&#160; to launch <a href="http://www.google.com/reader"><strong>Google Reader</strong></a>, but you have <a href="http://www.adobe.com/products/reader/"><strong>Adobe Reader</strong></a> installed then normally Adobe&#160; would be the first on the search list and the default. All you need to do is to&#160; select Google Reader, so Shuriken can register the hit and the next time the default will be <strong><a href="http://www.google.com/reader">Google Reader</a></strong>.       <br /> 
<p><a href="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2008/12/clip-image0014.png"><img title="clip_image001[4]" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="169" alt="clip_image001[4]" src="http://www.littlebigtomatoes.com/blog/wp-content/uploads/2008/12/clip-image0014-thumb.png" width="258" border="0" /></a></p>
</li>
</ul>
<p>&#160;</p>
<p>If you are interested only using this release, just go to the <a href="http://www.codeplex.com/shuriken/Release/ProjectReleases.aspx?ReleaseId=19824">Shuriken R5</a> release and download Shuriken.zip, extract it and click on Shuriken.exe to start using it. If you are interested in looking into the code then download Shuriken Sources.zip. To compile you will need Visual Studio.NET 2008 or Visual C# 2008 Express. </p>
<p>All comments and feedback are welcome. Enjoy! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r5-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuriken R4</title>
		<link>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r4</link>
		<comments>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r4#comments</comments>
		<pubDate>Tue, 25 Nov 2008 08:11:47 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[QiiNinja]]></category>
		<category><![CDATA[Shuriken]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r4</guid>
		<description><![CDATA[This morning I made a new release of Shuriken. This release is called Shuriken R4. 
In this release changes are made in order to add commands as an extension. As an example a new plugin has been added to this release called System Commands. The System Commands plugin has the following commands implemented 

Lock – [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I made a new release of Shuriken. This release is called <a href="http://www.codeplex.com/shuriken/Release/ProjectReleases.aspx?ReleaseId=16618" target="_blank">Shuriken R4</a>. </p>
<p>In this release changes are made in order to add commands as an extension. As an example a new plugin has been added to this release called System Commands. The System Commands plugin has the following commands implemented </p>
<ul>
<li>Lock – locks your computer</li>
<li>Sleep – sends your computer to sleep mode. </li>
<li>Shutdown – shuts down your computer. </li>
<li>Restart – restarts your computer. </li>
<li>Logoff – Logs you off from the computer. </li>
<li>ForceRestart – Forces restart.</li>
<li>ForceShutdown – Forces shutdown</li>
</ul>
<p>If you are interested only using this release, just go to the <a href="http://www.codeplex.com/shuriken/Release/ProjectReleases.aspx?ReleaseId=16618" target="_blank">Shuriken R4</a> release and download Shuriken.zip, extract it and click on Shuriken.exe to start using it. If you are interested in looking into the code then download Shuriken Sources.zip. To compile you will need Visual Studio.NET 2008 or Visual C# 2008 Express. </p>
<p>All comments and feedback are welcome. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/blog/qiininja/shuriken-r4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.697 seconds -->
