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:
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() |
#!/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 |
I hereby claim:
To claim this, I am signing this object:
var nodemailer = require('nodemailer'); | |
var sesTransport = require('nodemailer-ses-transport'); | |
var smtpPassword = require('aws-smtp-credentials'); | |
var mailOptions = { | |
from: '[email protected]', | |
to: '[email protected]', | |
text: 'This is some text', | |
html: '<b>This is some HTML</b>', | |
}; |
This file is just used to control the name of the gist. |
console.log('BUILD env=%s', process.env.NODE_ENV) |
#!/usr/bin/env python | |
"""Download a file from ftp server.""" | |
import argparse | |
import logging | |
import os | |
from ftplib import FTP_TLS |
# Doit database files | |
.doit.db.* | |
# Terraform files created from templates | |
_*.tf |