function economy() {
// Context (ignore)
// global.requirements // aggregated needs (demand vector)
// global.tools // current solutions (supply space)
// global.alignment_tools // governance/regulation/culture nudges
// affordably_exists() search provider, cost of installing product/service
// estimate_create_time() calculate engineering cost of product/service
// create() product or service
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
| /** | |
| * Raw name to simpler name (for markdown file) | |
| */ | |
| function nameToHypenName(name) { | |
| name = name | |
| .replaceAll(",", "-") | |
| .replaceAll(" ", "-") | |
| .replaceAll("--", "-") | |
| .replaceAll(":", "") | |
| .replaceAll("(", "") |
OlderNewer