Skip to content

Instantly share code, notes, and snippets.

View chewett's full-sized avatar

Christopher Hewett chewett

View GitHub Profile
#Evolution keys:
# candy_required - Number of candy to evolve by standard means
# item_required - Set if there is an item that is required to evolve it
# lure_required - Set if there needs to be a lure to evolve this pokemon
# no_candy_cost_if_traded - Set if the candy cost is 0 after trading
# priority - Set if a priority is defined, defines the order of the evolutions that are picked (mainly eevees)
# only_evolves_in_daytime - Set if this evolution can only occur in daytime
# only_evolves_in_nighttime - Set if this evolution can only occur in nighttime
# must_be_buddy_to_evolve - Set if this evolution can only occur if they are your buddy
# buddy_distance_required - Set if this Pokemon must have been walked a specific amount of distance
@chewett
chewett / gist:bc5030946ff6cf45ea88
Created November 25, 2014 17:33
Run git gc on all repos under current directory WARNING MAKES A FILE
find `pwd` -name .git | xargs -i echo "cd {}/../; git gc" > run_me_if_you_dare.sh; sh < run_me_if_you_dare.sh; rm run_me_if_you_dare.sh