I hereby claim:
- I am ffleming on github.
- I am fsf (https://keybase.io/fsf) on keybase.
- I have a public key whose fingerprint is E307 DE3F 4A70 7D15 9A60 2C71 3D97 B822 CEC3 9439
To claim this, I am signing this object:
| " Name your partials here. We'll look in e.g. ~/.vimrc.bundles, ~/.vimrc.keymaps, etc | |
| " Order matters! | |
| function! SourceFiles() | |
| return ['bundles', 'functions', 'sets', 'aesthetics', 'keymaps', 'autocommands'] | |
| endfunction | |
| " Looks in e.g. ~/.vimrc.bundles | |
| for file in map(SourceFiles(), '"~/.vimrc." . (v:val)') | |
| if filereadable(expand(file)) | |
| exec('source ' . file) |
I hereby claim:
To claim this, I am signing this object:
| require 'open3' | |
| RSpec.describe 'security' do | |
| it 'should pass the audit' do | |
| out, err, status = Open3.capture3('bundle-audit') | |
| expect(out.strip).to eq 'No vulnerabilities found' | |
| expect(status).to eq 0 | |
| end | |
| end |
| #!/usr/bin/env python3 | |
| # The bcrypt import will break if you call this file `bcrypt` or `bcrypt.py`. | |
| import argparse | |
| import bcrypt | |
| import uuid | |
| parser = argparse.ArgumentParser(description='Use bcrypt to hash a password') | |
| parser.add_argument('password', metavar='PASS', type=str, action='store', | |
| default='', nargs='?', |