http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/
This file contains 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
# Place this .htaccess file within your WordPress wp-admin directory | |
# This is the IP address of your local network. | |
# IP Whitelist XX.XXX.XXX.XXX | |
# Protect your wp-admin .htaccess file to a specific IP. | |
# Feel free to have multiple IP's. | |
# Simply copy and paste additional | |
# 'allow' rules beneath your first. | |
<Files "*.*"> |
This file contains 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
// http://css-tricks.com/make-client-side-data-available-server-side | |
var now = new Date(); | |
var time = now.getTime(); | |
time += 3600 * 1000; // one hour | |
now.setTime(time); | |
console.log(now.toGMTString()); |
This file contains 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
Oh Let me count the millisecond ways... | |
16.6ms = .0166 seconds | |
1second / .0166seconds = 60fps |
This file contains 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
# ------------------------------------------------------ | |
# strip .php files of file extension | |
# ------------------------------------------------------ | |
# rewrite strictly for files ending in .php | |
# Instead of your sites files as this => domain-name.com/file.php | |
# Rewrite so users can do this instead => domain-name.com/file | |
<IfModule mod_rewrite.c> | |
RewriteCond %{REQUEST_FILENAME}.php -f | |
RewriteRule ^(.*)$ $1.php [L] |
This file contains 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
// http://dbushell.com/2013/02/04/a-primer-to-front-end-svg-hacking | |
if (!Modernizr.svg) { | |
$('img[src$=".svg"]').each(function() { | |
$(this).attr('src', $(this).attr('src').replace('.svg', '.png')); | |
}); | |
} |
#My Performance Check
§ Resources:
→ http://aerotwist.com/blog/dont-guess-it-test-it
§ Network
This file contains 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 "compass/typography"; | |
// global vars | |
$base-font-size: 18px; | |
$base-line-height: 24px; | |
// establishes base grid | |
@include establish-baseline; | |
//@rhythm-borders(px, x, x) |
This file contains 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
<i class="macbook"></i> |
This file contains 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
# Description: | |
# Yeoman build automation for gh-page deployment. | |
# | |
# Credits: | |
# Made possible by @ChrisJeane and GrayGhostVisuals (@gryghostvisuals) | |
# | |
# How To: | |
# This Rakefile goes in the root directory outside of your | |
# yeoman project. after you've run 'yeoman build' you may then | |
# run 'rake build from your project's main root directory. |