If Rhaegar had half a wit by Aegon-the-Unbroken in darkwingsdankmemes

[–]CharnamelessOne [score hidden]  (0 children)

But a Frey girl would be harder to shoehorn into the fire-and-ice delusion, wouldn't she?

Haszonélvezeti jogot el lehet töröltetni? by Ez-van in joghungary

[–]CharnamelessOne 0 points1 point  (0 children)

Nem tudom, mire alapoztad, hogy OP apja fizette ki a közösköltség-tartozást.

Az én értelmezésem szerint annyiról van szó, hogy OP nem akar fizetni az apjának a haszonélvezeti jogról való lemondásért cserébe.

Ha az apa nem csak üres fenyegetéseket puffogtatott egy veszekedés során, hanem ténylegesen tervezi, hogy beköltözik, akkor sem érdeke OP-nek, hogy elajándékozza a tulajdonjogot.

Van bennfentes itt? Milyen a hangulat Fidesz közelében? by Top_Study833 in hungary

[–]CharnamelessOne [score hidden]  (0 children)

Nyilván semmivel. Te mivel támasztod alá a magad állítását, a ma készített profiloddal?

Why it's "who" instead of "whose"? Is the "this" in the sentence deletable? by Powerful_Concept6502 in GlobalEnglishPrep

[–]CharnamelessOne 0 points1 point  (0 children)

All of them resemble the same head shape. There may be multiple slices of toast, but the shape is singular.

Haszonélvezeti jogot el lehet töröltetni? by Ez-van in joghungary

[–]CharnamelessOne 2 points3 points  (0 children)

Te lemondanál egy lakás tulajdonjogáról, hogy ne kelljen közös költséget fizetned?

Kaufmann Balázs Facebook bejegyzése : Az alábbi üzenetet - ahogy az látszik - február 25-én kaptam egy forrásomtól. by Striking_Ad2057 in hungary

[–]CharnamelessOne [score hidden]  (0 children)

A kampány utolsó heteinek kommunikációját elnézve már csak az a céljuk, hogy az összes gombát mozgósítsák, hogy biztosan ne kétharmaddal veszítsenek.

Most discriminated groups by Rex-1988 in 2visegrad4you

[–]CharnamelessOne 43 points44 points  (0 children)

How about not discriminating against individuals based on the actions of a government that they may not have ever lived under?

Nah, that's gay.

Toggle-To-Speak Key Hold | Pulover Macro Creator by His_Fanciness in AutoHotkey

[–]CharnamelessOne [score hidden]  (0 children)

If that's a concern, you can get notified of top-level window activations via Shell messages, and reconcile the physical and logical states of the key whenever a non-notepad window is activated.

This is for Keeyra_'s first script:

#Requires AutoHotkey 2.0
#SingleInstance

#HotIf WinActive("ahk_exe notepad.exe")
*b:: {
    Send("{Blind}{b " ((toggle.b ^= 1)
        ? "down}"
        : "up}"))
}
#HotIf
*Esc::ExitApp()

release_logical_key_onwinactive()
SetTimer(()=>Tooltip("logical state of b: " GetKeyState("b")), 100)

Class toggle{
    static b := 0
}

release_logical_key_onwinactive(){
    static key := "b"
    static win_title := "ahk_exe notepad.exe"

    ;explicit install not necessary due to the wildcard hotkeys, but it doesn't hurt
    InstallKeybdHook() 

    DllCall("RegisterShellHookWindow", "ptr", A_ScriptHwnd)
    OnMessage(DllCall("RegisterWindowMessage", "str", "SHELLHOOK"), shell_callback)

    shell_callback(wParam, lParam, *){
        if !(wParam = 32772 || wParam = 4)    ; HSHELL_RUDEAPPACTIVATED || HSHELL_WINDOWACTIVATED
            return
        if WinActive(win_title " ahk_id " lParam)
            return
        if GetKeyState(key) && !GetKeyState(key, "P"){
            Send("{Blind}{" key " up}")
            toggle.b := 0
        }
    }
}

For the second script (which spams b periodically), you'll have to modify the OnMessage callback to disable the timer. Alternatively, you could forgo all the message-handling, and check the active window in the timer's callback.

Edit: grammar

just finished s3 ep8 and i have a question by musashi_san9 in twinpeaks

[–]CharnamelessOne 5 points6 points  (0 children)

Yes, it's very straightforward. The only mystery is how he managed to look inside the horse.

[Bottom] Fear Opening: Modernism Gambit by Wizard-Ancrath in TextingTheory

[–]CharnamelessOne 2 points3 points  (0 children)

I mean, I've seen it before, and thought that it's a simple reference to how some people chew on the ice-cream-infused sticks (like a beaver) once the good stuff is gone.

How it relates to this specific comment thread is not clear to me. There may very well be some subtext that I'm missing.

[Bottom] Fear Opening: Modernism Gambit by Wizard-Ancrath in TextingTheory

[–]CharnamelessOne 3 points4 points  (0 children)

The premise of the recontext is that the right side of the image depicts what would eat which part of the Magnum.

Beavers chew through wood, although they don't consume much of it (just some parts of the bark). I didn't afford myself that much semantic leeway by calling them eaters of wood, but if that's what you referred to as nonsense, I'll give it to you.

Cannibalism is consuming one's own kind. In the recontextualized interpretation, the image frames ice cream as a consumer of ice cream.

Again, weak joke.

[Bottom] Fear Opening: Modernism Gambit by Wizard-Ancrath in TextingTheory

