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
version: "3" | |
services: | |
rhasspy: | |
container_name: rhasspy | |
image: "rhasspy/rhasspy" | |
pull_policy: always | |
ports: | |
- "12101:12101" | |
volumes: |
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
### Keybase proof | |
I hereby claim: | |
* I am angelo-v on github. | |
* I am aveltens (https://keybase.io/aveltens) on keybase. | |
* I have a public key ASDxPZhEfq5Mt-0flxx3wpL1eVozymrlYNCStZUufm4LAAo | |
To claim this, I am signing this object: |
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
# will not work in all cases, see https://gist.github.com/angelo-v/e0208a18d455e2e6ea3c40ad637aac53#gistcomment-3439904 | |
function jwt-decode() { | |
sed 's/\./\n/g' <<< $(cut -d. -f1,2 <<< $1) | base64 --decode | jq | |
} | |
JWT=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.TJVA95OrM7E2cBab30RMHrHDcEfxjoYZgeFONFh7HgQ | |
jwt-decode $JWT |
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
(function() { | |
var next = jQuery.Event("keyup"); | |
next.which = 32; | |
var firstword = $('#words span.highlight').text() | |
var typenext = function(word) { | |
$('#inputfield').val(word); | |
$('#inputfield').trigger(next); | |
var nextword = $('#words span.highlight').text() |
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
javascript:(function(){var title=prompt("New title?");document.title=title})(); |
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
# pass url of a java *.tar.gz file as the first and only parmeter | |
url=$1 | |
tmp=.temporary-java-download | |
function confirm () { | |
echo $1 | |
select yn in "Yes" "No"; do | |
case $yn in | |
Yes ) return 1; break;; |