I hereby claim:
- I am rbanffy on github.
- I am rbanffy (https://keybase.io/rbanffy) on keybase.
- I have a public key whose fingerprint is 2A31 A20A D5CB 40B8 9A21 CE7B 4248 44B9 4187 7EEC
To claim this, I am signing this object:
| javascript:window.open("https://twitter.com/intent/tweet?url="+encodeURIComponent(document.location)+"&text="+encodeURIComponent(document.title),%20"_new") | |
| javascript:window.open("https://news.ycombinator.com/submitlink?u="+encodeURIComponent(document.location)+"&t="+encodeURIComponent(document.title)) | |
| python -c "import random, string; print(''.join(random.sample(string.digits + string.ascii_letters + '$&-_!', 20)))" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # This script is meant to be symlinked into your project's .git/hooks | |
| # or global ~/.githooks directory within projects you are working | |
| # with. | |
| # Note: linters should be configured by project-local config files, so | |
| # we can avoid changing this script. It's fine to change it, but, | |
| # remember if you do that, you're on your own. Python and JavaScript linters | |
| # will ideally run from project-specific folders so they are aware of the |
| #!/bin/bash | |
| set -euo pipefail | |
| function lint_added_file () { | |
| # This is called for every file added in the current branch. This | |
| # is the place we should feel more free to validate files more | |
| # rigorously so that nothing we don't like can enter the codebase. | |
| # Get the type of the file and choose what to do. |
| set-option -g mouse on | |
| set-option -g mode-style "fg=black,bg=cyan" | |
| # This works only on terminals that support overline. iTerm, sadly, isn't one. | |
| set-option -as terminal-overrides "*:Smol=\e[53m" | |
| set-option -gq status-style "fg=brightcyan,overline" |
| # Simple exercise for testing terminal support for some text styles | |
| python -c "print '\x1b[4munderline\x1b[0m \x1b[3mitalic\x1b[0m \x1b[1mbold\x1b[0m \x1b[53moverline\x1b[0m normal'" |
This is a SCRIPT-8 cassette.
| ### Keybase proof | |
| I hereby claim: | |
| * I am rbanffy on github. | |
| * I am rbanffy (https://keybase.io/rbanffy) on keybase. | |
| * I have a public key ASAewHcvJxwUP9dNnxVJFWO8vSP6wEg7QK0oPd9vDDXzdQo | |
| To claim this, I am signing this object: |
| echo vm-$(ifconfig | fgrep ether | head -n 1 | awk '{ print $2 }' | sed -r s/[:]/-/g) > /etc/hostname |
| #! /bin/sh | |
| curl -s -o /tmp/tf.zip $(curl -s https://www.terraform.io/downloads.html | grep darwin_amd64.zip | sed -e s/.*\=\"//g | sed s/\"\>.*//g) | |
| unzip /tmp/tf.zip | |
| sudo mv terraform $(which terraform) |