Skip to content

Instantly share code, notes, and snippets.

@ncreep
ncreep / init.coffee
Last active August 19, 2019 06:54
Atom middle mouse scrolling hack
atom.workspace.observeTextEditors (item) ->
# Sets up middle button scroll on the given editor component
middleMouseScrollSetup = (editorComponent) ->
lastClick = {x: 0, y: 0}
lastPosition = {x: 0, y: 0}
{scrollContainer} = editorComponent.refs
onMouseMove = (event) ->
@justinfay
justinfay / redisbucket.py
Created August 20, 2012 13:01
redis token bucket
import redis
from redis import WatchError
import time
RATE = 0.1
DEFAULT = 100
TIMEOUT = 60 * 60
DEBUG = False