• 3 Posts
  • 35 Comments
Joined 2 years ago
cake
Cake day: October 8th, 2023

help-circle
  • Moin. Ich hab das selbe Problem. Auch sehr lange nach einer Ursache gesucht, aber alles was ich rausfinden konnte ist, dass es wohl von PCI geweckt wird. Wake on LAN is aus und Mausbewegen reicht nicht um ihn zu wecken, bin da auch mit meinem Latein am Ende.

    Meine Lösung ist es also nicht, das zu fixen, sondern den PC einfach wieder automatisch sleepen zu lassen. Es gibt in der PowrProf DLL die Funktion “SetSuspendState”, die den PC sleepen lässt, wenn man die Parameter auf 0,0,0 setzt.

    Ich hab dafür dieses Autohotkey script geschrieben, dass ich dann einfach starte, bevor ich den sleep modus aktiviere. Ist zwar nich so 100%, tut aber was es soll. Kann auch einfach in andere Programmiersprachen übertragen werden.

    #Requires AutoHotkey v2.0
    #SingleInstance
    
    IsMonitoring := false
    SleepTimer := 0
    
    Tray := A_TrayMenu
    Tray.Delete()
    Tray.Add("Enable Auto-Sleep", ToggleMonitoring)
    Tray.Add("Exit", (*) => ExitApp())
    
    UpdateTrayMenu()
    
    ToggleMonitoring(*) {
        global IsMonitoring, SleepTimer
        IsMonitoring := !IsMonitoring
        if IsMonitoring {
            SleepTimer := SetTimer(AutoSleep, 60000)
        } else {
            SetTimer(SleepTimer, 0)
        }
        UpdateTrayMenu()
    }
    
    UpdateTrayMenu() {
        global Tray, IsMonitoring
        if IsMonitoring {
            Tray.Check("Enable Auto-Sleep")
        } else {
            Tray.Uncheck("Enable Auto-Sleep")
        }
    }
    
    AutoSleep() {
        DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)
    }
    
    loop {
        Sleep 10000
    }
    

    Sorry dass die Lösung so crude ist, aber besser als nix.___







  • Definitely not all games. Factorio makes you plan, construct, and optimize a factory. Expedition 33 requires full attention due to dialog so no watching shows/music on the 2th monitor. This but also requiring communication for most multiplayer games. Planet Toaster requires being in a creative mood where you don’t need extrinsic motivation to have fun.

    Basically no, not all games are low effort. I’d say the majority aren’t. And I haven’t even mentioned the games that require memorizing a complex keyboard layout or need additional peripherals.












  • For image gen I don’t have a good use but it is very complex which means sometimes I can just lose an hour or 2 fumbling around in a complex network of nodes.
    What I found fascinating was how strangely good the results were when I created an image, then fed the result back as input, and repeated that process.
    The only useful thing I used image gen for was creating references for an artist to create a PFP for me that looks rad as hell.

    As for LLMs, also not really. I think about 90% of the time LLMs either give a useless or just wrong answer. I can’t seem to find the thing that LLMs are supposed to be good for. One thing all LLMs I tried have failed consistently at was finding a movie from a vague description I gave.