Skip to content

Instantly share code, notes, and snippets.

View pigflymoon's full-sized avatar

pigflymoon

View GitHub Profile
@pigflymoon
pigflymoon / markdown.md
Created May 26, 2017 11:15 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet. I used Bootstrap's Base CSS documentation as a reference.

Typography

Headings

Headings from h1 through h6 are constructed with a # for each level:

# h1 Heading
## h2 Heading
### h3 Heading
@pigflymoon
pigflymoon / hsvToRgb.js
Created March 5, 2018 09:36 — forked from eyecatchup/hsvToRgb.js
HSV to RGB color conversion - JavaScript-Port from the excellent java algorithm by Eugene Vishnevsky at http://www.cs.rit.edu/~ncs/color/t_convert.html
/**
* HSV to RGB color conversion
*
* H runs from 0 to 360 degrees
* S and V run from 0 to 100
*
* Ported from the excellent java algorithm by Eugene Vishnevsky at:
* http://www.cs.rit.edu/~ncs/color/t_convert.html
*/
function hsvToRgb(h, s, v) {