Linus Unnebäck

Results 747 comments of Linus Unnebäck

Hmm, what is the use case for adding anything to `req.body`, I'm guessing that that middleware isn't actually reading from the body of the request since that would consume the...

I would recommend putting it onto `req.user` instead since it's semantically wrong to put it on `req.body` since it didn't come from the body... This is for example how passport.js...

Well, we are setting the `req.body` property because multipart uploads can contain both fields and files. The files will end up in `req.files` and the fields in `req.body`. This is...

@kikar what is your use case? I still don't think it's semantically correct to extend the `body` property since we are the ones parsing the body 🤔

I've added a new `Free` state, and was going to implement cpu reuse in `new_cpu` but not sure exactly how to proceed 🤔 ```diff diff --git a/x86/src/x86.rs b/x86/src/x86.rs index 222969de..cfd8f386...

(rebased on latest main, not made any more progress)

It seems like this wasn't needed, and I went down this route because something else triggered Pocoman to run in palette mode...

It seems like the threading is just used to kick of one thread that connects to the internet and check some kind of latest news, stores it in the registry,...

Sorry, I have had limited with time today and just cherry picked som already done work. Will give some more time to the comments later! > If it helps you...

Making progress! Updating `SetWindowPos` to actually resize the host window fixed the sizing issue! Need to implement stretching in `StretchDIBits` now 🐎 ...and it seems like there are some flags...