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
| <!doctype html public "lice"> | |
| <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
| <!-- Consider adding a manifest.appcache: h5bp.com/d/Offline --> | |
| <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>H5BP Redux - HTML5 Boilerplate on steroids</title> |
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
| <?php | |
| /** | |
| * BoxBilling | |
| * | |
| * LICENSE | |
| * | |
| * This source file is subject to the license that is bundled | |
| * with this package in the file LICENSE.txt | |
| * It is also available through the world-wide-web at this URL: | |
| * http://www.boxbilling.com/LICENSE.txt |
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
| <script src="https://raw.github.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script> |
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
| <div class="gistLoad" data-id="GistID" id="gist-GistID">Loading ....</div> |
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
| <!doctype html><html><head> | |
| <link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css' /></head> | |
| <div> | |
| <style>body,html{background-color:brown;font-family:Titillium,arial,sans-serif;font-weight:400;color:pink;}a{font-family:Titillium,arial,sans-serif;font-weight:600;color:white;}</style> | |
| <body>HI! This is a <a href="#">link</a></body> | |
| </div></body></html> |
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
| <!doctype html> ===================================DECLARE DOCUMENT TYPE | |
| --|----^<html> ====================================TELL MACHINE/PARSER THAT 'THIS BELOW IS FRIGGIN H-T-M-TO THE LIZZO' | |
| --|----|---<head> =================================VERY POWERFUL THIS HERE, THAT'S WHY MANY BLOGS ETC. DON'T ALLOW ACCESS TO IT. | |
| --|----|---|------###_Head_Content_### ============HOWEVER, ALL PURE HTML FILES HAVE A HEAD, EVEN IF THERE ARE NO CONTENTS IN IT | |
| --|----|---</head> ================================THE SLASH (/) TELLS MACHINE 'YO YO, END OF THIS SECTION, DAWG' | |
| --|----|--------<body>=============================BODY IS LIKE YOUR BODY. WHAT WITH ITS ORGANS - ESPECIALLY THE HEART. | |
| --|----|--------|-----##Body Content## ============ACTUALLY, THAT'S A GOOD ONE. <HEAD> HAS THE BRAIN OF THE CODE, | |
| --|----|--------</body>============================<BODY> THE HEART OF IT, AND SPLEEN,HOWEVER.... | |
| --|----^</html>====================================THIS - IF IT WERE A LIVING BEING, WOULD NEED A SKELETON, NO? IT DOES. IT'S |
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
| <!doctype html><html><head> | |
| <link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css' /></head> | |
| <div> ⇄ • | |
| <style>body,html{background-color:brown;font-family:Titillium,arial,sans-serif;font-weight:400;color:pink;}a{font-family:Titillium,arial,sans-serif;font-weight:600;color:white;}</style> | |
| <body>HI! This is a ∶ <3 <a href="#">link</a></body> |
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
| {"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
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
| // ==UserScript== | |
| // @name Use Markdown, sometimes, in your HTML. | |
| // @author Paul Irish <http://paulirish.com/> | |
| // @link http://git.io/data-markdown | |
| // @match * | |
| // ==/UserScript== | |
| // If you're not using this as a userscript just delete from this line up. It's cool, homey. |
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
| # | |
| # This script creates a repository and sets it up with a post receive | |
| # hook that checks out the code to the desired directory. | |
| # | |
| # Really nice for setting up an easy way to push code to a remote | |
| # server without lots of overhead. | |
| # | |
| # After running this script simply add a remote locally like | |
| # | |
| # git remote add web ssh://you@server/path/to/repo.git |