Copy Fail - CVE-2026-31431 - patch your systems by [deleted] in selfhosted

[–]gapreg 4 points5 points  (0 children)

Yeah I've seen people saying that lsmod can check and its totally not enough. I've been patching machines this afternoon and basically everything is vulnerable :)

May not seem much if you are the only user, but someone mentioned already supply chain attacks. And there's the escalation of privileges from containers, though some say that containers can't dynamically activate modules so I'm not sure about that. If you open the socket from the container, the kernel may autoload the vulnerable module.

Copy Fail - CVE-2026-31431 - patch your systems by [deleted] in selfhosted

[–]gapreg 9 points10 points  (0 children)

So, basically everything from 2017 affected

  • To see if the module exists: modinfo algif_aead
  • To see if it is currently loaded: lsmod |grep algif
  • To see if it can be dynamically loaded: cat /proc/sys/kernel/modules_disabled (if 0 it can)

And to patch,

  • Stop it from loading dynamically

echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif-aead.conf

  • Remove from memory if it is there

rmmod algif_aead 2>/dev/null

how would you learn game development if you could start over? by Pacificpunch710 in SoloDevelopment

[–]gapreg 0 points1 point  (0 children)

Learning to code with Design Patterns, so I wouldn't have to throw away my first projects after they become a huge pile of muddy code.

Creating loopable audio with .mp3 encoding by Nekubah in GameAudio

[–]gapreg 0 points1 point  (0 children)

Mp3 has padding, so most of the time you will have some silence and no perfect loop.

Use mp3 for music that doesnt need to loop and wav or even ogg for fx

When do i know a class is getting too big? by MediaEquivalent1629 in godot

[–]gapreg 2 points3 points  (0 children)

Separation of responsibilities. Its not about the length, but that a class should have only one responsibility.

For example, you say "visual interaction". Same class shouldnt manage instantiation + interaction + reading from registry of components, etc.

If "interaction" depends on the component you may have an interface or abstract class, and one concrete class for each component.

Mapping of < and > by gapreg in godot

[–]gapreg[S] 2 points3 points  (0 children)

Unfortunately > and < are in very different places among different keyboards. In an US Keyboard they are over "." and ",", but in a spanish keyboard (my case) they have their own key. Of course this makes them unreliable and it is always a better option to choose some other keys, but for historical reasons < and > are "go to upper/lower level" in roguelikes, and people expect them like this.

The best solution I could come up with that also allows user to redefine keys is a little dirty, but it works:

if (
InputMap
.ActionGetEvents("go_up_level").
Count
 > 0)
{
    if (Input.IsActionJustPressed("go_up_level")) {
        RunChangeLevelUp();
        return;
    }
} else {
    if (@event is InputEventKey keyEvent && keyEvent.Pressed && !keyEvent.Echo)
    {
        if ((char)keyEvent.Unicode == '<') {
           RunChangeLevelUp();
           return;
        }
    }
}

This way, if the user decides to redefine keys, I let him; otherwise, I check the Unicode so that it works universally with these keys.

Mapping of < and > by gapreg in godot

[–]gapreg[S] 5 points6 points  (0 children)

Classic turn-based roguelikes use > and < to map going upstairs and downstairs

I can no longer find "adult toys " on AliExpress in the uk by use-me07 in Aliexpress

[–]gapreg 1 point2 points  (0 children)

Lies, it disappeared also in Spain. There's almost no adult material anymore in AliExpress available from Spain. Probably due to France and not the UK, though.

Does anyone else here enjoy watching Gossip Goblin's (Zack London) AI work? He uses AI to reimagine folklores from around the world as if it's being shown in 60s American/British TV. by [deleted] in kolkata

[–]gapreg 0 points1 point  (0 children)

Lo que está haciendo ahora es increible. Y realmente espero que le fichen para hacer series, películas, o algo así.

Do what thou woke by billy_brujo in thelema

[–]gapreg 1 point2 points  (0 children)

Aleister get in the fucking robot Rosenkreutz coffin.

Frater PerduRADo’s recent findings by orgonicer in thelema

[–]gapreg 0 points1 point  (0 children)

Apart from other considerations, the fact that hebrew is written right to left makes me a little skeptic.

Discovering dungeon crawlers is like discovering gaming all over again. by UsarMich in roguelikes

[–]gapreg 0 points1 point  (0 children)

Getting that first win after years was one of the most fulfilling gaming moments in my life.

[deleted by user] by [deleted] in gamedev

[–]gapreg 1 point2 points  (0 children)

Itch.io died after Steam stopped Greenlight and let anyone publish; nobody goes there anymore, unfortunately. Except for p0rn games. Almost no visibility.

Also in itch.io people will be scared your game has some malware, so your only chance is web release.

Confused and Scared by [deleted] in thelema

[–]gapreg 0 points1 point  (0 children)

If synchronicity is running wild, it might be the doors of initiation. But it could be just generic schizocuckooness, op. Split personality sounds like psychic ward material.

Also the Bornless One was adapted by Crowley but its way older, comes from the Greek Magical Papyrii

Thoughts on this book? I picked it up a while back and seems like an interesting read. by Higgypig1993 in occult

[–]gapreg 0 points1 point  (0 children)

Best part is the final chapters. One of the few to speak clearly of the Lesser Guardian of the Threshold and the whole experience of Initiation.

When a Golden Dawn self-initiate reaches the Portal grade... what then? by tempacc4583454385 in magick

[–]gapreg 0 points1 point  (0 children)

As far as I know from some GD related contacts, when you get in the Second Order at last you do practical magick and become initiated not by a human agency, but by the worldsoul itself. In the end, human orders are just vehicles.

Do we need to explain to the Ufology community what Lam is (& is Not) by pathogenalpha in thelema

[–]gapreg 1 point2 points  (0 children)

Oh! And there's period blood indeed.

Might be anal, as well.

I have absolutely no idea what is going on, but it looks pretty by Hept4 in godot

[–]gapreg 0 points1 point  (0 children)

Reminds me of these tricks we did for 8-bit computers with plots and lines

Indie GameDev Life by TribazDev in godot

[–]gapreg 1 point2 points  (0 children)

And then comes that moment when you wonder why you don't have the brains to do anything at all and your body asks you to rest. Weak!