Created
April 17, 2018 16:13
-
-
Save howarddierking/79f5c713012cbd76350b164507266d05 to your computer and use it in GitHub Desktop.
How we tech
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
function HowWeTech(someTech){ | |
declare(`${someTech} is awesome - let's use it!!!`); | |
warn(`but it's possible to abuse ${someTech}`); | |
abuse(someTech); | |
blame(someTech, `it was able to be abused!!`); | |
let ourTech = createLesser(someTech); | |
try { | |
use(ourTech); | |
} catch (e) { | |
declare(`hey, have you seen ${someNewTech}??`); | |
HowWeTech(someNewTech); | |
} | |
} |
dukeluke16
commented
Apr 19, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment