<?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>non-random ramble &#187; ides</title>
	<atom:link href="http://jimbarritt.com/non-random/category/devops/ides/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimbarritt.com/non-random</link>
	<description>adventures in code</description>
	<lastBuildDate>Tue, 20 Sep 2011 13:16:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using TextMate with R</title>
		<link>http://jimbarritt.com/non-random/2010/11/16/using-textmate-with-r/</link>
		<comments>http://jimbarritt.com/non-random/2010/11/16/using-textmate-with-r/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 21:35:57 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[r]]></category>
		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=750</guid>
		<description><![CDATA[I&#8217;ve been using the R language for some years now but didn&#8217;t have it installed on my current machine. TextMate is a great editor to use as it has a custom bundle that gives you syntax highlighting and executes commands for you in the R console. To install the R bundle: Then in TextMate choose [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.r-project.org/"><img src="http://www.r-project.org/Rlogo.jpg" alt="rlogo" /></a></p>
<p>I&#8217;ve been using the <a href="http://www.r-project.org/">R</a> language for some years now but didn&#8217;t have it installed on my current machine. </p>
<p><a href="http://macromates.com/">TextMate</a> is a great editor to use as it has a custom bundle that gives you syntax highlighting and executes commands for you in the R console.</p>
<p>To install the R bundle:</p>
<pre name='code' class='java:nogutter:nocontrols'>
cd ~/Library/Application\ Support/TextMate/Bundles/
svn co http://svn.textmate.org/trunk/Bundles/R.tmbundle/
</pre>
<p>Then in TextMate choose Bundles->Bundle Editor->Reload Bundles.</p>
<p>There is one tweak I make which is that I like to press ⌘ + RETURN to execute the current selection in the R console. So edit the bundle and find R.app in the commands and change the key. Also I like it to return back to text mate afterwards, so I add the following to the script:</p>
<pre name='code' class='java:nogutter:nocontrols'>
-e &#8216;tell application &#8220;TextMate&#8221; to activate&#8217; \
</pre>
<p>I also removed the line about setting the current dir. This was a little fiddly &#8211; I found that I had to make sure I selected the entire line and cut it then delete, making sure there are no end of line characters. So it looks like this:</p>
<pre name='code' class='java:nogutter:nocontrols'>
# input is selection or document
rawText=&#8221;`cat`&#8221;
curDir=&#8221;
if [[ ${#TM_DIRECTORY} -gt 0 ]]; then
	curDir=&#8221;$TM_DIRECTORY&#8221;
fi
osascript -e &#8216;on run(theCode)&#8217; \
		  -e &#8216;tell application &#8220;R&#8221; to activate&#8217; \
		  -e &#8216;tell application &#8220;R&#8221; to cmd (item 1 of theCode)&#8217; \
		  -e &#8216;tell application &#8220;TextMate&#8221; to activate&#8217; \
		  -e &#8216;end run&#8217; &#8212; &#8220;$rawText&#8221; &#8220;$curDir&#8221;
</pre>
<p>All good.</p>
<p>UPDATE: 07/02/2011 &#8211; R now comes with a 64bit version so if you are on a macbook you can replace &#8220;R&#8221; in the code above with &#8220;R64&#8243;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F11%2F16%2Fusing-textmate-with-r%2F&amp;title=Using%20TextMate%20with%20R" id="wpa2a_2"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/11/16/using-textmate-with-r/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Typing the pound, or hash (#) key in emacs on Uk Macbook</title>
		<link>http://jimbarritt.com/non-random/2010/11/07/typing-the-pound-or-hash-key-in-emacs-on-uk-macbook/</link>
		<comments>http://jimbarritt.com/non-random/2010/11/07/typing-the-pound-or-hash-key-in-emacs-on-uk-macbook/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 14:01:50 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[emacs]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=720</guid>
		<description><![CDATA[My first foray into customising emacs that didn&#8217;t involve copy and paste from something on the internet. The problem with OS X and the uk keyboard is that the pound key actually has a £ on it. To get &#8220;#&#8221; you have to press alt+3 Of course, in emacs, the alt key is the meta [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/11/insert-pound.png" rel="lightbox[720]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/11/insert-pound.png" alt="" title="insert-pound" width="634" height="117" class="aligncenter size-full wp-image-721" /></a></p>
<p>My first foray into customising emacs that didn&#8217;t involve copy and paste from something on the internet.</p>
<p>The problem with OS X and the uk keyboard is that the pound key actually has a £ on it. To get &#8220;#&#8221; you have to press <code>alt+3</code></p>
<p>Of course, in emacs, the <code>alt</code> key is the meta key which is trapped by emacs. The simple function above inserted into your <code>.emacs</code> file should map the keys correctly.</p>
<p>Another option would be to re-map the apple key to be the meta key, perhaps another yak. </p>
<p>For copy and paste-ability:</p>
<pre name='code' class='java:nogutter:nocontrols'>
;; Allow hash to be entered
(defun insert-pound ()
  &#8220;Inserts a pound into the buffer&#8221;
  (insert &#8220;#&#8221;))
(global-set-key (kbd &#8220;M-3&#8243;) &#8216;(lambda()(interactive)(insert-pound)))
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F11%2F07%2Ftyping-the-pound-or-hash-key-in-emacs-on-uk-macbook%2F&amp;title=Typing%20the%20pound%2C%20or%20hash%20%28%23%29%20key%20in%20emacs%20on%20Uk%20Macbook" id="wpa2a_4"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/11/07/typing-the-pound-or-hash-key-in-emacs-on-uk-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows: Anti-aliased fonts don&#8217;t work</title>
		<link>http://jimbarritt.com/non-random/2010/11/03/windows-anti-aliased-fonts-dont-work/</link>
		<comments>http://jimbarritt.com/non-random/2010/11/03/windows-anti-aliased-fonts-dont-work/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 12:08:40 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[intellij]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=705</guid>
		<description><![CDATA[I was recently installing a new machine and getting a strange feeling that something was awry with my IntelliJ fonts. They looked like they were not being anti-aliased, even though I had checked the correct option. Also I noticed that generally fonts were looking a bit ropey. After some puzzling I discovered the dialog above. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/11/antialias1.png" rel="lightbox[705]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/11/antialias1.png" alt="" title="antialias" width="430" height="326" class="aligncenter size-full wp-image-711" /></a></p>
<p>I was recently installing a new machine and getting a strange feeling that something was awry with my IntelliJ fonts. They looked like they were not being anti-aliased, even though I had checked the correct option. Also I noticed that generally fonts were looking a bit ropey.</p>
<p>After some puzzling I discovered the dialog above. If you right click on the desktop then to properties->appearance->effects&#8230; you will see it and you need to make sure the font smoothing is checked.</p>
<p>Phew, now I have beautiful code again.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F11%2F03%2Fwindows-anti-aliased-fonts-dont-work%2F&amp;title=Windows%3A%20Anti-aliased%20fonts%20don%E2%80%99t%20work" id="wpa2a_6"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/11/03/windows-anti-aliased-fonts-dont-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing JRuby with Intellij (OS X)</title>
		<link>http://jimbarritt.com/non-random/2010/07/03/installing-jruby-with-intellij-os-x/</link>
		<comments>http://jimbarritt.com/non-random/2010/07/03/installing-jruby-with-intellij-os-x/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 09:14:25 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[build]]></category>
		<category><![CDATA[intellij]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[thoughtblog]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=573</guid>
		<description><![CDATA[GET it from http://jruby.org/ There is a download page, download and exract the tar file somehwere. I put it in /System/Library/Frameworks/JRuby.framework/jruby-1.5.1 I then created a symbolic link to jruby_current And then simply add it to my ~/.bash_profile Now you can add the JRuby SDK to your Java Module in Intellij: Now you can have ruby [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/jruby.png" rel="lightbox[573]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/jruby.png" alt="" title="jruby" width="235" height="232" class="aligncenter size-full wp-image-574" /></a></p>
<p>GET it from <a href="http://jruby.org/#2">http://jruby.org/</a></p>
<p>There is a download page, download and exract the tar file somehwere.</p>
<p>I put it in <code>/System/Library/Frameworks/JRuby.framework/jruby-1.5.1</code></p>
<p>I then created a symbolic link to <code>jruby_current</code><br />
<pre name='code' class='java:nogutter:nocontrols'>
ln -s jruby-1.5.1/ jruby_current
</pre></p>
<p>And then simply add it to my <code>~/.bash_profile</code></p>
<pre name='code' class='java:nogutter:nocontrols'>
$vi ~/.bash_profile
export PATH=/System/Library/Frameworks/JRuby.framework/jruby_current/bin:$PATH
#Reload the profile&#8230;
$. ~/.bash_profile
#Try out jruby&#8230;
$jruby -v
jruby 1.5.1 (ruby 1.8.7 patchlevel 249) (2010-06-06 f3a3480) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_17) [x86_64-java]
</pre>
<p>Now you can add the JRuby SDK to your Java Module in Intellij:</p>
<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/jruby_sdk.png" rel="lightbox[573]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/jruby_sdk.png" alt="" title="jruby_sdk" width="600" /></a></p>
<p>Now you can have ruby and Java in the same project. Awesome.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F07%2F03%2Finstalling-jruby-with-intellij-os-x%2F&amp;title=Installing%20JRuby%20with%20Intellij%20%28OS%20X%29" id="wpa2a_8"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/07/03/installing-jruby-with-intellij-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resources not available on classpath in Intellij</title>
		<link>http://jimbarritt.com/non-random/2010/07/02/intellij-compile-resources/</link>
		<comments>http://jimbarritt.com/non-random/2010/07/02/intellij-compile-resources/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 15:15:13 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[intellij]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=569</guid>
		<description><![CDATA[Today I spent a while puzzling over why my StringTemplates weren&#8217;t available on the classpath in Intellij. I forgot that you have to specifically identify file types to copy into the classes folder, you do it in the project settings. Search for &#8220;resource&#8221; and look in the compiler settings.]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/intellij-resources.png" rel="lightbox[569]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/intellij-resources.png" alt="" title="intellij-resources" width="600" /></a></p>
<p>Today I spent a while puzzling over why my StringTemplates weren&#8217;t available on the classpath in Intellij.</p>
<p>I forgot that you have to specifically identify file types to copy into the classes folder, you do it in the project settings. Search for &#8220;resource&#8221; and look in the compiler settings.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F07%2F02%2Fintellij-compile-resources%2F&amp;title=Resources%20not%20available%20on%20classpath%20in%20Intellij" id="wpa2a_10"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/07/02/intellij-compile-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellij svn history keeps &#8220;partial&#8221; commits</title>
		<link>http://jimbarritt.com/non-random/2010/06/08/intellij-svn-history-keeps-partial-commits/</link>
		<comments>http://jimbarritt.com/non-random/2010/06/08/intellij-svn-history-keeps-partial-commits/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 10:42:25 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[ides]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=536</guid>
		<description><![CDATA[I found that after an update, I was still seeing some entries lying around. Thanks to this issue on the intellij community forum I was able to simply remove the contents svn cache and it works.]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/06/svn_incoming.gif" rel="lightbox[536]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/06/svn_incoming.gif" alt="" title="svn_incoming" width="573" height="72" class="aligncenter size-full wp-image-537" /></a></p>
<p>I found that after an update, I was still seeing some entries lying around. Thanks to this <a href="http://www.jetbrains.net/devnet/message/5215171#5215171">issue</a> on the intellij community forum I was able to simply remove the contents svn cache and it works.</p>
<pre name='code' class='java:nogutter:nocontrols'>
~/Library/Caches/IntelliJIdea90/vcsCache
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F06%2F08%2Fintellij-svn-history-keeps-partial-commits%2F&amp;title=Intellij%20svn%20history%20keeps%20%E2%80%9Cpartial%E2%80%9D%20commits" id="wpa2a_12"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/06/08/intellij-svn-history-keeps-partial-commits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link from log console output to a line of code in IntelliJ</title>
		<link>http://jimbarritt.com/non-random/2010/05/16/link-from-log-console-output-to-a-line-of-code-in-intellij/</link>
		<comments>http://jimbarritt.com/non-random/2010/05/16/link-from-log-console-output-to-a-line-of-code-in-intellij/#comments</comments>
		<pubDate>Sun, 16 May 2010 13:47:55 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[ides]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[thoughtblog]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=480</guid>
		<description><![CDATA[Whilst playing around with some code analysis I thought it would be useful to be able to output a hyperlink back to a line of code in the IDE console. As it happens, you can &#8220;Trick&#8221; IntelliJ to do this with the following log statement: The pattern it seems to match is something like at [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/05/clickfromconsole.gif" rel="lightbox[480]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/05/clickfromconsole.gif" alt="" title="clickfromconsole" width="800"  class="aligncenter size-full wp-image-481" /></a></p>
<p>Whilst playing around with some code analysis I thought it would be useful to be able to output a hyperlink back to a line of code in the IDE console. As it happens, you can &#8220;Trick&#8221; IntelliJ to do this with the following log statement:</p>
<pre name='code' class='java:nogutter:nocontrols'>
    @Test
    public void canClickOnAFileInTheConsoleAndGoToTheLineOfCode() {
        log.info(String.format(&#8220;Check it at %s. (%s.java:%d)&#8221;,
            getClass().getName(), getClass().getSimpleName(), 15));
    }
</pre>
<p>The pattern it seems to match is something like <code>at {classFullName}.{identifier}({classSimpleName}.java)</code></p>
<p><code>classFullName</code> has to be a valid class name.<br />
<code>identifier</code> is usually used for the method name, but it can be anything. The full stop is nescessary. So in the example above, I put a space in there and so it reads like a sentance.</p>
<p>Anyone know a another way to do this?</p>
<p>UPDATE: </p>
<p>Actually it seems that you can get something similar if you output a full path name, e.g.:</p>
<pre name='code' class='java:nogutter:nocontrols'>
    File f = new File(&#8220;./src/test/resource/testfiles/level_01/level_01_01/file_01_01_A.txt&#8221;);
    log.info(f.getAbsolutePath() + &#8220;:&#8221; + 34);
</pre>
<p>This will create a link in the output window to the line of the file. Nice.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F05%2F16%2Flink-from-log-console-output-to-a-line-of-code-in-intellij%2F&amp;title=Link%20from%20log%20console%20output%20to%20a%20line%20of%20code%20in%20IntelliJ" id="wpa2a_14"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/05/16/link-from-log-console-output-to-a-line-of-code-in-intellij/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Mind Mapping Tool</title>
		<link>http://jimbarritt.com/non-random/2010/04/17/online-mind-mapping-tool/</link>
		<comments>http://jimbarritt.com/non-random/2010/04/17/online-mind-mapping-tool/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 11:46:44 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[ides]]></category>
		<category><![CDATA[modelling]]></category>
		<category><![CDATA[thoughtblog]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=367</guid>
		<description><![CDATA[Mind mapping, invented by]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/04/MindMeister.gif" rel="lightbox[367]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/04/MindMeister_small.gif" alt="" title="MindMeister_small" width="567" height="289" class="alignnone size-full wp-image-387" /></a></p>
<p>Mind mapping, invented by <a href=http://en.wikipedia.org/wiki/Tony_Buzan">Tony Buzan</a> is a way to get lots of ideas down and relate them together.</p>
<p><a href="http://www.mindmeister.com">MindMeister</a> is a great online Mind Mapping tool. It can be used for free but for $59 for a year you get things like offline access. It is completely written using html and javascript.</p>
<p>Map On!</p>
<p><a href="http://www.mindmeister.com"><br />
<img src="http://webworkerdaily.files.wordpress.com/2007/03/mindmeister-logo.png?w=257&#038;h=56" /><br />
</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F04%2F17%2Fonline-mind-mapping-tool%2F&amp;title=Online%20Mind%20Mapping%20Tool" id="wpa2a_16"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/04/17/online-mind-mapping-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>REST client plugin in IntelliJ</title>
		<link>http://jimbarritt.com/non-random/2010/03/13/rest-client-plugin-in-intellij/</link>
		<comments>http://jimbarritt.com/non-random/2010/03/13/rest-client-plugin-in-intellij/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 11:15:34 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ides]]></category>
		<category><![CDATA[thoughtblog]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=362</guid>
		<description><![CDATA[Was just browsing the plugins and found this one which is looking good. REST Client plugin It was also available from the plugins list in the settings.]]></description>
			<content:encoded><![CDATA[<p>Was just browsing the plugins and found this one which is looking good.</p>
<p><a href="http://plugins.intellij.net/plugin/?idea&#038;id=2200">REST Client plugin</a></p>
<p>It was also available from the plugins list in the settings.</p>
<div id="attachment_363" class="wp-caption alignnone" style="width: 661px"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/03/RESTCLIENT.jpg" alt="Rest Client intellij plugin screenshot" title="RESTCLIENT" width="651" height="598" class="size-full wp-image-363" /><p class="wp-caption-text">Rest Client intellij plugin screenshot</p></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F03%2F13%2Frest-client-plugin-in-intellij%2F&amp;title=REST%20client%20plugin%20in%20IntelliJ" id="wpa2a_18"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/03/13/rest-client-plugin-in-intellij/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BashPlugin For IntelliJ fails under snow leopard</title>
		<link>http://jimbarritt.com/non-random/2009/12/07/bashplugin-for-intellij-fails-under-snow-leopard/</link>
		<comments>http://jimbarritt.com/non-random/2009/12/07/bashplugin-for-intellij-fails-under-snow-leopard/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 09:17:14 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[ides]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=332</guid>
		<description><![CDATA[I Just recently upgraded to Snow Leopard and tried to install the Bash Script plugin for intellij. On restart, IntelliJ just did not work, even After I removed the plugin (See this post for more plugin details) Infact it seemed to hose my current project aswell &#8211; I had to remove intellij.app and replace it [...]]]></description>
			<content:encoded><![CDATA[<p>I Just recently upgraded to Snow Leopard and tried to install the Bash Script plugin for intellij.</p>
<p>On restart, IntelliJ just did not work, even After I removed the plugin (See this <a htref="http://jimbarritt.com/non-random/2009/11/18/dbnavigator-plugin-failed-to-start-in-intellij-8-x/">post</a> for more plugin details)</p>
<p>Infact it seemed to hose my current project aswell &#8211; I had to remove intellij.app and replace it with the original download (Not forgetting of course to set the <a href="http://jimbarritt.com/non-random/2009/08/01/intellij-crashes-on-os-x/comment-page-1/">JVM version</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2009%2F12%2F07%2Fbashplugin-for-intellij-fails-under-snow-leopard%2F&amp;title=BashPlugin%20For%20IntelliJ%20fails%20under%20snow%20leopard" id="wpa2a_20"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2009/12/07/bashplugin-for-intellij-fails-under-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

