I hereby claim:
- I am jcollado on github.
- I am jcollado (https://keybase.io/jcollado) on keybase.
- I have a public key whose fingerprint is 713E BEBF 3F84 F828 E373 34D6 0DDA 0A66 7FAB E1D2
To claim this, I am signing this object:
| # Doit database files | |
| .doit.db.* | |
| # Terraform files created from templates | |
| _*.tf |
| #!/usr/bin/env python | |
| """Download a file from ftp server.""" | |
| import argparse | |
| import logging | |
| import os | |
| from ftplib import FTP_TLS |
| console.log('BUILD env=%s', process.env.NODE_ENV) |
| This file is just used to control the name of the gist. |
| var nodemailer = require('nodemailer'); | |
| var sesTransport = require('nodemailer-ses-transport'); | |
| var smtpPassword = require('aws-smtp-credentials'); | |
| var mailOptions = { | |
| from: 'from@example.com', | |
| to: 'to@example.com', | |
| text: 'This is some text', | |
| html: '<b>This is some HTML</b>', | |
| }; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| """Look for sqlite database files and check their integrity.""" | |
| import argparse | |
| import logging | |
| import os | |
| import sqlite3 | |
| from contextlib import closing | |
| from fnmatch import fnmatch |
| class Mock(object): | |
| def __init__(self, *args): | |
| pass | |
| def __getattr__(self, name): | |
| return Mock | |
| for mod_name in ('pygtk', 'gtk', 'gobject', 'argparse'): | |
| sys.modules[mod_name] = Mock() |