- Go to https://maps.openrouteservice.org
- Create the route
- Export GPX file
- Upload to https://www.gpsies.com/createTrack.do
- This tool will add time data
- Which allows exporting back to strava as activity
- Upload to strava as activity
- Create a route from the activity
sudo chown -R $(whoami):admin /usr/local && sudo chmod -R g+rwx /usr/local
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
| Thanks for help | |
| I did: | |
| Create folder Resources | |
| Move all resources from App_GlobalResources to new folder | |
| Change all file properties: | |
| Build Action: Embedded Resource | |
| Copy to output: Copy always |
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" : { |
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
| 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
| 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
| #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
| 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); | |
| } |