Skip to content

Instantly share code, notes, and snippets.

@repinel
repinel / .profile
Created February 16, 2017 00:36 — 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
require 'bundler/inline'
gemfile(true) do
source 'https://rubygems.org'
gem 'benchmark-ips'
end
Benchmark.ips do |x|
a = 10_000_000.times.map { |i| [i, i+2] }
@repinel
repinel / ubuntu_minimal.sh
Created February 20, 2016 21:02
My Ubuntu Minimal Desktop script
#!/bin/bash
#
# Ubuntu Minimal Desktop v2.4.1
# Roque Pinel
#
# Based on:
# wget http://minimal-desktop.sublevel21.com/latest-stable.sh
#
@repinel
repinel / lirc
Created February 20, 2016 20:39
My Linux Infrared Remote Control (LIRC) configuration file
# LIRC Configuration 1.0
# Roque Pinel
begin
prog = irexec
button = MENU
config = xte 'key XF86AudioMedia'
# config = xte 'key XF86Tools'
end