Skip to content

Instantly share code, notes, and snippets.

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

Raju Dhami Raju

🏠
Working from home
View GitHub Profile
Render 1 Render 2 State Preserved?
<>...</> <>{[...]}</> yes (in any level)
<><>...</></> <>...</> no
[...] [[...]] no
[<>...</>]* [...] no
[<>...</>]* <>...</> no
[<>...</>]* <>[...]</> no
[<>...</>]* [[...]] yes
[&lt;&gt;...&gt;]* &lt;&gt;&lt;&gt;...&gt;&gt; yes
@Raju
Raju / multiple-repository-and-identities-git-configuration.md
Created August 21, 2022 15:27 — forked from bgauduch/multiple-repository-and-identities-git-configuration.md
Git config with multiple identities and multiple repositories

Setup multiple git identities & git user informations

/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉

Setup multiple git ssh identities for git

  • Generate your SSH keys as per your git provider documentation.
  • Add each public SSH keys to your git providers acounts.
  • In your ~/.ssh/config, set each ssh key for each repository as in this exemple:
@Raju
Raju / media-query.css
Created October 3, 2020 18:16 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@Raju
Raju / macOS Development Setup
Last active April 23, 2022 14:15
macOS Development Setup
Install Brew
------------
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Git
---
brew install git &&
git config --global user.name "Manitha Rani D" &&
git config --global user.email "imRajuDhami@gmail.com"
@Raju
Raju / Linux or WSL Development Setup
Last active October 5, 2023 05:28
Development Setup
APT FAST
--------
sudo add-apt-repository ppa:apt-fast/stable &&
sudo apt-get update &&
sudo apt-get -y install aria2 apt-fast
/bin/bash -c "$(curl -sL https://git.io/vokNn)"
YADM
----