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
// ABC - a generic, native JS (A)scii(B)inary(C)onverter. | |
// (c) 2013 Stephan Schmitz <[email protected]> | |
// License: MIT, http://eyecatchup.mit-license.org | |
// Original URL: https://gist.github.com/eyecatchup/6742657 | |
// | |
// Slightly modified by Darrin W. Cullop ([email protected]) | |
// URL: https://gist.github.com/dwcullop/590d84b51a13e0cdda74 | |
var ABC = { | |
toAscii: function(bin) { | |
return bin.match(/[01]{8}/g) |
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
[user] | |
name = Darrin W. Cullop | |
email = [email protected] | |
[core] | |
editor = \"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"-n\" | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol,space-before-tab | |
tabwidth=4 | |
excludesfile = ~/.gitignore | |
symlinks = false |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" rel="stylesheet" type="text/css"> | |
<title>JS Bin</title> | |
</head> |
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
<div class="container"> | |
<div class="well container-fluid"> | |
<div class="row"> | |
<div class="col-xs-12 col-sm-6"> | |
<div class="h1 rbBase rainbowShadows">Hello, World!</div> | |
<div class="h3 rbBase rbStacked">Hello, World!</div> | |
<div class="h2 rbBase rbFuzz">Hello, World!</div> | |
<div class="h1 rbBase rbFuzz2 rbTextDark">Hello, World!</div> | |
</div> | |
<div class="col-xs-12 col-sm-6"> |