sugizo

Results 70 comments of sugizo

this one python chess with ipywidget, slower than without ipywidgets but faster compare to stockfish module **result** ![image](https://user-images.githubusercontent.com/2418295/171308763-f79c288b-30a2-42ed-833b-bfd44f9652db.png) **code** ``` import chess import chess.engine import time from IPython.display import display,...

**error traceback non ipywidget by keyboard interupted** ``` --------------------------------------------------------------------------- KeyboardInterrupt Traceback (most recent call last) in 2 # brainfish_analyse, fairy_stockfish_analyse = looping forever 3 ----> 4 play_pgn("pgn/chess-play.pgn", brainfish_analyse, sleep =...

attached the log of initial problem stockfish derivaties e.g. brainfish and fairy_stockfish not work when analyze pgn **result** no error occured, seems like looping forever [pgn_stockfish_player.txt](https://github.com/zhelyabuzhsky/stockfish/files/8819394/pgn_stockfish_player.txt) but the same code...

tested https://github.com/manga-py/manga-py/blob/stable_1.x/embedded.md ``` FileNotFoundError Traceback (most recent call last) in 1 from manga_py.parser import Parser 2 from manga_py.info import Info ----> 3 my_awesome_handler = open('my-handler') 4 class MyAwesomeInfo(Info): 5 pass...

not sure, is it same : board.push can make *.bin from *.pgn like on the link above (ubuntu package polyglot) ? **e.g. from the link** polyglot make-book [-pgn inputfile] [-bin...

basically the idea is taken from python-chess itself while in pgn you can [parsing (read) and writing](https://python-chess.readthedocs.io/en/latest/pgn.html#) why polyglot can only [parsing (read)](https://python-chess.readthedocs.io/en/latest/polyglot.html) if not possible, it's ok, just an...

when people learn the scale usually put the root note e.g. c major scale consist of c-d-e-f-g-a-b d dorian consist of d-e-f-g-a-b-c e phrygian consist of e-f-g-a-b-c-d f lydian consist...

base on wiki link above add some scale ``` let neapolitanMinorModes: Mode[] = [ { name: 'Neapolitan Minor', index: 0 }, { name: 'Gypsy', index: 5 }, ]; { name:...

**./src/music-module.ts** ``` let bluesHexatonicModes: Mode[] = [ { name: 'Blues Major Hexatonic', index: 0 }, { name: 'Blues Minor Hexatonic', index: 9 }, ]; { name: "Blues Major Hexatonic", intervals:...

the idea is to add the new (degree), not to replace the current one (intervals) think it's different between the degree and the interval in music thanks