Skip to content

Instantly share code, notes, and snippets.

@mbunde
mbunde / google-dorks
Created June 14, 2018 20:29 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@mbunde
mbunde / quizCountdLiftoff.js
Created June 5, 2018 09:09 — forked from desinas/quizCountdLiftoff.js
Countdown Liftoff quiz of Udacity Front end dev
/*
* Programming Quiz: Countdown, Liftoff! (4-3)
*
* Using a while loop, print out the countdown output above.
*/
// your code goes here
timeInSeconds =60;
while (timeInSeconds >= 0) {
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->
<!--reds-->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>
@mbunde
mbunde / quizWhatDoIwear.js
Created June 2, 2018 20:33 — forked from desinas/quizWhatDoIwear.js
What do I wear Quiz (3-7) of Udacity Front end developer
/*
* Programming Quiz: What do I Wear? (3-7)
*/
// change the values of `shirtWidth`, `shirtLength`, and `shirtSleeve` to test your code
var shirtWidth = 23;
var shirtLength = 30;
var shirtSleeve = 8.71;
// your code goes here
@mbunde
mbunde / quizIceCream.js
Created June 2, 2018 20:02 — forked from desinas/quizIceCream.js
Ice Cream quiz (3-6) from Udacity Front End Developer
/*
* Programming Quiz: Ice Cream (3-6)
*
* Write a single if statement that logs out the message:
*
* "I'd like two scoops of __________ ice cream in a __________ with __________."
*
* ...only if:
* - flavor is "vanilla" or "chocolate"
* - vessel is "cone" or "bowl"