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
Learn React Tutorial: | |
https://www.youtube.com/watch?v=bMknfKXIFA | |
FreeCodeCamp Solidity: | |
https://www.youtube.com/watch?v=gyMwXuJrbJQ | |
Learn Blockchains by Building One | |
https://hackernoon.com/learn-blockchains-by-building-one-117428612f46 | |
CryptoRadio Solidity Tutorial: |
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
brent@brent-P65-67HSHP:~/Downloads/did-jwt$ npm run test | |
> [email protected] test | |
> cross-env NODE_OPTIONS="--experimental-vm-modules" jest | |
(node:37871) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | |
(Use `node --trace-warnings ...` to show where the warning was created) | |
PASS src/__tests__/NaclSigner.test.ts (8.837 s) | |
(node:37868) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | |
(Use `node --trace-warnings ...` to show where the warning was created) |
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
npm run test | |
> [email protected] test | |
> cross-env NODE_OPTIONS="--experimental-vm-modules" jest | |
(node:56793) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | |
(Use `node --trace-warnings ...` to show where the warning was created) | |
PASS src/__tests__/SignerAlgorithm.test.ts (13.237 s) | |
PASS src/__tests__/didkey.test.ts | |
(node:56746) ExperimentalWarning: VM Modules is an experimental feature and might change at any time |
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
https://github.com/decentralized-identity/veramo/blob/next/packages/did-comm/src/encryption/a256kw-encrypters.ts#L144-L157 | |
export function a256gcmAuthEncrypterEcdh1PuV3x25519WithA256KW( | |
recipientPublicKey: Uint8Array, | |
senderSecret: Uint8Array | ECDH, | |
options: Partial<AuthEncryptParams> = {}, | |
): Encrypter { | |
return createFullEncrypter( | |
recipientPublicKey, | |
senderSecret, |
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
src/__tests__/xc20pEncryption.test.ts (11.306 s) | |
● xc20pEncryption › resolveP256Encrypters › correctly resolves encrypters for DIDs | |
second arg must be public key | |
37 | const ephemeral = ephemeralKeyPair ? generateKeyPairFromSeed(ephemeralKeyPair.secretKey) : generateKeyPair() | |
38 | const epk = { kty: 'EC', crv, x: bytesToBase64url(ephemeral.publicKey) } | |
> 39 | const sharedSecret = p256.getSharedSecret(ephemeral.secretKey, recipientPublicKey) | |
| ^ | |
40 | // Key Encryption Key |
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
https://diyelectromusic.wordpress.com/2020/07/08/arduino-midi-vs1053-synth/ (Arduino MIDI VS1053 Synth) | |
https://diyelectromusic.wordpress.com/2020/06/04/arduino-simple-midi-controller/ (Arduino Simple MIDI Controller) | |
https://forum.arduino.cc/t/what-are-the-different-usb-sheild-options-for-an-uno/299676 (usb adapter, usb to serial) | |
https://www.youtube.com/watch?v=7xIEA66e7eI (DIY VS1053 MIDI Sound Module) | |
https://datasheetspdf.com/pdf/640613/VLSI/VS1053B/1 (datasheet) | |
https://www.pschatzmann.ch/home/2022/08/25/arduino-audio-tools-vs1053-real-time-midi/ | |
https://diyelectromusic.wordpress.com/2021/01/09/arduino-midi-vs1003-synth/ (vs1003 synth) |
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
0 verbose cli /usr/local/bin/node /usr/local/bin/npm | |
1 info using [email protected] | |
2 info using [email protected] | |
3 timing npm:load:whichnode Completed in 6ms | |
4 timing config:load:defaults Completed in 9ms | |
5 timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 4ms | |
6 timing config:load:builtin Completed in 6ms | |
7 timing config:load:cli Completed in 26ms | |
8 timing config:load:env Completed in 2ms | |
9 timing config:load:file:/home/brent/Downloads/queryMDNS/.npmrc Completed in 0ms |
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
https://www.youtube.com/watch?v=VnfX9YJbaU8 | |
WiFiManager with ESP32 - Stop Hard-coding WiFi Credentials! - | |
DroneBot Workshop |
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
1) Deal with the use of only port 80 and 43 on most public networks with a reverse proxy | |
https://www.tutorialspoint.com/how-to-configure-nginx-as-reverse-proxy-for-websocket | |
2) Deal with a changing IP address of the websockets server with | |
bshambaughOP | |
— | |
08/30/2023 4:44 PM | |
That reminds me, in https://github.com/bshambaugh/BlinkyProject/blob/remoteSigner/edgeDevices/ESP32-testing/include/websocketserver_config.h I have the IP address of the laptop assigned by the router hardcoded which I can discover by hostname -I on the laptop. Recompiling the ESP32 with the new IP address when I move to a new network like 192.168.1.29 (or even if the router reassigns it .... occasionally locally I go from 10.0.0.4 to 10.0.0.5 and back again) is a pain. I think this is a different issue though....I just need to somehow give my devices unique identifiers, call out to them through some sort of broadcast scheme and pull down their assigned IP addresses. | |
lots to think about, thanks for your help so far. (Find the IP address |
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
// video: https://www.youtube.com/watch?v=vH2QmrpCJuw | |
// code: https://www.tweaking4all.com/hardware/arduino/arduino-all-ledstrip-effects-in-one/ | |
#include <Adafruit_NeoPixel.h> | |
#ifdef __AVR__ | |
#include <avr/power.h> // Required for 16 MHz Adafruit Trinket | |
#endif | |
// Which pin on the Arduino is connected to the NeoPixels? | |
#define PIN 6 // On Trinket or Gemma, suggest changing this to 1 // white --> green wire |