Skip to content

Instantly share code, notes, and snippets.

View djuanit0x's full-sized avatar
🚀
The future is fast

djuanit0x djuanit0x

🚀
The future is fast
  • UCSD
  • San Diego, California
View GitHub Profile
@djuanit0x
djuanit0x / .profile
Created July 6, 2019 13:23 — 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
@djuanit0x
djuanit0x / click.gif
Last active September 28, 2019 21:06
㊙️djuanit0x's secret weapon
click.gif
@djuanit0x
djuanit0x / .bash_profile
Created October 16, 2018 17:26 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management