Git and githubgithub Fix GitHub Push Error using SSH If git push fails with Repository not found, switch from HTTPS to SSH. Steps: Check for an existing SSH key: ls ~/.ssh → if id_ed25519 exists, reuse it. Generate a key (if needed): ssh-keygen -t ed25519 -C "sh...Jan 3, 2026·2 min read
stough that i keep forgettingWhen we run a code it gets parsed first and if any error is spotted it ends and return the error. In case no error parsing continues and an abstract syntax tree (AST) is formed along with the scope chain then the code gets compiled and if any errors ...Dec 21, 2023·1 min read
Introduction To C++In this blog we will be learning how programming languages work taking C++ as our example. Let us consider a file in which a code is written for example a=10 b=15 c=a+b the code we write is close to english or we could say it is understandable to hu...Dec 20, 2023·7 min read
Static Typing:TypeScript and Flow Both TypeScript and Flow are very similar products and they share most of their syntax with some important differences. In this blog, we'll go through the differences and similarities between Flowtype and TypeScript -- specificall...Oct 22, 2023·7 min read
Using ! ans !! to convert values to booleanYou might come across coercing the value to a boolean using the two logical NOT operators while working on JavaScript. In this blog let us understand how it works. In Javascript, all values are either truthy or falsey. so if our datatype does not con...Oct 1, 2023·2 min read
Coercion from basicsconsider this code below where we use the template literal strings What is happening there? var numStudents = 16 console.log( `there are ${numStudents} students.` ); // "there are 16 students." the number is simply getting coerced implicitly to a st...Sep 29, 2023·24 min read
CoersionCoercion aka 'type conversion' is a mechanism of converting one type to another. In statically (strongly) typed language this process happens at compile time whereas coercion is a run-time conversion for dynamically typed languages Coercion always re...Sep 22, 2023·13 min read