code The cost of free APIs I have been using Google geocode API to either get an address from coordinates or the other way around. This API have always been more restricted than others like Maps.
fix Dirty fix How long to work on an issues before implementing a dirty fix because not solutions have been found? What if the correction is ugly but the app is working as
code Repository pattern I spoke about the fat models, skinny controllers pattern, but what I failed to explain is what is the model. For example, in Laravel, you have model classes which define
design pattern Fat model, skinny controller I learned a new design pattern today, fat model, skinny controller. The goal is to put all database related logic inside the model. This greatly improve code reuse. When you
code Delay work When loading data for something like a product page, there is prerequisites before we can query the data. As the app grows it's easy to add more and more step
ionic Spring cleaning Framework are great, they provide a set of tools so that we can focus on building the product we want faster. A key point for SEO is page loading time,
code Repetitive work As a developer, when I find myself doing repetitive work, I try to find a wait to write some code to do the task automatically. It's especially true when a
software Over-engineering As a developer, I tend to want to build great software, not temporary quick fix. Building something that at the same time answer users needs and is working efficiently, easy
laravel Database versioning of Laravel Voyager Laravel comes with it's own database versioning system called migrations. Instead of writing SQL scripts you write the change you want to do in Php. For Voyager it's a bit