PKPrajwal Kumarinkumpraj.hashnode.dev·Feb 15, 2023 · 2 min readWhat is TypeScript ?Most of us may have heard that TypeScript is a "flavour" or "variant" of JavaScript. TypeScript is an open-source programming language that is a superset of JavaScript, meaning it adds additional features and functionality to the language. It inclu...00
PKPrajwal Kumarinkumpraj.hashnode.dev·Jul 23, 2022 · 2 min readGit Cheat SheetGit is a free and open-source distributed version control system. Below listed are most commonly used git commands. Setup git config --global user.name "Danny Adams" git config --global user.email "myemail@gmail.com" Starting a Project with Git Cr...00
PKPrajwal Kumarinkumpraj.hashnode.dev·Jul 23, 2022 · 1 min readMarkdown Cheat SheetThis is a quick reference to the Markdown syntax. Basic Syntax Heading #H1 ##H2 ###H3 ####H4 #####H5 ######H6 Bold **bold text** Italic *italicized text* Blockquote > blockquote Ordered List 1. First item 2. Second item 3. Third item Unordered...00
PKPrajwal Kumarinkumpraj.hashnode.dev·Jul 22, 2022 · 2 min readCSS Pseudo Class SelectorsPseudo class selectors are CSS selectors with a colon preceding them. A very familiar example would be, like hover: a:hover { /* So here, hover is a pseudo class */ } Mention those background colors, paddings, borders etc., when you want that to ha...00