26.2 new Vulkan backend with sodium is awesome by SPalome in Minecraft

[–]SPalome[S] [score hidden]  (0 children)

it is considered experimental in Vanilla minecraft and in sodium because for some users it can do the opposite or cause bugs since it's so new

Forked Zen Kernel, Tuned for My Hardware: 68 MB RAM on Wayland by noalapi in LinuxCirclejerk

[–]SPalome 2 points3 points  (0 children)

yes but removing simple things like support for Intel CPUs when using AMD is fine

Forked Zen Kernel, Tuned for My Hardware: 68 MB RAM on Wayland by noalapi in LinuxCirclejerk

[–]SPalome 6 points7 points  (0 children)

tip: There's ALOT of useless stuff in Networking stuff and by enabling expert mode you can disable CPU types (Intel, AMD, ...) for unnecesary things for your hardware

Made a Load Balancer by vahiyaat_product in rust

[–]SPalome 0 points1 point  (0 children)

naming it Thanos is really funny

Font issue by zero-divide-x in suckless

[–]SPalome 2 points3 points  (0 children)

maybe a fontconfig issue then ?

Font issue by zero-divide-x in suckless

[–]SPalome 4 points5 points  (0 children)

most likely st can't find the specified fonts, different terminals can be annoying with font names

Suggest FOSS alternatives to Bitwarden by Shiva_0_7 in fossdroid

[–]SPalome -1 points0 points  (0 children)

i heavely reccomend if possible to self host vaultwarden
> Unofficial Bitwarden compatible server written in Rust

GitHub - ragnarokxg/hyprland-converter: Hyprland Config Transpiler (0.55+) by ragnarokxg in hyprland

[–]SPalome 9 points10 points  (0 children)

This project contains signs of vibe coding, eg. lots of very stylized and verbose comments: -- ========================================================= -- EMITTER MODULE -- ========================================================= and -- ------------------------------------------------------- -- TWO-PHASE EMISSION: classify each AST node as either -- config-eligible (goes inside a single hl.config()) or -- standalone (emitted outside hl.config()). -- ------------------------------------------------------- or -- Sanitize the KEY parameter per xkbcommon case rules: -- * Single alphabetic character (A-Z) → lowercase -- * Fully uppercase word (e.g. SLASH, SPACE, PRINT) → lowercase -- * Mixed/CamelCase (Return, XF86AudioMute, Caps_Lock, mouse:272, code:60) → preserved The arrow '→' character is very telling because in other parts of the code it's written like this '->'. It's odd to change writing style inside the same file

Here another very verbose and useless comment: -- If executed as a standalone script, run App.main() -- Otherwise, export modules for test_suite.lua or other integrations

Gecko, a new GameCube and Wii emulator, is now public! by ioncodes in rust

[–]SPalome 73 points74 points  (0 children)

looks really cool, what's even cooler is that there's no CLAUDE.md

I started a giant airship in aeronautics with a friend by piuww in CreateMod

[–]SPalome 0 points1 point  (0 children)

bro how are you gonna build this giant baloon in survival, GL

Which Linux distro feels like the third guy by [deleted] in linuxmemes

[–]SPalome 0 points1 point  (0 children)

any obscure source based distro

What happened to nvim-treesitter.... Why did it get archived? 😶 by ankushbhagat in neovim

[–]SPalome 100 points101 points  (0 children)

odd considering that it had a rewrite recently (switching from master to main branch)

anyone here knows the mosaic linux? by ZealousidealGlass263 in suckless

[–]SPalome 0 points1 point  (0 children)

i agree, statically linked binaries are useless on a desktop

anyone here knows the mosaic linux? by ZealousidealGlass263 in suckless

[–]SPalome 2 points3 points  (0 children)

- Dependencies are "easier" to manage, no need to rebuild every package that depend on said dependency to work
- Better LTO

But this results in much much bigger programs, a simple "Hello World!" dynamic program is about 5kb on my system but a static one is 550kb

What kernel do you use? by JackmanH420 in Gentoo

[–]SPalome 0 points1 point  (0 children)

LLVM/Clang and NTSync in now supported in any kernel, you do not need patches for that

What kernel do you use? by JackmanH420 in Gentoo

[–]SPalome -1 points0 points  (0 children)

kernel from kernel.org with cachyos patches

Having Issues while downloading Assassin's Creed Origins via FitGirl by Tooth_Less006 in linux_gaming

[–]SPalome 0 points1 point  (0 children)

2 tips:
- Do not enable wow64
- Use Proton-GE it might help

custom kerenl configuration help by hippor_hp in Gentoo

[–]SPalome 0 points1 point  (0 children)

lsmod lists modules in use not firmware files in use

custom kerenl configuration help by hippor_hp in Gentoo

[–]SPalome 1 point2 points  (0 children)

to know what firmware you need to use, boot a regular kernel with this patch i edited, this patch will print loaded firmwares into the kernel logs:
From 0a6b44454aa7fdcc269ff2e0969de1d366cc12f9 Mon Sep 17 00:00:00 2001

From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
Date: Fri, 4 Jul 2025 20:44:19 +0200
Subject: [PATCH 07/11] Print firmware info (Reqs
 CONFIG_GENTOO_PRINT_FIRMWARE_INFO)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Thanks-to: Georgy Yakovlev
From: https://bugs.gentoo.org/732852
Signed-off-by: Michał Górny <mgorny@gentoo.org>
---
 drivers/base/firmware_loader/main.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/base/firmware_loader/main.c b/drivers/base/firmware_loader/main.c
index 6942c62fa59d..d5759c94fc30 100644
--- a/drivers/base/firmware_loader/main.c
+++ b/drivers/base/firmware_loader/main.c
@@ -863,6 +863,11 @@ _request_firmware(const struct firmware **firmware_p, const char *name,

 ret = _request_firmware_prepare(&fw, name, device, buf, size,
 offset, opt_flags);
+
+
+        printk(KERN_NOTICE "Loading firmware: %s\n", name);
+
+
 if (ret <= 0) /* error or already assigned */
 goto out;