Jelte Fennema-Nio

Results 703 comments of Jelte Fennema-Nio

In postgres zero downtime password rotations can be implemented by using 2 users that are both part of the same group: 1. Clients use user 1 2. Clients start using...

> That's not great, clear text authentication should not be used generally speaking. "Cleartext" over authenticated TLS is actually more secure than md5 over authenticated TLS. Because of the way...

@kczimm it surprised me that that worked, honestly. But while it might work for simple cases like the `shmem` example, I don't think it will work generally. Afaict it relies...

Yeah it's just a string replace for characters that have special meaning in LaTeX (in some contexts). I've made my fair share of bad design decisions in PyLaTeX, especially some...

Regarding dependency information, I used a sorted set to deduplicate packages while keeping order. That had worked quite well, but I'm not sure if such a container already exists in...

Okay looking at this again. I don't think we should support this. Because what should happen if the struct has 2 fields? So closing this as not planned.

Yeah, that's indeed the case. I don't think it's worth the effort to provide specific docs for each, but it would probably be good to prefix those docs with something...

@TheLostLambda feel free to provide a PR to update the docs

tl;dr +1 on the idea Concatenation seems impossible to do to me without returning a different type from Add. So while I also think concatenation is an equally valid Add...