Created
July 21, 2009 22:41
-
-
Save serhei/151683 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The 10,000 Hour Time Tracker, a quick and dirty Nodebox hack. | |
# Fill in 40 of these pages and attain mastery! | |
size(850, 1100) | |
fill(0.5) | |
translate(15, 20) | |
font("Helvetica", 35) | |
align(CENTER) | |
text("250 hours of programming", 0, 35, width=850-30) | |
fontsize(12) | |
font("Helvetica") | |
text("1 BUBBLE = 15 MINUTES", 0, 70, width=850-30) | |
nofill() | |
stroke(0.5) | |
line(0, 90, 850-28, 90) | |
translate(0, 100) | |
for i in range (1,25): | |
for j in range (0,40): | |
offset = j*18 + (j/4)*12 | |
rect(offset, 0, 12, 24, roundness=0.5) | |
translate (0, 36) | |
line (0, 0, 850-28, 0) | |
font("Helvetica", 12) | |
align(LEFT) | |
fill(0.5) | |
text("NOTES", 5, 20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment