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
| Date | Open | High | Low | Close | Volume | Adj Close | |
|---|---|---|---|---|---|---|---|
| 2008-10-14 | 116.26 | 116.40 | 103.14 | 104.08 | 70749800 | 104.08 | |
| 2008-10-13 | 104.55 | 110.53 | 101.02 | 110.26 | 54967000 | 110.26 | |
| 2008-10-10 | 85.70 | 100.00 | 85.00 | 96.80 | 79260700 | 96.80 | |
| 2008-10-09 | 93.35 | 95.80 | 86.60 | 88.74 | 57763700 | 88.74 | |
| 2008-10-08 | 85.91 | 96.33 | 85.68 | 89.79 | 78847900 | 89.79 | |
| 2008-10-07 | 100.48 | 101.50 | 88.95 | 89.16 | 67099000 | 89.16 | |
| 2008-10-06 | 91.96 | 98.78 | 87.54 | 98.14 | 75264900 | 98.14 | |
| 2008-10-03 | 104.00 | 106.50 | 94.65 | 97.07 | 81942800 | 97.07 | |
| 2008-10-02 | 108.01 | 108.79 | 100.00 | 100.10 | 57477300 | 100.10 |
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
| // Node v6.9.0 | |
| // | |
| // TEST FILE (cut down for simplicity) | |
| // To ensure Golang encrypted string can be decrypted in NodeJS. | |
| // | |
| let crypto; | |
| try { | |
| crypto = require('crypto'); |
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
| /************************************************************* | |
| This is a simple demo of sending and receiving some data. | |
| Be sure to check out other examples! | |
| *************************************************************/ | |
| // Template ID, Device Name and Auth Token are provided by the Blynk.Cloud | |
| // See the Device Info tab, or Template settings | |
| #define BLYNK_TEMPLATE_ID "TMPLqOz1wHAH" | |
| #define BLYNK_DEVICE_NAME "Quickstart Template" |
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://doc-00-60-docs.googleusercontent.com/docs/securesc/ldiku9srui5dednphakjs6uc2dd4ot8h/ia9fve2le8f0g4ojaipomma4i2of0hcu/1653883575000/09636717579648708470/04605576668011652273/192gWPvMsV0oX61lZqXL1PKSwrO7NW_e0?e=download&ax=ACxEAsaAIhnV1wZktOmKpISc7oO8dU7GI7C0iwz057GzbqeReW-mAA1rjE3di4k0PaYCZD6 |
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
| ``` | |
| curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
| ``` | |
| ``` | |
| python3 get-pip.py --force-reinstall | |
| `` |
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
| // library exception; | |
| typedef VoidFunction = void Function(); | |
| class ExceptionOnMessage { | |
| final String message; | |
| const ExceptionOnMessage(this.message); | |
| } | |
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
| import 'dart:math'; | |
| void main() { | |
| double expoIntial = 2; | |
| double expoB = 3; | |
| double relaInitial = 5 ; | |
| double relaB = 11; | |
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
| user www-data; | |
| worker_processes auto; | |
| pid /run/nginx.pid; | |
| include /etc/nginx/modules-enabled/*.conf; | |
| events { | |
| worker_connections 1024; | |
| # multi_accept on; | |
| } |
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
| 568 python3 train_ssd.py --dataset-type=voc --data=data/ftc-objects --model-dir=models/ftc-objects --batch-size=1 --workers=1 --epochs=1 | |
| 569 python3 onnx_export.py --model-dir=models/ftc-objects/ | |
| 570 detectnet --model=models/ftc-objects/ssd-mobilenet.onnx --labels=models/ftc-object/labels.txt --input-blob= input_0 --output-bbox=boxes /dev/video0 |
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
| const conn = mysql.createConnection({ | |
| // for mac , disable it if you are on windows . | |
| socketPath: '/Applications/MAMP/tmp/mysql/mysql.sock', //path to mysql sock in MAMP | |
| host: process.env.sql_host, | |
| user: process.env.sql_user, | |
| password: process.env.sql_password, | |
| database: process.env.sql_db, | |
| }); |