prakhar.hashnode.devMarkdown in ServiceNow: how I made rich work notes easierI wanted a better way to write rich notes inside ServiceNow work notes. At work we type a lot of short updates, code snippets, and checklists. The default journal box in ServiceNow is fine, but writing formatted text feels slow and error prone. So I ...Dec 16, 2025·4 min read
prakhar.hashnode.dev🚀 Introduction to Git WorktreeIf you’ve ever had to switch branches in the middle of work, stash your changes, or juggle multiple clones of the same repository… you already know the pain. Good news: Git Worktree makes all of this much easier. This guide will introduce: What Git ...Nov 17, 2025·4 min read
prakhar.hashnode.devNotes on ReduxRedux manages state of the web app in a single big container called Store. store takes reducer & action as parameter Reducer reducer is a function that takes state & returns state const reducer = (state = 5) => { return state; } const store = Red...Apr 29, 2022·5 min read
prakhar.hashnode.devEasy Callback, Promises & Async-AwaitAfter having read about callbacks, promises & async-await multiple times in not so easy to comprehensions, I finally have wrapped my head around them. And today I'd share it in simpler terms that I am able to remember & understand. Callbacks Callbac...Aug 28, 2021·3 min read
prakhar.hashnode.devDetermine the kind of SoftwareIterative approach effect on prerequisite Different kinds of software projects need different balances between preparation and construction. (scroll to the Appendix at the end to see some good practices for common kind of software practices) 👇 Some...Aug 27, 2021·2 min read