This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| /** | |
| * The function you pass to `asyncPoll` should return a promise | |
| * that resolves with object that satisfies this interface. | |
| * | |
| * The `done` property indicates to the async poller whether to | |
| * continue polling or not. | |
| * | |
| * When done is `true` that means you've got what you need | |
| * and the poller will resolve with `data`. | |
| * |
| //from | |
| //https://bikeshedeffect.weebly.com/arduino-piezo-sounds.html | |
| /* insert sound code into setup to play once, main loop to repeat, or into sound() function to call when wanted (button push, etc...)// Speaker must be on pin 8, see setup here: http://www.arduino.cc/en/Tutorial/PlayMelody | |
| */ | |
| #include "pitches.h" // must include open source pitches.h found online in libraries folder or make a new tab => https://docs.arduino.cc/built-in-examples/digital/toneMelody | |
| void setup() { | |
| // do nothing |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| #!/bin/bash | |
| #=============================================================================== | |
| # | |
| # FILE: iso2wbfs | |
| # | |
| # USAGE: ./iso2wbfs [option] FILE... [wbfs directory] | |
| # | |
| # DESCRIPTION: Uses wit to convert one or more Wii ISO into a WBFS file | |
| # properly named for use on non-WBFS partitions. | |
| # |