Below are elements that are expected to be in a Photoshop pattern library file.
- Headers (h1 - h5)
- Paragraphs
- Lead Copy
- Unordered List
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
Topics
SUDO defaults write com.apple.Finder AppleShowAllFiles YES; killall Finder |
Goliath National Bank # Client Name | |
www.example.com # Domain I already own | |
goliath.example.com # Desired subdomain for client's documentation | |
goliath.example.com # AWS S3 Bucket Name | |
0123 # AWS Key | |
3210 # AWS Secret Key |
{ "Statement": [ | |
{ "Effect": "Allow", | |
"Action": ["s3:GetObject", "s3:GetBucketWebsite"], | |
"Resource": [ "arn:aws:s3:::goliath.example.com/*" ] | |
} | |
]} |
Host Name: goliath.example.com | |
AWS Key: 0123 | |
AWS Secret Key: 3210 | |
Bucket Name: goliath.example.com | |
Optional AWS S3 endpoint: I left it as the default of ‘s3’ | |
Optional syslog UDP end-point: I left it as the default of ‘syslog.s3auth.com:514`. |
if application "Spotify" is running then | |
tell application "Spotify" to playpause | |
else if application "iTunes" is running then | |
tell application "iTunes" to playpause | |
end if | |
if application "Spotify" is running then | |
tell application "Spotify" to next track | |
else if application "iTunes" is running then | |
tell application "iTunes" to next track |
# Amazon S3 settings for Paperclip uploads
config.paperclip_defaults = {
:storage => :s3,
:s3_protocol => 'https',
:s3_credentials => {
:bucket => ENV['AWS_BUCKET'],
:access_key_id => ENV['AWS_ACCESS_KEY_ID'],
:secret_access_key => ENV['AWS_SECRET_ACCESS_KEY']
}