az login
az account set --subscription "subscription_id"
az storage blob download-batch -d . \
--pattern "*.*" \
-s "container_name" \
--account-name "storage_account_name" \
--connection-string "conntection_string"
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.snapchat.com/unlock/?type=SNAPCODE&uuid=249672733a114405ac286a0dd2dd1b9c&metadata=01 |
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
| export class JsonUtils { | |
| public static getCircularReplacer(): object { | |
| const seen = new WeakSet(); | |
| return (key: string, value: object): any => { | |
| if (typeof value === 'object' && value !== null) { | |
| if (seen.has(value)) { | |
| return; | |
| } | |
| seen.add(value); | |
| } |
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
| #include "SoftwareSerial.h" | |
| SoftwareSerial swSer1; | |
| void setup() { | |
| // Debug serial | |
| Serial.begin( 115200 ); | |
| // Serial connected to LIDAR sensor | |
| // Serial.begin( 115200 ); |
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
| Current installation options: | |
| default host triple: x86_64-apple-darwin | |
| default toolchain: stable | |
| profile: default | |
| modify PATH variable: yes |
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
| For compilers to find icu4c you may need to set: | |
| export LDFLAGS="-L/usr/local/opt/icu4c/lib" | |
| export CPPFLAGS="-I/usr/local/opt/icu4c/include" | |
| For pkg-config to find icu4c you may need to set: | |
| export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" |
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 'package:json_annotation/json_annotation.dart'; | |
| import 'package:mobx/mobx.dart'; | |
| part 'elements_list_page_store.g.dart'; | |
| @JsonSerializable() | |
| class ElementsListPageStore extends _TempElementsListPageStore { | |
| ElementsListPageStore() : super(); | |
| factory ElementsListPageStore.fromJson(Map<String, dynamic> json) => |
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
| { | |
| "Ansi 7 Color" : { | |
| "Green Component" : 0.73333334922790527, | |
| "Blue Component" : 0.73333334922790527, | |
| "Red Component" : 0.73333334922790527 | |
| }, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { |