▲ | ivanjermakov 3 days ago | ||||||||||||||||||||||
I'm afraid we already in the phase where regular devs have no idea how things work under the hood. So many web devs fail on the simple interview question "what happens when user enters a url and presses enter?" I would understand not knowing the details of DNS protocol, but not understanding the basics of what browser/OS/CPU is doing is just unprofessional. And LLM assisted coding apparently makes this knowledge even less useful. | |||||||||||||||||||||||
▲ | const_cast 3 days ago | parent | next [-] | ||||||||||||||||||||||
Met a dev who couldn't understand the difference between git, the program, and github, the remote git frontend. I explained it a few times. He just couldn't wrap his head around that there were files on his computer and also on a different computer over the internet. Now, I will admit distributed VCS can be tricky if you've never seen it before. But I'm not kidding - he legitimately did not understand the division of local vs the internet. That was just a concept that he never considered before. He also didn't know anything about filesystems but that's a different story. | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | phba 3 days ago | parent | prev | next [-] | ||||||||||||||||||||||
"Low code quality keeps haunting our entire industry. That, and sloppy programmers who don't understand the frameworks they work within. They're like plumbers high on glue." (https://simple.wikiquote.org/wiki/Theo_de_Raadt) This phase has been going on for decades now. It's a shame, really. | |||||||||||||||||||||||
▲ | probably_wrong 3 days ago | parent | prev | next [-] | ||||||||||||||||||||||
I don't think I agree with calling that question "simple". I could probably speak non-stop an entire hour before we even leave my local computer: electric impulses, protocol between keyboard and PC, BIOS, interruptions, ASCII and Unicode, OS, cache, types of local storage, CPU, GPU, window management and TCP stack, encryption... It's hard to come up with a computer-related field that's not somehow involved in answering that one question. If anything, I always consider it a good question to assert whether someone knows when to stop talking. | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | jckahn 3 days ago | parent | prev [-] | ||||||||||||||||||||||
> So many web devs fail on the simple interview question "what happens when user enters a url and presses enter?" Is the answer you're looking for along the lines of "the browser makes a GET request to the specified URL," or something lower-level than that? | |||||||||||||||||||||||
|