Skip to content

Instantly share code, notes, and snippets.

View PaitoAnderson's full-sized avatar
👀
Browsing Code

Paito Anderson PaitoAnderson

👀
Browsing Code
View GitHub Profile
@PaitoAnderson
PaitoAnderson / intercom.js
Created June 3, 2016 18:46
A super lightweight Intercom.js replacement that works with IFrames and Windows 10.
/*! Intercom.js */
var Intercom = (function () {
// Instance stores a reference to the Singleton
var instance;
function init() {
// Singleton
@PaitoAnderson
PaitoAnderson / gist:6940728
Last active December 25, 2015 07:39
Find Mickey without Mouse. Search in files for files that contain a string but do not contain another string.
find . -name "*.asp" -exec grep -l "Mickey" {} \; | xargs grep -Li "Mouse"