PinnedLearning JavaScript the Right Way: A Well Simplified Approach.Have you been so frustrated while trying to learn something new? Especially a programming language or technological tool? Does the message below sound like some phrases you've angrily uttered recently? "JavaScript is about to take my life. I'm takin...Jun 9, 2022·9 min read·681
How to use Github SSH Key and Switch HTTPs based projects to SSH (My Rough Note)Generate new SSH Go to the ssh directory $ cd ~/.ssh View the existing ssh keys $ ls Generate new key $ ssh-keygen -t rsa -b 4096 -C "your_email@domain.com" After generating a new key, you'll be given the private and the public key. The public key en...Jun 18, 2021·2 min read·90
Getting Started with React, TypeScript and Redux.This blog post will walk us through setting up a React, TypeScript and Redux application in few minutes. I'd assume you are familiar with the React ecosystem and probably have worked with TypeScript before but if you haven't, I'll briefly talk about ...Nov 29, 2020·16 min read·182
How to share props using navigation Link in ReactHi, have you been in a situation where you need to share data between two non-nested pages/components and you really don't want to move the data to the global state? Good news! You can easily share the data using the Link component that comes with re...Nov 21, 2020·3 min read·84
Why Every Developer Should Blog - The SummaryHi, I'm glad you spared your time to read this. This blog summarizes Chris Bongers Presentation for Hashnode Bootcamp II titled Why Every Developer Should Blog. A bit about the Speaker Chris Bongers is a Software Developer and a Content Creator. "I...Nov 11, 2020·2 min read·322
Concatenating Git CommandsBRIEF INTRODUCTION ON GIT Git is an open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. It's designed for coordinating work amongst developers, designers and writer...Sep 6, 2020·2 min read·106
5 Amazing HTML Input TipsAs a frontend developer, HTML form is something you'll get to use day in day out as you progress in your career. Whether you're developing the from based on a design or not. For this reason, I come up with 5 cool tips when using html input elements. ...Aug 29, 2020·3 min read·200