Skip to content

Instantly share code, notes, and snippets.

View ctrlaltdev's full-sized avatar
😼
All your cats are belong to us

yorick ctrlaltdev

😼
All your cats are belong to us
View GitHub Profile
@ctrlaltdev
ctrlaltdev / statelist.html
Last active October 31, 2018 18:46 — forked from d33pfri3d/statelist.html
Datalist of US States
<datalist id="statelist">
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
<option value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>
<option value="FL">Florida</option>
@ctrlaltdev
ctrlaltdev / color-scale.js
Last active May 25, 2023 06:38 — forked from mlocati/color-scale.js
Javascript color scale from 0% to 100%, rendering it from red to yellow to green to blue to magenta
function colorScale(int) {
let r, g, b = 0
if (int >= 0 && int <= 20) {
r = 255
g = Math.round(12.75 * int)
b = 0
} else if (int > 20 && int <= 40) {
r = Math.round(-12.75 * int + 510)
g = 255