ChessMonitor – Analytics for Lichess and Chess.com
11–20 of 25 posts
Re: ChessMonitor – Analytics for Lichess and Chess.com
#12Hi everyone, author here. Please let me know if you have feedback or questions.
Ahh, this is super nice! One thing I'd love to know or see is common mistakes I make or the type of mistake/trap I fall into in the pivotal moments of games (some kind of fork/pin combo for me I suspect) ... and/or repeated mistakes I've made in the same position.
Re: ChessMonitor – Analytics for Lichess and Chess.com
#13Hi everyone, author here. Please let me know if you have feedback or questions.
The scroll feature to rewind/forward moves on a game, with syncing the state in the URL, is just awesome. Do you mind sharing how it's done? I just published a library [1] that deals with syncing complex state in the URL, and I'd love to hear more about actual use-cases in the wild. [1] https://github.com/47ng/next-usequerystate
My code for that is rather simple. I'm using Next.js and the code looks something like this (a little simplified):
const router = useRouter(); // get the router/location object
const information = useFetch({ position: router.query.position }); // fetch information from the server
function changeChessPosition(newPosition) { // called when position changes
router.replace({ query: { postition: newPosition } }); // replaces the state in the URL
}
In addition, I have some caching in place so that each position is only downloaded once and the change function looks a little more complicated in my case as there are multiple values that can be change for each page.Re: ChessMonitor – Analytics for Lichess and Chess.com
#14Hi everyone, author here. Please let me know if you have feedback or questions.
It seems like Lichess already has most of the features on the site; they have a better UI on ChessMonitor though. The main killer feature I see is combining multiple accounts. Are there any other features didn't notice?
Another key feature Lichess does not have, is the Openings page. It is very powerful when used correctly. You can look at your openings and immediately see for which openings you might need to consume more theory (or which you should not play at all).
Here is an example: https://www.chessmonitor.com/u/cdPiOkUArRJ7shVNJcT3/openings...
Re: ChessMonitor – Analytics for Lichess and Chess.com
#15Hi everyone, author here. Please let me know if you have feedback or questions.
Would like to see Chess960 variant stats. Classic chess are way too predictable and players who've managed to learn popular openings have an advantage. Chess960 fixes that. And due to comparably low popularity of Chess960 I often play it with Stockfish. It has several difficulty levels which are a convenient tool for practice. So it would be nice to include games with bots (checkbox?) on ChessMonitor as well.
Re: ChessMonitor – Analytics for Lichess and Chess.com
#16Rating estimate came within 30 points of my current FIDE rating. Shockingly accurate!
If anyone wants more info on how this works, check out this post with more details: https://www.chessmonitor.com/blog/2023-elo-calculation
Re: ChessMonitor – Analytics for Lichess and Chess.com
#17Re: ChessMonitor – Analytics for Lichess and Chess.com
#18Re: ChessMonitor – Analytics for Lichess and Chess.com
#19Rating estimate came within 30 points of my current FIDE rating. Shockingly accurate!
Thanks for the feedback! Always good to hear from chess players with a FIDE rating that it's working :) If anyone wants more info on how this works, check out this post with more details: https://www.chessmonitor.com/blog/2023-elo-calculation
I suspect that the online population — especially at lower ratings — is significantly different to the over the board population. I also expect — especially in the FIDE case — that ratings stratify the players into hobbyists, serious amateurs, professionals, etc and so different FIDE rating ranges are likely to scale to online ratings differently.
All of the above should be implicitly accounted for in an isotonic regression so long as monotonicity holds globally. You can easily do it with sklearn and I suspect it may give you better results.
Re: ChessMonitor – Analytics for Lichess and Chess.com
#20The site's aesthetic is shockingly similar to Dotabuff (dotabuff.com), which is a nice design in both cases. Any relation to it?