Alex Tomlins

Results 9 comments of Alex Tomlins

This isn't 100% correct. There are 2 sets of logs in the router. The first is all the info logs (using `log.Println` etc) which use the [Go logging library](https://golang.org/pkg/log/). The...

I think that would be a good change to make, however it would be important that this is done in a backwards-compatible manner for markup that already has the manually...

I see your point, this will add more complexity to the code. I'm just aware of the volume of content out there that will be written for the existing behaviour....

Is your caps lock on? I've noticed that the hotkeys don't work when caps lock is on.

I'm also seeing this behaviour on Ubuntu. Ubuntu: 20.04 Vim: vim-gtk3 2:8.1.2269-1ubuntu5.7 I have the following in `~/.vim/ftplugin/javascript.vim` ```vimrc setlocal shiftwidth=4 setlocal tabstop=4 ``` In the root dir of my...

> I also get now a "Can't parse data ERROR" on different PNG and PDF files while scanning with version 0.105, the same files can be processed with version 0.104....

I think this may be caused by pytorch (a dependency of transformers) bundling its own version of libiomp5. I've been hitting segfaults if torch is imported before wand on macs...

The `server.properties` file is pretty easy to parse with awk, so you could do something like: ```sh ./mcrcon -H localhost -p "$(awk -F '=' '$1 == "rcon.password" { print $2;...

@waynew I was also hitting this, and I found the fix you describe worked for me as well, so I've raised it as #381.