From cacb6460be74a94a8eebbe2933ed5e33927a8399 Mon Sep 17 00:00:00 2001 From: simplonco Date: Sun, 1 Jan 2023 17:30:44 +0100 Subject: [PATCH] deleted notes_hugo file --- notes_hugo.md | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 notes_hugo.md diff --git a/notes_hugo.md b/notes_hugo.md deleted file mode 100644 index 35785992..00000000 --- a/notes_hugo.md +++ /dev/null @@ -1,32 +0,0 @@ - -``` -FORTYTWO_CLIENT_ID=u-s4t2ud-49dc7b539bcfe1acb48b928b2b281671c99fc5bfab1faca57a536ab7e0075500 -FORTYTWO_CLIENT_SECRET=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 -``` - -https://stackoverflow.com/questions/34051747/get-environment-variable-from-docker-container - -## node.js & postgresql - -- [youtube tuto js + postgresql](https://www.youtube.com/watch?v=ufdHsFClAk0) -- [node.js wikipedia](https://en.wikipedia.org/wiki/Node.js) -- node.js is originally a replacement to the web server apache -- [youtube tuto nodejs fr](https://www.youtube.com/watch?v=0PA69L88HeI) - -code synchrone / asynchrone : -``` -// bocking code -var content = fs.readFileSync('MyFile.txt'); -console.log('my file :', content); - -// non-bocking code -fs.readFile('MyFile.txt', (err, content) => { - if (err) { - throw err; - } - console.log('my file :', content); -}); -``` -- [doc technos generic](https://devdocs.io/) -- [url.parse deprecated](https://stackoverflow.com/questions/17184791/node-js-url-parse-and-pathname-property) -