<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.2" -->
<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/"
	>

<channel>
	<title>AhtiK Ventures</title>
	<link>http://ahtik.com/blog</link>
	<description>Eclipse, Product development, Java programming and Entrepreneurship</description>
	<pubDate>Tue, 22 Apr 2008 14:06:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>
	<language>en</language>
			<item>
		<title>Getting TPTP installed in Ubuntu - first post from Ivar</title>
		<link>http://ahtik.com/blog/2008/02/07/getting-tptp-installed-in-ubuntu-first-post-from-ivar/</link>
		<comments>http://ahtik.com/blog/2008/02/07/getting-tptp-installed-in-ubuntu-first-post-from-ivar/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 19:16:18 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2008/02/07/getting-tptp-installed-in-ubuntu-first-post-from-ivar/</guid>
		<description><![CDATA[One of the Codehoopers started to blog about Eclipse and programming, welcome aboard! :)
As he doesn&#8217;t have much readers yet I guess it&#8217;s ok to point to his first post: Eclipse TPTP and Ubuntu&#8221;
It&#8217;s about getting TPTP running. Especially under Linux. Don&#8217;t underestimate the complexity of this - it&#8217;s not that easy :)
Nice post, thank [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2008/02/07/getting-tptp-installed-in-ubuntu-first-post-from-ivar/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Eclipse workspace fails to start after crash - quick fix</title>
		<link>http://ahtik.com/blog/2008/01/15/eclipse-workspace-fails-to-start-after-crash-quick-fix/</link>
		<comments>http://ahtik.com/blog/2008/01/15/eclipse-workspace-fails-to-start-after-crash-quick-fix/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 12:47:29 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2008/01/15/eclipse-workspace-fails-to-start-after-crash-quick-fix/</guid>
		<description><![CDATA[Here&#8217;s a quick HOWTO for resolving Eclipse startup workspace loading problems. If you have a better suggestion then please leave a comment!
There can be a lot of other issues but here is one of the quite common ones - eclipse resources cache or state gets out of sync/corrupted.
This can happen when your IDE crashes OR [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2008/01/15/eclipse-workspace-fails-to-start-after-crash-quick-fix/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Configuring Eclipse SVN (Subclipse) to use JavaHL(JNI)</title>
		<link>http://ahtik.com/blog/2008/01/10/configuring-eclipse-svn-subclipse-to-use-javahljni/</link>
		<comments>http://ahtik.com/blog/2008/01/10/configuring-eclipse-svn-subclipse-to-use-javahljni/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 14:04:50 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
	<category>Tools and Frameworks</category>
	<category>Development Practices</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2008/01/10/configuring-eclipse-svn-subclipse-to-use-javahljni/</guid>
		<description><![CDATA[Configuring JavaHL for Eclipse is not as straightforward as it could be so posting a quick HOWTO. Following applies mostly to Linux users.
With Ubuntu the fool-proof steps are:

Make sure libsvn-java, subversion and libsvn1 packages are installed
Add following to the end of your eclipse.ini file: -Djava.library.path=/usr/lib/jni
Restart eclipse and make sure JavaHL is selected under Window-&#62;Preferences-&#62;Team-&#62;SVN

By using [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2008/01/10/configuring-eclipse-svn-subclipse-to-use-javahljni/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Avoid useless Plugin Initialization and/or Class Loading</title>
		<link>http://ahtik.com/blog/2007/12/19/avoiding-useless-plugin-initialization-andor-class-loading/</link>
		<comments>http://ahtik.com/blog/2007/12/19/avoiding-useless-plugin-initialization-andor-class-loading/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 12:08:49 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Java Runtime</category>
	<category>Eclipse</category>
	<category>Development Practices</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/12/19/avoiding-useless-plugin-initialization-andor-class-loading/</guid>
		<description><![CDATA[Here&#8217;s a tip for initializing your plugins or any other singleton-like repository only when needed.
Consider a code like this:

if (isConfigurable()) {
  Bundle bundleCopy = bundle;
  Preferences[] preferencesCopy = new Preferences[1];
  preferencesCopy[0] = new org.eclipse.core.internal.
			preferences.legacy.PreferenceForwarder(
			this, bundleCopy.getSymbolicName());
  return preferencesCopy;
}
return null;


Do you see what&#8217;s wrong there?
The problem is that if your #isConfigurable is always [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/12/19/avoiding-useless-plugin-initialization-andor-class-loading/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Eclipse Top 5 Annoyances</title>
		<link>http://ahtik.com/blog/2007/12/18/eclipse-top-5-annoyances/</link>
		<comments>http://ahtik.com/blog/2007/12/18/eclipse-top-5-annoyances/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 12:07:00 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/12/18/eclipse-top-5-annoyances/</guid>
		<description><![CDATA[Here is the list of Top 5 Eclipse Annoyances we came up today at the coffee-table, possibly nice to share (in the order of importance).
Also serves as a good wish-list to my Santa Claus!
1. Update Manager
With the help of p2 provisioning and hard work this will be hopefully solved for 3.5. Please don&#8217;t mess it [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/12/18/eclipse-top-5-annoyances/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Summer of Code: writing PHP plugins</title>
		<link>http://ahtik.com/blog/2007/08/23/summer-of-code-writing-php-plugins/</link>
		<comments>http://ahtik.com/blog/2007/08/23/summer-of-code-writing-php-plugins/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 11:36:18 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Unrelated</category>
	<category>Eclipse</category>
	<category>Tools and Frameworks</category>
	<category>Development Practices</category>
	<category>Entrepreneurship</category>
	<category>Web 2.0</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/08/23/summer-of-code-writing-php-plugins/</guid>
		<description><![CDATA[Toomas finished the official part of the google summer of code program. It was an honor to be the mentor and I had/still have a lot of fun with him.
Grab The PHP writing plugin for Eclipse from the update site and check it out if it works for you!
Sorry, but java6 and eclipse 3.3 only! [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/08/23/summer-of-code-writing-php-plugins/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Bridging the Gap and Ready for Prime Time</title>
		<link>http://ahtik.com/blog/2007/05/29/bridging-the-gap-and-ready-for-prime-time/</link>
		<comments>http://ahtik.com/blog/2007/05/29/bridging-the-gap-and-ready-for-prime-time/#comments</comments>
		<pubDate>Tue, 29 May 2007 21:10:19 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/05/29/bridging-the-gap-and-ready-for-prime-time/</guid>
		<description><![CDATA[A friend of mine visited JavaOne. Hmm, not surprising. But it was really surprising to see what has happened with Eclipse.

According to his visual estimates, 80% of apps presented were built on Eclipse, very very few on Netbeans.
One of the speakers was asked about the best IDE - no one dared to ask this 5 [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/05/29/bridging-the-gap-and-ready-for-prime-time/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Google and $4500 are waiting for your Eclipse contributions</title>
		<link>http://ahtik.com/blog/2007/03/22/google-and-4500-are-waiting-for-your-eclipse-contributions/</link>
		<comments>http://ahtik.com/blog/2007/03/22/google-and-4500-are-waiting-for-your-eclipse-contributions/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 08:39:09 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
	<category>Entrepreneurship</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/03/22/google-and-4500-are-waiting-for-your-eclipse-contributions/</guid>
		<description><![CDATA[Google has started it&#8217;s annual Google Summer of Code program where hundreds of university students are paid to make open source contributions. Each successful submission is honored with $4500 to student&#8217;s bank account (local taxes apply) and $500 to Eclipse Foundation.
Eclipse is one of the participating open source organizations and previous years have been shown [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/03/22/google-and-4500-are-waiting-for-your-eclipse-contributions/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Eclipse 3.3M5 is not working out of the box with Gentoo</title>
		<link>http://ahtik.com/blog/2007/02/11/eclipse-33m5-is-not-working-with-gentoo/</link>
		<comments>http://ahtik.com/blog/2007/02/11/eclipse-33m5-is-not-working-with-gentoo/#comments</comments>
		<pubDate>Sun, 11 Feb 2007 19:21:25 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/02/11/eclipse-33m5-is-not-working-with-gentoo/</guid>
		<description><![CDATA[At least not for me and at least not out of box using package from download.eclipse.org: eclipse-SDK-3.3M5-linux-gtk :)
ahti@ahtuxhome /opt/eclipse-SDK-3.3M5 $ ./eclipse
* run-java-tool is not available for sun-jdk-1.6 on i686
* IMPORTANT: some Java tools are not available on some VMs on some architectures
This problem is with any JRE and nichoj from #gentoo-java seems to have a [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/02/11/eclipse-33m5-is-not-working-with-gentoo/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>New Feature: Whitespace color/alpha blending (transparency)</title>
		<link>http://ahtik.com/blog/2007/01/30/new-feature-whitespace-coloralpha-blending-transparency/</link>
		<comments>http://ahtik.com/blog/2007/01/30/new-feature-whitespace-coloralpha-blending-transparency/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 00:35:47 +0000</pubDate>
		<dc:creator>Ahti</dc:creator>
		
	<category>Eclipse</category>
		<guid isPermaLink="false">http://ahtik.com/blog/2007/01/30/new-feature-whitespace-coloralpha-blending-transparency/</guid>
		<description><![CDATA[Eclipse 3.3M4 introduced a cool feature called &#8220;Show invisible whitespace characters&#8221; (see 3.3M4 News). Unfortunately some of us find it a bit too visible.
Let&#8217;s make Eclipse a better place to live, right? I have created a patch that makes the visibility configurable via preferences page:

Continue reading to download this feature (three patched plugins for Eclipse [...]]]></description>
		<wfw:commentRSS>http://ahtik.com/blog/2007/01/30/new-feature-whitespace-coloralpha-blending-transparency/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
