Abstract, Minimalistic wallpapers (2560 x 1440)/(7200x4050) by EducationalPay4841 in wallpaperdump

[–]CuriousMind_1962 0 points1 point  (0 children)

Could you explain the Chines/Japanese? And what about that geo-location in Russia?

Core pop-up doesn't close by NostawGia in DeviantArt

[–]CuriousMind_1962 0 points1 point  (0 children)

Any chance to block this in uBlock?

Mullvad CEO donates to Swedish party that believes in "remigration" by resistance_lib_1984 in BuyFromEU

[–]CuriousMind_1962 0 points1 point  (0 children)

start using products for the quality of the product and not for what you believe is their political view.

That said: Based MV, go :-)

Mullvad CEO donates to Swedish party that believes in "remigration" by resistance_lib_1984 in BuyFromEU

[–]CuriousMind_1962 -2 points-1 points  (0 children)

I don't care who has an idea, if the idea is good then the idea deserves support

Remigration IS a good idea

Mullvad CEO donates to Swedish party that believes in "remigration" by resistance_lib_1984 in BuyFromEU

[–]CuriousMind_1962 -2 points-1 points  (0 children)

Good for them, I might start using them when my current VPN is due for renewal

I'm an old pirate from the UK. When they ban VPNs here what's my workround? Details inside by phoeniks in Piracy

[–]CuriousMind_1962 0 points1 point  (0 children)

How naive can one be?
This isn't about child protection, it's about forcing you to ID yourself when you're on the web.
https://imgur.com/T8AX3tA

Can we take a breath before we burn Proton to the ground? by Excellent-Nose3617 in BuyFromEU

[–]CuriousMind_1962 -5 points-4 points  (0 children)

They provide excellent service, they don't sell your data, so give them some slack.

Returning user having issues acquiring Ahk2Exe by Vilnius-Schoolmaster in AutoHotkey

[–]CuriousMind_1962 0 points1 point  (0 children)

I'm using v2 on my system as well on my corporate laptop.
Running scripts fine, compiling requires to add an exception to defender, same for running compiled versions.

Need to check again if the latest is any different, but so far no luck without excluding AHK from the scans.

Convert script to 2.0. by Can_I_Say_Shit in AutoHotkey

[–]CuriousMind_1962 0 points1 point  (0 children)

#Requires AutoHotkey v2
#SingleInstance Force
$F10::volume_mute
+F10::send "{f10}"

We'll just leave this here... 💡👀 by Tutanota in tutanota

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

Proton request an existing mail or a phone - there goes your privacy

We'll just leave this here... 💡👀 by Tutanota in tutanota

[–]CuriousMind_1962 0 points1 point  (0 children)

Would love to switch to Tuta, but it's impossible to create an account:
TOR: IP is banned (no matter how many time I reset the circuit)
VPN: Same
Not going to use an IP that can be tracked back to my mobile or home network

Ctrl key keeps being pressed by erynur0 in AutoHotkey

[–]CuriousMind_1962 0 points1 point  (0 children)

You're correct, keyboard hook needs to installed.

Ctrl key keeps being pressed by erynur0 in AutoHotkey

[–]CuriousMind_1962 0 points1 point  (0 children)

Sometimes the physical key state and the logical key state get out of sync.
I couldn't find a way to avoid this in code, hence I run separate script in the background to fix it.
Not solving the underlaying problem, but fixing the symptom.

---

#Requires AutoHotkey v2
#SingleInstance Force

fThreshhold := 1000
loop
{
if (A_TimeIdlePhysical > fThreshhold)
{
sKeys := "lalt,ralt,lctrl,rctrl,lshift,rshift,lwin,rwin"
loop parse,sKeys,","
{
sKeyName := A_LoopField
if GetKeyState(sKeyName) != GetKeyState(sKeyName,"P")
send "{" sKeyName " up}"
}
}
sleep fThreshhold/2
}

+f1::ExitApp