Jordan

Results 38 comments of Jordan

As an aside, I think a lot of this information should be on https://www.libhttp.org/. I would at least let people know you are using an event driven architecture over threads....

I use the following workaround to resolve this: First, lock the screen at 300 seconds. Next, turn off the screen at 330 seconds. If there is keyboard/mouse movement, turn the...

To add to this (perhaps a bit late), the purpose of making the `quit` function private is two-fold: 1. It's consistent with other rust types in the standard library. Note...

That's an interesting idea. I'll take a look at it sometime this week. Keep in mind you can easily transform the result from what it is to what you want...

The build step is expensive. It is much faster than that in release mode. I don't remember if rust analyzer obeys release, though. I do think about the magic numbers...

The easy solution may be to add: ``` [profile.dev] opt-level = 3 ``` to your Cargo.toml. On Mon, Jun 14, 2021, 11:49 AM Jordan Bray ***@***.***> wrote: > The build...

Hey, @WalterSmuts , I'm going to need quite a few changes before I am willing to merge this. I have several issues. 1) The added fields to `Board` are not...

I can already tell this is much better than the original patch, I still have some nit-picking to do, but this is much closer to how the implementations should be....

There are several unsound issues here that I will take a look at this week. Don't view my lack of comments on the other issues as meaning I have ignored...

@Soveu I was wrong. You said: > There shouldn't be a real performance impact on initializing a ~100 bytes structure, the cost of code being (potentially) completely broken I think...