- Write photo list Immediately
- Follow up with Morgan
- Invite Paul to Studio
- Print Thank You Cards
- Get Money Out of Paypal
- Hang SunSial
- Hang Lights
- Go to Footwise?
- Buy Shoes
- Buy Tie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get Nodes | |
var buttonA = document.getElementById('a'); | |
var buttonB = document.getElementById('b'); | |
// Define functions | |
var resultOne = function () { | |
alert('Thing One') | |
} | |
var resultTwo = function () { | |
alert('Thing Two') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add.js | |
export default function (a, b) { | |
return a + b | |
} | |
// test.js | |
var test = require('tape'); | |
import add from './add'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
window.onload = (() => { | |
var sectorsArr = document.querySelectorAll('.squeezebox-sector'); | |
var sectors = calcite.nodeListToArray(sectorsArr); | |
var sectorsUnderlayArr = document.querySelectorAll('.squeezebox-sector-underlay'); | |
var sectorsUnderlay = calcite.nodeListToArray(sectorsUnderlayArr); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span class="filter-dropdown-active">Contributing<a class="filter-dropdown-remove" href="#" data-item-id="0"></a></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#target indesign; | |
main(); | |
function fuzzyIndex(list, string) { | |
for(var i = 0; i < list.length; i++) { | |
if(list[i].indexOf(string) != -1) { | |
return i; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
joseki-party: { | |
// name in url, generated on new game | |
ironrabbit-fancier: { | |
// Gets set when one player passes their turn. Reflects in the UI. | |
// Two passes end the game | |
pass: { | |
black: false, | |
white: false | |
} | |
// If a player resigns, this gets marked |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
joseki-party: { | |
// name in url, generated on new game | |
ironrabbit-fancier: { | |
// Gets set when one player passes their turn. Reflects in the UI. | |
// Two passes end the game | |
pass: { | |
black: false, | |
white: false | |
} | |
// If a player resigns, this gets marked |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch -D temp-release-branch | |
git checkout -b temp-release-branch | |
grunt prepublish | |
git add -f dist/ | |
git commit -m "Release" | |
git push upstream temp-release-branch | |
npm run gh-release | |
git checkout master | |
git branch -D temp-release-branch | |
git push upstream :temp-release-branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var md = require('markdown-it')({ | |
html: true, | |
linkify: true, | |
typographer: true, | |
quotes: '“”‘’' | |
}) | |
.use(require('markdown-it-highlightjs')) | |
.use(require('markdown-it-footnote')) | |
.use(require('markdown-it-emoji')) | |
.use(require('markdown-it-container'), 'figure') |