Skip to content

Instantly share code, notes, and snippets.

View willium's full-sized avatar
🧛

William Wolf willium

🧛
View GitHub Profile
@willium
willium / .block
Created August 29, 2018 18:09 — forked from domoritz/.block
Vega-Lite Bl.ocks example
license: bsd-3-clause
@willium
willium / henry.py
Last active December 13, 2015 17:48 — forked from anonymous/gist:4950095
print ("This program will find Mass(kg), Radius(m) or Time(s) via Kepler's law's")
print ("Enter x for the unknown value")
m = (input("Mass: "))
r = (input("Radius: "))
t = (input("Time: "))
x = ("unknown")
if m == x:
m = ((4*3.14*r**3)/(.0000000000667*t**2))
print ("m=")
elif r == x:
@willium
willium / gameLibrary.js
Created April 24, 2012 02:28 — forked from anonymous/gameLibrary
All my js code for this game
var current = 0;
var meds = 0;
var gun = '0';
var quest = 'none';
var randNum;
var james = 'not_done';
var note = 'not_done';
var mine = 'not_done';
var quests_done = 0;