Federico Simonetta

Results 123 comments of Federico Simonetta

I'm not sure why you people continuously state that this is not a bug and that it is not reproducible. It's easy: create an ubuntu docker, install node and yarn...

I noticed that inverting all colors work nice. Probably just rotating colors in could work. Some advice on this?

Found a solution with Python 3: ```python def invert(color_to_convert): table = str.maketrans('0123456789abcdef', 'fedcba9876543210') return '#' + color_to_convert[1:].lower().translate(table).upper() # original color list l = ["#9CD8F7", "#F5FA1D", "#F97C65", "#35D27F", "#EB75D6", "#E5D180", "#8997F5",...

I have forked the project and made it compatible with light backgrounds. The forked version is also compatible with Oni editor. I'm going to make a pull request on this...

> Most of the time, users need a simple flag to blacklist python standard library as well as third party packages that are installed. If `snoop` can provide the flags,...

Hello, this plugin looks very nice and almost better than CodeGPT/ChatGPT for the user interface. One thing it's lacking is an easy way to configure the API request of the...

Same problem with neovim 0.4. Even macros at the beginning to the line breaks SemanticHighlight for the whole remaining document (e.g. macro applied to functions) Test file: ``` # trying...

An ugly workaround is to set the syntax file to python or something similar: `autocmd BufEnter *.jl :set syntax=python` By the way, I think the problem is in `julia-vim` and...

Hello, I used auto-sklearn in several projects now, but never faced this issue... until today. I think the problem is that autosklearn doesn't really stops ongoing training for certain algorithms...