Skip to content

Instantly share code, notes, and snippets.

@rowanhogan
rowanhogan / google-fonts.json
Created May 24, 2022 00:30
Key/Value list of Google Fonts (as of 24/05/22)
[
{
"name": "ABeeZee",
"value": "abeezee"
},
{
"name": "Abel",
"value": "abel"
},
{
@rowanhogan
rowanhogan / leaderboard.html
Last active March 28, 2018 23:21
EDH charity leaderboard within a campaign
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Charity Leaderboard</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/numbro/2.0.5/numbro.min.js"></script>
<style type='text/css'>
@rowanhogan
rowanhogan / index.html
Created July 31, 2014 04:37
Simple CSS-only fixed table header
<!DOCTYPE html>
<html>
<head>
<title>Table test</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
@rowanhogan
rowanhogan / gist:7444095
Created November 13, 2013 05:14
Simple Morris.js example with time range select
data = [
{ y: '2006', a: 100, b: 90 },
{ y: '2007', a: 75, b: 65 },
{ y: '2008', a: 50, b: 40 },
{ y: '2009', a: 75, b: 65 },
{ y: '2010', a: 50, b: 40 },
{ y: '2011', a: 75, b: 65 },
{ y: '2012', a: 100, b: 90 }
]