About me

I’m Patrik, a software engineer with professional experience starting in 2007. I’ve worked from Bologna, Den Haag, Zürich, Stuttgart, and Padua, across banking, energy, automotive, enterprise software, and open source. I’ve done extensive consulting work for major companies in Europe. Today I’m a Senior Staff Engineer at Infineon Technologies. My Read more…

Java Generics

Generics Generics were introduced in java 5 to add stability to the code. You can add type variables to classes, interfaces and methods. Generic Class Declaration Below you see an example of generic class declaration. by writing class Box<T>, you introduce the type parameter T, that can be used anywhere in the class. Read more…

Mongo DB Test

Installing MongoDB on Windows. Download MongoDB from its download page, and install it. I chose to install in C:\opt\MongoDB\Server\3.2. Create a folder for database and a folder for logs. Then create a mongod.cfg to represent this data. In my case, I put all under a new C:\data\ directory. And this is the Read more…

JSDT Project Structure

This post explains the JSDT projects structure, and it is the result of my direct experience. This page serves also as part discussion for JSDT developments. Kudos -all to those who comment and leave constructive feedback: here and on JSDT bugzilla. [486037, 477020] By reading this article you will be able to understand where the Read more…

JSDT Development

This post is about my experience in setting up a JSDT development environment. (see also wiki.eclipse.org/JSDT/Development) Setting up JSDT There are several ways to setup JSDT development environment. A good one is having an Eclipse Installation for development (IDE) and an Eclipse Installation as Target Platform (TP) . IDE : PDE, GIT, XML and Read more…

Eclipse IDE Howto Videos

As expressed in the post Marketing IDE / was: Ctr-1 driven development: these are some proposed Eclipse IDE howto videos: Create an E4 Application with PDE and E4Tools Build an E4 Application with Tycho Test E4 Application with SWTBot Build JEE Application with WTP Build Maven based JEE Application with WTP Read more…