saolof
saolof
I think that is a good idea. Right now Gnome software shows the slack flatpak as unsafe because of this. Users should be trained to not ignore safety issues for...
Huh, that is weird. On Fedora with wayland, just disabling the x11 socket worked for me It is possible to explicitly tell electron apps to use wayland with command line...
An opinion from a random person checking out the repository: IMO it depends on what the scripts you write do. Posix compliant shell isn't _that_ bad of an option as...
You can also use buildah in a shell script instead of writing a dockerfile. This is exactly the kind of situation where buildah run lets you avoid the annoying quirks...
Not a maintainer, but this PR solves exactly the problem I had when creating the issue. Thanks for working on it! Edit: was there a preInitSql and postInitSql?
Just adding to this issue that documenting the consistency guarentees of KV is very nice so that users can identify usecases properly. I know that k3s has it as an...
We're having the same issue after a migration to postgres 14. All the Hasura queries seem to be permanently idle, while the active queue is dominated by queries that should...
@imacrayon @devrav I pulled the `cache` branch and added this snippet as a quick hack to get working SSE support in alpine-ajax, to see how well it would work: ```js...
Updated version of the above snippet for the 0.7.1 release ```js Alpine.directive('sse', (el, { expression }, { cleanup }) => { const es = new EventSource(expression, { withCredentials: true });...
Right, upon closer examination of my quick microbenchmark comparison between SmallStrings, it turned out that SmallString's comparison inherits from AbstractVector, which compiles to a nested loop. It may be worth...