-
Node.js
Creating a hash in Node.js
Introduction We require hashes everywhere, like setting the password in database as hash instead of plain text password, to check whether if…
Read More » -
DevOps
An Overview of Docker Registries
So you’re using Docker now. You even built an image. Now what do you do? Chances are you are going…
Read More » -
JavaScript
Lazy inter-module communication with require() and webpack
Motivation CommonJS’ modules can be loaded on demand with require.ensure(…). Example: require.ensure(["module-a"], function(require) { var a = require("module-a"); // module-a can…
Read More » -
Web Dev
The curse of staying up to date with new technology
Keeping up to date is a major part of the job of a software developer and why we love it.…
Read More » -
PHP
PHP Show/Display Errors Example
PHP gives the possibility to configure how and which errors are displayed; as it’s an interpreted language, it’s not as…
Read More » -
Angular.js
First steps with Angular 2: 8 cool features
I’ve been doing some work the last couple of weeks with Angular2. I really like it. Not just because it…
Read More » -
JavaScript
Javascript Timer Example
The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used…
Read More » -
DevOps
An Introduction to the Docker Trusted Registry
Many of us start our Docker journey pulling images from the Docker Hub with the time-honored docker pull command. Lots…
Read More » -
PHP
PHP Session Example
Sessions are an important part not only of PHP, but of every web programming language. They are useful to access…
Read More »