-
Tech Overview
- Publishing pipeline. What happens when you click "publish"
-
Requirements to publish.
This file contains 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
// Converting to/from roman numerals (1-4999) | |
const map = { | |
1: 'I', | |
5: 'V', | |
10: 'X', | |
50: 'L', | |
100: 'C', | |
500: 'D', | |
1000: 'M', |
This file contains 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
# Basic directory structure | |
mkdir -p dist src | |
# Install and use the latest node 10.x.x | |
nvm install 10 | |
nvm use 10 | |
# Create package.json | |
node init -y |
This file contains 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
[ | |
{ | |
"category": "Cc", | |
"entities": [ | |
"Tab" | |
], | |
"set": "mmlextra", | |
"title": "CHARACTER TABULATION", | |
"dec": "#9", | |
"hex": "#x00009", |
- The Blessing Song — Gary Bartz
- Come in to Knowledge — Ramp
- Africano — Earth Wind & Fire
- My People… Hold On — Eddie Kendricks
- King Heroin — James Brown
- Lord Help Me — Donny Hathaway
- Blessed — The Emotions
- See the Light — Earth Wind & Fire
- When There is No Sun — Sun Ra
- Visions (Inner Visions Live) — Stevie Wonder
This file contains 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
[{"url":"https://api.github.com/repos/AltSchool/ops-ui/pulls/102","id":37511076,"html_url":"https://github.com/AltSchool/ops-ui/pull/102","diff_url":"https://github.com/AltSchool/ops-ui/pull/102.diff","patch_url":"https://github.com/AltSchool/ops-ui/pull/102.patch","issue_url":"https://api.github.com/repos/AltSchool/ops-ui/issues/102","number":102,"state":"open","locked":false,"title":"Feature/exports","user":{"login":"djtriptych","id":1135131,"avatar_url":"https://avatars.githubusercontent.com/u/1135131?v=3","gravatar_id":"","url":"https://api.github.com/users/djtriptych","html_url":"https://github.com/djtriptych","followers_url":"https://api.github.com/users/djtriptych/followers","following_url":"https://api.github.com/users/djtriptych/following{/other_user}","gists_url":"https://api.github.com/users/djtriptych/gists{/gist_id}","starred_url":"https://api.github.com/users/djtriptych/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/djtriptych/subscriptions","organizations_url":"https: |
This file contains 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
# Scrape site recursively from starting point (don't follow links back towards root). | |
wget <url> -r |
On hover, these arcs extend outward slightly and darken. Increasing the outer radius of the hovered arc temporarily exaggerates its area, but is useful for emphasis.
Note that the padding between adjacent arcs remains constant when arcs extend or contract. This is achieved by specifying an explicit arc.padRadius that is the same for all arcs, rather than relying on the default behavior which depends on the arc’s inner and outer radii.
This file contains 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 autocurry = function (f) { | |
return function () { | |
var args = Array.prototype.slice.call(arguments, 0); | |
return args.length < f.length ? | |
autocurry(args.reduce(function (g, arg) {return g.bind(null, arg)}, f)) : | |
f.apply(null, args); | |
} | |
}; |
This file contains 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
#!/usr/bin/env python | |
""" | |
db - Save and load data models in Redis. | |
~~ | |
""" | |
# TODO: Key object to manage separating class name from key name. |
NewerOlder