These are some of our thoughts on technology and business processes, as well as our inner workings and developer lifestyles.
Auto dealership along with autopart trading and car service has always been a very competitive field. Especially these days companies have to use all possible and affordable ways to stay afloat. But to be a successful company auto dealer should not just move forward but accelerate this movement.
In this article, we will compare two most popular JS Libraries (Angular vs React). Both of them were created by professionals and have been used in famous big projects.
In this article I will describe how to integrate geolocation HTML5 function to a web app so you can then easily implement it in your apps or websites. As an example we are going to create small web app which will be able to calculate the shortest route between detected user’s location and predefined destination using Google Maps API.
One of the things we are proud about is our estimation process. Partners and clients regularly ask how we do those and how we manage to meet our deadlines, so I decided to describe our simple recipe.
Quite often we have to write paginated or filtered blocks of information on page. I created a decorator that would automate this process.
When we use css-sprites it's important to make browser cache them for longest period possible. On other hand, we need to refresh them when they are updated. This is especially visible when all icons are stored in single sprite. When it's outdated - entire site becomes ugly.
I've created this small sprite to create css sprites. It glues images from directory directory into single file and generates corresponding css.
In VIM there is a command for char search: f. After first use it can be repeated with ;. I like to navigate in line with it. You see that you need to go to bracket in a middle of a line - you press f( and one-two ; and you are there. There's no such command in Emacs, so I had to write my own. I've managed even to implement repetition with ;.