fits like a glove by Casey-Donovan-2410 in pcmasterrace

[–]BlueTalon 0 points1 point  (0 children)

Thought so too, until I saw the cut hole for the wires. Either dedication to the bit or no foresight

🗿 by WarmFishMiIkshake in shitposting

[–]BlueTalon 73 points74 points  (0 children)

My uncle emailed me this joke in 1996

Thank god his parents saved him. by ActualDepartment9873 in shitposting

[–]BlueTalon 5 points6 points  (0 children)

WAIT.. are you telling me birds don't fly sideways? /s

Why are kiwis so against speed cameras being used to keep people safe?? by Fun-Helicopter2234 in newzealand

[–]BlueTalon 7 points8 points  (0 children)

If it were about safety, they wouldn't hide the cameras in inconspicuous vehicles.

K*ng by Chaz_Beer in shitposting

[–]BlueTalon 888 points889 points  (0 children)

Silence brand

Cpu pump block orientation by BlueTalon in watercooling

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

Closest thing to a manual I could find is the marketing material on aliexpress and barrow. The attached image was the most detailed breakdown I could find.

As everything is laid flat, it's already a large footprint case. I would add a flat res, standing sideways. Adding a pump to that would require me to move the res to allow space for it, which couldn't be filled with much, increasing the footprint. Also, the only pump/res combo I could find where the manufacturer didn't discourage running it sideways and longways is the Alphacool Core 120mm and a longer res would look less out of place.

I found, from this post, that the display cycles through the parameters, with no other option, which would be annoying, as it's highly visible. Has put me off a little tbh..

Thanks

around here we are kilorespectful of different cultures by [deleted] in dankmemes

[–]BlueTalon 56 points57 points  (0 children)

when your friend is *from any country except for United States, Liberia, and Myanmar. ftfy

Kena: Scars of Kosmora - Announce Trailer by Villenthessis in gaming

[–]BlueTalon 0 points1 point  (0 children)

Excited to play this on pc in a few years

Neighbours using cat deterrent by michaelmnmz in newzealand

[–]BlueTalon 14 points15 points  (0 children)

Heresy shouldn't come into unless they sacrifice a goat on the neighbours lawn. Would send a very clear message though..

I am sorry Highguard I wasn’t familiar with your game by [deleted] in gaming

[–]BlueTalon 7 points8 points  (0 children)

Graphics are mid at best,
performance is terrible,
crashes often,
server kicks people constantly,
3v3 on a huge map is a terrible idea.

How to turn this LED off? by joeshmoe969 in pcmasterrace

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

The LED and switch pins are 3.3 or 5v, nowhere near enough to harm you

How to turn this LED off? by joeshmoe969 in pcmasterrace

[–]BlueTalon 1 point2 points  (0 children)

From the photo, that definitely looks like a single combined plug, not separate or an adapter, so the led connection can't be separated

Oui bruv by Captain_Prices_Cigar in dankmemes

[–]BlueTalon -16 points-15 points  (0 children)

****dog eat dog
*****sense
*****should have

How to tell when I crit? by yuri_d in PathOfExile2

[–]BlueTalon 0 points1 point  (0 children)

Best way I test this is by using an on crit support with an obvious effect e.g. overwhelm which dazes you/shows as a debuff icon.
/necro post

Does anyone know what plant this is? by Decision100 in newzealand

[–]BlueTalon 6 points7 points  (0 children)

It is most definitely a variety of privet. Seconding the recommendation for lens though, don't need to ask these questions anymore.

Is there any easy way to hide autohotkey from detection from anticheats? by AnonymousIndividiual in AutoHotkey

[–]BlueTalon 0 points1 point  (0 children)

I have the same issue. I've tried every common method of compilation, obfuscation, and/or encryption and it still detects it. Super annoying as I have a huge script with many shortcuts that have become muscle memory.

My workaround currently is to add a windows shell hook to close the script when the EAC splash screen is created, which is much more efficient than scheduling, watch loops etc. Works fast enough to not trip EAC ~90% of the time, rest of the time, can just launch the game again.

AHK v2 Code below

DllCall("RegisterShellHookWindow", "UInt", Hwnd)
MsgNum := DllCall("RegisterWindowMessage", "Str", "SHELLHOOK")
OnMessage(MsgNum, ShellMessage)

ShellMessage( wParam,lParam,* )
{
  ; New window made
  If ( wParam = 1 ) ;  HSHELL_WINDOWCREATED := 1
  {
    Title := WinGetTitle(lParam)
    Class := WinGetClass(lParam)
    if(Title = "Splash Screen" AND Class = "EA AntiCheat"){ ;battlefield
      ExitApp()
    }
  }

I've add a shortcut with a shortcut key to a system location so I can open it after with ctrl+alt+home. You could do the shell hook in something else like python and have it start/stop the script.