Readit News logoReadit News
hderms commented on A Portal Connecting NYC to Dublin Opens in Flatiron Today   secretnyc.co/the-portal-c... · Posted by u/geox
hderms · a year ago
is Dublin becoming more of a cultural center since Brexit?
hderms commented on The Cloud Computer   oxide.computer/blog/the-c... · Posted by u/CathalMullan
foobiekr · 2 years ago
Also future datacenter builds are going to be focusing on specific applications which means specific builds. I think Nvidia has a much better chance here with their superpod than Oxide. The target use case is pretty unclear.

On-prem buyers are doing cost reduction and cost reduction targets things like, as one example, the crazy cost of GPU servers on the CSPs. Your run of the mill stuff is very hard to cost reduce.

You can see their sort of lack of getting it by using Tofino2 as their switch. That’s just a very bad choice that was almost certainly chosen for bad reasons.

hderms · 2 years ago
can you elaborate a bit? What you're saying sounds pretty interesting but I'm too ignorant to read between the lines
hderms commented on Google assigns a CVE for libwebp and gives it a 10.0 score   stackdiary.com/heap-buffe... · Posted by u/skilled
diogenes4 · 2 years ago
Kind of crazy we're still using monolithic kernels in 2023. Nothing about `io_uring` needs to happen with elevated privileges.

I would take a large—say, 2-5x—performance hit just to escape these kinds of vulnerabilities.

hderms · 2 years ago
but isn't the whole point of io_uring that it's more performant?
hderms commented on Blue-light glasses may not reduce eyestrain from screens, study says   washingtonpost.com/wellne... · Posted by u/bookofjoe
veb · 2 years ago
This also works in _so many different work environments too_! I like how you term it "intellectual humility" but I wonder if "professional intellectual humility" is more suited.
hderms · 2 years ago
Yeah it's considerably more harmful in professional environments, imo. I forgot to mention in my initial comment that I feel like people underestimate how effective it is to drop the pretense that you already know enough about what's being discussed to learn more, and how 'disarming' it is to people to be asked instead of told.

Disarming in a sense that they will usually be inclined to react in a magnanimous way, instead of possibly adopting some other frictional communication pattern. It really just makes everything easier if you actively try to leave your ego at the door.

hderms commented on Blue-light glasses may not reduce eyestrain from screens, study says   washingtonpost.com/wellne... · Posted by u/bookofjoe
dpio · 2 years ago
Well, actually you forgot the “not really” guys too!
hderms · 2 years ago
yes, there are so many frustrating communication archetypes I feel like there should be a compendium/dictionary of them. Unfortunately, most of them seem ego-driven, so it takes a lot typically for people to grow out of them.
hderms commented on Blue-light glasses may not reduce eyestrain from screens, study says   washingtonpost.com/wellne... · Posted by u/bookofjoe
tmpX7dMeXU · 2 years ago
I worked in a big box electronics retail store in the early 2010s. Most customers were reasonably trusting which as someone not looking to screw them over made for quite a pleasant job. Perhaps the worst type of customer, was the vaguely ‘informed’ know it all ‘nerd’. Around this time, the “don’t buy the expensive gold-plated HDMI cable” movement was in full swing, but it was also about this time that different types of HDMI cables were starting to matter for (higher-end) prosumer setups.

Trying to convince some abrasive knowitall that our $15 home brand HDMI cable is going to be the bottleneck in their setup, and that it was basically orthogonal to any ‘good plated’ BS, was almost always not worth it. Eventually I learned to just let them make their own mistakes, dooming them to slink off to Amazon or whatever when they weren’t getting the resolution or frame rate they were after and eventually happened upon the CNET article that made them see the light.

