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
| // Here is some extra practice work for javascript arrays and objects. | |
| const data = [ | |
| { | |
| id: 2, | |
| name: 'Michael', | |
| address: { | |
| state: 'CA', | |
| zip: 94501 | |
| } | |
| }, |
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
| // NOTE - This code does not seem to show motion events from the beacon. | |
| /** | |
| ...dependencies & engine | |
| "dependencies": { | |
| "@abandonware/bluetooth-hci-socket": "^0.5.3-8", | |
| "@abandonware/noble": "^1.9.2-15", | |
| "node-beacon-scanner": "^0.2.2" | |
| }, | |
| "engines": { | |
| "node": "12.22.12", |
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
| version: '3' | |
| services: | |
| db: | |
| # We use a mariadb image which supports both amd64 & arm64 architecture | |
| image: mariadb | |
| # If you really want to use MySQL, uncomment the following line | |
| #image: mysql:8.0.27 | |
| command: '--default-authentication-plugin=mysql_native_password' | |
| volumes: | |
| - db_data:/var/lib/mysql |
OlderNewer