boarquantile | 3 years ago | on: Lichess gets a big upgrade. It doesn't go as planned
boarquantile's comments
boarquantile | 4 years ago | on: Our lawsuit against ChessBase
> [...] reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license
which is what the Stockfish developers have now done. I.e. if Chessbase starts to comply now, it would be too late.
boarquantile | 5 years ago | on: Open source chess developers warn about a commercial engine based on Stockfish
ChessBase could easily comply with any open source license by linking the full source code, including the method they used to generate NN weights (if they think the license applies here as well), in a footnote.
It would still be a scam, because their claims of superiority, originality ("almost from scratch"), and innovation (see the funny part about technology from Japan) are wrong, and purposely so.
boarquantile | 6 years ago | on: Improved chess game compression (2018)
boarquantile | 8 years ago | on: Lichess Analysis Board with Stockfish 8 in Asm.js
PNaCl required almost no modifications to Stockfish (https://github.com/niklasf/stockfish.pexe), supports multithreading and is still the fastest.
WASM and asm.js require the same patches (https://github.com/niklasf/stockfish.js). Most notably WASM does not yet have multi-threading. In the original Stockfish one dedicated thread is listening for new commands. Instead now the main search thread (since it's the only thread) has to check for new commands from time to time, which costs a bit of performance.