<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: My first day with IntelliJ IDEA</title>
	<atom:link href="http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/feed" rel="self" type="application/rss+xml" />
	<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea</link>
	<description>Thoughts on poker, programming and other stuff.</description>
	<lastBuildDate>Thu, 11 Mar 2010 18:00:51 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: cbrevard</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-11795</link>
		<dc:creator>cbrevard</dc:creator>
		<pubDate>Mon, 06 Oct 2008 02:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-11795</guid>
		<description>Relative to IDEA, Eclipse is an unstable mess. The preferences window alone speaks to the absurdity of its design. Not to mention the dependency mechanism for plugins. SVN integration? Maven integration?

Eclipse does a lot of things poorly and few of them well, as befits the &quot;focus&quot; of its community.</description>
		<content:encoded><![CDATA[<p>Relative to IDEA, Eclipse is an unstable mess. The preferences window alone speaks to the absurdity of its design. Not to mention the dependency mechanism for plugins. SVN integration? Maven integration?</p>
<p>Eclipse does a lot of things poorly and few of them well, as befits the &#8220;focus&#8221; of its community.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: denis</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-7385</link>
		<dc:creator>denis</dc:creator>
		<pubDate>Mon, 19 May 2008 21:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-7385</guid>
		<description>&quot;*.multiClickSpeed: 400&quot; must be &quot;*.multiClickTime: 400&quot;</description>
		<content:encoded><![CDATA[<p>&#8220;*.multiClickSpeed: 400&#8243; must be &#8220;*.multiClickTime: 400&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Hubbard</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3555</link>
		<dc:creator>Charlie Hubbard</dc:creator>
		<pubDate>Tue, 04 Dec 2007 03:29:32 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3555</guid>
		<description>Ctrl-Alt-Space will allow you to code complete on classes in your classpath, and it will import whatever you want to pull in.

Also Eclipse is way to mouse intensive.  Searching for everything that implements an interface is such a pain.  Ctrl-Alt-b allows you to jump to everything that implements an interface, abstract class, or subclass.  You don&#039;t have to navigate to the class definition which is such a time saver just move the mouse of the name of the class anywhere (Variable Definition, Class implementer, anywhere).  But, if you do a quick Ctrl=b will take you there.

Opening a class from the keyboard Ctrl n and start typing.  Eclipse has three crappy boxes that you have to tab between.  If you have classes or files with the same name just use the arrow keys.  That&#039;s one of the biggest pains in Eclipse.

Ctrl Shift n and open any file in your project just by typing the name.

Ctrl i for implement methods, Ctr o for overiding.

Alt Insert and generate getters, setters, constructors, equals and hashcode quickly.

Spring Ctrl space in XML files (like Spring), and you can do auto completion on class names so quickly for Spring files, web.xml, etc.

The eclipse debugger is lame.  Intellij has code sense built into the evaluation.  Watches are lame, but Intellij can evaluate any expression you want on demand (Atl-F8).  Can&#039;t remember a name hit Ctrl-Space to explore an instance&#039;s methods, variables, etc.  It&#039;s like working with Ruby or Python doing exploratory programming.

Atl-F7 quickly find any usages in your project.  Ctrl Shift-F7 highlight usages in the file.  Highlight a string before hitting the keystroke and it will find all string expressions in the file.  Ctrl l and you can jump between all of your results.

Ctrl Alt L to quickly reformat any code, xml, html, javascript.

Those are just some of the features I use all the time.  I&#039;m having to use Eclipse and I hate it.  I&#039;m at least 5x slower with Eclipse, and the power just isn&#039;t there.</description>
		<content:encoded><![CDATA[<p>Ctrl-Alt-Space will allow you to code complete on classes in your classpath, and it will import whatever you want to pull in.</p>
<p>Also Eclipse is way to mouse intensive.  Searching for everything that implements an interface is such a pain.  Ctrl-Alt-b allows you to jump to everything that implements an interface, abstract class, or subclass.  You don&#8217;t have to navigate to the class definition which is such a time saver just move the mouse of the name of the class anywhere (Variable Definition, Class implementer, anywhere).  But, if you do a quick Ctrl=b will take you there.</p>
<p>Opening a class from the keyboard Ctrl n and start typing.  Eclipse has three crappy boxes that you have to tab between.  If you have classes or files with the same name just use the arrow keys.  That&#8217;s one of the biggest pains in Eclipse.</p>
<p>Ctrl Shift n and open any file in your project just by typing the name.</p>
<p>Ctrl i for implement methods, Ctr o for overiding.</p>
<p>Alt Insert and generate getters, setters, constructors, equals and hashcode quickly.</p>
<p>Spring Ctrl space in XML files (like Spring), and you can do auto completion on class names so quickly for Spring files, web.xml, etc.</p>
<p>The eclipse debugger is lame.  Intellij has code sense built into the evaluation.  Watches are lame, but Intellij can evaluate any expression you want on demand (Atl-F8).  Can&#8217;t remember a name hit Ctrl-Space to explore an instance&#8217;s methods, variables, etc.  It&#8217;s like working with Ruby or Python doing exploratory programming.</p>
<p>Atl-F7 quickly find any usages in your project.  Ctrl Shift-F7 highlight usages in the file.  Highlight a string before hitting the keystroke and it will find all string expressions in the file.  Ctrl l and you can jump between all of your results.</p>
<p>Ctrl Alt L to quickly reformat any code, xml, html, javascript.</p>
<p>Those are just some of the features I use all the time.  I&#8217;m having to use Eclipse and I hate it.  I&#8217;m at least 5x slower with Eclipse, and the power just isn&#8217;t there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Site Design</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3366</link>
		<dc:creator>Web Site Design</dc:creator>
		<pubDate>Sun, 25 Nov 2007 23:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3366</guid>
		<description>&lt;strong&gt;Web Site Design...&lt;/strong&gt;

I couldn&#039;t understand some parts of this article, but it sounds interesting...</description>
		<content:encoded><![CDATA[<p><strong>Web Site Design&#8230;</strong></p>
<p>I couldn&#8217;t understand some parts of this article, but it sounds interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loom</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3351</link>
		<dc:creator>Loom</dc:creator>
		<pubDate>Sun, 25 Nov 2007 10:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3351</guid>
		<description>In regards to the double clicking in IDEA the reason why it&#039;s hard to open files by double clicking is that Java programs e.g. IDEA reads the double click speed from X11 resources.  If it is not explicitly set then it defaults to 200 ms which is lightning fast.

In order to have a more sane threshold create ~/.Xresources and add:

*.multiClickSpeed: 400</description>
		<content:encoded><![CDATA[<p>In regards to the double clicking in IDEA the reason why it&#8217;s hard to open files by double clicking is that Java programs e.g. IDEA reads the double click speed from X11 resources.  If it is not explicitly set then it defaults to 200 ms which is lightning fast.</p>
<p>In order to have a more sane threshold create ~/.Xresources and add:</p>
<p>*.multiClickSpeed: 400</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Start A Blog</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3321</link>
		<dc:creator>How To Start A Blog</dc:creator>
		<pubDate>Sat, 24 Nov 2007 04:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3321</guid>
		<description>&lt;strong&gt;How To Start A Blog...&lt;/strong&gt;

I couldn&#039;t understand some parts of this article, but it sounds interesting...</description>
		<content:encoded><![CDATA[<p><strong>How To Start A Blog&#8230;</strong></p>
<p>I couldn&#8217;t understand some parts of this article, but it sounds interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Computer Maintenance Tips</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3298</link>
		<dc:creator>Computer Maintenance Tips</dc:creator>
		<pubDate>Fri, 23 Nov 2007 00:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3298</guid>
		<description>&lt;strong&gt;Computer Maintenance Tips...&lt;/strong&gt;

I couldn&#039;t understand some parts of this article, but it sounds interesting...</description>
		<content:encoded><![CDATA[<p><strong>Computer Maintenance Tips&#8230;</strong></p>
<p>I couldn&#8217;t understand some parts of this article, but it sounds interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Business Ideas Forum</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3276</link>
		<dc:creator>Business Ideas Forum</dc:creator>
		<pubDate>Thu, 22 Nov 2007 01:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3276</guid>
		<description>&lt;strong&gt;Business Ideas Forum...&lt;/strong&gt;

I couldn&#039;t understand some parts of this article, but it sounds interesting...</description>
		<content:encoded><![CDATA[<p><strong>Business Ideas Forum&#8230;</strong></p>
<p>I couldn&#8217;t understand some parts of this article, but it sounds interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Website Templates and Web Design, Graphic Layouts</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-3267</link>
		<dc:creator>Website Templates and Web Design, Graphic Layouts</dc:creator>
		<pubDate>Wed, 21 Nov 2007 14:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-3267</guid>
		<description>&lt;strong&gt;Website Templates and Web Design, Graphic Layouts...&lt;/strong&gt;

Sorry, it just sounds like a crazy idea for me :)...</description>
		<content:encoded><![CDATA[<p><strong>Website Templates and Web Design, Graphic Layouts&#8230;</strong></p>
<p>Sorry, it just sounds like a crazy idea for me <img src='http://thebull.macsimumweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Bull</title>
		<link>http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/comment-page-1#comment-2919</link>
		<dc:creator>The Bull</dc:creator>
		<pubDate>Tue, 06 Nov 2007 06:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://thebull.macsimumweb.com/my-first-day-with-intellij-idea/#comment-2919</guid>
		<description>@Marcos: I too like the incremental compiler.

@Steve: That is a surely complicated way to get the folding, but I&#039;ll give it a shot. Nothing beats jEdit when it comes to folding...

@Thomas: I did say it was only the first day :). The perspectives can be confusing, but honestly I never leave the Java one, even when doing web apps, with the very infrequent use of the SVN perspective (you don&#039;t need to use it when committing or updating).

@the dooder: I don&#039;t work on a Mac for TextMate, but one of the guys at work is going that route. I have, on occasion, just used jEdit with the appropriate plugins. A very nice tool, and talk about light-weight!</description>
		<content:encoded><![CDATA[<p>@Marcos: I too like the incremental compiler.</p>
<p>@Steve: That is a surely complicated way to get the folding, but I&#8217;ll give it a shot. Nothing beats jEdit when it comes to folding&#8230;</p>
<p>@Thomas: I did say it was only the first day <img src='http://thebull.macsimumweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . The perspectives can be confusing, but honestly I never leave the Java one, even when doing web apps, with the very infrequent use of the SVN perspective (you don&#8217;t need to use it when committing or updating).</p>
<p>@the dooder: I don&#8217;t work on a Mac for TextMate, but one of the guys at work is going that route. I have, on occasion, just used jEdit with the appropriate plugins. A very nice tool, and talk about light-weight!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
