Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, and monospace
. Itemized lists
look like:
- this one
- that one
npm init -y
(make sure your folder has no wired characters e.g. äöü? or whitespace, all lowercase)npm install johnny-five
index.js
with the content belownode index.js
BWID;BW_NAME;SHORT_BW_NAME;LONGITUDE_BW;LATITUDE_BW;COORDSYS_BW;BW_TYPE;BWATER_CAT;YEAR_BW;SAMPLE_DATE;CONC_EC;CONC_IE | |
DEBY_PR_FS_0187;MUEHL-SEE, NEUFAHRN B.FREISING, WASSERWACHTSHAUS;MUEHL-SEE;11.6558;48.3331;ETRS89;1;L;2009;2009-08-11;10;10 | |
DEBY_PR_FS_0188;ANGELBERGER BADEWEIHER, ZOLLING;ANGELBERGER WEIHER;11.7903;48.4481;ETRS89;1;L;2009;2009-05-19;10;10 | |
DEBY_PR_GAP_0192;LAUTERSEE, MITTENWALD;LAUTERSEE;11.2375;47.4403;ETRS89;1;L;2009;2009-08-17;10;10 | |
DEBY_PR_GAP_0197;EICHSEE, GROSSWEIL;EICHSEE;11.3322;47.6797;ETRS89;1;L;2009;2009-05-25;10;10 | |
DEBY_PR_GAP_0197;EICHSEE, GROSSWEIL;EICHSEE;11.3322;47.6797;ETRS89;1;L;2009;2009-08-17;10;10 | |
DEBY_PR_GAP_0198;FERCHENSEE, MITTENWALD;FERCHENSEE;11.2153;47.4381;ETRS89;1;L;2009;2009-09-14;10;10 | |
DEBY_PR_GAP_0199;FROSCHHAUSER SEE, MURNAU;FROSCHHAUSER SEE;11.2267;47.6875;ETRS89;1;L;2009;2009-04-27;10;10 | |
DEBY_PR_GAP_0199;FROSCHHAUSER SEE, MURNAU;FROSCHHAUSER SEE;11.2267;47.6875;ETRS89;1;L;2009;2009-05-25;10;10 | |
DEBY_PR_GAP_0199;FROSCHHAUSER SEE, MURNAU;FROSCHHAUSER SEE;11.226 |
http --form https://git.io "url=https://github.com/fabianmoronzirfas" |
body { | |
background-color:tomato; | |
} |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done | |
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* | |
cd /usr/local/lib | |
sudo rm -rf node* |
var foo = 0; | |
const bah = 1; | |
let boom = 2; | |
const pi = 3; // number | |
const pie = 42.5; // also a number | |
const cake = true; // boolean | |
const cookie = false; // also boolean | |
const lollipop = [1, 2, 3, 4]; // an array | |
const sasquatsch = { name: 'bob' }; // an object with properties |
void (async function main() { | |
console.log(foo); | |
})() | |
.catch(err => { | |
console.error(err); | |
// throw err; | |
}) | |
.finally(res => { | |
console.log("finally"); | |
}); |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
tail -f /dev/null |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
base64 /dev/urandom | head -c 5000000 > file.txt |