Skip to content

Instantly share code, notes, and snippets.

View Prakhargarg-2010196's full-sized avatar
🦇
Procastinating / Day Dreaming

Prakhar Garg Prakhargarg-2010196

🦇
Procastinating / Day Dreaming
  • Gurgaon
  • 11:23 (UTC +05:30)
View GitHub Profile
@Prakhargarg-2010196
Prakhargarg-2010196 / multiple_git.md
Created November 28, 2024 15:44 — forked from k4lizen/multiple_git.md
How to manage multiple git accounts with SSH

How to manage multiple git accounts (with SSH)

Guide for windows. Should apply similarly elsewhere. We will use SSH. If you only care about github, check these out: cli/cli#326 & https://github.com/cli/cli/releases/tag/v2.40.0.

The git side

When making a commit, the username and email tagged with the commit are the ones specified in git config user.name and git config user.email. For github at least (but probably for everything else as well), your email is used as your identifier, which connects you as the commit author to your profile on the hosting service.

I like to keep my email private, so the email I connect with my commits to github projects with is the noreply one provided by github. It can be found in github -> Settings -> Emails and looks like [email protected] the number at the beginning being the essentially only important part. If you change the name after the +, github will still recognize it as you, as long as the numbers ar

How to be a good designer

  • Do some practice every day : Practice daily even if it is not as exact and large amounts , just practice daily. Quality over quantity is the key to success and when you practice daily you practice the craft by repeated mastery.
  • Get feedback from others : Getting feedback will help you improve by realising your mistakes and working over them.
  • Create and inspire from multiple ideas, options and versions for your work: Creating different versions would tell you how much you have improved and what things you had learned and different options and exploring different ideas and options gives you a chance to learn more in different perspectives. (problem-solving is about different approaches to a singular problem then defining a set solution to the problem that every one can learn from, you might even discover your own approach #idea )
  • Step away from the screen : Learn to problem solve away from the screen. The software only help in generating something from the id

EcmaScript standard is the standard that states following of the language in details

  • Syntax of the language
  • Semantics of the language
  • not the console methods
  • not the browser features
  • not the nodejs global features

To Learn to read the EcmaScript Standard follow this guide placed beautifully by Timothy Gu here

@Prakhargarg-2010196
Prakhargarg-2010196 / Implementations Of Various Data Structures.md
Last active August 18, 2024 19:27
Data structures & Algorithms C/C++ impementation

DATA STRUCTURES AND ALGORITHMS.

A data structure is a way to store and organise data ina complex, so that it can be used effectivey & efficiently.

We talk about data structures as

1. Mathematical /logical models or Abstract data type:

Example in real world comparision: Television: A television has various features such as we can turn on/off , recieve signals , audio/video. But all these are shown in abstract manner only without showing the intrinsic details.

In computers although,