This just proves the point.
While World War I is a valid alternative argument, the suffering of women has been a constant throughout history. Why didn’t no-fault divorce emerge after the enlightenment, or even around the year 1000? It was already a burden back then. The reason it exists today is because of World War II.
Your description of the problem makes sense. If you think improving the user experience in this way is worthwhile, then go for it. Just remember, most users don’t pay attention to the address bar.
For implementation, I suggest creating a new table, something like ‘tb_user_category_index,’ with userId as a foreign key and an integer that increments each time it’s used. Automating this process in the database would be ideal: set it up once and let it run on its own, keeping things simple.
However, don’t confuse this cosmetic index with a primary key. The primary key should only serve as a unique identifier for a record and hold no other information.
Did you ever find a solution? I’m on mobile, and the Pastebin formatting is a bit off, so I can’t read the compose file very well. However, I suspect the error is related to this line:
24 # - WEBDRIVER_URL=browser-chrome:4444/wd/hub
Since a colon (‘:’) is used to indicate a volume, it makes sense that the error is about a missing volume. Try wrapping the line in double quotes like this:
24 # - “WEBDRIVER_URL=browser-chrome:4444/wd/hub”
to see if that fixes the error.
You are correct. Its quiet a find but I can reproduce this. I suspect the issue lies in the piece of code that tries to make sure you don’t get the same animal twice when you select a random animal. You can also follow the steps until there is only the Newt and then press the dice below it’s name. Now there are no animals.
The random selector subtracts one from the total options and adds that one back if the new number is greater or equal to the precious number. So in case of only a single option it gets 0 at random, which equals the previous index and does +1, which doesn’t exist.
There should be a failsafe that prevents this logic if there is only one animal in total 🤷♂