Components of a workout description:
- One or more "sets" of:
- Name
- Type? Body area?
- Description/purpose
- A number of "positions"
- 1 starting (graphic)
- 1 ending (graphic)
- 0 or more in between start and end
version: "3" | |
services: | |
db1: | |
image: "cockroachdb/cockroach:v23.1.8" | |
container_name: db1 | |
hostname: db1 | |
restart: on-failure | |
ports: | |
- "26257:26257" |
Components of a workout description:
{ | |
init: function (elevators, floors) { | |
const numVators = elevators.length | |
// const numFloors = floors.length | |
const FILTER_BEFORE = true | |
const FILTER_AFTER = true | |
const AGGRESSIVE_FILTER = false | |
const STOP_ZERO = true | |
const IDLE_ZERO = true | |
const DIRECT_ZERO = true |
module.exports = { | |
flags: 'schedule-delivery', | |
desc: 'Launch scheduled mail delivery, max of three days in advance.', | |
setup: sywac => { | |
sywac | |
.showHelpByDefault(false) // disable this here since schedule-delivery is a runnable command | |
.option('-l, --email-list <email-list>', { | |
type: 'string', | |
desc: 'The mailgun email list you would like to use.', | |
strinct: true, // this is misspelled, and strict does not apply to strings; use `required: true` to require this option |
Go to https://nodejs.org/en/download/current/ in your favorite web browser.
Click on the big green Windows Installer button to download the installer.
Git is a system for storing changes to files in a repository consisting of one or more branches.
Let's briefly define what each of these terms mean.
A repository is basically just metadata for a directory (or folder) on your local file system. Just like you can have many directories on your file system, you can have many git repositories on your computer. You can think of a repository as a way to store information about the contents of a particular directory (and the changes made to those contents over time).
function combine (one, two) { | |
return one + two | |
} | |
function hello (name) { | |
return 'Hello ' + (name || 'World') | |
} | |
#!/bin/bash | |
mkdir -p ./publish-tmp | |
cd publish-tmp | |
if [ "$?" != "0" ]; then | |
echo "failed to create publish tmp dir" | |
exit 1 | |
fi | |
#!/usr/bin/env node | |
// assumes that the Docker bridge is using ip 172.17.0.1 | |
var client = require('redis').createClient('redis://172.17.0.1:6379') | |
var users = {} | |
client.keys('user-*', function (err, keys) { | |
var numKeys = keys.length | |
var numChecked = 0 | |
keys.forEach(function (key) { | |
client.get(key, function (err, value) { |