install hugo
$ brew install hugo
check the version of hugo
$ hugo version
Hugo Static Site Generator v0.38 darwin/amd64 BuildDate:
$ pip install pip-tools
write down packages in requirements.in
$ vim requirements.in
$ pip-compile requirements.in
install docusaurus globally
$ yarn global add docusaurus-init
$ mkdir project
$ cd project
$ docusaurus-init
$ ls
docs-examples-from-docusaurus website
conda create -n tensorflow python=3.5.2
pip install numpy scipy
pip install --upgrade tensorflow-gpu
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
#define redPin * | |
#define greenPin * | |
#define bluePin * | |
int recieveByte = 0; | |
String bufStr = ""; | |
String okStr = "OK"; | |
void setup() { | |
// init pins |
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 SerialPort = require('serialport'); | |
const port = new SerialPort('/dev/cu.usbmodem****', { | |
parser: SerialPort.parsers.readline('\n'), | |
baudrate: 9600 | |
}) | |
port.on('open', function () { | |
console.log('Serial open.'); | |
}) |
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
# ReachView code is placed under the GPL license. | |
# Written by Egor Fedorov ([email protected]) | |
# Copyright (c) 2015, Emlid Limited | |
# All rights reserved. | |
# If you are interested in using ReachView code as a part of a | |
# closed source project, please contact Emlid Limited ([email protected]). | |
# This file is part of ReachView. |