Build a CLI Task Manager with Go and MongoDB: A Step-by-Step GuideCLI Task Manager with Go and MongoDBFeb 14, 2025·8 min read
Solidity Basics: FunctionTable of Content Introduction Components of a Solidity Function FunctionName Parameters Visibility keywords public external internal private State mutability keywords View Pure Payable Fallback Function Function Modifiers Summar...Sep 9, 2023·8 min read
Fixing "This page crashed" Docusaurus ErrorThe Bug 🐞 Howdy, Kachi here :) I recently encountered this error when I was setting up a project with Docusaurus N/B: This is after running the npm start command, which is preceded by the npx create-docusaurus@latest my-website classic command. T...Apr 18, 2023·1 min read
Explaining Recursion In JavascriptThis article was first published on the Open Replay Blog Recursion is no doubt one of the oldest concepts in programming. It's the paradigm where a function calls itself. This technique is usually used to solve problems that require breaking them int...Dec 4, 2022·7 min read
Javascript Type Conversions ExplainedThis article was initially published on the Open Replay Blog Javascript is a weakly typed language, which means different datatypes for variables and objects are not explicitly specified, but done implicitly by the Javascript engine at compile time. ...Dec 1, 2022·11 min read
JavaScript Types And Values, ExplainedThis article was initially published on the Open Replay Blog Javascript is a dynamically typed language, which means variable types are identified at run time (done implicitly by the interpreter). As opposed to statically typed languages like Java an...Dec 1, 2022·16 min read
Explaining JavaScript's Execution Context And StackThis article was first published on the Open Replay Blog With each new abstraction of the Javascript language, which can be in the form of a library or framework, Writing Javascript has become more declarative than imperative. Which is actually a goo...Dec 1, 2022·10 min read