Loading... Cancel

emacs color scheme for intelliJ idea R

October 30th, 2007

i had no experience of using emacs as development environment, so never had any knowledge about emacs color scheme. once when i had been to norway for an official task, i met with one of our escenic colleague “harald khur”.

i was surprised while i had a look on his intelliJ idea color scheme, it all was dark, at the beginning i had a belief that dark color is stressful for eyes. recently when i got introduce with TextMate and their dark color scheme, i was really impressed.

so i didn’t make any delay to let harald know about my interest on his color scheme. he sent me his generated scheme for intelliJ idea. it was simply awesome.

idea-vi-color-scheme.gif

here i have added screen snap of one of my ruby code in dark scheme. i have also attached my modified color scheme as well as the original one, which i received from harad.

modified intelliJ idea emacs color scheme

original intelliJ idea emacs color scheme by harald

A cheap web hosting fells the site. Therefore donít compromise only for the domain name registration. Go for dedicated servers only. Try hostgator or easycgi for starters.

Maven compile with jdk1.5 R

October 29th, 2006

i was compiling my source code with Maven2 it failed because maven was using -source 1.3 so after few googling i ended up with the following solution: (source)

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.5 </source>
<target>1.5 </target>
</configuration>
</plugin>
</plugins>
</build>

now its working quite fine… :)