I hereby claim:
- I am augustoroman on github.
- I am augusto (https://keybase.io/augusto) on keybase.
- I have a public key ASBLbgKIxWOvrsYkY8_8OWI1SQ6p8Vdp4mdM1vKQsbkOego
To claim this, I am signing this object:
| #!/bin/bash -e | |
| TZ=UTC git --no-pager show \ | |
| --quiet \ | |
| --abbrev=12 \ | |
| --date='format-local:%Y%m%d%H%M%S' \ | |
| --format="%cd-%h" |
| alias winkb='hidutil property --set '"'"'{"UserKeyMapping":[ | |
| {"HIDKeyboardModifierMappingSrc":0x7000000e2, "HIDKeyboardModifierMappingDst":0x7000000e3}, | |
| {"HIDKeyboardModifierMappingSrc":0x7000000e3, "HIDKeyboardModifierMappingDst":0x7000000e2}, | |
| {"HIDKeyboardModifierMappingSrc":0x7000000e4, "HIDKeyboardModifierMappingDst":0x7000000e6}, | |
| {"HIDKeyboardModifierMappingSrc":0x7000000e6, "HIDKeyboardModifierMappingDst":0x7000000e7} | |
| ]}'"'"'' | |
| alias mackb='hidutil property --set '"'"'{"UserKeyMapping":[]}'"'"'' |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <time.h> | |
| #include "crypto_secretbox.h" | |
| #include "randombytes.h" | |
| // install nacl: https://nacl.cr.yp.to/install.html | |
| // export NACL_DIR=path/to/nacl/build/<machinename>/ |
| # This is for OSX | |
| tput colors > /dev/null | |
| if [ "$?" == "0" ]; then | |
| color_prompt="yes" | |
| fi | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxCxDxBxegedabagacad |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Inspired by http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html | |
| # References: | |
| # http://misc.flogisoft.com/bash/tip_colors_and_formatting | |
| # http://ascii-table.com/ansi-escape-sequences.php | |
| T='gYw' # The test text |
| package cmd_signal_test | |
| import ( | |
| "github.com/gobs/cmd" | |
| "os" | |
| "os/signal" | |
| "testing" | |
| "time" | |
| ) |