Skip to content

Instantly share code, notes, and snippets.

Number Name Type 1 Type 2 HP Attack Defense Sp.Attack Sp.Defense Speed GIF PNG
1 Bulbasaur Grass Poison 45 49 49 65 65 45 https://play.pokemonshowdown.com/sprites/bwani/bulbasaur.gif https://play.pokemonshowdown.com/sprites/gen5/bulbasaur.png
2 Ivysaur Grass Poison 60 62 63 80 80 60 https://play.pokemonshowdown.com/sprites/bwani/ivysaur.gif https://play.pokemonshowdown.com/sprites/gen5/ivysaur.png
3 Venusaur Grass Poison 80 82 83 100 100 80 https://play.pokemonshowdown.com/sprites/bwani/venusaur.gif https://play.pokemonshowdown.com/sprites/gen5/venusaur.png
4 Charmander Fire 39 52 43 60 50 65 https://play.pokemonshowdown.com/sprites/bwani/charmander.gif https://play.pokemonshowdown.com/sprites/gen5/charmander.png
5 Charmeleon Fire 58 64 58 80 65 80 https://play.pokemonshowdown.com/sprites/bwani/charmeleon.gif https://play.pokemonshowdown.com/sprites/gen5/charmeleon.png
6 Charizard Fire Flying 78 84 78 109 85 100 https://play.pokemonshowdown.com/sprites/bwani/charizard.gif https://play.pokemonshowdown.com/sp
@jerryq27
jerryq27 / wtf.js
Last active April 29, 2019 18:47 — forked from MichalZalecki/wtf.js
For presentation.
'2' == 2
'2' === 2
[] + []
[] == []
typeof []
typeof null
null instanceof Object
#!/bin/bash
# Original script: https://gist.github.com/togume/83b4bf40e1528742374bbce338270f34
TABLES=$(mdb-tables -1 "$1")
IFS=$'\n' # Internal Field Separator: for loops use spaces to separate input by default, this changes that default value to new lines.
for t in $TABLES
do
# Surround the names in backticks so the spaces are ignored.
echo "DROP TABLE IF EXISTS \`$t\`;"