The software hurdles, blockers and bugs that I come across at workplace and don't want to solve all over again next time if and ever I face them.
Monday, February 22, 2010
Wednesday, February 17, 2010
SONAR-NEMO
http://nemo.sonarsource.org/
Good for knowing about some FOSS projects from a different angle
Monday, February 15, 2010
GRAILS on Eclipse
1. The following requires that Eclipse with the Groovy plugin is installed. Please see Groovy Eclipse Plugin for more information.
1. After running "grails create-app" you may notice the .project and .classpath file. These Eclipse related files are created automatically and allow you to import the project into Eclipse. Import your project via File -> Import -> General -> "Existing Project into Workspace".
3. The environment variable "GRAILS_HOME" may not be set in Eclipse. Select your project, right-mouse click on it and select properties. Select the Java Build Path and here the tab "Libraries. Press "Add Variable" and then "Configure Variables". Press New and add GRAILS_HOME.(GRAILS_HOME as in installation of grails)
Thursday, February 11, 2010
Tortoisegit
Monday, February 8, 2010
Sentiment Analysis
Thursday, February 4, 2010
JAD eclipse
Installation
First, you need to download the necessary tools. Before anything else, make sure you have an installation of Eclipse. This article uses Eclipse 3.0.1. Note that in order to use Eclipse 3, you must use a J2SE of 1.4 or higher. This article uses J2SE 5.0 (formerly Tiger).
Figure 1. Eclipse JadClipse Settings |
Now download the latest version of the Jad Java decompiler. This article uses version 1.5.8 for Windows. Unzip the zip file to your computer:
- Add your JAD_HOME directory to your PATH environment variable. For example, I unzipped my Jad download to C:\jadnt158 and added it to PATH.
- To test whether you have configured correctly, open a new DOS shell. Type 'jad' at the prompt. You should see information about Jad and options for usage.
Next, download the latest version (beta 2.06) of the JadClipse plugin for Eclipse. Unzip the zip file to your computer. Copy the jadclipse folder (not jadclipse_b206) to your Eclipse\plugins folder.
Finally, download the Spring Framework (Spring 1.1.2 was the latest version at the time of this article) and unzip the download to your computer.
Figure 2. Eclipse Workbench File Associations Settings |
Configure JadClipse
Now configure the JadClipse plugin within Eclipse:
- Open Eclipse. At the top menu, click Window->Preferences->Java->JadClipse.
- Set Path to decompiler = %jadnt158_directory%\jad.exe. Additionally, you can also set the output directory for decompiled files as well (seeFigure 1). Click Apply.
- Now expand the Workbench node, and choose File Associations. In the top box named File Types, select *.class. In the bottom box namedAssociated Editors, select JadClipse Class File Viewer, and click Default (see Figure 2).