Skip to content

Instantly share code, notes, and snippets.

View RosyMapleMoth's full-sized avatar

RosyMapleMoth

View GitHub Profile
@willsolomon
willsolomon / pokemon.csv
Last active March 31, 2023 11:02 — forked from armgilles/pokemon.csv
Modified/Updated Version of Pokemon.csv from armgilles
We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 21 columns, instead of 4. in line 9.
#,Name,Type 1,Type 2,Single Stage,Middle Evolution,Final Evolution,Total,HP,Attack,Defense,Sp. Atk,Sp. Def,Speed,Generation,Legendary,Ability 1,Ability 2,Ability 3,Ability 4,Gigantimax
1,Bulbasaur,Grass,Poison,FALSE,FALSE,FALSE,318,45,49,49,65,65,45,1,FALSE,Overgrow,Chlorophyll,,,FALSE
2,Ivysaur,Grass,Poison,FALSE,TRUE,FALSE,405,60,62,63,80,80,60,1,FALSE,Overgrow,Chlorophyll,,,FALSE
3,Venusaur,Grass,Poison,FALSE,FALSE,TRUE,525,80,82,83,100,100,80,1,FALSE,Overgrow,Chlorophyll,,,TRUE
3,VenusaurMega Venusaur,Grass,Poison,FALSE,FALSE,TRUE,625,80,100,123,122,120,80,6,FALSE,Thick Fat,,,,FALSE
4,Charmander,Fire,,FALSE,FALSE,FALSE,309,39,52,43,60,50,65,1,FALSE,Blaze,Solar Power,,,FALSE
5,Charmeleon,Fire,,FALSE,TRUE,FALSE,405,58,64,58,80,65,80,1,FALSE,Blaze,Solar Power,,,FALSE
6,Charizard,Fire,Flying,FALSE,FALSE,TRUE,534,78,84,78,109,85,100,1,FALSE,Blaze,Solar Power,,,TRUE
6,CharizardMega Charizard X,Fire,Dragon,FALSE,FALSE,TRUE,634,78,130,111,130,85,100,6,FALSE,Tough Claws,,,,FALSE
6,CharizardMega Charizard Y,Fire,Fl
@dsernst
dsernst / comparing-git-add-all.md
Last active July 10, 2024 20:35
Compare `git add .` vs `git add -A`

git add . vs git add -A

Both of these will stage all files, including new files (which git commit -a misses) and deleted files.

The difference is that git add -A also stages files in higher directories that still belong to the same git repository. Here's an example:

/my-repo
  .git/
 subfolder/