Boscop

Results 547 comments of Boscop

So with the blocking API it's already using a thread pool and I don't have to spawn multiple instances of the `SyncServer` listening on the same port?

Ok, and how many threads is it using in the pool? Let's say all threads are busy processing a rpc call (e.g. doing blocking db stuff) will new rpc calls...

Ah, I found out that the string was malformed, it contained a `'\r'`, so the `println` output looked wrong.. So now that works. And I found out that the unnecessary...

@Marwes It's not working, I'm getting this runtime error when using gluon in wasm. Any idea why? :) ![image](https://user-images.githubusercontent.com/535593/151863196-7ee12ae7-ebad-4506-acb3-62fdd1c741aa.png) ```toml gluon = { version = "0.18", default-features = false, features...

Also, another aspect of Wasm support would be that if a gluon script prints to stdout/stderr, it won't work. Is there a way to get all printed output from the...

@Zireael07 Sure, but it can't be used to redirect the output of gluon scripts.

+1 for extended / custom prelude. As long as it's not possible to extend the prelude, what's the best workaround? I currently inject my custom prelude (which contains some imports...

Any update on this? :) I'm often getting rate-limited, even when using --user and --pass, even though that was my first try and I wasn't hitting any limits myself. Weird..

@Fauxsys Thanks! I don't use it from a python script, but from the cmd line. Btw: ``` --title= Manually sets the page's title. ``` I assumed it only sets the...

It would work per tuple constituent, for tuples where all constituents impl Iterator (considering that the proc-macro can't check the types of the constituent, it's ok to assume they impl...