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
Cuñaq | |
Desde Cuñaq viene, agüita serpenteando Amol, C | |
por las acequias y en remolinos Emol, Amol | |
hacia nuestras vidas (bis) C, Amol | |
Desde Cuñaq viene, agüita serpenteando Amol, C | |
por las acequias y en remolinos Emol, Amol | |
hacia nuestras vidas (bis) C, Amol |
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
Ayahuasca urkumanta (ayahuasca desde el cerro) F, Bb | |
taki takimuyki (bis) (te vengo cantando) Dm, Am | |
Chuyay chuyay hampikuyni (limpiando y sanado) Am, Dm | |
miski ñuñu cuerpo chaita (bis) (dulce leche teta para el cuerpo) Bb, Dm | |
Ayahuasca curandera... | |
Ayahuasca lucerito manta... | |
Ayahuasca chacrunera... | |
Ayahuasca pinturera... |
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
Dmol C Dmol C Dmol (doby: 4 - 4 - 2 - 2 - 4) | |
Jai Ambe Jagadambe Mata Bhavaniki Jai Ambe. (2x) | |
Dmol F C Dmol (doby: 4 - 4 - 4 - 4) | |
Durga Vinashini Durga Jaya Jaya Kala Vinashini Kali Jaya Jaya. (2x) | |
C F C Amol Dmol (doby: 4 - 4 - 2 - 2 - 4) | |
Uma Rama Brahmani Jaya Jaya Radha Rukamani Sita Jaya Jaya. (2x) | |
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() { |
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
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
// 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
// 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. |