Skip to content

Instantly share code, notes, and snippets.

View paulmolluzzo's full-sized avatar

Paul Molluzzo paulmolluzzo

View GitHub Profile
@paulmolluzzo
paulmolluzzo / author-amend.sh
Created February 16, 2017 01:15 — forked from TheCodedSelf/author-amend.sh
Change all commits with author email "[email protected]" to "[email protected]"
#!/bin/sh
git filter-branch --env-filter '
OLD_EMAIL="[email protected]"
CORRECT_NAME="The Dark Knight"
CORRECT_EMAIL="[email protected]"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
@paulmolluzzo
paulmolluzzo / methodology.js
Last active October 18, 2020 02:41
Missing HTML Props
const latestAttrs = {
"*": [
"className",
"dangerouslySetInnerHTML",
"dir",
"draggable",
"hidden",
"htmlFor",
"id",
"is",
@paulmolluzzo
paulmolluzzo / later.sh
Created May 16, 2017 13:34
rm all frozen now deployments
now ls | grep FROZEN | awk '{print $1}' | xargs now rm -y