Closures – Part 5 of Functional Programming in JavaScript
…in JavaScript functions are not just functions, they are also closures, which means the function body has access to variables defined outside the function… DA LEGGERE: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures
9 tecniche di produttivitá per esser piú organizzati
task brevi => fare subito first things first => fare prima le cose importanti fare una cosa alla volta …. spostare l’attenzione dalle attività ai risultati che voglio ottenere …. impostare una routine rigida
Node.js with TypeScript, Debug inside VSCode and Nodemon
https://dev.to/oieduardorabelo/nodejs-with-typescript-debug-inside-vscode-and-nodemon-23o7 https://code.visualstudio.com/updates/v1_22#_node-debugging
Raspberry Pi Doorbell Uses Facial Recognition to Help the Elderly
This DIY doorbell indicates whether a visitor is on the whitelist, the blacklist, or unknown to the system. https://www.hackster.io/news/raspberry-pi-doorbell-uses-facial-recognition-to-help-the-elderly-fa59da94c1b5 https://www.instructables.com/id/Doorbell-With-Face-Recognition/
TDD vs BDD
What’s the Difference Between TDD and BDD? In TDD (Test Driven Development), the test is written to check the implementation of functionality, but as the code evolves, tests can give false results. BDD (Behavior Driven Development) is also a test-first approach, but differs by Leggi tutto
Drumkit plugins
MT Power DrumKit 2 http://bit.ly/2P9IPwJ Steven Slate Digital – SSD5 http://bit.ly/2Pwo7Go Sennheiser – DrumMic’a http://bit.ly/2PCeK7X
Linux commands useful when performing heavy processing
https://dev.to/ko31/linux-commands-useful-when-performing-heavy-processing-2bdc sleep The sleep command suspends processing for a certain period of time. nice/renice The nice command can be executed with priorities. nohup If you use the nohup command, you can continue processing even if you log out of the terminal.