Skip to content

Instantly share code, notes, and snippets.

View benekastah's full-sized avatar

Paul Harper benekastah

  • San Francisco
View GitHub Profile
@benekastah
benekastah / .bash_profile
Last active February 13, 2018 02:16 — forked from bmhatfield/.profile
Automatic Git commit signing with GPG on OSX
# In order for gpg to find gpg-agent, gpg-agent must be running, and there must be an env
# variable pointing GPG to the gpg-agent socket. This little script, which must be sourced
# in your shell's init script (ie, .bash_profile, .zshrc, whatever), will either start
# gpg-agent or set up the GPG_AGENT_INFO variable if it's already running.
# Add the following to your shell init to set up gpg-agent automatically for every shell
if [ -f ~/.gnupg/.gpg-agent-info ] && [ -n "$(pgrep gpg-agent)" ]; then
source ~/.gnupg/.gpg-agent-info
export GPG_AGENT_INFO
else
@benekastah
benekastah / dom.js
Created March 8, 2017 05:18 — forked from anonymous/dom.js
A simple dom manipulation and rendering library
(function (self) {
var old$ = self.$;
var $ = self.$ = document.querySelector.bind(document);
$.noConflict = function () {
self.$ = $.old$;
return $;
};
@benekastah
benekastah / dom.js
Created March 8, 2017 05:18 — forked from anonymous/dom.js
A simple dom manipulation and rendering library
(function (self) {
var old$ = self.$;
var $ = self.$ = document.querySelector.bind(document);
$.noConflict = function () {
self.$ = $.old$;
return $;
};