Blog
Putting our heads together.
08/10/2015
Build responsive websites more easily
Tips and tools to work efficiently with the grid system
Ease the development of responsive websites using Twitter Bootstrap grids correctly. If you use Twitter Bootstrap sass or less version, then you can take advantage of the mixins. Using this approach you can create more semantic css classes and make grids easier to maintain. We also give you a tool to debug your grids!
06/29/2015
Deploying NodeJS enterprise applications
Using Linux native tools to manage application deployment and proper running
Before we started using Docker for all our NodeJS enterprise applications in production, we had crafted our own way to deploy, distribute, manage and maintain them. We wanted to have a simple standard deployment process for NodeJS applications on Debian / Ubuntu Enterprise servers and we explain it here.
05/04/2015
Using ElasticSearch with Grails
Tips to use the plugin or develop a custom index management solution
Compare the ElasticSearch grails’ plugin with a custom solution. And remember, ElasticSearch is schema-free so indexing is almost a piece of cake.
11/18/2013
Avoiding huge controllers in AngularJS
JavaScript Object Oriented Programming to the rescue!
How to build large front-end applications in AngularJS ? An option is to use JavaScript Object Oriented Programming to reduce controllers complexity and make them easier to maintain. Here is an example (snippets included) of how to define classes and instantiate them inside AngularJS controllers.