programming

How to save hours of implementation time?

Code generation gets better and better, so why not to use it? Time of implementing API client in your apps is often huge. And it can be cut off, often totally. Meaning you can save hours of time reimplementing things that have been written on backend. How?
Read more

Select your date format with care

Do you support only the most modern browsers like Chrome, Firefox, Brave or you have to support variety of them? If you have to support browsers like Safari, be careful when dealing with date formats. Here’s why.
Read more

Less bugs in JavaScript using computed properties.

What is computed property? Computed property is feature introduced in ES6. The syntax allows to initialize object using variable’s value as a property name in newly created object. Instead of
Read more