JavaScript JavaScript: how to use the Google Maps API with Promises and async/await June 22, 2019 In JavaScript we can use the Google Maps API with Promises and async/await. Read more
Node.js Node.js: minify CSS files in ExpressJS without using a module May 12, 2019 In ExpressJS we can minify CSS files on the fly without using a module. Read more
Node.js Creating and managing sessions in ExpressJS April 28, 2019 In ExpressJS sessions can be managed easily. Read more
JavaScript JavaScript: how the try/catch construct works with async/await April 26, 2019 There are some peculiarities related to the use of the try/catch construct when it comes to the async/await model. Read more
CSS: Safari's bug with flex boxes and generated content April 15, 2019 Safari has a problem with CSS generated content applied to flex boxes. Read more
Node.js Node.js: working with command line arguments March 15, 2019 When we execute Node.js from the command line we can pass arguments to the node command. Read more
Node.js Node.js: localising dates February 6, 2019 Recent versions of Node.js support the Intl.DateTimeFormat constructor for localising dates but the set of locales must be explicitly enabled. Read more
Node.js Node.js: data types exist and they may hurt February 5, 2019 JavaScript is loosely typed. This is fine in 90% of the cases. Let's see what may happen in the remaining 10%. Read more
jQuery: check when users start interacting with a web page January 27, 2019 In jQuery we can check when users start interacting with a web page. Read more
Node.js Node.js: how to avoid callback hell without breaking the Event Loop January 20, 2019 We can avoid callback hell in Node.js without breaking the Event Loop. Read more