

Except, unlike computers and the internet, AI is not essential, unless your whole business revolves around it (in which case, good riddance).


Except, unlike computers and the internet, AI is not essential, unless your whole business revolves around it (in which case, good riddance).


If you take such a broad definition of social media, then nearly the entire Internet becomes “social media” and the term loses its meaning, IMO.


I mean, social media should be banned for everyone, not just teenagers. It’s a great evil in the world today, and in a functional democracy that wasn’t braindead, we should ban them outright for the mass harm and destruction they have caused.
That being said, I fully understand that the motivations of countries for these kinds of bans have little to do with the harm of social media and are much more about surveillance.


Nah, microslop is a great name, especially because they throw tantrums about the name. It’s very descriptive of what they have become.
I mean, it sure is taking a lot of jobs by dumbass execs who think it makes sense to cut a bunch of people off of payroll since they have AI now.
It certaintly can’t do the job by any stretch of the imagination, but that doesn’t mean a ton of fools aren’t bought into the grift and convinced that it can.
Especially because part of the “art” (term used extremely loosely) of using an LLM is to frequently throw out its context (i.e, the input you’ve already given it) because of context rot.
I’d take a fresh grad any day of the week over the slop machines. Fresh grads are great.


My brother works for a company acquired by Bain. They are every bit the vulture capitalists bleeding companies into lifeless husks.


Good, maybe people will use it less.


This argument doesn’t really hold up, honestly. That is all easily done with shell scripting, and shell scripts can be committed to source control and shared to other members of the team easily. This is what my team does for our common API needs. It even has ecosystem support in many places, such as popular openapi renderers providing curl command examples for routes automatically, being able to copy the exact request made by a web browser as a curl command from the network tab automatically, and so on.
I use curl for absolutely everything, including testing out my work for each and every ticket I work on. Been doing this for years now. It works great and has many, many advantages over property bullshit like Postman.


Wrong comment to rely to?
I really should link people to this site more often. The author is 100% correct.


You can also revoke that consent, and HIPAA requires data to be able to be completely destroyed. no way they are compliant.


Seems crazy to only be realizing they’re evil now, but I guess it’s something at least.
Obviously don’t have the full context, but rarely is it ever advisable to give third parties direct access to a database. There are many reasons for this, like, for example, the fact that doing so makes schema migrations practically impossible.


No one actually copy/pastes thousands of lines of code. We use libraries.
Languages do matter a lot. Yes, they are all technically equivalent, but the craft of software engineering is much, much more about social/cultural/community considerations than it is computational ones. What the community around a programming language values matters, because it informs a great deal about what’s idiomatic in a language, what libraries are available, what kind of bugs are possible (or not), how easy code is to read, comprehend, and maintain, and much more.
What makes a language good is not what programs you can write in it, but how it constrains what you can do such that you naturally writing good code. For example, null pointer exceptions (or segfaults in C, etc.) are a classic problem that plagues many mainstream languages like Java, C#, Python, etc. In Haskell (and a handful of other languages, including Rust), null pointer exceptions are not possible, because nulls do not exist in these languages. Taking away this language “feature” actually increases the power of the language, because you can guarantee that a certain class of common bugs are not possible in your program. So languages that restrict known bad programming practices lead to programmers writing better programs and, more generally, a community around the language that resonates with these philosophies.
Not sure why, seems just like useful advice. It sounds like the author does contracting of some sort, so having tools to quickly orient around a new codebase makes a lot of sense.