Malcolm Still

Results 60 comments of Malcolm Still

An impedance mismatch that has just occurred to me: the event count returned by epoll is a different (larger) granularity (i.e. there is data to be read into your buffer)...

I remebered that one reason for a single build would be to allow for the possibility of a shared GL state such you could access the same compositor session on...

I do highly recommend people read The Art of the Metaobject Protocol...it's a beautiful book

Also, we should really store the index / handle of the container rather than a pointer as pointers are potentially invalidated on realloc (though we're not realloc'ing a the moment)....

With the above said, I am wondering whether to keep the global allocation, but rather than just killing the client that see the OOM, could we go out of our...

At least for dispatch functions, this is fixed by https://github.com/malcolmstill/foxwhale/pull/22 What about other things like an error when rendering?

I wonder if this might be a interesting use of arbitrary size integers and `@popCount`: ```zig const std = @import("std"); const MAX_CLIENTS = @bitSizeOf(u512); var CLIENTS: [MAX_CLIENTS]Client = undefined; var...

Quite interested in learning more about these. I added screenshotting to https://github.com/malcolmstill/ulubis the other day, using `gl:read-pixels`. It seems very slow, but I believe this is probably due to `gl:read-pixels`...

> I recently started a new job (at ApolloGraphQL), Congratulations! > but I did create a subreddit (https://www.reddit.com/r/crankjs/) Cool, I've joined. > The one thing I worry about with realtime...

Thank you both for your replies @Raiondesu thank you, I hadn't found that particular example > EDIT: As for seeing unexpected behaviour - it is not quite obvious from the...