This file contains 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 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 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 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 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 | |
*/ |