I hereby claim:
- I am bentheax on github.
- I am baxnick (https://keybase.io/baxnick) on keybase.
- I have a public key ASCCfnDn9FeGCkl536NioVR_iteaT7Z7JjQVNs13hJugdwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| GPG_ENV=$( gpg-agent --daemon 2>/dev/null ) | |
| if [ $? == 0 ]; then | |
| eval $GPG_ENV | |
| else | |
| export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) | |
| fi | |
| export GPG_TTY=$(tty) | |
| function copy-code() { | |
| echo $1 |sed -e 's/[^ ]* //' |pbcopy |
There seem to be three main competitors here:
| require 'forwardable' | |
| class Deque | |
| extend Forwardable | |
| def_delegators :@deque, :push, :pop, :unshift, :shift | |
| def initialize | |
| @deque = ActualDeque.new | |
| end |