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
| # Install gource from compiling this http://gource.io/ | |
| # Install Prereqs like here http://stackoverflow.com/a/15105901/912450 | |
| # From here https://github.com/acaudwell/Gource/wiki/Videos#ffmpeg-using-x264-codec | |
| ./gource --fullscreen -1280x720 -o - --disable-auto-skip --seconds-per-day 0.1 --camera-mode overview --key -r 60 /<path-to-repo>/ | ../ffmpeg/ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4 |
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 Reactotron from 'reactotron-react-native' | |
| import { reactotronRedux } from 'reactotron-redux' | |
| var store; | |
| if (__DEV__) { | |
| Reactotron | |
| .configure({ name: 'VTX-sharepoint' }) | |
| .use(reactotronRedux()) | |
| .connect() |
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
| # Sourced from https://github.com/anirbankonar123/CorrosionDetector/blob/master/generate_tfrecord.py | |
| """ | |
| Usage: | |
| # From tensorflow/models/ | |
| # Create train data: | |
| python3 generate_tfrecord.py --csv_input=data/train_labels.csv --output_path=data/train.record | |
| # Create test data: | |
| python3 generate_tfrecord.py --csv_input=data/test_labels.csv --output_path=data/test.record | |
| """ | |
| from __future__ import division |
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
| { | |
| "$ref": "#/definitions/CloudEventEnvelopeRewardDelivered", | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "definitions": { | |
| "Amount": { | |
| "additionalProperties": false, | |
| "properties": { | |
| "currency": { | |
| "type": "string" | |
| }, |
OlderNewer