Skip to content

Instantly share code, notes, and snippets.

View kristofferh's full-sized avatar
🍔

Kristoffer Hedstrom kristofferh

🍔
View GitHub Profile
@kristofferh
kristofferh / remove python compiled code.md
Last active May 25, 2017 19:09
remove python compiled code

find . -name '*.pyc' | xargs rm

@kristofferh
kristofferh / momentum-sticky.js
Created November 30, 2017 20:58
Momentum effect for sticky/fixed elements
let element;
let scrollTop = 0;
let pinTop = 0;
let lastTime;
let options = {
lag: 50,
maxSpeed: 100,
frameRate: 30
};