Vegard Nossum

Results 15 issues of Vegard Nossum

I've just encountered minimongo and it looks really great, but I don't think it will work with e.g. [mongomock](https://github.com/mongomock/mongomock) out of the box. mongomock is a drop-in substitute for pymongo...

**IMPORTANT** 1. You have verified that the issue to be present in the current `dev` branch. ✅ 2. Please supply the command line options and relevant environment variables, e.g., a...

Hi, I'm pretty sure gluProject() is missing the perspective divide in its description formulas. The current docs on khronos.org say: ![image](https://user-images.githubusercontent.com/24173/80307325-9f0f2400-87c8-11ea-993a-ee285bf873e0.png) But if you look at e.g. https://salsa.debian.org/xorg-team/lib/libglu/-/blob/debian-unstable/src/libutil/project.c#L234 then v''...

I haven't quite decided which (if not both) is better: caching the result of compiling expressions in a big program so that we only have to recompile dependent expressions or...

There are good reasons for having immutable strings, but there are also good reasons for having mutable strings. We should probably provide standard implementations for both, possibly also along with...

I imagine an `asm` macro that defines symbols for registers and instruction mnemonics and takes arguments for inputs/outputs/constraints as well as the actual instructions. (Constraints will necessarily be limited for...

The difference between `fun` and `lambda` would be that `lambda` always creates a new function type and that the return type is always assumed to be the type of the...

It's worth considering how to share code with `while` (already implemented), i.e. whether to base one off the other, or base both off a more general loop construct.