JavaScript setInterval() method either call a function evaluates an expression at specified number of milliseconds. This method continues to call/evaluate the expression until window is called. Another way to stop this method is by calling clearInterval()... (more…)
Read more »
I didn't much care for vanilla JavaScript prior to ES6. Through all of the 2000s, I chased different approaches to avoid writing too much of it. First there was RJS (Ruby-to-JavaScript). Then there was CoffeeScript. Both transpiling approaches that turned... (more…)
Read more »
A verifiable data exchange format for secure, privacy-preserving sharing. Features a flexible core structure, JSON envelope with timestamp and optional nonce, blockchain attestation (e.g., EAS), an... (more…)
Read more »
Think of the last time you goofed up on the job. Maybe you forgot to clean out
the microwave in the break room. Maybe you hit “Reply All” when you really
meant “Reply.” Or maybe you nodded off during an all-hands meeting. (more…)
Read more »
Dependency injection is about removing the hard coded dependencies and providing way of changing dependencies in compile-time or run-time. This pattern has been exercised in several frameworks like Spring(Java). It is also becoming popular in JavaScript c...
Read more »