Adding custom error messages to Joi.js validation: using custom labels, referencing other fields, using the values passed to validation in the error message.
Computer Science learning blog
Adding custom error messages to Joi.js validation: using custom labels, referencing other fields, using the values passed to validation in the error message.
Solve Ubuntu 20.04 suspend freezes by increasing your swap size
Configuring webpack to add references to files dynamically. Additional configuration to load files to pug.
Interactive demonstration of Floyd’s Hare and Tortoise algorithm.
Implementing a heap in JavaScript using an array. A heap returns its minimum (or maximum) element in O(1) and adding elements to a heap is performed in O(log n). Heap sort is also implemented.