
When it comes to our development environment we all have our own tools, that we prefer. But at some point we might be in a search for something new and try to keep up with the latest trends in the industry. When you work…
When it comes to our development environment we all have our own tools, that we prefer. But at some point we might be in a search for something new and try to keep up with the latest trends in the industry. When you work…
Yesterday Docker announced the start of the public beta for the OS X / Windows version of it “software containerization platform”, after the start of the closed beta in March. This has been such a long-awaited release. So many web developers are doing their work…
You might need at some point to access the pivate or protected method of a PHP class. Of course, this is in general a bad sign because methods are not available in the public interface of the class for a reason: their implementation can…
The scope of this article is not to decide which architecture style is better but only to synthesise the pros and the cons of each of them. I worked in the past on a microservices oriented architecture and now we need to decide on which…
If you are provisioning some fresh server with Chef and you are trying to use the MariaDB cookbook from https://github.com/sinfomicien/mariadb, most likely you won’t have the repository added to your package manager (yum / apt). This will cause Chef to exit with this error:
1 |
==> project: [2014-11-15T14:55:33+00:00] ERROR: package[MariaDB-server] (mariadb::_redhat_server line 19) had an error: Chef::Exceptions::Package: No version specified, and no candidate version available for MariaDB-server |
For…
If it happens that you need to deploy an application to difference servers, different locations, different deployment users you won’t have a great time! You can use of course the multistage extension and make your cap 2 look more like cap 3 but you can…
If you are using Rails 4, most likely you are using Uglifier (UglifyJS) for JS compression for the assets pipeline. Uglifier is awesome, but it happens to break the JS sometimes when using variable mangling. If you mix it with some CoffeeScript > AngularJS code…
So have you ever wondered why your MacBook Pro, MacBook Air, Mac Pro, etc. is running so slow lately even though nothing is running and you just rebooted it? You don’t have to go to 16GB of ram, increase your hdd capacity to…
One of the first things you’ll hit when you will switch to iOS 7 is the white background on your tables. Before iOS 7, the cell where inheriting the background color from the table (UITableView); now, they just have a white background by…
I usually write a ton of scripts (in PHP) for data-mining or various stats – that take a long time to execute – trying to paginate the data and run multiple instances of the script on pages. It’s not that funny, and takes…