Skip to content

Instantly share code, notes, and snippets.

@jibiel
jibiel / google_analytics_including_today.user.js
Created September 28, 2012 08:47
Include today in Google Analytics' default date range (updated for 2012)
// ==UserScript==
// @name Google Analytics - Include Today
// @author Storm Consultancy & jibiel
// @description Include today in Google Analytics' default date range
// @include https://www.google.com/analytics/web/*
// @version 1.1
// ==/UserScript==
// Function to add days to a date, use negative number to subtract
function addDays(myDate,days) {
@tonymtz
tonymtz / gist:d75101d9bdf764c890ef
Last active December 29, 2023 00:40
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*