Marcus

Marcus is a fullstack JS developer. He’s passionate about the hapi framework for Node.js and loves to build web apps and APIs. Creator of Futureflix and the “learn hapi” learning path.


MySQL — Get the First Day of the Month

MySQL includes dozens of useful date and time functions. For example, you can retrieve the last day of a month using MySQL’s LAST_DAY function. But there’s no equivalent FIRST_DAY function. Yet, you can calculate the date of the first day of a month and this tutorial …

Continue Reading

Git Prune Remote Branches That No Longer Exist

In git, you’re working with branches. A branch describes a parallel state to the main branch. You can change the code in your branch and test it without affecting the stable main branch. In your development team, you’ll review and work on different features which probably have their …

Continue Reading

JavaScript — How to JSON Stringify Errors

You can create a JSON string from anything in JavaScript using the JSON.stringify(anything) method. However, the resulting JSON string may not contain the expected values. For example, if you’re JSON serializing a JavaScript error, you’ll notice that its JSON string doesn’t contain any properties. JavaScript …

Continue Reading

Node.js — What is `Fs.realpath`?

The Fs.realpath method in Node.js resolves the actual file system location of a given path. For example, you’re typically creating a symlink for nginx configuration files from the directory containing all available files to the directory having the enabled files. You can use the Node.js file …

Continue Reading

Explore the Library

Find interesting tutorials and solutions for your problems.