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
EL VIEJO TAMBOR | |
Alonso del Río | |
===== | |
G D | |
Desde los tiempos en que mi abuelo soñó | |
C Emi | |
que un día yo viviría para cantarles esta canción |
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
https://www.youtube.com/watch?v=dSPXRx8Houw | |
===== | |
Ami C G D | |
He empezado un viaje y no se cuando acabar | |
Ami C G D | |
llevo errando tantas vidas que no lo recuerdo ya | |
Ami C G D |
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
https://www.youtube.com/watch?v=CHJ6UiDliWI | |
----- | |
Ami C | |
Pri prastarom dube | |
E Ami | |
býva lesný muž | |
Ami C |
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
// Demo: | |
// | |
// $ sudo ./pins | |
// Unable to select a suitable driver for this board. | |
// Linux itoilet 3.12.28+ #709 PREEMPT Mon Sep 8 15:28:00 BST 2014 armv6l GNU/Linux | |
// | |
// toilet A: 0 | |
// toilet B: 0 | |
// | |
// BTW hwio has a terrible public API, brb. |
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
// The following code works fine: | |
// | |
// $ ./signals-test | |
// ^CSignal received, handler unregistered... | |
// ^C | |
// $ | |
package main | |
import ( |
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
package main | |
import "fmt" | |
func main() { | |
items := []int{} | |
item := 2 | |
var ( | |
begin int |
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
// EDIT: SOLVED! | |
// The arguments are supposed to be | |
// [--no-pager log --all --source --abbrev-commit --grep=Story-Id: 12345] | |
// not | |
// [--no-pager log --all --source --abbrev-commit --grep='Story-Id: 12345'] | |
// because then it doesn't find the commits and then output is empty. | |
// The problem is that my function is returning empty stdout buffer | |
// even though the output is not empty when I run git from CLI. | |
// |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<form> | |
<input id="fileInput" type="file"></input> | |
</form> | |
<span id="fileContent"></span> | |
<script type="text/javascript"> | |
var apiAvailable = function() { |