Skip to content

Instantly share code, notes, and snippets.

@devStepsize
devStepsize / 0_reuse_code.js
Created February 25, 2016 13:26
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
@devStepsize
devStepsize / progress_bar.py
Created February 7, 2016 17:49 — forked from matthieualouis/progress_bar.py
Progress bar template for python
import progressbar
pbar = progressbar.ProgressBar(maxval=PLACEHOLDER)
pbar.start()
for i in range(PLACEHOLDER):
pbar.update(i)
pbar.finish()