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 LINE_WIDTH = 80 // 150 | |
const CONTINUATION_PROBABILITY = 0.9 | |
const FRAMERATE = 100 | |
console.log('\x1b[32m') // green text | |
console.log('\x1b[40m') // black bg | |
let line = [] | |
for (let i = 0; i < LINE_WIDTH / 2; ++i) { | |
line.push(false) |
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
{ | |
"dbname": { | |
"host": "localhost", | |
"port": 5432, | |
"database": "mydatabase", | |
"password": "user123", | |
"name": "dbname", | |
"user": "user", | |
"connector": "postgresql" | |
} |