Oliverde8's blue Website

Akeneo 1.6 : Creating an Installation Bundle.

In the cook book of Akeneo we can find a section about how to cutimize the dataset : https://docs.akeneo.com/1.6/cookbook/setup_data/customize_dataset.html For having done this a few times I can say that the instructions are not very clear if you wish to do slightly more then what the default installer does.. To keep the tutorial short I will consider that you already know symfony, and won t give precissions on how to create a bundle or such details. First let s create our own dataset then we will see how the akeneo installation of the dataset s work in order to really understand w ...

Read more

Optimizing Akeneo / Configuring APC & OpCache

Optimizing Akeneo / Configuring APC & OpCache Since I started using Akeneo I never really was impressed by the load times. The time it takes to go from the grid to the product edit page is simply to long. I had times around 7 seconds for a relatively small project and well it needed to be improved. After a little investigation I found that the slowest operation was in Symfony\Component\Translation\Translator::initializeCacheCatalogue The strange part is that it was the inclusion of the php files that was slow even throught I had apc cache activated. So I decided to look a bit mo ...

Read more

Is Node.js really be better then PHP? A pointless discussion

Recently there has been lot s of articles about how great & superior node.js is vs PHP. So I decided it was time for me to give it a try. Of course I know that node.js isn t a language but more an integration of javascript as a server side scripting language. Performance The main point that is pointed out is the speed thanks to it being non blocking. That quite bugged me. On the majority of the applications I have worked on Symfony, Magento(1&2) Drupal... The main reason the application takes times to open is the database. So Node.js will be faster because it s going to be able t ...

Read more

PHP running Asynchronous processes

I have been programming in PHP for quite a while now, and even through at work & for my own I use PHP quite a lot for creating website I actually started programming in PHP with daemons and still continue to do so. My main development for PHP daemons has been for Maniaplanet controllers like eXpansion. Well particulart for those who don t like PHP, it does sound dump to use PHP as a daemon right? Well it isn t as dump as it sounds. The advantage of using a script language for the controller is to make it easily extensible. We ask people to copy paste files at the right place and there i ...

Read more

eXpansion the story of a server controller for Maniaplanet

This last few years I have spent most of my weekends working on eXpansion. I have literally spent month on this wonderful project. Expansion is a server controller for Maniaplanet, but let start from the begining. What is eXpansion? I suppose they are very few who wouldn t now about Trackmania? Trackmania is a multiplayer car racing game. The purpose of Trackmania is doing the best possible chronometer possible on a track. Depending on the game mode some rules might change but the basics of Trackmania has always been speed & speed with simplicity. You have only 4 buttons to play the gam ...

Read more

eXpansion the Maniaplanet server Controller

...

Read more

Symfony2 Website finally online (Updated 25/09)

Finally, It has been so long since the last time I updated my website. :D Finally I am done, Well not really, during the transition we lost quite a few pages from the old version of the website. I used to have a catalog of all the programing projects I worked on. It has for now dissapeared. But first what s new ? New Finally got a Back Office. Yes my old websites BO was Work in Progress for the last 6 years or so. And it was never done. For this website I have used Symfony & Sonata Project. So it was a smooth ride. I used the classification Bundle of Sonata for the categories b ...

Read more

Platform.sh A gain or A pain?

This last year (in 2015) I have worked on a project hosted with the platform.sh solution. After spending more then a year with platform sh I wanted to right down what I think about this tool. First of all, what is platform.sh ? Platform.sh is a continious delivery clous hosting. Okay, what does that means , it basically means it is a hosting system to host your production, preproduction, integration & a ton of development environments. Still not very clear? Well simply speaking platform will create a new environment for each git branch you create. So if you create a new branch from th ...

Read more

Drupal a CMS to love or Hate

I have been working on a Drupal commerce website recently and I must say that drupal is a great tool. You can do so much with very little effort without touching any lines of code. The community provides thousands of modules which can be simple to install. There are many great principles behind drupal and it allows you to create a good website with very little effort. If you wish to do something particular you can always create a new module and basically do anything. You will find plenty of tutorials online and there is plenty of helpful people. Creating a module in drupal isn t that har ...

Read more

Catch touch events in background applications

A while back I have worked with a friend in an application that would catch all touch events done on your phone. As you may well guess you are not suppose to be able to do this as it is considered a security breach; but if you have a rooted phone you may have an application doing this. The documentation on this subject on the net isn t very complete(at least wasn t when I built my application) and there wasn t any detailed explanation about to do it especially if you want to do get precise information. Possible solutions We have come up with multiple solutions before actually using the one ...

Read more