I hereby claim:
- I am clayzermk1 on github.
- I am jclaywalker (https://keybase.io/jclaywalker) on keybase.
- I have a public key whose fingerprint is 2BDC 59AB 96C8 D52F 7C19 FEF2 A6D8 A8CE 098D F1E2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
A tide calendar similar to the iconic Tidelines tide calendars built in D3. Data was obtained from NOAA.
If you've never experienced the awesome surfy-ness of a Tidelines calendar, I sincerely encourage you to purchase one. They have beautiful photos and wonderfully clean design. I am not affiliated with Tidelines but I did grow up with one of these calendars on the wall of my parents' house (they still buy one every year).
How to read the calendar (image copyright Tidelines)
var assert = require('assert'); | |
/******************************** | |
* We want make a package of goal kilos of chocolate. We have | |
* inventory of small bars (1 kilos each) and big bars (5 kilos each). | |
* Return the number of small bars to use, assuming we always | |
* use big bars before small bars. Return -1 if it can't be done. | |
* | |
* See the asserts below for examples of input | |
* and expected output. |
A representation of the current time of year using the Sun, Earth, and Moon.
The position of the Earth in orbit around the Sun indicates the hour of year. The Earth itself is a pie chart indicating the second of day. The Moon's position in orbit around the Earth indicates the hour of month. The time is updated every second.
Copyright 2014 Clay Walker
MIT License
Easilly create labels for any pie graph using simple trigonometric functions.
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Mercator Projection</title> | |
<style> | |
path { | |
fill: #ccc; | |
stroke: #fff; | |
} |
Demo: http://jsfiddle.net/clayzermk1/QD8Hs/
I needed a simple plugin to build a two-tier collapsible list with checkboxes. I wanted it to fit well with Twitter's Bootstrap. I couldn't find one that was simple enough. I hope you enjoy =) Feel free to send feedback.