- Detect critical path CSS and insert in top of page
- Lazy-load CSS
- Lazy-load JavaScript
- Modernizr for feature detection
- Serve static assets from a CDN (e.g. S3 + Cloudfront)
- Cache bust assets and rewrite references
- Optimize images
- Compile Sass
- Prefetch DNS
- Include touch icons and favicon
- GitHub Staff
- https://www.smockle.com/
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlackColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NGMCAw | |
IDAAEAGAAtIQERITWiRjbGFzc25hbWVYJGNsYXNzZXNXTlNDb2xvcqISFFhOU09iamVj | |
dF8QD05TS2V5ZWRBcmNoaXZlctEXGFRyb290gAEIERojLTI3O0FITltiaWttcn2GjpGa |
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
hub push | |
hub checkout master | |
hub pull | |
hub checkout <feature_branch> | |
hub pull-request -m "description" | |
hub checkout master | |
hub merge <pr_url> | |
hub push | |
hub push origin :<feature_branch> | |
hub branch -d <feature_branch> |
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
get("/api/google/sheets/resources") | |
.then(JSON.parse) | |
.then(function (context) { | |
return handlebar("#template", "#output", context); | |
}) | |
.then(function (context) { | |
return pourover(context); | |
}) | |
.then(function (view) { | |
return linkify(view); |
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
mail: { | |
from: process.env.SES_FROM_ADDRESS, | |
transport: 'SMTP', | |
host: process.env.SES_HOST, | |
options: { | |
service: 'SES', | |
from: process.env.SES_FROM_ADDRESS, | |
host: process.env.SES_HOST, | |
auth: { | |
user: process.env.SES_ACCESS_ID, |
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
ISC-Based License For Creative Works | |
Copyright (c) 2014, Clay Miller <[email protected]> | |
Permission to use, copy, modify, and/or distribute these creative works for any | |
purpose with or without fee is hereby granted, provided that the above copyright | |
notice and this permission notice appear in all copies. | |
THESE CREATIVE WORKS ARE PROVIDED "AS IS" AND THE CREATOR DISCLAIMS ALL | |
WARRANTIES WITH REGARD TO THESE CREATIVE WORKS INCLUDING ALL IMPLIED WARRANTIES |
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
# Copy this file to: | |
# | |
# (OS X) | |
# ~/Library/Preferences/Adobe Photoshop CC 2014 Settings/PSUserConfig.txt | |
# | |
# (Windows) | |
# \Users\<current user>\AppData\Roaming\Adobe\Adobe Photoshop CC\Adobe Photoshop CC Settings\PSUserConfig.txt | |
# Overscroll Always | |
AllowOverScrolling 2 |
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
sudo apt-get update 2> /tmp/keymissing; for key in $(grep "NO_PUBKEY" /tmp/keymissing |sed "s/.*NO_PUBKEY //"); do echo -e "\nProcessing key: $key"; sudo gpg --keyserver pgpkeys.mit.edu --recv $key && sudo gpg --export --armor $key | sudo apt-key add -; done |
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
MIT-Based License For Creative Works | |
Copyright (c) 2014 Clay Miller | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of these creative works (the "Works"), to deal in the Works | |
without restriction, including without limitation the rights to use, | |
copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Works, and to permit persons to whom the Works are | |
furnished to do so, subject to the following conditions: |