The fact that there is an objective functional difference between different types of HDMI cables, whereas the jury is still out on blue blocker glasses, is pretty much irrelevant to my point. Any ‘science says…’ rhetoric is almost always parroted by people that don’t know what they’re talking about. At the end of the day, self-described ‘informed consumers’ LOVE feeling like they’ve got The Knowledge that’s going to give them a leg up on the slimy salesperson. A fair bit of the time though, the fact that the majority of these people aren’t actually all that knowledgeable means that these pearls of wisdom get corrupted over time and end up being entirely untrue. I’ve got no doubt that plenty of Hacker News regulars are the sorts of people that were incredibly hard to work with back then.

hderms · 2 years ago
Well, engineers are kind of the archetypal model of the "but ackshually..." guy, so I'd venture to say you're right. I used to be more bold in my pronouncements when I was younger, now I think I like to repeat stuff I've heard like "interesting, I had heard that X was a factor with this, do you know if that's true or not?" In these situations. Having some intellectual humility and actively seeking opinions of people who might be more informed goes a long way.
hderms commented on Forget ‘quiet quitting’ – ‘loud laborers’ are killing workplace morale   cnbc.com/2023/08/09/forge... · Posted by u/rustoo
mattnewton · 2 years ago
Are there employers out there who find articles like this actionable or is this just entertainment?

How long until the whole work performance pantheon of alliterative accusations is fleshed out and we get a personality test like the big 5 to find out which sins the employees around us are committing?

hderms · 2 years ago
Bravo. I had a laugh from reading this which quickly turned to horror after I realized it might actually come true
hderms commented on US urged to reveal UFO evidence after claim that it has intact alien vehicles   theguardian.com/world/202... · Posted by u/bloak
thekevan · 2 years ago
Am I missing something or is the only thing that makes this different than so many other "insider" claims is that this guy has a career history that implies he isn't just another crackpot spewing theories?

It reads just like so many claims like we have heard in the past, but this time people think the guy is more reliable.

It is pretty funny that the one of the people often quoted who backs up Grusch's claims is Jonathan Grey. (https://www.imdb.com/title/tt2241801/)

I'd love to think that alien contact is possible, but as I attempt to learn more and more about physics, travel approaching the speed of light, the mechanics that transformed us from a basic life form to a life form with a consciousness, it just seem incredibly unlikely sadly.

hderms · 2 years ago
I personally believe FTL is likely impossible so I think the only realistic hypothesis is if we encounter aliens, that they're von Neumann drones on the vanguard edge of a colonization wave from an alien race that's been doing it for millions of years.

If we survive for long enough as a species, either we'll meet races in this manner or we'll be the ones doing it.

For the record I still only assign a fairly low probability that this is what is happening, it's more likely that UAPs are craft from terrestrial origin.

hderms commented on Programming with natural language is going to work (2010)   writings.stephenwolfram.c... · Posted by u/mrleinad
Ygg2 · 2 years ago
Honestly ChatGPT-4 sucks at writing code (if similar code isn't in its corpus of knowledge).

I asked it to write a YAML parser in pure Rust. The first thing it did was write this:

    pub enum YamlNode {
       Scalar(String),
       Sequence(Vec<YamlNode>),
       Map(HashMap<String, YamlNode>),
    }
This is what I expect a freshman in college to write as their first Yaml parser.

Literally unusable as a starting point.

I did try to correct it but it tripped up and somehow managed to fuck that up to.

hderms · 2 years ago
Why does it suck, because it's doing a lot of allocations?
hderms commented on Google DeepMind CEO says some form of AGI possible in a few years   wsj.com/articles/google-d... · Posted by u/type4
ActorNightly · 2 years ago
I wish I could bet real money on this cause I would bet hard against this statement. The issue is that nobody seems to agree what AGI even is.
hderms · 2 years ago
Well in real terms, isn't all it takes is something that's a convincing enough forgery? Like why the turing test was considered interesting at one point. I don't think drawing a line is necessary for us to quickly become caught off guard by developments in this space.

For the record, I don't believe we're close to AGI but I'm also pretty far from knowing anything about that field.

u/hderms

KarmaCake day439June 4, 2012View Original