http://rmurphey.com/blog/2015/03/23/a-baseline-for-front-end-developers-2015
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
#Boilerplate------------------------------------ | |
# Apache configuration file | |
# httpd.apache.org/docs/2.2/mod/quickreference.html | |
# Note .htaccess files are an overhead, this logic should be in your Apache | |
# config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html | |
# Techniques in here adapted from all over, including: |
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
<!-- | |
Microformat Data | |
enabling better location based search results | |
--> | |
<div class="microdata" itemscope itemtype="http://schema.org/Organization"> | |
<!-- Short Name - Hidden Attribute --> | |
<span itemprop="name" content="ORGANIZATION NAME"/> | |
<!-- Full name marked as Legal Name --> | |
<span itemprop="legalName">LONG OFFICIAL ORGANIZATION NAME</span> | |
<!-- Logo - Hidden Attribute --> |
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
/** | |
* Super Awesome CSV download Maker | |
* | |
* based heavily on the sweet new html5 download writeup by html5rocks | |
* source: http://updates.html5rocks.com/2011/08/Downloading-resources-in-HTML5-a-download | |
* | |
* Special Thanks to ZABB.co for the quick table parsing. | |
*/ | |