HackerLangs
TopNewTrendsCommentsPastAskShowJobs

zerocrates

no profile record

comments

zerocrates
·7 วันที่ผ่านมา·discuss
The hypothetical "Odingate" article in a reliable source would probably have to discuss Odin enough to also be a viable source for Odin itself; problem solved.
zerocrates
·9 วันที่ผ่านมา·discuss
They have easier options. For one, just don't put a drive in the newer ones.
zerocrates
·15 วันที่ผ่านมา·discuss
"Quietly," like in "has quietly become the biggest/best X" is silly and everywhere, but "quietly" in this sense of "they didn't announce it and people just happened to notice the change" is fine and descriptive I would say.
zerocrates
·17 วันที่ผ่านมา·discuss
Well, they're only looking at whether the pymetrics gameplay algorithm ML thing recommends the candidate, not any of that other stuff. The outcome they're looking at here isn't whether the people actually got hired, or got passed by other screening layers or anything.
zerocrates
·17 วันที่ผ่านมา·discuss
The 83,000 applications to Fortune 500 companies, that was a different previous study they compared their results to. This paper's takeaway is that unlike that Fortune 500 data, the applications here that went through an ML vendor's screening process showed evidence of "systemic rejection," where some applicants got rejected across the board at higher rates than you'd expect if they were facing independent would-be employers.
zerocrates
·17 วันที่ผ่านมา·discuss
I think SteamOS itself also now officially supports you installing it on any PC. (Ah, actually that's mentioned in this post even.)
zerocrates
·18 วันที่ผ่านมา·discuss
I remember the gradual shift in Linux both due to internal changes and changes to what machines generally had, from IDE/ATAPI/ATA to Serial ATA, meaning things switched over to the SCSI subsystem and your old familiar hda drive was now at sda, and maybe you needed to use sdparm instead of hdparm, that kind of thing. And I think even if you still had an old ATA system that eventually got pulled under the SCSI umbrella internally as well.

Though now there's separation again with NVME being its own separate system.
zerocrates
·2 เดือนที่ผ่านมา·discuss
Obviously it depends what you're working on, what your patterns are, and so on. But my experience is that PHP involves so much array wrangling that devs are more likely to have a handle on what an array will do in this context (an empty array is falsy).

It's the string ones (in particular that in addition to the empty string, "0" specifically is the only other falsy string) that tend to catch people out.
zerocrates
·2 เดือนที่ผ่านมา·discuss
So, they didn't face any consequences. Did they at least keep the original grade or was this so well explained they also got the re-grade?
zerocrates
·2 เดือนที่ผ่านมา·discuss
The US hasn't formally declared war since World War II.
zerocrates
·2 เดือนที่ผ่านมา·discuss
I encounter a few native Linux games from time to time on Steam, mostly indies and other smaller games. There was a time there was a medium-sized push for this, Steam was pushing it, lots of Humble and GOG stuff came out with Linux versions...

But yeah, Proton is so good now that I don't think there's much impetus to port. Test on Deck/Steam Machine/Proton, sure, but not so much port. Steam Play also handles runtime container stuff for native Linux games so that can be pretty good and stable itself, but I've definitely had situations where switching over to the Windows version via Proton is a better result than the native Linux one.
zerocrates
·2 เดือนที่ผ่านมา·discuss
They do also run actual commercials if you're crazy enough to show up before the showtime.

AMC is also interesting because even in the "real" trailer period they have a long ad for AMC itself but also for Coke, then another for themselves telling you to sign up for the loyalty programs, then another for themselves with Nicole Kidman in the theater with her suit with the silver pinstripes. A little thing for the theater is normal but they're going way overboard with it and it's hard to believe it's really effective.
zerocrates
·2 เดือนที่ผ่านมา·discuss
One of the joys of having Moviepass in that brief period where it was very cheap but still worked was going to random late-night showings of stuff I'd have never otherwise seen, sometimes being the only person there.

Of course you can still do that with the surviving "all you can eat" plans, but they're way more expensive and aren't quite as generous.
zerocrates
·2 เดือนที่ผ่านมา·discuss
AMC have taken to just saying outright that everything will start 25-30 minutes after the posted time. Which is interesting, I guess they're trying to blunt the negative effect of the long trailers but I'm sure the advertisers don't like it.
zerocrates
·2 เดือนที่ผ่านมา·discuss
Oh yeah, duh.

Still every machine I've looked at, and I've since looked at a couple more, has it r-x for world.
zerocrates
·2 เดือนที่ผ่านมา·discuss
It being readable is the default configuration most places, after all the purpose is to call it from a non-privileged user. But I could see it being made non-readable since its use is discouraged nowadays... though then I'd expect sudo to be readable as an alternative.
zerocrates
·2 เดือนที่ผ่านมา·discuss
Not at least slapping a pixel font on there is an odd choice given the purposeful nostalgia goal.
zerocrates
·2 เดือนที่ผ่านมา·discuss
Yeah, I want to say you could press the number keys or F keys or something like that to toggle layers on and off, and it was absolutely necessary in some misty forest/jungle/waterfall type areas.
zerocrates
·3 เดือนที่ผ่านมา·discuss
Sure, I was more speaking to usage... I'd have to imagine that querySelector* dwarfs evaluate in actual usage. Chrome's stats put evaluate at about 5% of loads; I'm not sure they have tracking for querySelector.

Of course XPath has its place and is the better tool for some situations. On the PHP side XPath has been supported for a long time, while the querySelector stuff is quite new.
zerocrates
·3 เดือนที่ผ่านมา·discuss
Yeah, querySelector/querySelectorAll are totally widespread in client-side, it's nice to finally have them in PHP's newer DOM. Definitely what people are used to doing.