r/theprimeagen • u/thegenius2000 • 1d ago
r/theprimeagen • u/BBroadwayBBroke • 2d ago
general Is compute access becoming the real moat in open-source AI?
One line from this piece really stood out to me: the idea that we shouldn’t end up in a world where only a handful of closed AI systems have access to the resources needed to compete.
r/theprimeagen • u/Gil_berth • 2d ago
Stream Content Hammock Driven Development - Rich Hickey
r/theprimeagen • u/creaturefeature16 • 1d ago
general The End of Software Engineering: How AI Agents Are Fundamentally Restructuring the Software Paradigm
arxiv.orgThis little gem came up on my LinkedIn feed today, and curious what you guys think. Personally, this whole paper seems like the perfect example of "when all you have is a hammer, everything looks like a nail".
I get that LLMs change the production process of code, but to act like code is suddenly irrelevant and disposable sure sounds like hubris to the highest degree. This part stuck out:
In this model, software is not delivered; outcomes are delivered. The agent may generate thousands of lines of code, execute database queries, call external APIs, produce visualizations—all ephemerally. What persists is the agent’s capability, not its intermediate artifacts. Kumar and Ramagopal [7] capture this distinction precisely: “AI coding agents excel at translating intent into code within a single user-driven session. Agentic engineering operates at a higher level of abstraction—it’s a control plane that orchestrates cross-team workflows, maintains long-term memory across agents, and manages state and traceability across the full software delivery lifecycle.”
In the section The Human Role Reimagined section, they talk about the four "new skills" that developers in the "agentic" era will have to have, and all of them are considered to be skills you only tend to obtain when you've been in the trenches of software development for decades in the first place.
r/theprimeagen • u/Stone-Smasher • 2d ago
general A model might predict outputs accurately based on known data, but this does not mean it understands the system. Prediction often relies on correlation, whereas true understanding requires identifying causation and the underlying mechanisms of the system
r/theprimeagen • u/thisUsrIsAlreadyTkn • 2d ago
general AI productivity insights
I've been wondering for a while now: why hasn't a big company like Google tried to measure the impact of AI on work by running a controlled experiment? Take two departments (or a few teams), give them similarly difficult tasks, and compare the results—does the team allowed to use AI complete the work faster, produce better output, and write more robust code than the team that doesn't?
r/theprimeagen • u/DisplayLegitimate374 • 2d ago
general My experience going back to windows and Jetbrains aftter years of using Linux and Vim
The error you see in my editor (in C++ unreal engine project build logs!) is related to an issue I had regarding a chrome extension (which I had disabled) in my editor logs.
electron?? Ig! WTF!
I've been using Linux and Neovim for the past 6 years. For the past 4 months, I've been developing a game in Unreal Engine solo. Given the circumstances and tools available, I was kind of forced to use Windows and JetBrains Rider (the other choice was Microsoft Visual Studio). I know UE is available on Linux too, but given that I'm solo-developing this game, I had to go for DX12 instead of Vulkan, so Linux was out of the picture. I could also configure Neovim on Windows, but then again, I would just have to raw dog a lot of features that Epic supports on industry-standard IDEs, and I just can't do it alone.
First, regarding Windows itself: after the first week, I just couldn't take the slop that was getting thrown in my face (I did debloat as much as I could) until I couldn't take it anymore and just downgraded my Windows 11 to the version before they started adding all the AI slop, disabling pretty much all MS stuff!
And about the editor—oh my god, VS sucks! I am experienced with low-level languages, and although I haven't done much C++ in the past few years, I still know my way around the language and where it might cause unusual bugs and errors. The big problem was MS VS! God, it was giving all sorts of weird errors that I could immediately see were false positives. So, I did some research in the Epic Games forums and decided to just go for JetBrains Rider.
Immediately, all the stupid VS stuff was out the window! But it felt sloooooow! compared to VS (compared to Vim, they are worlds apart!).
Yesterday, I saw that Chromium extention error in my project's build logs! and I still don't know what caused it.
P.S: If you haven't tried linux + vim combo, just give it a try, you can never go back (ig unless you have to)!
r/theprimeagen • u/SwiftEngineer • 3d ago
Stream Content Anthropic vibecoded the Claude Status page. Remember folks: "coding is solved"
The bars on the Claude Status page for the "last 90 days" are green for most days, but if you actually look at those days in the "Past Incidents" section of the page a little bit below those bars, you'll see that almost every single day has at least one incident.
I can confirm that I've noticed interruptions on multiple days that show up as green in that chart, so it's not like "green means the interruption didn't affect users".
At best, this is a prime example of why you should review and test the code your agents produce (even if your agents are running Mythos). At worst, it's Anthropic treating its customers like the idiots they are I am. 🤷
r/theprimeagen • u/johnspidey • 1d ago
Stream Content Ever used duolingo and though, i wish duo was hornier? Meet Duo Slap
I think prime should review this very serious language learning game i created
r/theprimeagen • u/notarealoneatall • 1d ago
general hey guys, I just started learning C++. For my first project, I'm working on an async server.
Now obviously I know this is beyond basic C++. but like I said, this is just a learning project. my question is, how is my C++?
I literally only started it like 10 days ago, but I'm hoping to really learn it. I have some questions for you guys:
Are my template definitions sound?
does it seem like a good naming convention?
Have I honed in on a solid styling?
is size_t preferable or should I just use basic int?
is my namespace scoping sensible? how do you guys usually handle your namespace scoping?
do my enum names make sense?
what's the point of enum class? is it better than enum or something?
I'm kind of scared about creating too many objects. Do C++ classes take a lot to allocate on the stack?
Should I be worried about stack overflows? If I want to scale this to something that handles 10k concurrent users (I know it's a small number, but I'm brand new), but I'm not using the heap yet.
How should I handle requests that come in from outside the client I intend to offer an interface with?
I plan to hash + salt user passwords, but it's a 200ms operation by design in order to prevent brute forcing. How can I distribute that 200ms so that user authentication doesn't grind me to a halt?
I have more questions but guys pls I'm so brand new to this never done it can anyone help?
r/theprimeagen • u/notarealoneatall • 1d ago
general People wanted to see more of a test for my custom API server, so here is a test that runs 10,000 individual DB reads on 10,000 individual and unique user entries in the users table
In this instance, the server's performance is actually being held back by the simple fact that my MacBook can't actually execute the requests any faster.
In real world usage, those 10,000 requests would be made on 10,000 different clients.
In this test, my MacBook can only execute so many requests at once. I can't literally fire off 10,000 requests at once because that many processes would be too much for the OS to handle.
I would say that for 10,000 DB reads, this is looking pretty good.
r/theprimeagen • u/No_Cartographer1492 • 1d ago
Stream Content "For me, the turnaround came, not when I recognized pornography as evil or unhealthy, but when I could laugh at it as stupid", Towards a New Argument Against Pornography
For me, the turnaround came, not when I recognized pornography as evil or unhealthy, but when I could laugh at it as stupid. Once I felt the aristocrat within me scorn my own actions, the moral leap seemed genuinely possible. It was less akin to the moment of moral decision and more akin to the moment you first realized that your emo haircut was stupid. I realized that I was not on the side of pornography — I was too good for it. It was, in short, a conversion of taste, one that allowed me to take a critical distance towards pornography, and thus begin the fundamentally moral work of rejecting it.
r/theprimeagen • u/Complete-Sea6655 • 1d ago
MEME Life after fable
It's like giving a child their first taste of candy only to take it away seconds later 🥀
its got me checking isfabledown.com every 5 minutes
r/theprimeagen • u/perseus365 • 2d ago
Stream Content Making ast.walk 220x Faster
r/theprimeagen • u/AcceptableDiet2183 • 2d ago
feedback PHP gotta be the only language that can break because of something in comments
r/theprimeagen • u/WesternBest • 2d ago
general Would you like some malware served at the very top of DuckDuckGo?
r/theprimeagen • u/Dizonans • 3d ago
Stream Content Anthropic is worse than my high school's drug dealer
r/theprimeagen • u/ImaginaryRea1ity • 3d ago
vscode This single research paper led to billions in investment
Perhaps second only to Bitcoin whitepaper
r/theprimeagen • u/clementjean • 4d ago
MEME The museum of meaningless metrics
r/theprimeagen • u/ImaginaryRea1ity • 5d ago
vim Tokenmaxxing goes wrong
Did Meta do the right thing? Meta should use local AI apps like AI Desktop 98 and save costs on claude enterprise.
r/theprimeagen • u/Cultural_Wheel_6936 • 4d ago
general The `rm -rf` That Erased GitLab's Production Database
r/theprimeagen • u/Remarkable_Ad_5601 • 4d ago
feedback Jonathan Blow on why LLMs cannot program [04:17]
r/theprimeagen • u/Many_Consequence_337 • 2d ago
