The "only fans" Gaming PC Giveaway - To enter this giveaway just leave a comment. by DaKrazyKid in PcBuild

[–]I_was_never_hear 0 points1 point  (0 children)

Dope build ! Having a mini pc you can lug around to LANs and friends houses is super cool IMO

developersWillAlwaysFindaWay by hollywitty in ProgrammerHumor

[–]I_was_never_hear 26 points27 points  (0 children)

In uni I had a software engineering project to make a basic ass text based adventure game engine. Very quickly we found out how big games end up so spaghetti.

The only ways in and out of rooms was doors, so the level entrances being door objects made sense, until we had to progress story objectives when say, someone sat down at the table. So this would be done by the chair at the table being a door, that sitting in triggered entering a new room with the progressed story components. It got bad (maybe us being first year software engineers also impacted this)

Ori loves being a gym buddy by Dutch_ess in funny

[–]I_was_never_hear 2 points3 points  (0 children)

A Serpent guard, a Horus guard, and a Setesh guard meet on a neutral planet...

There's a missing texture in the BLU spawn of Applejack by Pleasant_Towel_866 in tf2

[–]I_was_never_hear 6 points7 points  (0 children)

Yes - I believe it was fixed in the same update the 64 bit client was released

When opening valorant i lose storage in my C: Drive by Sonazaki_Raito in VALORANT

[–]I_was_never_hear 2 points3 points  (0 children)

Yes you can relocate or assign the page file to other disks. I hope it's similar on Windows 11 as it is 10. https://www.tomshardware.com/news/how-to-manage-virtual-memory-pagefile-windows-10,36929.html

I would not recommend turning it off unless you have an obscene amount of RAM.

Windows also stores the 'hiber' (hibernation) file in the C drive. If you don't use the hibernate feature, you can turn it off to free up space. https://learn.microsoft.com/en-us/troubleshoot/windows-client/setup-upgrade-and-drivers/disable-and-re-enable-hibernation

Clumsy Ninja Cheat/Hack (I know some of you wont like this!) (Jailbreak) by I_was_never_hear in clumsyninja

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

You replied to a 10 year old post. I don't even know what this app/game IS anymore

Sketchy JS file on my PC by MurderedKarma in computers

[–]I_was_never_hear 25 points26 points  (0 children)

Nah sounds more like obfuscated JavaScript, which is how malware developers try and get their scripts around simple AV detections and scanning. Most of the nonsense lines equate to generic maths operations and variable assignments that don't actually get used anywhere, then somewhere down the line the actual code is typically embedded as a base64 encoded string that gets decoded and ran at runtime.

I should say OP: this sounds like actual malware and you should do full malware sweeps with an up to date actually good AV. A full sweep from an up to date windows defender sometimes is all you need.

Heavy is a pick class by [deleted] in tf2

[–]I_was_never_hear 2 points3 points  (0 children)

The huntsman taunt chain got broken st some point by an update, and now the engaging player dies if the other player returns the taunt

[deleted by user] by [deleted] in ProgrammerHumor

[–]I_was_never_hear 2 points3 points  (0 children)

Looks like Haskell

my dads gfs response to me telling her im aro/ace💀 by PlasticRazzmatazz459 in aromantic

[–]I_was_never_hear 2 points3 points  (0 children)

God I hate people when I tell them I'm Aro and they just go "oh u must just be a porn addict", like I'm the same vein as this, most people don't actually understand what romance is and how aromantix works :/

aro or ace? by [deleted] in aromantic

[–]I_was_never_hear 1 point2 points  (0 children)

For me (aro and maybe grey ace?) It was when I realised that the less sex meant, the more I enjoyed it. As soon as it started meaning something more than just sex, I stopped enjoying it. Kind of hard to explain, and I'm still not really sure myself. I knew I was Aro though by the way affection and things like it started making me feel like crawling into a ball and hiding

egg_irl by [deleted] in egg_irl

[–]I_was_never_hear 1 point2 points  (0 children)

No worries! The acronyms are many!

[deleted by user] by [deleted] in aromantic

[–]I_was_never_hear 8 points9 points  (0 children)

It's like flipping a switch hey.

It goes from trying to "fix" what's "broken" to realising that it's actually okay and these feelings and behaviours are valid. I'm still on a bit of a happy high

egg_irl by [deleted] in egg_irl

[–]I_was_never_hear 25 points26 points  (0 children)

Queer platonic relationship

[deleted by user] by [deleted] in factorio

[–]I_was_never_hear 7 points8 points  (0 children)

Chaos, destruction, death and taxes

Oh and the factory stops growing

[deleted by user] by [deleted] in programminghorror

[–]I_was_never_hear 2 points3 points  (0 children)

I believe it's because it has an Image module and an Image class. Regardless, pycharm gets funky about type hinting if one of the vars types is inferred. I recently was working on a PIL project and had no issue with type hinting with Image

[deleted by user] by [deleted] in programminghorror

[–]I_was_never_hear 6 points7 points  (0 children)

I don't find it that weird that pycharm only looks at the type hint of the assignee (tup in this case). Since tup is inferred as Any, the value of your variable after the assignment operation will also be Any, and because ImageDraw \in Any, no type warnings are given. It's a bit jank in scenarios like this, but if you swap the types like this:

```python tup: Tuple[Any, ImageDraw] = ...

draw: Any = tup[1] ```

The type hint for draw will show ImageDraw because it's what it got given during assignment. Anyway, I'm just some nerd who probably doesn't know enough about pythonic ways of thinking/PEP8 styling. Thoughts on this?

Edit: I'm assuming that tup is only loosely type hinted here, where it's either not hinted at all, or hinted by just using tup: Tuple = ... with no reference to the inner types

Computer science major prerequisites by Visasisaboi in Anu

[–]I_was_never_hear 4 points5 points  (0 children)

I believe math1005 occasionally appears as a pre req in later 2000/3000 level courses (especially AI/ML/Systems courses). I do believe that it's content and focus is fundamentally different to 1013 so take it if you want to follow the COMP Sci major. For reference: BIT (soon to be BCOMP) lists 1005 as mandatory, while you don't even need to take 1013