This is a React hook that creates a timeout, and provides functions for pausing, resuming, and resetting that timeout.
View vec2 stuff
//: A UIKit based Playground for presenting user interface | |
import UIKit | |
import PlaygroundSupport | |
import CoreGraphics | |
import simd | |
/// # Some Convencience Extensions |
View for_each_db.js
db = db.getSiblingDB("admin"); | |
dbs = db.runCommand({ "listDatabases": 1 }).databases; | |
// Iterate through each database and get its collections. | |
dbs.forEach(function(database) { | |
db = db.getSiblingDB(database.name); | |
}); |
View iterable-tree.md
Instantiate this class around a tree-like object, e.g.
const filetree = new IterableTree({
name : "Desktop",
children : [
{ name : "funny.gif" },
{ name : "resume.pdf" },
{ name : "memes",
children : [
{ name : "distracted-boyfriend.png" },
View outgenius.css
/* | |
ADD THESE LINES TO YOUR SITE'S STYLESHEETS TO HIDE THE GENIUS WEB ANNOTATOR STUFF. | |
*/ | |
genius-back-page, genius-back-page-mobile-clickjacker, genius-pre-annotation-prompt { | |
display: none; | |
visibility: hidden; | |
opacity: 0; | |
position: absolute; | |
left: -10000px; |
View gist:9997325
RESUMÉ: David Miller
Profile
Designer/developer fascinated by the promise of the web. Front end proficiency strong. Some excursions through full-stack development/deployment. Four years running successful freelance business. Youth educator in media-literacy focussed summer program. Fascinated by the way we use technology to engage with the world around us. Philosophy B.A. with breadth and depth of hands-on technical experience in design, complex problem-solving and analysis, and online technologies. Managerial and team experience as editor of student publications. Occasional musician.
Professional Experience
Freelance designer/developer, orangetronic.com — 2006 - present
View mod_rewrite gold
RewriteCond %{HTTP_HOST} ^mydomainname\.com$ [OR] | |
RewriteCond %{HTTP_HOST} ^www\.mydomainname\.com$ | |
RewriteCond %{REQUEST_URI} !^/subfoldername/ | |
RewriteRule (.*) /subfoldername/$1 | |
#from http://stackoverflow.com/a/11090555/2776197 |
View .shellthings
# Download all the images from a webpage | |
# Usage: imagegrab URL | |
function imagegrab () { | |
wget -nd -r -l 2 -A jpg,jpeg,png,gif $1 | |
} | |
# Grab all the colours from a stylesheet and dump them in a snippets file | |
# Totally useless with minified stylesheets. | |
# Usage: stylegrab styleSheetURL styleExpression | |
function stylesgrab () { |
View index.html
<header> | |
<div class="button first" href="#1">1</div> | |
<a class="button second" href="#2">2</a> | |
<a class="button third" href="#3">3</a> | |
<a class="button fourth" href="#4">4</a> | |
</header> | |
<div id="container"> |
View pageslider.html
<div class="navigation"> | |
<ul> | |
<li> | |
<a href="#left" class="link-left">Look at that left page</a> | |
</li> | |
<li> | |
<a href="#middle" class="link-middle">Look at that middle page</a> | |
</li> | |
<li> | |
<a href="#right" class="link-right">Look at that right page</a> |
NewerOlder