sphaerophoria
sphaerophoria
it seems on linux the following will omit the first parameter when passed to zeal ``` xdg-open "dash-plugin:query=shared_ptr&keys=cpp,net,boost,qt,cvcpp,cocos2dx,c,manpages" ``` while the following works just fine ``` xdg-open "dash-plugin://query=shared_ptr&keys=cpp,net,boost,qt,cvcpp,cocos2dx,c,manpages" ``` According...
**Describe the bug** If I add a text edit, then a scroll area, typing in the text edit moves the position of the scroll area. E.g.  **To Reproduce** Sample...
In the following snippet ``` void TestFn(int) {} template void TestTemplateFn(T a) { TestFn(a); } void UseFunction() { auto a_lambda = [] (auto x) { TestFn(x); }; a_lambda(1); TestTemplateFn(1); }...
Proof of concept swap of snorenotify with knotifications. * Implementation seems to work pretty well on my machine (Archlinux, KNotofications 5.78, Gnome 3.38) * Unfortunately user icon is no longer...
This partially fixes #5832 in that we no long segfault. There is a deeper underlying problem that the history still relies on undefined behavior of GROUP BY causing us to...
# Introduction I've heard from @anthonybilinski that there are lots of other clients around with new group chat (NGC) support from https://github.com/TokTok/c-toxcore/pull/1654. I would like to add our client to...
When using the pulseaudio backend on linux, audio can fall behind and never catch up until the device is closed and reopened. I work on a chat program that uses...
I've written some derive code that generates the equivalent C api structs for me. After running cargo expand the structs look like ``` pub struct Notification { pub color: Color,...
On my machine eframe fails to initialize after commit 8eb687cf04dd2b68dfe467d142db6b8759425e16 This seems to be a result of a bad EGL configuration. With EGL_LOG_LEVEL=debug libEGL debug: EGL user error 0x3003 (EGL_BAD_ALLOC)...
### Zig Version 0.13.0 ### Steps to Reproduce and Observed Behavior With the following file `test.zig` ```zig const std = @import("std"); pub export fn some_function() f32 { return std.math.atan2(0, @as(f32,...