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
CREATE TABLE master.forms | |
( | |
form_id serial NOT NULL, | |
code CHARACTER VARYING, | |
name CHARACTER VARYING, | |
description CHARACTER VARYING, | |
properties jsonb, | |
audit_trails jsonb, | |
stereotype CHARACTER VARYING, | |
sort_order INTEGER, |
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
# Example Dockerfile | |
FROM hello-world |
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
const fs = require("fs"); | |
const CoinGecko = require("coingecko-api"); | |
const { table } = require("table"); | |
const chalk = require("chalk"); | |
const cg = new CoinGecko(); | |
const coins = [ | |
{ "id": "ethereum", "symbol": "ETH" }, | |
{ "id": "bitcoin", "symbol": "BTC" }, |
OlderNewer