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
/* | |
LiquidCrystal Library - Serial Input | |
*/ | |
/* | |
This example code is in the public domain. | |
http://arduino.cc/en/Tutorial/LiquidCrystalSerial | |
*/ |
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
#!/usr/bin/env node | |
/* Info that is likely to be different for you */ | |
var ARDUINO_PORT = "/dev/tty.usbserial-A1004c6U", | |
URL = 'http://www.cotizacion-dolar.com.ar/', | |
FETCH_CICLE = 30 * 60 * 1000; | |
/* Probably it's not a good idea to modify the following lines */ | |
var jsdom = require("jsdom"), | |
sp = require("serialport"), |
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
.fadable { | |
transition: 0s linear all; | |
} | |
.fadable.ng-hide-remove { | |
opacity: 0; | |
display: block !important; | |
transition: 0.5s linear all; | |
} | |
.fadable.ng-hide-remove.ng-hide-remove-active { | |
opacity: .5; |
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
[alias] | |
graph = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
co = checkout | |
st = status |
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
{ | |
"workbench.editor.customLabels.patterns": { | |
"**/app/**/[[]*[]]/[[]*[]]/page.tsx": "${dirname(2)}/${dirname(1)}/${dirname} • page", | |
"**/app/**/[[]*[]]/page.tsx": "${dirname(1)}/${dirname} • page", | |
"**/app/**/page.tsx": "${dirname} • page", | |
"**/app/**/[[]*[]]/[[]*[]]/default.tsx": "${dirname(2)}/${dirname(1)}/${dirname} • default", | |
"**/app/**/[[]*[]]/default.tsx": "${dirname(1)}/${dirname} • default", | |
"**/app/**/default.tsx": "${dirname} • default", |
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 <IRremote.hpp> | |
#define IR_LED_PIN 9 | |
#define BUTTON_PIN 2 | |
const unsigned long SONY_SHUTTER_CODE = 0xB4B8F; | |
const int BITS = 20; | |
unsigned long lastButtonPress = 0; | |
const unsigned long debounceDelay = 50; // 50 ms debounce |
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
;AFTER_LAYER_CHANGE | |
;[layer_z] | |
G92 E0 ;Stop extrusion | |
G1 E-0.7 F1800 ;Retraction | |
G17 | |
G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ;Spiral lift a little | |
G1 X110 Y220 F20000 ;Move to safe pos | |
G17 | |
G2 Z{layer_z} I0.86 J0.86 P1 F20000 | |
G1 X0 F15000 |