From bab3c10e3bc719b669869196c8f1a4d6073f3378 Mon Sep 17 00:00:00 2001 From: death Date: Sat, 31 Mar 2012 22:02:56 +0200 Subject: new version --- util/bin/naturalvoices2.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 util/bin/naturalvoices2.sh (limited to 'util') diff --git a/util/bin/naturalvoices2.sh b/util/bin/naturalvoices2.sh new file mode 100755 index 00000000..a01ff621 --- /dev/null +++ b/util/bin/naturalvoices2.sh @@ -0,0 +1,3 @@ +text=$(echo $* | sed 's/ /+/g') +mplayer2 http://192.20.225.36$( curl -Ss -A "Mozilla" -d "voice=klara" -d "txt=$text" -d "speakButton=SPEAK" http://192.20.225.36/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') + -- cgit v1.2.3 From 61cc151c54098a424f6f0ecfa33b065efeb292a0 Mon Sep 17 00:00:00 2001 From: death Date: Sat, 31 Mar 2012 22:03:31 +0200 Subject: fixed --- util/bin/naturalvoices2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/bin/naturalvoices2.sh b/util/bin/naturalvoices2.sh index a01ff621..27c4f27e 100755 --- a/util/bin/naturalvoices2.sh +++ b/util/bin/naturalvoices2.sh @@ -1,3 +1,3 @@ text=$(echo $* | sed 's/ /+/g') -mplayer2 http://192.20.225.36$( curl -Ss -A "Mozilla" -d "voice=klara" -d "txt=$text" -d "speakButton=SPEAK" http://192.20.225.36/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') +mplayer http://192.20.225.36$( curl -Ss -A "Mozilla" -d "voice=klara" -d "txt=$text" -d "speakButton=SPEAK" http://192.20.225.36/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') -- cgit v1.2.3 From 66a89c3311e126b0280369700ee6549683cfee99 Mon Sep 17 00:00:00 2001 From: momo Date: Wed, 11 Apr 2012 13:40:33 +0200 Subject: //util/bin/naturalvoices2.sh: adding variables easy configurability --- util/bin/naturalvoices2.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/bin/naturalvoices2.sh b/util/bin/naturalvoices2.sh index 27c4f27e..4d8015aa 100755 --- a/util/bin/naturalvoices2.sh +++ b/util/bin/naturalvoices2.sh @@ -1,3 +1,6 @@ text=$(echo $* | sed 's/ /+/g') -mplayer http://192.20.225.36$( curl -Ss -A "Mozilla" -d "voice=klara" -d "txt=$text" -d "speakButton=SPEAK" http://192.20.225.36/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') +voice="klara" +base_url="http://192.20.225.36" + +mplayer $base_url$( curl -Ss -A "Mozilla" -d "voice=$voice" -d "txt=$text" -d "speakButton=SPEAK" $base_url/tts/cgi-bin/nph-nvdemo |grep HREF|sed 's/.*\(".*"\).*/\1/' |sed -e 's/"//g') -- cgit v1.2.3 From 6deac5efc1c0207d71006a7941c74f66a0bc0a2f Mon Sep 17 00:00:00 2001 From: EUcancER Date: Fri, 1 Jun 2012 14:51:31 +0200 Subject: add timer util --- util/bin/timer | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 util/bin/timer (limited to 'util') diff --git a/util/bin/timer b/util/bin/timer new file mode 100755 index 00000000..98c43063 --- /dev/null +++ b/util/bin/timer @@ -0,0 +1,14 @@ +#!/bin/bash + +if [[ $# -eq 0 ]];then + echo $(date '+%s') +else + [ "$1" -eq "-h" -o "$1" -eq "--help" ] && \ + echo "usage: $0 [start_time]" && \ + echo " if no start_time is given, return the currentime" && \ + echo " if start_time is given, return the difference" + stime=$1 + etime=$(date '+%s') + [[ -z "$stime" ]] && stime=$etime + echo $((etime - stime)) +fi -- cgit v1.2.3 From d72588e1da8c075daf791256593be20c9b67ea25 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Fri, 1 Jun 2012 14:53:47 +0200 Subject: //util/bin add statsc --- util/bin/statsc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 util/bin/statsc (limited to 'util') diff --git a/util/bin/statsc b/util/bin/statsc new file mode 100755 index 00000000..ce2c70b6 --- /dev/null +++ b/util/bin/statsc @@ -0,0 +1,4 @@ +#!/bin/sh +# see https://github.com/etsy/statsd for syntax +[[ $# -eq 0 ]] && echo "usage: $0 MESSAGE" +echo "$1" | nc localhost 8126 -- cgit v1.2.3 From d2f737473e3bbcb7592a6745820bccd333128459 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Sat, 2 Jun 2012 01:14:05 +0200 Subject: //retiolum adv_graphgen: now writing stats to graphite painload now provides convenient tools to enable graphite stats generation currently logged are: - overall build time of graphs - anon and detailed build times - current number of users in the darknet --- util/bin/statsc | 4 ++-- util/bin/timer | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'util') diff --git a/util/bin/statsc b/util/bin/statsc index ce2c70b6..ff86ccb8 100755 --- a/util/bin/statsc +++ b/util/bin/statsc @@ -1,4 +1,4 @@ #!/bin/sh # see https://github.com/etsy/statsd for syntax -[[ $# -eq 0 ]] && echo "usage: $0 MESSAGE" -echo "$1" | nc localhost 8126 +[ $# -eq 0 ] && echo "usage: $0 MESSAGE" +echo "$1" | nc -w 1 -u 127.0.0.1 8125 diff --git a/util/bin/timer b/util/bin/timer index 98c43063..0ccf514a 100755 --- a/util/bin/timer +++ b/util/bin/timer @@ -1,14 +1,14 @@ #!/bin/bash - +curr=$(date '+%s%N') +etime=${curr:0:${#curr}-6} if [[ $# -eq 0 ]];then - echo $(date '+%s') + echo $etime else - [ "$1" -eq "-h" -o "$1" -eq "--help" ] && \ - echo "usage: $0 [start_time]" && \ - echo " if no start_time is given, return the currentime" && \ - echo " if start_time is given, return the difference" + [ "$1" == "-h" -o "$1" == "--help" ] && \ + echo "usage: $0 [start_ms]" && \ + echo " if no start_ms is given, return the currentime" && \ + echo " if start_ms is given, return the difference" && exit 0 stime=$1 - etime=$(date '+%s') [[ -z "$stime" ]] && stime=$etime echo $((etime - stime)) fi -- cgit v1.2.3