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
license: bsd-3-clause |
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
license: bsd-3-clause |
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
data = [ | |
{ | |
"input": [ | |
0.2823529411764706, | |
0.396078431372549, | |
0.4745098039215686, | |
0.12549019607843137, | |
0.4666666666666667, | |
0.40784313725490196, | |
0.3803921568627451, |
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
{ | |
"sizes": [ | |
22, | |
11, | |
2 | |
], | |
"layers": [ | |
{ | |
"0": {}, | |
"1": {}, |
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 | Delay | |
---|---|---|
25Feb18 | 2 | |
26Feb18 | 0 | |
27Feb18 | 3 | |
28Feb18 | 5 | |
1Mar18 | 2 | |
2Mar18 | -2 | |
3Mar18 | 0 | |
4Mar18 | 7 | |
5Mar18 | -1 |
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
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v2.json", | |
"data": { | |
"url": "https://gist.githubusercontent.com/digi0ps/eacf81d38aafb1a387da605319c50042/raw/47c9fe4100dc2d71ac16b2202754693791bd0036/blah.csv", | |
"format": { | |
"type": "csv", | |
"parse": { | |
"date": "date" | |
} | |
} |
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
Station | Delay | Train | |
---|---|---|---|
MS | 5 | 16127 | |
TBM | 19 | 16127 | |
CGL | 29 | 16127 | |
MLMR | 29 | 16127 | |
TMV | 26 | 16127 | |
VM | 10 | 16127 | |
VRI | 27 | 16127 | |
PNDM | 27 | 16127 | |
ALU | 31 | 16127 |
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
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v2.json", | |
"data": { | |
"url": "https://gist.githubusercontent.com/digi0ps/d53b23e2bf308e229da838827b5717c2/raw/320a194204649b1a05eac1e08ec990384f5dd19c/dupbup.csv", | |
"format": { | |
"type": "csv" | |
} | |
}, | |
"width": 800, | |
"height": 400, |
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
# variable and printing | |
set x 10 | |
set y 25 | |
set z [expr $x*$y] | |
puts $x | |
puts "x + y = [expr $x+$y]" | |
# conditional | |
if { $x > 9 } { |
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 <dht.h> | |
// For DHT11 sensor | |
dht DHT; | |
// PINS | |
#define DHT11_PIN A7 | |
#define SMOISTURE_PIN A0 | |
#define PDIODE_PIN A1 | |
#define LED_PIN D5 | |
#define MOTOR_PIN |