Skip to content

Instantly share code, notes, and snippets.

View DavidPoliakoff's full-sized avatar

David Poliakoff DavidPoliakoff

  • Chicago Trading Company
  • Chicago
View GitHub Profile
@DavidPoliakoff
DavidPoliakoff / gotcha_levels
Last active August 2, 2017 18:16 — forked from anonymous/gotcha_levels
Gotcha Switchboard
int init_my_tool(bool verbose){
if(verbose){
gotcha_wrap(a_few_functions);
}
else{
gotcha_wrap(all_the_functions);
}
}