Skip to content

Instantly share code, notes, and snippets.

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

Ranjithrajd ranraj

🏠
Working from home
View GitHub Profile
@ranraj
ranraj / git.md
Last active November 26, 2022 07:56
Git help notes

Run this command first and do the git pull give your password, Thats all once given successful password it automaticaly store it. It will not ask again and again. git config credential.helper store

To avoid multiple branch push at the same time.

git config --global push.default simple

##Setup the repository

@ranraj
ranraj / zsh.md
Last active January 20, 2017 19:07 — forked from tsabat/zsh.md
@e1024kb
e1024kb / gist:41bf38fdb1a2cb19a781
Created September 27, 2014 13:29
Country - state list in JSON
{
"countries": [
{
"country": "Afghanistan",
"states": ["Badakhshan", "Badghis", "Baghlan", "Balkh", "Bamian", "Daykondi", "Farah", "Faryab", "Ghazni", "Ghowr", "Helmand", "Herat", "Jowzjan", "Kabul", "Kandahar", "Kapisa", "Khost", "Konar", "Kondoz", "Laghman", "Lowgar", "Nangarhar", "Nimruz", "Nurestan", "Oruzgan", "Paktia", "Paktika", "Panjshir", "Parvan", "Samangan", "Sar-e Pol", "Takhar", "Vardak", "Zabol"]
},
{
"country": "Albania",
"states": ["Berat", "Dibres", "Durres", "Elbasan", "Fier", "Gjirokastre", "Korce", "Kukes", "Lezhe", "Shkoder", "Tirane", "Vlore"]
},
@tsabat
tsabat / zsh.md
Last active December 25, 2023 19:16
Getting oh-my-zsh to work in Ubuntu
@ghoseb
ghoseb / factorial.py
Created November 14, 2008 18:58
The evolution of a Python Programmer
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal