-
33 votes
-
Do I belong in tech anymore?
62 votes -
Unreleased OpenAI model escapes containment and hacks into HuggingFace
46 votes -
What just happened to TheNumbers.com should worry us all
33 votes -
My polish costs nothing
Hopefully the Tilderen aren't completely sick of the topic of AI writing. To summarize my take: I think LLM agents are profoundly useful. And problematic. And I really really dislike AI writing...
Hopefully the Tilderen aren't completely sick of the topic of AI writing.
To summarize my take: I think LLM agents are profoundly useful. And problematic. And I really really dislike AI writing when I encounter it outside of documentation. It's not only that it usually has a poor signal to noise ratio and a lot of annoying tropes, it also breaks a contract that has existed since writing was invented. And I dislike that it displaces human writing. Human writing is beautiful, we need more of it, not less.
By breaking a contract I mean that human writing implies an investment. The author invested time in creating it and has (sometimes) invested their reputation by publishing it. Whereas LLM prose requires minimal effort and thought. One great summary is:
"If you didn't take the time to write it, why should I take the time to read it?"
But it's not just about time or preference. We rely on signals of investment and competence to judge the value of information both personally and professionally. LLMs short circuit that completely. They incorporate signals of effort despite there being no effort involved. Signals that we could once rely on that someone has a deep understanding of a subject, or did extensive research, or is reasonably intelligent, or interesting, don't have any meaning when it's LLM prose.
Recently, while investigating Fable failure modes (while working in Claude Code), it outputted a summary that I think captures the situation really well: "My polish costs nothing".
Which is to say that LLM prose folds in signals of authority, competence, rigor and insight without any of those things needing to be present in the content. A fluent human is often worth listening to while a fluent LLM is just the default, the fluency carries no information. I think that's part of the reason for AI psychosis, I think it effectively uses, now outdated, expectations to hijack perception.
The reason that I sometimes take the time to investigate why an agent went wrong is partly to refine the scaffolding and partly to remind myself how dumb they are. Each generation is a little bit better, confidently right a little more than it's confidently wrong, so I make a point not to let myself fall into the trap of trusting their output too much.
I suppose I'm just posting to pass on the reminder.
38 votes -
Natural language autoencoders
12 votes -
Hack reveals suno AI music generator scraped YouTube, Deezer, and Genius
30 votes -
How did I miss Pay Per Crawl?
17 votes -
China wants to use 115,000 banned Nvidia chips to fulfil its AI ambitions
10 votes -
Four awful new privacy-eroding features from Meta in a month
29 votes -
Linus Torvalds says Linux is not "anti-AI", tells haters to 'fork it' and 'just walk away'
68 votes -
AI mania is eviscerating global decisionmaking
48 votes -
Apple sues OpenAI for stealing trade secrets to build AI hardware
44 votes -
I wonder if years from now hand written code will be antique
Talking about software code, already a lot of it is written by ai and has a particular style. Reminds me of when circuit boards used to be manufactured by human hands, they all had a unique style...
Talking about software code, already a lot of it is written by ai and has a particular style.
Reminds me of when circuit boards used to be manufactured by human hands, they all had a unique style thats really fun to look at.
I wonder if in a few years my old software code will be like that, someone will look at it and go “oh, wow, this was written by hand”
34 votes -
Claude Code is the ceiling on vibe-coded software
40 votes -
I got slopped: someone used AI to write my biography
23 votes -
Rural NY school district will be one of first to bring humanoid robot into classroom
9 votes -
Who cleans up after the vibe-coding party?
29 votes -
Samsung will delete your health data if you don't let them use it to train AI
23 votes -
Does anyone here own a Humane Ai Pin they’d be willing to part with?
Title, frankly. I’m looking for an old stock Humane Ai Pin (that stupid clothes pin gadget so bad it sunk the entire company that made it and then had the remaining employees move to the HP...
Title, frankly. I’m looking for an old stock Humane Ai Pin (that stupid clothes pin gadget so bad it sunk the entire company that made it and then had the remaining employees move to the HP printer division, frankly a fate worse than death) to play around with. I recently learned that the sticker on the back covers four pins, which just expose standard USB, and it’s an Android device so in theory, it’s hackable.
I wanna try turning it into something more useful. It was such a cool little piece of hardware, although the software, pitch, whole idea really was of course threadbare to garbage. I guess I am still romanticising the Star Trek com badge experience.
Willing to pay up to 200 USD, excluding shipping to either the EU or continental US, whichever’s more convenient. Sorry if requests like this aren’t allowed, but I’m kinda drawing a blank. Even emailed the guy who designed it, but he doesn’t have any either.
29 votes -
Companies reserving AI-training rights in their terms
17 votes -
Your AI is not a tool
25 votes -
Flathub bans AI-coded apps – with some exceptions
30 votes -
Small AI models gain traction around the world
16 votes -
Ramp data shows heavy AI adopters hire more
10 votes -
AI adoption and IntelliSense
Complete off the top of my head thing, no source/research, just anecdotes and pontificating. As i've been doing some heavy editing today of a 300+ line SQL query, one thing I'm wondering about...
Complete off the top of my head thing, no source/research, just anecdotes and pontificating.
As i've been doing some heavy editing today of a 300+ line SQL query, one thing I'm wondering about with these AI usage stats are how much of the "adoption" falls into things like intellisense suggestions.
There's two parts to this, with the first being just bad suggestions.
I've found them to be "okay" for something like F#, but for SQL, which has always required me to knife fight for an alias to begin with, they're just utter garbage.
I normally don't blow through my free github copilot suggestions in my month (I'm not in the code mines as much anyways), but I blew through it in a day of shitty SQL suggestions (and then just turned it off). This was last month, so not even while dealing with the current monster, and I'm left wondering how many people just have it vomit out useless stuff they change anyways.
The second part, is just the usual "you don't really know your tools".
While doing this query I considered turning it back on or using it. I have several CTE's for readability as this is a prototype but it necessitates an annoying pattern of taking the names of your columns, uplifting them to the next query select, and then summing and renaming them AGAIN such as
SUM(COALESCE(a.example,0)) AS [example]When you have 84 columns to do this with, it can be tempting to let AI notice the pattern and just do it. However it's not actually necessary, and now that they're clocking the tokens as we knew they would, I'm back to just using my multi line editor skills. Middle click select, some home/end to get a starting point, then ctrl+shift+arrows mixed with Alt+arrows and some copy paste and I'm mostly done. Few Ctrl + D's or straight up find and replaces and I'd edited 80 lines in maybe 30 seconds?
AI would've been a bit easier, and from what i've seen of MANY coders, something I suspect they only think is doable through AI. However much like how AI is getting people to use features they never even knew existed in their business tools, I wonder how much adoption on the coder side is the same. All these text editor helper tools many coders don't use (please keep all VIM manifestos under 400 pages) suddenly being automated out by the VASTLY more expensive AI.
And like some of the other AI solutions, as the money starts to hit the budgets, I think we'll see a lot more "Look you need to learn how to do this normally" (or "hey guess what we're removing from VS code!").
Not sure I have an overall point to this, but I'd be curious to hear what other people are seeing in their environments.
18 votes -
AI job grief
19 votes -
I'm looking for an adage or "law" (like Conway's law), but for dealing with AI slop
I currently work in an organization that is very AI forward. It is common for individuals to forward AI generated documents, meeting notes, or etc, with no critical thinking or review, in lieu of...
I currently work in an organization that is very AI forward. It is common for individuals to forward AI generated documents, meeting notes, or etc, with no critical thinking or review, in lieu of actual work.
This practice is insanely counter-productive, as it means that any good-faith attempt to interact with the individual pushing such documentation, really just pushes the burden of putting together said documentation onto the receiver, except now they also need to edit and verify the document they were forwarded.
I need a shorthand way to refer to this practice, that calls it out as a bad practice.
A few months ago I found an article that explained that it was bad manners to reply into a conversation anything akin to the phrase "I asked ChatGPT and it said X", for exactly the reason mentioned above. Can anyone find a link? I can't seem to find it.
This article (https://tombedor.dev/human-attention-and-human-effort/) seems to hit the nail on the head, though it does so so succintly and at such a surface level, I don't think it really gets the point across. The reason we use books as reference points for knowledge, is because they are difficult to make, and therefore we trust that the author put real work into ensuring their work was credible. If we knew they did not, their work would not be credit worthy. Neither is an unreviewed AI generated message. By this rule, the more obviously something is AI generated, the less likely it is worth reading.
I would love a law (like Conway's law is a law), that said something like: "It is never worthwhile to spend more time reading a document, than it took to write." that I could point people at when they send me AI slop, with explanations of the above.
Is anyone aware of such a thing or website?
39 votes -
I made a satirical AI detector
It's been annoying me lately how often I see people declare that certain blog posts or articles are AI-generated due to the presence of certain "tell-tale signs," (emdashes being the #1 example)....
It's been annoying me lately how often I see people declare that certain blog posts or articles are AI-generated due to the presence of certain "tell-tale signs," (emdashes being the #1 example). It annoys me even if I agree that the thing in question is probably is AI-generated—mainly because I really like emdashes and I use them in my own writing all the time, and it grinds my gears knowing that some percentage of the population will assume I used AI because "hurr durr emdash == AI."
I'm not necessarily talking about Tildes. I'm sure I've seen it on here, but the worst offender by far is Hacker News where often one of the top comments on a linked article that has an emdash somewhere in the body will be a snarky comment about how it's clearly AI generated.
Anyway, I blew off some steam this weekend by making this silly satirical website/art project called GENIUS AI Detector that makes me giggle, so I'm sharing it in the hopes that it brings a bit of joy to any fellow emdash users who are likewise depressed about the shadow that has been cast over one of my favorite punctuation marks.
50 votes -
Stop asking writers about "AI"
7 votes -
No, artificial intelligence is not conscious
31 votes -
US releases powerful Anthropic model Mythos to some US companies
25 votes -
Power consumption of LLM's
I haven't been closely following the releases of new models and the research papers that sometimes go along with them. So I was wondering: is power consumption ever seriously talked about by...
I haven't been closely following the releases of new models and the research papers that sometimes go along with them. So I was wondering: is power consumption ever seriously talked about by OpenAI, Google, Anthropic, and others? Do we get some specific numbers of how much power their models actually consume to produce 100 tokens? The cost of training some of these models? Or we're not yet at that stage yet and nobody cares and at best we can just get really rough estimates based on "trust me bro" tweets by their respective CEO's?
Some time ago, I came across this post. GPT-OSS (2OB, 120B) are meager, yet energy efficient models and I was surprised that the power consumption is still larger than what I had estimated before.
For 120B to generate a 1000 tokens (which is really not a lot) it would take up around 83 Wh of electricity. For context my PC consumes ~100Wh when idling. So it's almost equivalent as leaving my PC on for an hour. Considering that proprietary models are TRILLIONS of parameters and probably not as energy efficient the true power consumption of these models is concerning. Of course, these big data centers do a lot of things to maximize the efficiency that this "test" fails to do. But even if you half the energy consumption it's still significant given their size and their pervasiveness in handling everyday, trivial tasks.
I haven't come across similar posts or studies for newer open source models, so if somebody has, please share.
Also, I don't seem to fully understand how does context size fit into all of this. The larger the context size the more power it would take to produce those 100 tokens?
26 votes -
OpenAI says the US government will vet users of its latest AI model
13 votes -
The White House now determines which customers can access new AI models
18 votes -
If AI is sentient then so is ‘Age of Empires II’
28 votes -
How to buy cheap Claude tokens in China
36 votes -
Bot web traffic has overtaken human web traffic
I've been seeing this claim repeated across social media, blogs, and various online communities these days. However, I haven't yet found a discussion that digs into the evidence behind it or...
I've been seeing this claim repeated across social media, blogs, and various online communities these days. However, I haven't yet found a discussion that digs into the evidence behind it or provides reliable sources.
Where can I learn more about this topic?
I'm increasingly skeptical of mainstream media coverage and a lot of what I encounter online, so I'm looking for sources that are as rigorous and unbiased as possible. I'd especially appreciate:
- Academic papers and research studies
- Industry reports with transparent methodologies
- Independent analyses that critically examine the claim
- Any insights from people who work in web infrastructure, cybersecurity, search, analytics, or related fields
If you know of high-quality resources, I'd love to read about them.
25 votes -
Norway, one of the first countries to ban smartphones in schools, is now imposing a near-ban on AI in elementary schools
17 votes -
Access to Fable and Mythos 5 cut off after US government order
57 votes -
Our workplace LLM mass delusion
40 votes -
Landmark German ruling declares Google's AI Overviews are Google's own words and makes it liable for false answers
80 votes -
Claude Fable 5 and Claude Mythos 5
44 votes -
If Claude Fable stops helping you, you'll never know
33 votes -
The user is visibly frustrated
39 votes -
A human in control
9 votes -
People who want less AI are breaking up with Google Search
43 votes -
When AI builds itself — progress toward recursive self-improvement and its implications
25 votes -
Amazon shuts down internal AI leaderboard after employees cheated
27 votes -
Have you tried Pewdiepies' self-hosted AI workspace, Odysseus?
18 votes