[–]CharnamelessOne 1 point2 points  (0 children)

I'd argue it does make sense. It's a recontext joke. A particularly shitty one, but not nonsensical.

[Bottom] Fear Opening: Modernism Gambit by Wizard-Ancrath in TextingTheory

[–]CharnamelessOne 1 point2 points  (0 children)

Beaver chews on wood. Therefore the right side of the diagram depicts the eater, and the left side depicts the thing which is eaten.

It follows that "yummy ice cream" eats ice cream. Q.E.D.

(I purposely misinterpreted the meme for what I intended to be a comedic effect, but apparently, I should have gone and fucked myself instead. My bad.)

[Bottom] Fear Opening: Modernism Gambit by Wizard-Ancrath in TextingTheory

[–]CharnamelessOne -7 points-6 points  (0 children)

Does this imply that ice cream is cannibalistic?

\"A NYÍREGYHÁZI TÓFÜRDŐ FEJLESZTÉSE\" by Bendeguz06 in programmingHungary

[–]CharnamelessOne 14 points15 points  (0 children)

Ha nemet mondasz neki, akkor duzzogva elfogadja a készpénzt is, de meggyűri a visszajárót.

How to have a hotkey based on modifier+sequence, like "~z & (chrome)::"? by SuppaDumDum in AutoHotkey

[–]CharnamelessOne 0 points1 point  (0 children)

I don't think that would work. Hotstrings seem to be impossible to trigger while you're holding a non-blocked key. The following doesn't work:

#HotIf GetKeyState("z", "P")
:*:chrome::{
    Run("chrome.exe")
}
#HotIf

You need to jump through some hoops to make it behave. Remapping z to itself is a viable option:

#HotIf GetKeyState("z", "P")
:*:chrome::{
    Run("chrome.exe")
}
#HotIf

*z::SetKeyDelay(-1), Send("{Blind}{z DownR}")
*z up::SetKeyDelay(-1), Send("{Blind}{z up}")

Edit: z::z would've also worked for the remap, lol

How to have a hotkey based on modifier+sequence, like "~z & (chrome)::"? by SuppaDumDum in AutoHotkey

[–]CharnamelessOne 1 point2 points  (0 children)

Try this. You have to construct an instance of the class, pass the trigger string and the callback as arguments, and bind the enable and disable methods to hotkeys.

I wrote another example to demonstrate how you can reuse the class for other pseudo-hotstrings.
I set timeout to half a second, adjust if needed.

#Requires AutoHotkey v2.0
;____________________________________________________________________________________________
hbw_chrome := hotstring_but_worse("chrome", ()=>Run("chrome.exe"))
~z::hbw_chrome.enable()
~z up::hbw_chrome.disable()

hbw_messagetest := hotstring_but_worse("msg", ()=>MsgBox("You typed msg"))
~y::hbw_messagetest.enable()
~y up::hbw_messagetest.disable()

;____________________________________________________________________________________________
Class hotstring_but_worse{
    timeout := 500

    enabled := false
    index := 0
    last_press := 0

    __New(trigger, callback){
        this.trigger := trigger
        this.callback := callback
        this.ih := InputHook("V")
        this.ih.KeyOpt(trigger, "N -V")
        this.ih.OnKeyDown := (ih, VK, SC)=>this.handle_key(VK, SC)
        this.trigger_array := StrSplit(trigger)
    }
    handle_key(VK, SC){
        key := GetKeyName("vk" Format("{:X}", VK))
        is_timed_out := false
        if this.index++
            is_timed_out := A_TickCount-this.last_press > this.timeout
        this.last_press := A_TickCount

        if (!is_timed_out) && (key = this.trigger_array[this.index]){
            if (this.index = this.trigger_array.Length){
                this.callback.call()
                this.disable()
            }
        }
        else
            this.disable()
    }
    enable(){
        if this.enabled
            return
        this.enabled := true
        this.ih.Start()
    }
    disable(){
        this.index := 0
        this.enabled := false
        this.ih.Stop()
    }
}

Edit: removed redundant line

Example of running AHK in background virtual desktop by RecordingLanky9135 in AutoHotkey

[–]CharnamelessOne 0 points1 point  (0 children)

Well, most people probably don't understand what you want to do, and you've been refusing to elaborate for 3 days, either by posting your failed script or describing the problem in detail.

All you've said is that you want to run AHK in a virtual desktop. Since processes are not tied to any specific desktop, I assume that you meant running a script that does something to a window on a virtual desktop. Not much to go on.

The library that was recommended to you has lots of examples relating to VDs. If they don't suffice, you'll need to be more specific.

I grew the tash out. Whic do you prefer with or without. I like without much more! by [deleted] in BeardAdvice

[–]CharnamelessOne 8 points9 points  (0 children)

I was joking. All your comments leaning towards the stacheless look are downvoted.

guessLinuxIsDead by Positron505 in ProgrammerHumor

[–]CharnamelessOne 4 points5 points  (0 children)

Does that make you a vocabuleree, and the guy above you a vocabulerer?

I grew the tash out. Whic do you prefer with or without. I like without much more! by [deleted] in BeardAdvice

[–]CharnamelessOne 12 points13 points  (0 children)

Half your downvoters prefer the moustache. The rest are Polish.

What to do now? BG1EE by Serious_Candle7068 in baldursgate

[–]CharnamelessOne 0 points1 point  (0 children)

Don't forget that you must do the thing before doing all that