Skip to content

Instantly share code, notes, and snippets.

View pizzimenti's full-sized avatar

Bradley Pizzimenti pizzimenti

View GitHub Profile
@pizzimenti
pizzimenti / gist:fdb2983386383f3297f0
Last active February 15, 2016 14:43
Java while loop
String response;
boolean isNo;
do{
response = console.readLine("Do you understand do while loops? ");
isNo = response.equalsIgnoreCase("no");
} while (isNo);
@pizzimenti
pizzimenti / 0_reuse_code.js
Created February 15, 2016 14:40
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console