Skip to content

Instantly share code, notes, and snippets.

View cyberfly999's full-sized avatar
😎
playing the blues

Vince Hehlen cyberfly999

😎
playing the blues
View GitHub Profile
@cyberfly999
cyberfly999 / easing_equations_as_functions.js
Last active June 6, 2023 09:47
Easing Equations in JavaScript
// quadratic -----------------------------------------------------------------------------------------
easeInQuad(t, b, c, d) {
t /= d;
return c * t * t + b;
}
easeOutQuad(t, b, c, d) {
t /= d;
return -c * t*(t-2) + b;
@cyberfly999
cyberfly999 / list_countries_for_dropdown.txt
Created January 20, 2022 16:05
Comma separated list of all countries
Afghanistan,
Albania,
Algeria,
Andorra,
Angola,
Antigua & Deps,
Argentina,
Armenia,
Australia,
Austria,
@cyberfly999
cyberfly999 / 24hrs-acf.txt
Last active April 25, 2019 12:30
24hrs listing in 5min intervals for ACFs Select
"00:00": "00:00",
"00:05": "00:05",
"00:10": "00:10",
"00:15": "00:15",
"00:20": "00:20",
"00:25": "00:25",
"00:30": "00:30",
"00:35": "00:35",
"00:40": "00:40",
"00:45": "00:45",
@cyberfly999
cyberfly999 / 24hrs.txt
Created April 25, 2019 09:39
24hrs listing in 5min intervals
00:00
00:05
00:10
00:15
00:20
00:25
00:30
00:35
00:40
00:45