goodpaul6
- Karma
- 6
- Created
- February 4, 2022 (4y ago)
- Submissions
- 0
I work on compilers/games/web software.
Currently Co-Founder/CTO of https://postgrid.com
See my work at https://github.com/goodpaul6
Currently Co-Founder/CTO of https://postgrid.com
See my work at https://github.com/goodpaul6
I don’t think it’s trying to have some magical hook, it just feels better to program than C/C++ for most of their use cases. That being said, I find the error handling via multiple return values + or_return pretty…
It looks like they only repaint when there is interaction as well (so it does sleep while nothing is happening). However, my point with linking this library was just to demonstrate that accessibility and IMGUI are not…
Here's an IMGUI library that's also accessible (via AccessKit): https://github.com/emilk/egui
I decided to implement it (IMGUI that only repaints when relevant interactions occur) so that my point comes across more clearly: https://github.com/goodpaul6/imgui-power-saving-example Of course this is a greatly…
I'm not sure the perf/battery life tradeoff is a necessary aspect of immediate mode UI. while (running) { event := get_next_event() process_event(event) repaint() } You could just have get_next_event block until there…
I get the sense that most ad-monetised social media apps are forced to show an algorithmic feed that maximises ad impressions; otherwise advertisers will just move to a platform that does. I suspect that even BeReal…
> This is not possible at all because TypeScript is a compiler Not sure if this supports your point. Lots of compilers emit runtime type information, e.g. Golang, Java.
Interestingly, given the minimal core of the language, arrays are not built in (this is something I'm looking to change, of course). As such, the "array" type is just an opaque type exposed via the C binding API. Given…
Thanks! Just fixed this. Seems the "%=" operator is less useful than I thought.
I’m currently working on Tiny [0], a small statically typed programming languages which is even more minimal than Wren. [0] https://github.com/goodpaul6/Tiny