Live data from Hacker News

2048 in bash

github.com

1–10 of 21 posts

Re: 2048 in bash

#4
You can keep pressing left all the time and you will you see some numbers appearing and disappearing. Sometimes moving to the line on top.

Pressing down results in errors on line 111. let and board giving "bad array expected", "expression expected".

Edit: I am on Mac OS.

Re: 2048 in bash

#5
Author here, I did not notice any numbers disappearing on several games, maybe it is because of different versions of bash, you can try running it as:

./bash2048.sh | tee qqq.log

then remove color codes from log by running:

sed -r -i "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" qqq.log

you can then see each round in the log and it should be easy to find the spot where numbers disappeared, if you could post that log somewhere it may help me find the problem.

Re: 2048 in bash

#6
post #5

Author here, I did not notice any numbers disappearing on several games, maybe it is because of different versions of bash, you can try running it as: ./bash2048.sh | tee qqq.log then remove color codes from log by running: sed -r -i "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" qqq.log you can then see each round in the log and it should be easy to find the spot where numbers disappeared, if you could post that log…

Strange, now I tried with following versions of bash and it seems to work fine for me with all of them - no errors and no disappearing numbers:

4.3.0 3.2.25 3.00.15

Re: 2048 in bash

#9

Serious question - is there a way to filter out all of these annoying 2048 games that pop up every day, in my HN settings?

Serious question - is there a way to filter out all of these annoying killjoy posts which mock people for building stuff for fun that pop up every day, in my HN settings?

Re: 2048 in bash

#10

Serious question - is there a way to filter out all of these annoying 2048 games that pop up every day, in my HN settings?

With StyleBot (https://chrome.google.com/webstore/detail/stylebot/oiaejidbm...) you can add this custom CSS to the page:

td.title:last-child:before { content: '2048'; }

Post reply on HN