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 ( | |
"errors" | |
"flag" | |
"log" | |
"os" | |
"runtime" | |
"strconv" | |
"sync" |
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" | |
import "sync" | |
import "time" | |
func main() { | |
var wg sync.WaitGroup | |
wg.Add(2) |
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
./configure Calculator ios verbose; make -j8 | |
==> configured to build Calculator for ios in normal verbose mode | |
== using source in /Users/admin/src/lambdanative/apps/Calculator | |
=== using profile your profile name here [/Users/admin/src/lambdanative/PROFILE].. | |
=== configured to build Calculator version 1.0 for ios on macosx in normal mode | |
==> checking for required tools.. | |
=> grep.. ok | |
=> wget.. ok | |
=> zip.. ok |
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
import glob | |
import sqlite3 | |
import shlex | |
import sys | |
import io | |
conn = sqlite3.connect('transaction.db') | |
c = conn.cursor() | |
all = glob.glob("transactions/*") |
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
option "operating_currency" "USD" | |
plugin "beancount.plugins.book_conversions" "Assets:Inventory:AU,Income:AU" | |
plugin "beancount.plugins.unrealized" | |
2016-01-08 open Assets:Cash | |
2016-01-08 open Assets:Inventory:AU | |
2016-01-08 open Income:USD | |
2016-01-08 open Income:AU | |
2016-01-08 open Expenses:USD | |
2016-01-08 open Liabilities:Payroll |
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
""" | |
Support for the google speech service. | |
For more details about this component, please refer to the documentation at | |
https://home-assistant.io/components/tts.google/ | |
Note - this is a hack. It makes no attempt to update tests. It does not have all wavenet voices listed. | |
It attempts to respect language requests from hass but this has not been tested. | |
Google cloud gives the first 1 million characters of wavenet generation for free per month, if you exceed |