What would you need:
- Postgres 9.3, 9.4, 9.5, 9.6 or 10 with cstore_fdw extention (https://github.com/citusdata/cstore_fdw)
- Docker 1.12.6 or higher
- Docker Compose
- Linux machine
Hardware requirements
| // zod schema | |
| z.object({ | |
| // valid if string or: | |
| optional: z.string().optional(), // field not provided, or explicitly `undefined` | |
| nullable: z.string().nullable(), // field explicitly `null` | |
| nullish: z.string().nullish(), // field not provided, explicitly `null`, or explicitly `undefined` | |
| }); | |
| // type | |
| { |
| // Engine | |
| const React = { | |
| index: 0, | |
| state: [], | |
| useEffect: (callback, dependencies) => { | |
| const cachedIndex = React.index; | |
| const hasChanged = dependencies !== React.state[cachedIndex]; | |
| if (dependencies === undefined || hasChanged) { | |
| callback(); |
What would you need:
Hardware requirements
| #!/usr/bin/env bash | |
| mac_address=$1 | |
| # Strip colons from the MAC address | |
| mac_address=$(echo $mac_address | sed 's/://g') | |
| broadcast=$2 | |
| port=4343 | |
| # Magic packets consist of 12*`f` followed by 16 repetitions of the MAC address |
| [ | |
| { | |
| "name": "Alberta", | |
| "abbreviation": "AB" | |
| }, | |
| { | |
| "name": "British Columbia", | |
| "abbreviation": "BC" | |
| }, | |
| { |