#
https://mastodon.social/users/theludovyc/statuses/115206856592029811
At the moment it is just called "Tavern Game" :D. The idea is to run a tavern in a fantasy world. Adventurers come to you before their quests for equipment.
Personal Blog about anything - mostly programming, cooking and random thoughts
https://mastodon.social/users/theludovyc/statuses/115206856592029811
At the moment it is just called "Tavern Game" :D. The idea is to run a tavern in a fantasy world. Adventurers come to you before their quests for equipment.
#gamedev progress:
enum
to distinguish between different items. This would become infeasible once I start adding more items. Rework to have a generic item struct.Implementing scheduled publishing with #ActivityPub requires some effort. Until now my blog only had draft/published as states of entries. The AP service would just send out the requires requests immediately. With the possibility of setting the publishing date into the future this is no longer possible. I have to somehow trigger these after the publishing date.
Pull systems are so much easier than push systems.
#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
#gamedev progress:
#gamedev progress:
#gamedev progress:
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();
https://mementomori.social/@juergen_hubert/114987723082786329
Sauerland :)
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
Pushed a small update to #chromahack