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
| https://www.youtube.com/watch?v=CHJ6UiDliWI | |
| ----- | |
| Ami C | |
| Pri prastarom dube | |
| E Ami | |
| býva lesný muž | |
| Ami C |
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
| 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 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
| 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 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
| http://acordes.lacuerda.net/mercedes_sosa/todo_cambia.shtml | |
| Page 53 |
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
| Královskou korunu beru si na sebe, | |
| stojím tu v srdci a vzhlížím do nebe, | |
| stojím tu v srdci se všemi co tu jsou, | |
| jednou si navzájem všichni pomohou. |
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
| import csv | |
| import json | |
| import os | |
| import subprocess | |
| import sys | |
| RB_SERVER = 'https://review.salsitasoft.com' | |
| repository = sys.argv[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
| package main | |
| import ( | |
| "bufio" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "os" | |
| "strconv" |
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 cartProd = (...lists) => { | |
| if (lists.length < 2) { | |
| throw new Error('cartProd: need at least 2 lists as arguments'); | |
| } | |
| const head = (list) => list[0]; | |
| const tail = (list) => list.slice(1); | |
| const prepend = (head, tail) => [head, ...tail]; | |
| const push = (list, item) => { | |
| list = list || []; |
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
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/rpc/jsonrpc" | |
| "time" | |
| "golang.org/x/net/websocket" |
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
| package main | |
| import ( | |
| "crypto/sha256" | |
| "encoding/hex" | |
| "fmt" | |
| "math/rand" | |
| "regexp" | |
| "testing" | |
| "time" |