Blog
New year, new web design trends. We are already starting to see some design elements that will be hot in 2020 (and maybe beyond). Most of these trending web design themes are continuations of things that have been building in design projects – more gradients, rule-breaking typography, and plenty of minimalism. But there are trends that are emerging as well, such […]...
Blog
Seven samples of front-end stuff Web developers will probably begin learning … (Web development) The JavaScript world is moving fast. The world of frontEnd development (and web development) is moving blazingly fast. Today, if you’re not on top of Webpack, React Hooks, Jest, Vue and NG elements, you start to feel the gap widening. But, things are changing. While the numbers of both developers and techs in […]...
Blog
A comprehensive guideline to become a professional at Angular A todo app is the equivalent of a ‘Hello world’ application for front-end development. While it covers the CRUD aspect of creating an app, it often only scratches the surface of what a framework or library can do. Angular seems to always be changing and updating — […]...
Blog
In the beginning, there were callbacks. A callback is nothing special but a function that is executed at some later time. Due to JavScript’s asynchronous nature, a callback is required in many places, where the results are not available immediately. Here’s an example of reading a file in Node.js (asynchronously) — fs.readFile(__filename, 'utf-8', (err, data) => { […]...