Returning to trying to "play through" my game library
First step: get organized, which of course required py and js
https://bruk.org/games/
step 2: fill in the My Rating column for each of these 😎
step 3: ??? step 4: profit
First step: get organized, which of course required py and js
https://bruk.org/games/
step 2: fill in the My Rating column for each of these 😎
step 3: ??? step 4: profit
Comments
If I can be a nerd for a min, it'd be pretty cool to be able to sort the most recent played to the top instead of Never. If you think so too, the following additions can do so.
lastPlayed: row.lastPlayed || 'Never',
lastPlayedSort: row.lastPlayed ? new Date(row.lastPlayed).getTime() : 0,
[...]
[...]
It'll still display Never, but they'll sort to the bottom of the table when doing new to old.