Skip to content

Instantly share code, notes, and snippets.

View lisp-ceo's full-sized avatar
🎇
Key Contributor

James Meldrum lisp-ceo

🎇
Key Contributor
View GitHub Profile
@beesandbombs
beesandbombs / sphereBox.pde
Last active July 30, 2023 09:31
sphere box
int[][] result;
float t, c;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
float ease(float p, float g) {
if (p < 0.5)
return 0.5 * pow(2*p, g);
@magnetikonline
magnetikonline / README.md
Last active October 25, 2025 23:35
VirtualBox create host-only interface and attach to VMs.