I hereby claim:
- I am autoferrit on github.
- I am autoferrit (https://keybase.io/autoferrit) on keybase.
- I have a public key whose fingerprint is C5C6 B1CB A1A9 4C8F 7DFB AA54 3EAB 239B C112 0C02
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# !/usr/bin/env python | |
from distutils.core import setup | |
setup( | |
name='package_name', | |
packages=['package_name'], | |
author='Audrey Roy Greenfeld', | |
author_email='[email protected]', | |
url='https://github.com/audreyr/cookiecutter-pypackage', | |
) |
{"lastUpload":"2017-05-16T23:18:05.477Z","extensionVersion":"v2.7.0"} |
#|/bin/bash | |
# | |
# use: | |
# $ ./archify image.jpg [blurring] [logowidth] | |
# blurring is an integer from 0 (no) to 8 (thick greasy lens) | |
# logowidth is in pixels | |
# | |
bg=$1 | |
blur=${2:-0} | |
logowidth=${3:-350} |
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
<?php | |
function test1( $string ) | |
{ | |
return strtoupper( $string[0] ) === $string[0]; | |
} | |
function test2( $string ) | |
{ | |
return preg_match( '/^[A-Z]/', $string ); |
#!/usr/bin/python | |
import string | |
from random import choice | |
print ''.join([choice(string.letters + string.digits + string.punctuation) for i | |
in range(15)]) |