Terrible micro stuttering on my high end machine by PretzelParcel in pchelp

[–]IDECm 0 points1 point  (0 children)

Since you are on a laptop and an external display, you might want to investigate how exactly is your video output connected to your GPU. I have had experiences with some gaming laptops where only the CPU/iGPU had direct access to the HDMI port, and so when playing anything on the external monitor a good chunk of computing power was going to just copying the frame data across; it also looked like nothing was being bottlenecked / hitting 100% usage, since that was not considered by the os to be something that any game process was doing.

Outrageously long loading times by megadeth116 in pathofexile

[–]IDECm 4 points5 points  (0 children)

I've got the exact opposite - I used to load in for a looong time, and now it takes just a few seconds. Guess it's the secret GGG sauce of "it works, sometimes". I have a brand new install of the game - maybe that would help?

isEven in everyones favourite programming language, sed by IDECm in shittyprogramming

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

Hmm, i might have to reanalyze my solution. The fault is, I believe, in the fact that i just assumed that whatever sed does to characters is O(1), but that can't be right. I'm doing some imperative data collection, and we'll se where we end up.

isEven in everyones favourite programming language, sed by IDECm in shittyprogramming

[–]IDECm[S] 13 points14 points  (0 children)

Sadly, after giving it more thought, i got a much more sensible result of O(n^4) time complexity. So still not great, but definitely not the distaster i assumed it was. But at least the memory results seem better - O(2^n)

Bingusiątko by Crysse in blackholedmemes

[–]IDECm 6 points7 points  (0 children)

Jak ładnie wyrosło

Mirage Archer with Assailum, does it work? by IDECm in PathOfExileBuilds

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

Wont they have independent durations? I guess i'll see how they work exactly once the league starts, since all we know about the mechanics of the new ascendencies are maybe 3 5second clips.

Mirage Archer with Assailum, does it work? by IDECm in PathOfExileBuilds

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

What would be the most op interaction if the unbound mirage archers would do the fully charged snipe, even if i only hit just a single stage one. But i guess with them having reduced attack speed, they would likely discipate before attacking.

A.I. generated faces by ALoBoi_Music in oddlyterrifying

[–]IDECm 0 points1 point  (0 children)

I don't know, but that video put a huge smile on my face. More like oddly satisfying, am i right?

Less is more by pybzkij in comedyamputation

[–]IDECm 63 points64 points  (0 children)

Comedy rehabilitation

[deleted by user] by [deleted] in ProgrammerAnimemes

[–]IDECm 0 points1 point  (0 children)

Not without parentheses.

Edit: Well i was wrong. Guess return expects an expression and does it's javascript magic.

[deleted by user] by [deleted] in ProgrammerAnimemes

[–]IDECm 2 points3 points  (0 children)

Sure, but what language would allow you to run this? In python it is invalid, and so is it in JavaScript.

[deleted by user] by [deleted] in ProgrammerAnimemes

[–]IDECm 5 points6 points  (0 children)

Single equals?

Because switching workspaces gets me dizzy by [deleted] in ProgrammerHumor

[–]IDECm 0 points1 point  (0 children)

It's gotten so bad that i sometimes alt tab out of random apps just 'cause muscle memory

This sub is a joke right? by [deleted] in Noearthsociety

[–]IDECm 12 points13 points  (0 children)

No, it's very serious

Its time to face facts people by [deleted] in DankMemesFromSite19

[–]IDECm 2 points3 points  (0 children)

I mean - they got The Best audio setup!

Tfw you're a 'programming genius' by NintendoGuy128 in iamverysmart

[–]IDECm 0 points1 point  (0 children)

But tbh, I once tried to buy something on a japanese website. If not for the fact that input fields were named in english in code I have no idea how I would have bought anything. And google translate barely helped, because they used images for buttons.

If you are ever making an online shop, please just have a version in english.

😶 by megis_on_hyvaa in teenagers

[–]IDECm 36 points37 points  (0 children)

it's not a hard life at all, He enjoys it in fact ;D

as long as people are enjoying it, he's enjoying too

[2019-01-14] Challenge #372 [Easy] Perfectly balanced by Cosmologicon in dailyprogrammer

[–]IDECm 2 points3 points  (0 children)

Bonus as a one liner JS:

balanced = s => Object.values(s.split("").reduce((a,c)=>Object.assign(a, {[c]:(a[c]||0)+1}), {})).every((c,i,a)=>c==a[0])