Skip to content

Instantly share code, notes, and snippets.

@kaezarrex
kaezarrex / Lock.js
Created November 9, 2012 17:11
Javascript Singleton Lock
var aquired = false,
lock;
function Lock() {
if (!lock) lock = this;
return lock;
}
@kaezarrex
kaezarrex / index.html
Last active December 11, 2015 01:08
Drawing with Font Awesome
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width">
<title>Font Awesome Drawing</title>
<link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
</head>
<body>
@kaezarrex
kaezarrex / index.html
Last active December 11, 2015 01:09
Font Awesome buttons
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width">
<title>Social Buttons</title>
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
</head>
<body>
@kaezarrex
kaezarrex / index.html
Last active December 11, 2015 22:09
Houndstooth text mask
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Houndstooth</title>
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-size: 100px;
@kaezarrex
kaezarrex / index.html
Last active December 17, 2015 00:10
CSS Transparency
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />
<title>CSS Transparency</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="img-wrap1 tile">
@kaezarrex
kaezarrex / README.md
Last active June 13, 2018 18:40
Reconfigure etcd to use client authentication
@kaezarrex
kaezarrex / README.md
Last active January 27, 2019 04:34
SCRIPT-8
@kaezarrex
kaezarrex / README.md
Last active June 2, 2019 03:39
GTFS Viewer

Upload a GTFS file that contains shapes.txt. Example GTFS files can be found at TransitFeeds.

@kaezarrex
kaezarrex / README.md
Last active November 26, 2019 00:35
Park walk

Auto-centering and auto-scaling topojson data with an inkpen-style drawing animation.