This is probably the most annoying thing with Windows – awful console (prompt). I do have Windows on one of my computers that I do developing stuff, and I just can not work with standard console. I used to like Cygwin, but there is something putting me off with it. […]
Category: Tech
Configure compiler errors for specific src folders
It has been very annoying not being able to configure exclusions for compiler warnings in eclipse. In many projects, there are auto-generated files that do not comply to any coding standards and our ‘Problems’ perspective is bloated with warnings that are not interesting at all. Worst is that developers stop […]
How to simultaneously fetch multiple bags with hibernate
JPA specification allows up to two simultaneous eager fetches. But sometimes when we really need to this – we are stuck. One way to achieve this is to use hibernate extensions. We could do something like this: @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "keys") @Fetch(value = FetchMode.SUBSELECT)private List<T> […]
How to make your own maven archetype
Very good Introduction to GIT
‘Reach’ released for the European market
Control your Android phone from your computer! The company (department) where I work, released this awesome app for you Android phone (You should have phone with Android >=2.2). It allows you to, regardless what data carrier you currently use (3G, GPRS, WIFI…), send and receive SMS, make calls, see all […]