sacredfire

@sacredfire@programming.dev
0 Post – 10 Comments
Joined 1 years ago

I heard this somewhere: “You’re in an IVF clinic. It’s on fire and you enter a burning room. On a table is a large cooler with 5 thousand fertilized eggs, and there’s also a crying, injured five-year-old girl in the room. Which one do you save? You can only save one.” The answer for most people is obviously the 5 year old and it’s not a hard choice.

What could possibly go wrong letting non-programmers write raw sql directly to the production db, it's pretty easy right.

2 more...

Ooof my guy, the comment you originally replied to - to brag about how easy sql is - literally said he had an IT director 20 years ago trying to get everyone in the department to write SQL queries, where did he mention frontend dash boards? How can an IT director be that stupid... what is this thread about and why do you think he shared that anecdote? A thread about idiots asking for stupid shit... I wonder what could possibly be reason, we may never know but I'm sure you'll explain it to us.

You would be able to tell by monitoring the network tab of the browser developer tools. If post requests are being made (which they probably are, though I’m too lazy to go check) while you are typing a comment, they are most likely saving work in progress records for comments.

Time zones are part of it, but also daylight savings is a real pain in the ass. And like you said it gets particularly complicated when you’re dealing with a system that deals with these things as an afterthought, which seems to be a lot of older libraries for time. For instance, the Java date utils are a nightmare and are now considered semi deprecated replaced by a new java.time api. That is, of course, no help for the ridiculous amount of things that depend on these stupid date utils and no one wants to spend the dev hours to refactor.

I don’t know, when we start talking about power users my mind goes to developers and most seem to not like windows. At least that has been my experience. Most of us prefer unix based systems, primarily because we have to use it to interact with like almost every server anyway. And of course I’m not just talking about different Linux distos, Mac is essentially Unix based and is in heavy use in a lot of shops.

I personally don’t think that’s the issue with the typing system. With vanilla js if I’m looking at a function that has say four parameters that are not trivial objects like strings but are actually complex (think dependency injection) it’s very difficult for me to know what these objects are other than reading through the code of the function.

Actually, even if the parameters are simple, I’m not sure of that until I look into the function and see what it’s doing. This is a huge pain in the ass most the time, because I just wanna look at the function name its parameters and move on. However, that being said, most of this can be remedied with jsdocs and a good linter/lsp.

Why does a pre-trained model need expensive private hardware after it was trained, other than to handle API requests faster? Is Open AI training chat-GPT on inferior hardware compared to these sophisticated private versions you mentioned?

The real problem is that across the globe there is like 50 different implementations of it. Some places have a fucking half hour, or some goofy shit. Really fun handling time zones with that sprinkled on top.

For sure this is true, but at that this point for simple pages like that, most people will just use some sort of lowcode or no code cms like WordPress or square space etc. So for most jobs that are in web development space we're talking about SAAS/PAAS apps, very complex media sites like Netflix/YouTube, or stuff in the financial sector. In fact I work for a company that makes a CMS just so that other corporate companies can publish their relatively simple PR websites using a low code solution, but the CMS its self is complicated af and I honestly can't even begin to untangle all the stuff going on.