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
// ==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 |
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 id='wrapper'> | |
<div class='cool_btn1 green'> | |
<h1 class='top'>126 <i>Plays</i></h1> | |
<h2>H</h2> | |
</div> | |
<div class='cool_btn1 teal'> | |
<h1 class='top'>10k <i>Likes</i></h1> | |
<h2>U</h2> | |
</div> | |
<div class='cool_btn1 blue'> |
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
<h1>404</h1> | |
<div class="frame"> | |
<div></div> | |
<div></div> | |
<div></div> | |
</div> | |
<div class="caps"><img src="http://ademilter.com/caps.png" alt=""></div> | |
<canvas id="canvas"></canvas> |
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
#!/usr/bin/bash | |
# Clone rbenv and set it up to build versions of ruby | |
git clone git://github.com/sstephenson/rbenv.git .rbenv | |
mkdir -p ~/.rbenv/plugins | |
cd ~/.rbenv/plugins | |
git clone git://github.com/sstephenson/ruby-build.git | |
# Optional |
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
// brython.js www.brython.info | |
// version 1.0.20121216-222009 | |
// version compiled from commented, indented source files at http://code.google.com/p/brython/ | |
function abs(obj){ | |
if(isinstance(obj,int)){return int(Math.abs(obj))} | |
else if(isinstance(obj,float)){return int(Math.abs(obj.value))} | |
else{$raise('TypeError',"Bad operand type for abs(): '"+str(obj.__class__)+"'")} | |
} | |
function $alert(src){alert(str(src))} | |
function all(iterable){ |
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
<nav> | |
<ul> | |
<li><a href="#home">Home</a></li> | |
<li class="active"><a href="#like">Like</a></li> | |
<li><a href="#chat">Chat</a></li> | |
<li><a href="#help">Help</a></li> | |
</ul> | |
</nav> |
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
<ul class="aside"> | |
<li> | |
<span>flags:</span> | |
<div> | |
g<input type="checkbox" name="flags" value="g" /> | |
i<input type="checkbox" name="flags" value="i" /> | |
m<input type="checkbox" name="flags" value="m" /> | |
y<input type="checkbox" name="flags" value="y" id="y" /> | |
</div> | |
</li> |
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="share"> | |
<a href="#">Share</a> | |
<div> | |
<ul> | |
<li><a href="#">google+</a></li> | |
<li><a href="#">facebook</a></li> | |
<li><a href="#">twitter</a></li> | |
</ul> | |
</div> | |
</div> |