- 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
#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
<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
{ | |
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
// 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
// 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
// ββββββββββββββ | |
// β Multi-Col: β | |
// β Good for β | |
// β Pinterest β | |
// β Style. β | |
// ββββββββββββββ | |
.masonry { | |
column-count: 4; | |
column-gap: $gutter; |
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
// ββββββββββββββ | |
// β CSS Grid: β | |
// β Good for β | |
// β spanning β | |
// β horizontal β | |
// ββββββββββββββ | |
.masonry { | |
display: grid; | |
grid-template-columns: repeat(4, 1fr); |
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
<div class="product-options"> | |
{% for option in product.options_with_values %} | |
<div class="product-option"> | |
<h4 class="txt-size-0">{{ option.name }}</h4> | |
<select class="product-option-select js-variant-select" data-axis="{{ option.name | downcase }}"> | |
{% for value in option.values %} | |
<option {% if option.selected_value == value %}selected{% endif %}> | |
{{ value }} | |
</option> |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta content="IE=edge" http-equiv="X-UA-Compatible"> | |
<meta name="viewport" content="width=device-width, user-scalable=no"> | |
<title>Your Title</title> | |
<link rel="shortcut icon" href="/img/favicon.ico"> | |
<!-- get calcite-web css from the cdn (use latest version) --> | |
<link rel="stylesheet" href="/style.min.css?v1.0.0"> |