Skip to content

Instantly share code, notes, and snippets.

View dwcullop's full-sized avatar
💭
01010011 01101111 01101101 01100101 01110100 01101000 01101001 01101110 01100111

Darrin W. Cullop dwcullop

💭
01010011 01101111 01101101 01100101 01110100 01101000 01101001 01101110 01100111
View GitHub Profile
@dwcullop
dwcullop / index.html
Created August 7, 2016 23:39 — forked from anonymous/index.html
R41nb0wz!
<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">
<!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>
@dwcullop
dwcullop / .gitconfig
Last active April 3, 2024 12:27 — forked from pksunkara/config
Sample of git config file (Example .gitconfig)
[user]
name = Darrin W. Cullop
email = v-dacull@microsoft.com
[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
@dwcullop
dwcullop / ascii-binary-converter.js
Last active March 25, 2016 18:33 — forked from eyecatchup/ascii-binary-converter.js
JavaScript native ASCII to Binary / Binary to ASCII convert functions.
// ABC - a generic, native JS (A)scii(B)inary(C)onverter.
// (c) 2013 Stephan Schmitz <eyecatchup@gmail.com>
// License: MIT, http://eyecatchup.mit-license.org
// Original URL: https://gist.github.com/eyecatchup/6742657
//
// Slightly modified by Darrin W. Cullop (dexstar@gmail.com)
// URL: https://gist.github.com/dwcullop/590d84b51a13e0cdda74
var ABC = {
toAscii: function(bin) {
return bin.match(/[01]{8}/g)