This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'2' == 2 | |
'2' === 2 | |
[] + [] | |
[] == [] | |
typeof [] | |
typeof null | |
null instanceof Object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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\`;" |