- http://producingoss.com/en/getting-started.html
- http://ericholscher.com/blog/2013/sep/30/writing-beginners-guide-to-docs/
- http://opensource.com/law/13/9/open-curriculum-alternatives
- http://blog.smartbear.com/programming/14-ways-to-contribute-to-open-source-without-being-a-programming-genius-or-a-rock-star/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from datetime import datetime | |
from dateutil import tz | |
from_zone = tz.tzutc() | |
to_zone = tz.tzlocal() | |
#Get a naive datetime |
- E27340 and FFE7B1
- E68D68 and FFEAB7
- D3D1D0, A8371B and 1D191A
- F3EDDE and 373632
- 414142 and EEEEEF
- D5ECF2 and 020202
- 81A8C5 and 1F3A53
- 976597 and FBFBFB
- EBF1E6 and 536473
- 82D3D0 and FCFCFC
##Reads
- More Meaningful Typography
- Handling typography for responsive design | Tutorial
- How To Use Typography Effectively in Web Design
- How to make your typography responsive
- A Crash Course in Typography: Principles for Combining Typefaces
- 6 Ways To Improve Your Web Typography
- A 20 Minute Intro to Typography Basics
- Typographica
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import hashlib | |
def secure_password(password): | |
#This ensures that no two passwords have the same hash | |
salt = os.urandom(10) | |
return hashlib.sha256(salt + password).hexdigest() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /your/directory -type f -exec grep -H 'text-to-find-here' {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd your/Django/project/directory | |
~/path/to/AWS-ElasticBeanstalk-CLI-2.5.0/AWSDevTools/Linux/AWSDevTools-RepositorySetup.sh | |
git aws.config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import requests | |
from requests.exceptions import ConnectionError, HTTPError, Timeout | |
import sys | |
def minifyjs(content, target): | |
URL = 'http://closure-compiler.appspot.com/compile' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sqlite3 some.db .sch > schema.sql | |
sqlite3 some.db .dump > dump.sql | |
grep -v -f schema dump > data.sql |