Skip to content

Instantly share code, notes, and snippets.

View bigblind's full-sized avatar

Frederik Creemers bigblind

View GitHub Profile
@bigblind
bigblind / 0_reuse_code.js
Last active August 29, 2015 14:19
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
import datetime
print "Hello my closest, most dear and most revered friend"
print "Please, if you would be so kind, enter your birthday"
valid = False #We start with no value for 'day' at all, so that's certainly not valid
while not valid: #while we don't have a valid day:
day = int(raw_input("enter the day: ))
if day < 1 or day > 31:
print "You have entered an invalid answer, please try again"
else: