Skip to content

Instantly share code, notes, and snippets.

View roachhd's full-sized avatar

Lachlan Seward roachhd

View GitHub Profile
@roachhd
roachhd / index.md
Last active August 29, 2015 14:08
Versioneye dependency badge Nodejs

Dependency Status

[![Dependency Status](https://www.versioneye.com/nodejs/request/badge.svg)](https://www.versioneye.com/nodejs/request)
@roachhd
roachhd / addThese.html
Last active August 29, 2015 14:08
PageBoot Bootstrap and jQuery requirements.
<!-- CDN for bootstrap css and JS min files. Always the latest version -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<script type='text/javascript' src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<!-- CDN for jQuery JS min files. Always the 1.11.0 version -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
@roachhd
roachhd / Codeship-project-badges.md
Last active August 29, 2015 14:08
Codeship continuous intergration using Nodejs starter file

Want a sexy CodeShip badge?

Codeship Status for roachhd/travis-ci-what-why-how

Shit Yeah! ==

######How to add it:

@roachhd
roachhd / README.md
Created October 27, 2014 13:10
Plain old stock standard MARKDOWN cheats. This is intended as a quick reference and showcase. For more complete info, see [John Gruber's original spec](http://daringfireball.net/projects/markdown/) and the [Github-flavored Markdown info page](http://github.github.com/github-flavored-markdown/).
@roachhd
roachhd / gist1.js
Last active August 29, 2015 14:08
shut up just shut up shup! a little bookmarklet to make comments and discussions disappear.
var s = document.createElement('link');
s.rel='stylesheet';
s.type='text/css';
s.href="http://stevenf.com/pages/shutup/shutup-latest.css";
document.body.appendChild(s);
void(0);
@roachhd
roachhd / dabblet.css
Last active August 29, 2015 14:08 — forked from LeaVerou/dabblet.css
/**
* (C)Leanest CSS spinner ever
*/
@keyframes spin {
to { transform: rotate(1turn); }
}
.progress {
position: relative;
@roachhd
roachhd / index.md
Created October 28, 2014 12:00
Best Gist, Codepen, GitHub Organisations EVER!!! 🏆
@roachhd
roachhd / dabblet.css
Last active August 29, 2015 14:08 — forked from LeaVerou/dabblet.css
/**
* Border clipping with border-image
* Support: Chrome, Opera, Safari, Firefox. Cannot get it to work in IE11, even though it supports border-image…
* Note: In CSS Backgrounds & Borders 4, there will be a property to clip borders (likely called border-clip). Until then though…
* Author: Lea Verou
*/
div {
border-top: .2em solid; /* Sets the thickness, also serves as fallback when no border-image */
border-image: 100% 0 0 linear-gradient(90deg, currentColor 5em, transparent 0); /* 5em is the width of clipped border */
@roachhd
roachhd / dabblet.css
Last active August 29, 2015 14:08 — forked from LeaVerou/dabblet.css
/**
* animation-fill-mode with non-integer animation-iteration-count
*/
@keyframes foo { to { background: black }}
body {
animation: foo 3s .4 both linear;
}
@roachhd
roachhd / dabblet.css
Last active August 29, 2015 14:08 — forked from LeaVerou/dabblet.css
/**
* Bouncy bouncy
*/
@keyframes foo {
60%, 80%, to { margin-top: 400px; }
70% { margin-top: 330px; animation-timing-function: ease-in; }
90% { margin-top: 370px; animation-timing-function: ease-in; }
}