• submit to reddit
Steven Lott05/11/12
5832 views
0 replies

Rants On The Daily Grind of Building Software

For some people, Tools Trump Language. Sadly, I've also had customers with ancient code they could no longer compile or maintain because the tools were out of support.

Erich Styger05/08/12
3551 views
0 replies

The Mother of all Eclipse Shortcuts

The article on 10 Best Eclipse Shortcuts lists many very useful shortcuts. But it is missing the Mother of all Shortcuts: Ctrl+Shift+L:

Erich Styger05/06/12
3535 views
0 replies

Linting Without a Plugin

I will show how to set up PC-lint as compiler for my project, how to pass options to the PC-lint compiler and how to configure the messages for the Problems view.

Erich Styger05/03/12
2955 views
0 replies

Managing Recent Workspaces

Sometimes I have to abandon a workspace, especially if I’m using too many (see my previous post how many I have right now). But the workspace still shows up in the recent workspace list, even if the directory has been deleted. How can I get rid of an unwanted workspace? As always, there is a setting for this…

Erich Styger05/02/12
7437 views
0 replies

5 Best Eclipse Plugins: System and Desktop Search

Ranked as number 3 on my list of Eclipse plugins is something I missed in Eclipse, but what I heavily use in Microsoft Visual Studio: The ability to search files anywhere on my computer

Nicolas Frankel05/01/12
4377 views
0 replies

Why Eclipse WTP Doesn't Publish Libraries When Using m2e

Lately, I noticed my libraries weren’t published to Tomcat when I used a Maven project in Eclipse, even though it was standard war packaging.

Eric Genesky05/01/12
8340 views
4 replies

Video: Java on Heroku Using Eclipse

This 10-minute video shows you the step-by-step process of how to deploy your Java on Heroku.

Erich Styger04/29/12
2600 views
0 replies

Scripting: The Debugger Shell, Getting Started…

Writing code should be fun, and debugging it is just a necessity because I rarely get it right the first time. Eclipse with its GUI is a great thing, and so is a command line interface. Luckily the CodeWarrior eclipse engineers have added that kind of tool for the CodeWarrior debugger:

Ben O' Day04/28/12
7191 views
0 replies

Apache ServiceMix Development Environment Setup

Here is a quick guide to setting up a development environment for working on Apache Servicemix projects... You can update some of these versions mentioned in the rundown.

Erich Styger04/27/12
19906 views
6 replies

10 Best Eclipse Shortcuts

Eclipse comes with a great set of helpers built-in. Here is my list of my favorite hotkeys and shortcuts…

Lukas Eder04/26/12
8727 views
2 replies

Must-have Eclipse plugin: AnyEdit Tools

On fresh Eclipse installations, I usually feel a bit naked, until I realise that this lovely little plugin is not part of Eclipse itself. It’s called AnyEdit tools, and it features the following nice things:

Wayne Beaton04/19/12
3127 views
0 replies

Application Lifecycle Management at Eclipse

Based on what I’ve observed over the years, I believe that it’s completely reasonable to say that our ALM story is one of the best in the world: the envy of hundreds of open source projects and closed source development shops around the world.

Jasperwave Team04/18/12
1459 views
0 replies

JasperReports styles in JasperWave

http://jasperwave.com/docs/styles.html 

Jasperwave Team04/18/12
1330 views
0 replies

JasperReports JavaBean data source in JasperWave

http://jasperwave.com/docs/javaBeanDataSource.html 

Stoimen Popov04/17/12
18594 views
0 replies

Algorithm of the Week: Boyer-Moore String Searching

Have you ever asked yourself which algorithm is used to find a word after clicking Ctrl+F and typing something? Well, you probably know the answer from the title, but in this article Stoimen Popov explains how exactly this is done.