Emil Lauridsen

Results 10 comments of Emil Lauridsen

Then maybe add a "movie mode" disabling root tempoarily? I'm sure all the americans who wants to rent movies, would like that :)

Another benefit: Using a pure rust postgres implementation greatly decreases the complexity in building a statically linked binary that uses diesel as a dependency. Currently you have to recompile openssl,...

@sgrif Yeah, a feature gate is also a must if my previously described benefits with regards to static builds are to be realized.

Wanting to provide some real world feedback, I've been trying to get this running against our code base by `[patch]`-ing this branch in our workspace `Cargo.toml`, but with little luck...

`diesel_derives` was the key, thank you. Will report back once I get our code up to date with the PgValue changes and get to give it a spin.

Okay, that took a bit due to a vacation, but I've got our code base up and running with the Rust based PostgreSQL connection, and it's looking good so far....

Another avenue to go down is the MSVC way of doing inline assembly. M$ does a smart augmented assembly, where you can transparently access C/C++ variables from the assembly. An...

So if I need a guarantee on the order of a structure it has to be packed, right? If so you'd probably need a chapter of documentation describing how to...

x86 will segfault upon doing an unaligned memory access (typically aligned to data size). Imagine a structure like this: ``` zig struct Gizmo { tag: u8, thingy: u16 } ```...