Skip to content

Instantly share code, notes, and snippets.

@jayrgee
jayrgee / kanji.txt
Created December 5, 2014 03:52
kanji breakdown of japanese cities
京都市
東京
東京都
東京市

Open the solution in Visual Studio 2013

  1. Select File | Add to Source Control
  2. That creates a local GIT repository

Surf to GitHub

  1. Create a new repository DO NOT SELECT Initialize this repository with a README
  2. That creates an empty repository with no Master branch
@jayrgee
jayrgee / index.html
Created March 11, 2015 13:40
membership counter membership counter // source http://jsbin.com/lerodonotu
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="membership counter">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset=utf-8 />
<title>membership counter</title>
</head>
<body>
<ul>
@jayrgee
jayrgee / index.html
Created March 12, 2015 14:49
membership counter membership counter // source http://jsbin.com/focizo
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="membership counter">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset=utf-8 />
<title>membership counter</title>
</head>
<body>
<ul id="ladder">
@jayrgee
jayrgee / index.html
Created March 12, 2015 15:02
membership counter membership counter // source http://jsbin.com/focizo
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="membership counter">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset=utf-8 />
<title>membership counter</title>
</head>
<body>
<ol id="ladder">
@jayrgee
jayrgee / index.html
Created March 13, 2015 02:23
membership counter membership counter // source http://jsbin.com/focizo
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="membership counter">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset=utf-8 />
<title>membership counter</title>
<style id="jsbin-css">
h1 { font-size: 90% }
</style>
@jayrgee
jayrgee / index.html
Last active August 29, 2015 14:17
2015 afl membership ladder2015 afl membership ladder// source http://jsbin.com/focizo
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="2015 afl membership ladder">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset=utf-8 />
<title>2015 afl membership ladder</title>
<style id="jsbin-css">
h1 { font-size: 90% }
</style>
@jayrgee
jayrgee / index.html
Created March 15, 2015 02:35
memberships by afl club 2015 memberships by afl club 2015 // source http://jsbin.com/focizo
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta name="description" content="memberships by afl club 2015">
<meta charset=utf-8 />
<title>memberships by afl club 2015</title>
<link rel="stylesheet" href="main.css">
<style id="jsbin-css">
html, body {
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<style id="jsbin-css">
html, body {
font-family: sans-serif;
}
@jayrgee
jayrgee / defaults-overrides.md
Created April 24, 2016 22:32 — forked from ericelliott/defaults-overrides.md
ES6 defaults / overrides pattern

ES6 Defaults / Overrides Pattern

Combine default parameters and destructuring for a compact version of the defaults / overrides pattern.

function foo ({
    bar = 'no',
    baz = 'works!'
  } = {}) {