Scott Stensland

Results 16 comments of Scott Stensland

``` export foo=thisb1Gp000asw0r5 echo $foo thisb1Gp000asw0r5 hash_of_pwd="$( echo $foo | sha1sum | cut -d' ' -f1 )" echo $hash_of_pwd 1d41a934db97ac6f0aeb6e74b81d26c14e2ba652 # ... now try to crack hashed string buster -s...

``` another example of getting error export foo=thisb1Gp000asw0r5 echo $foo thisb1Gp000asw0r5 echo $foo | sha1sum > output/20220210_some_hash buster -f output/20220210_some_hash _ _ ____ ____ _ _ ___ _ _ ____...

after you download file `bfg-1.14.0.jar` then execute it using command java -jar bfg-1.14.0.jar rest-of-your-parms

it compiles from source code and runs just fine on Ubuntu ... say 20.04 git clone [email protected]:yudai/gotty.git cd gotty make ./gotty -w vi ~/supercool this assumes you have go installed...

@athornton it compiles OK using go1.13.1 with ubuntu 19.10

server config ``` cat server.ini [default] # server or client mode = server [server] # port range to listen hopstart = 40100 hopend = 40200 # server addr addr =...

this repo is more of a specific application which streams a .wav file from server side to the browser where it then renders ( plays ) the received streamed audio...

fully read all of the readme which appears at the top most page of this git repo page ... in there it refers to a live heroku link which has...

Yes I have some work to do ... I need to better isolate execution runs ... its on my todo list ... let me know if have any questions

node 0.10.x ... it works using that version ... its what packages.json says and what demo uses @BananaHemic yes I need to get it working on latest node ... have...