debajyatidey.hashnode.devMake Your Own Map, Filter, Reduce in C++As you know, C++ is an imperative programming language. Although over the years they have added features of functional programming languages like promises and lambdas, that doesn’t change the core of the language. However, if you come from a backgrou...Jun 1, 2025·11 min read
debajyatidey.hashnode.devAdd GitHub Login in Your CLI with OAuth Device FlowCommand-line utilities are the most basic and beautiful apps ever created, the apps that started it all. Building a CLI in JavaScript is just a piece of cake nowadays. Yeah, it’s NOT that hard!Lots of powerful arg parsing libraries are available in ...May 20, 2025·22 min read
community.keploy.ioTop Tools for Static Analysis Help in Your Python ProjectsAre you tired of chasing bugs in your python code? If you are, then you are in the right place! Yes, this article is your complete guide about harnessing the power of static code analysis tools and how they can greatly amplify your productivity by fi...Mar 19, 2025·16 min read
debajyatidey.hashnode.devDeep Dive into Boosting Code Performance with Bitwise OptimizationBit-level programming techniques can often replace more complex data structures like maps or sets, resulting in significant improvements in both speed and memory usage. We will examine the fundamental concepts, discussing how compilers transform arit...Mar 5, 2025·11 min read
debajyatidey.hashnode.devBuild A CLI in OCaml with the Cmdliner LibraryIn this tutorial we are building a simple CLI named textsearch which is able to search a provided piece of string (probably a word) in a given text file. Prior knowledge of components of a dune project is recommended but not required. I will guide yo...Dec 27, 2024·10 min read