Published:
2025-08-27
#TIL #systemd user service don't run when the user is logged out (by default)
User has to be enabled for "lingering" to keep services running.
loginctl enable-linger username
It worked for a long time for me without this because I had a tmux session open :D
Published:
2025-08-22
#gamedev progress:
built a UI system using "immediate mode" style.
Code for one button:
if (d.add_inter(.{ .BUTTON = .{} }, .{ .owner = i, .item = 0, .index = 0 })) {
std.debug.print("BUTTON KITCHEN\n", .{});
}
d.down();
{
d.add(.{ .V_LIST = .{} });
d.down();
{
d.add(.{ .TEXT = .{ .text = "Kitchen", .box = rl.Vector2.init(200, 20) } });
d.add(.{ .TEXT = .{ .text = "100 G", .box = rl.Vector2.init(200, 20) } });
}
d.up();
}
d.up();
#zig
Published:
2025-08-07
https://mementomori.social/@juergen_hubert/114987723082786329
Sauerland :)
Published:
2025-08-07
https://mementomori.social/@juergen_hubert/114987631632172328
I've built an #ActivityPub integration for my blog. Likes, boosts and replies are also shown below blog posts. Together with #webmention it serves as the comment/feedback mechanism for my blog.
The source is public and open if anyone's interested. https://github.com/H4kor/owl-blogs
Published:
2025-08-06
Pushed a small update to #chromahack
Added 3D Perlin Noise
Added complex number division
Added 3D vector normalization
Published:
2025-07-31
Circle: q2qu1sV11am11am11am11am11am
#chromahack
Published:
2025-07-31
Mandelbrot: yq111axqms CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA CMyq111axqmsA
(explanation will follow)
#chromahack
Published:
2025-07-31
What is considered best practice when shutting down an #ActivityPub service? The services itself is not used by anyone, but still received a constant stream of activities for deleted users.