Skip to content

Instantly share code, notes, and snippets.

View dylanhthomas's full-sized avatar

Dylan Thomas dylanhthomas

View GitHub Profile
Replace all instances of old_string with new_string recursively within the current directory and its sub-directories:
grep -rl old_string * | xargs sed -i '' 's/old_string/new_string/g'
@dylanhthomas
dylanhthomas / jquery.scrolldirection.js
Created June 7, 2017 14:54 — forked from marcojetson/jquery.scrolldirection.js
jQuery - Adds scroll direction to scroll event
(function ($) {
"use strict";
var wnd = $(window),
lastScrollTop = wnd.scrollTop(),
lastScrollLeft = wnd.scrollLeft();
wnd.on("scroll", function (event) {
var scrollTop = wnd.scrollTop(),
scrollLeft = wnd.scrollLeft(),