Offering a place to developers new to the field

Many tech organisations are currently searching for new developers. Diving into the requirements for applicants in any given vacancy, it often requires the candidate to have an extensive experience in a language or work experience.  But, what if you don’t have any or little experience. What if you are new to the field, just out of college or a coding bootcamp. In the last six months I got the possibility to develop a starters program for my employer Coolblue. A program that aims to provide a place for developers that just finished a computer science related education or followed a...

Continue reading...

Sites not working after upgrading to apache 2.4.6

Recently I’ve upgraded to the apache 2.4.6 on my machine. After that the sites weren’t working anymore and the a2ensite/a2disste stopped working. Also I’ve received this error message in the log: [core:notice] AH00094: Command line: ‘/usr/sbin/apache2’ The solution is pretty easy. Make sure your site configurations in sites-available end with .conf. If they do, enable them again and reload apache. This will solve your problems.

Continue reading...

Adding Interceptor Filters via annotation in Joomla

If you have read my other articles about Joomla and automated binding or Using Doctrine in Joomla then you probably know that I also heavily develop in Java. Java heavily makes use of Annotations which combined with the principle of Aspect-oriented programming gives developers some great power in controlling the flow of the application. One thing we use regularly in our application are called Intercepting Filters. Basically you set a ‘insertion point’ where code can be executed before executing the application code. In this post I’ll show you an implementation like I have done in a hobby project of mine.

Continue reading...

Joomla and Doctrine, experimenting with automated binding

In my day to day job at the moment I’m working more on Java projects then PHP applications. In our Java project we are using the a very sophisticated framework called Spring Framework. So when I started to work on an new, private PHP project with Joomla I was feeling a bit blunt by all the basic things I have to do to process forms into their representing entities.

Continue reading...