Skip to content

Instantly share code, notes, and snippets.

View Devendra0110's full-sized avatar
🏠
Working from home

Devendra Gaud Devendra0110

🏠
Working from home
View GitHub Profile
cd existing_repo
git remote rename origin old-origin
git remote add origin https://gitlab.com/newproject
git push -u origin --all
git push -u origin --tags
@Devendra0110
Devendra0110 / shallow-copy.js
Created January 31, 2025 05:09
shallow Copy, Deep copy and copy by reference
let obj = {a:'b', c:{d:'e', f:{g:'h'}}}
let obj1 = {...obj}
// let obj2 = obj
// let obj1 = Object.assign({}, obj)
obj1.a = 'b1'

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? β˜†β˜†

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com

@Devendra0110
Devendra0110 / settings.json
Created November 26, 2024 05:58
Vs code settings json
{
"security.workspace.trust.untrustedFiles": "open",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Monokai Vibrant",
"explorer.confirmDelete": false,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontFamily": "'DroidSansMono Nerd Font'",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": {
@Devendra0110
Devendra0110 / gist:954efaad36f35aced8e1ab872be22a4f
Created September 10, 2024 11:58
Print tree structure with level 2
tree -I node_modules -L 2 | pbcopy
  1. Always use PUBLIC_URL in browserRouter as basename or while giving path to images.
@Devendra0110
Devendra0110 / template.md
Created March 15, 2024 04:07
PR template

Context

Gives the reviewer some context about the work and why this change is being made, the WHY you are doing this. This field goes more into the product perspective.

Description

Provide a detailed description of how exactly this task will be accomplished. This can be something technical. What specific steps will be taken to achieve the goal? This should include details on service integration, job logic, implementation, etc.

Changes in the codebase

This is where becomes technical. Here is where you can be more focused on the engineering side of your solution. Include information about the functionality they are adding or modifying, as well as any refactoring or improvement of existing code.

Changes outside the codebase

@Devendra0110
Devendra0110 / clean_code.md
Created March 14, 2024 06:21 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules