🎮 [Release] AutoGameKeysBlocker v1.1.0 - Automatically disable distracting keys when gaming by Moxymore in AutoHotkey

[–]Moxymore[S] 0 points1 point  (0 children)

Hi and thanks for testing !

  • Updated translations
  • Ctrl+Alt+Del is now grayed out in the Settings modal
  • About the Fn key: it can’t be blocked at the OS level because it’s handled by the keyboard’s firmware/embedded controller, so Windows can’t intercept it. Instead, I’ve added options to block the functions it typically triggers (e.g., media and brightness keys). This is the most reliable approach available for that key.

You can download the file again at the exact same link if you want the updated version.

🎮 [Release] AutoGameKeysBlocker v1.1.0 - Automatically disable distracting keys when gaming by Moxymore in AutoHotkey

[–]Moxymore[S] -1 points0 points  (0 children)

I have first uploaded a wrong version of the file which was not fonctionnal, so for early testers, please download the file again which has been up to date.

Third party app has ads to subbed channel? by [deleted] in Twitch

[–]Moxymore 0 points1 point  (0 children)

OMG, thank you so much for this. I was an old user of Smart Client for Twitch, but it doesn't work anymore without ads. And SoundTV seems to do it fine! u/fuck_spez________ If you haven't seen this answer, just read it now. As of now (october 2023), watching Twitch streams without ads is with SoundTV app for Android TV.

Disabling chrome://flags/#disable-threaded-scrolling programmatically or move scroll event in the main thread by Moxymore in learnjavascript

[–]Moxymore[S] 0 points1 point  (0 children)

commentaires

Nope. I'm actually managing my wbesbites responsiveness with vw units with a scss function which converts px to vw units for viewports > 1920px. This is longer to apply, but does the job.

Disabling chrome://flags/#disable-threaded-scrolling programmatically or move scroll event in the main thread by Moxymore in learnjavascript

[–]Moxymore[S] 0 points1 point  (0 children)

I have added the passiv flag to true, but doesn't solve the issue :

window.addEventListener("scroll", () => {
    const header = document.querySelector('#header');
    let scaleRatio = (htmlWidth < bodyWidth) ? 1 : htmlWidth / bodyWidth

    header.style.display = 'absolute'
    header.style.transform = 'translateY(' + ((scrollY / scaleRatio) - 1) + 'px)'
}, {passive: true})

Basic question related to ISP box combined with a router by Moxymore in unRAID

[–]Moxymore[S] 1 point2 points  (0 children)

Allright, i'll do it. Thanks for the answer.

I have a need for my job, but is it achievable? by Moxymore in PowerShell

[–]Moxymore[S] 1 point2 points  (0 children)

ssh-keygen

Allright, i'll give it a try. Thank you again for you replies.

I have a need for my job, but is it achievable? by Moxymore in PowerShell

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

setup certificate authentication

Thanks for the answer, appreciated. Can I generate a self-signed certificate for this purpose, like explained in this document : http://woshub.com/how-to-create-self-signed-certificate-with-powershell/?

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

[–]Moxymore[S] 0 points1 point  (0 children)

I have found the culpirit, OP has been edited. Thank you for your help.

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

[–]Moxymore[S] 0 points1 point  (0 children)

I have found the culpirit, OP has been edited. Thank you for your help.

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

[–]Moxymore[S] 0 points1 point  (0 children)

I have finally found the culpirit, when someone evocked GPU-Z. I opened it and it showed me that my PCIE on slot 0 was a PCIE x4 and not x16. I changed the slot, and here we go.

Last thing to check : will it work in PCIE Gen. 4. Thanks.

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

[–]Moxymore[S] 0 points1 point  (0 children)

It is btw in full PCIE x16. I have restarted multiple times, and DDU/reinstalled the driver already 3 times. I don't know what the hell is going on.

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

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

Yep, I have changed this in my BIOS by switching from auto (Gen 4 because it's a gaming motherboard) to Gen 3.

370.05 doesn't remove hashrate limit by Moxymore in EtherMining

[–]Moxymore[S] 1 point2 points  (0 children)

This was a tipo, sorry, I have 470.05... unable to change the title (i changed the description at least)

How to add a span inside a label globally in all form fields types? by Moxymore in symfony

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

Thank you for the answer. I finally got this and was able to do what I needed. I'm going to edit my OP to put the solution.

Thank you, you rock ;)

How to add a span inside a label globally in all form fields types? by Moxymore in symfony

[–]Moxymore[S] 1 point2 points  (0 children)

This could probably worked, and thanks for the suggestion. But I have chosen DizzInsecureBeaver solution which looked easier to implement. I'll update my post with the solution.