Chrysus

Results 7 comments of Chrysus

Also encountered this issue for the same reason mentioned (transpositions) as well as ECO and database lookups by FEN. There should be some flag we can pass to determine which...

To deal with it, made my own fork since it's about 10 minutes of work to get the FEN in accordance with FEN's generated by most other platforms. It doesn't...

The change in `position_list.py` causes an out of range exception as `len(self.analysed_legals) >= move_number` does not mean that `self.analysed_legals` contains `move_number`. (e.g. if `self.analysed_legals` has a length of 1 and...

It looks like there might be two stores that control unread statuses: one for the guild (server) and one for each channel. The line `const UnreadStore = WebpackModules.getByProps("isForumPostUnread");` seems to...

On Windows I haven't been having any issues inputting in Japanese with the native IME. Maybe limited to Mac and its IME, or maybe a certain editing mode in MRT?...

May be interested in this Stackblitz I put together: https://stackblitz.com/edit/vitejs-vite-pksfbb?file=src%2FApp.tsx Also a good reference of the event sequence: https://stackoverflow.com/questions/7316886/detecting-ime-input-before-enter-pressed-in-javascript The only difference I notice with and without the blur is...

It's easier to resolve this if you handle it through Ember. In your API serializer file (/app/serializers/application.js), you can add: ``` keyForRelationship(key) { return key; }, keyForAttribute(key) { return key;...