CodeZera

3.4K posts

CodeZera banner
CodeZera

CodeZera

@codezera11

CRUD Developer | Tech Blogger https://t.co/6nL00hw1VN

Kota, rajasthan Joined Ekim 2021
168 Following113 Followers
CodeZera retweeted
Lenny Rachitsky
Lenny Rachitsky@lennysan·
"Using coding agents well is taking every inch of my 25 years of experience as a software engineer, and it is mentally exhausting. I can fire up four agents in parallel and have them work on four different problems, and by 11am I am wiped out for the day. There is a limit on human cognition. Even if you're not reviewing everything they're doing, how much you can hold in your head at one time. There's a sort of personal skill that we have to learn, which is finding our new limits. What is a responsible way for us to not burn out, and for us to use the time that we have?" @simonw
Lenny Rachitsky@lennysan

"Using coding agents well is taking every inch of my 25 years of experience as a software engineer." Simon Willison (@simonw) is one of the most prolific independent software engineers and most trusted voices on how AI is changing the craft of building software. He co-created Django, coined the term "prompt injection," and popularized the terms "agentic engineering" and "AI slop." In our in-depth conversation, we discuss: 🔸 Why November 2025 was an inflection point 🔸 The "dark factory" pattern 🔸 Why mid-career engineers (not juniors) are the most at risk right now 🔸 Three agentic engineering patterns he uses daily: red/green TDD, thin templates, hoarding 🔸 Why he writes 95% of his code from his phone while walking the dog 🔸 Why he thinks we're headed for an AI Challenger disaster 🔸 How a pelican riding a bicycle became the unofficial benchmark for AI model quality Listen now 👇 youtu.be/wc8FBhQtdsA

English
495
619
6.1K
1.5M
CodeZera retweeted
Alvin Sng
Alvin Sng@alvinsng·
It's Friday afternoon and I've merged 13 PRs this week so far. I used to ship 2-3 a week. This is on top of my tech lead duties: reviewing code, responding to Slack, design discussions, meetings, and conducting interviews. Is there more context-switching? Yes. Is my cognitive load higher? No. Most of my cognitive load used to come from coding itself, and I'd max out after about 6 hours a day. Now I've delegated most of that to agents and trust them to handle the bulk of the work. I spend more time finding patterns that should be automated, then automating them, so the cognitive load keeps shrinking over time. The best-kept "secret" in productivity? Don't work on parallel coding tasks. Throughout my career, I've mostly worked on a single code branch at a time. I only work on multiple code changes when I'm truly blocked. There's always background work to fill the gaps: reviewing code, responding to Slack, writing a design doc. This keeps mental load low and ensures each change gets merged before it drifts from main. Where do I think we're headed? The era of hundreds of 5-minute tasks a day. Most will only take 5 minutes or less of your time. Some in the foreground, others you kick off and get notified when they're done. It's going to seem scary, but with the right orchestration tooling it's fairly manageable. Not that different from working through a support inbox.
Alvin Sng tweet media
Lenny Rachitsky@lennysan

"Using coding agents well is taking every inch of my 25 years of experience as a software engineer, and it is mentally exhausting. I can fire up four agents in parallel and have them work on four different problems, and by 11am I am wiped out for the day. There is a limit on human cognition. Even if you're not reviewing everything they're doing, how much you can hold in your head at one time. There's a sort of personal skill that we have to learn, which is finding our new limits. What is a responsible way for us to not burn out, and for us to use the time that we have?" @simonw

English
2
2
22
2K
CodeZera retweeted
Brad Spengler
Brad Spengler@spendergrsec·
Here's one of your three super advanced exploits for today's 6.6 LTS kernel: fgetxattr(31337, NULL, NULL, 0); That's it, that's the exploit.
English
4
9
143
37.2K
CodeZera retweeted
Georgios Konstantopoulos
Has anyone built a AI-powered regression monitor for rollbacks? Like a sentinel? Instead of running a real healthcheck of your services, you have an agent monitor post-deployment, and if regression/bug, it rollsback & tries to fix? So sorta like the old "known good" version monitors for its newer iteration and says "LGTM"?
English
6
0
30
3.8K
CodeZera retweeted
Eugene Ostroukhov
Eugene Ostroukhov@eeuoss·
Got a crash report - assert hit. The usual "should never-ever happen". Spend time debugging - no idea how the user got there. "Claud - make a test case that reproduces this user crash". It did that.
English
0
1
4
468
CodeZera retweeted
ludwig
ludwig@ludwigABAP·
the only good news about claude code's source code leaking is that i have finally backported the few good things about it and can now never use it again
English
7
2
149
7.7K
CodeZera retweeted
Ferron ⚡🦀
Ferron ⚡🦀@ferron_web·
"But Rust has strong memory safety guarantees!" When your async runtime (with io_uring) crashes: 1. ⌛️ Debugging segmentation faults... Found! io_uring use after free. 2. ⌛️ Debugging aborted programs... Found! Dangling pointers to the stack-allocated buffer. Oh no... 🥲
English
7
1
51
5.2K
CodeZera retweeted
Balogun Hammed
Balogun Hammed@bhalloinfraguy·
I once spent 6 hours troubleshooting why a Linux VM couldn't reach the internet after migrating it from VMware to Proxmox. Checked the firewall. Clean. Checked the gateway. Correct. Checked DNS. Resolving fine internally. Ran traceroute, packets dying at the first hop. I was convinced it was a routing issue, so I rebuilt the routes. , rebuiltthing. Then I checked the network interface name. VMware called it ens33. Proxmox renamed it to ens18. The netplan config was still pointing to ens33, an interface that no longer existed. The VM was basically shouting into a disconnected phone line. Changed one line in netplan. Applied. The Internet came back instantly. 6 hours. One line. Lesson: After any VM migration, always check if the NIC name changed. It's the simplest thing, and it will waste your entire day if you miss it.
English
8
24
185
19.6K
CodeZera retweeted
BloomOne
BloomOne@BloomOne·
I did a double blind test before confirming this. Claude Code audited a plan twice, which I also had analyzed by Qwen3.5 free right now in @OpenRouter Both times CC missed a critical bug, both times Qwen3.5 flagged it. Def worth pulling into your workflow.
English
1
5
32
4.2K
CodeZera
CodeZera@codezera11·
@Gregorein I’ve seen this kind of AI-generated bloat too looks fine in code but falls apart at runtime, recently we found a tool called @hud_hq and it made it way easier to see what was actually slowing things down in prod
English
0
0
0
2
CodeZera
CodeZera@codezera11·
lol yeah the “pay twice for the same bug” loop is too real, we hit that exact wall before, ended up wiring Hud.io into our flow and it’s been way closer to that “see it actually run and break” vibe, way less guessing compared to just staring at static output from claude/codegen tools
English
0
0
0
6
Abhijit
Abhijit@abhijitwt·
> Claude wrote your buggy code, charged you $200 > now it’ll charge you again to fix the same code but but but… > here comes depthfirst > just raised $80M to build this > actually sees how your app runs, not just your files > finds the kind of bugs that show up only after things go live > points out what can actually hurt you > doesn’t spam you with nonsense alerts > gives fixes you can just apply and move on > literally tries to break your app before hackers do > and fixes it like an engineer, not a chatbot
Andrea Michi@andreamichi

depthfirst has raised an $80M Series B at a $580M valuation. Attackers are using AI to break into systems faster than ever before. depthfirst is on a mission to stop this. RT + Comment “depthfirst” and I’ll send you a FREE vibe coding security agent.

English
2
6
21
3.3K
CodeZera
CodeZera@codezera11·
@ivanburazin i would like to add one more Hud.io ,it’s a tool that lets you actually see what’s happening at runtime, so even if your startup stack is tiny and cheap, you can make sure everything is running as expected before it hits users.
English
0
0
0
6
Ivan Burazin
Ivan Burazin@ivanburazin·
You could literally build and run a startup with 21 bucks per month. - Claude = coding ($20/mo) - Supabase = backend (Free) - Vercel = deploying (Free) - Namecheap = domain ($12/yr) - Stripe = payments (2.9%/transaction) - GitHub = version control (Free) - Resend = emails (Free) - Clerk = auth (Free) - Cloudflare = DNS (Free) - PostHog = analytics (Free) - Sentry = error tracking (Free) - Upstash = Redis (Free) - Pinecone = vector DB (Free) And make a total sales of $29. No one is building a serious startup on something because it's free. You choose something that makes you scale faster and ship better. Ofc, you could get free credits if your usage/demand exceeds normal volumes. But this listicle above is the newest form of slop on our feeds after "X/Y/Z is dead" and "I just replaced my $300k team with Claude/n8n"
English
18
3
47
4K
CodeZera
CodeZera@codezera11·
@NoahKingJr lol yeah it’s kinda crazy how good these tools got, still feels illegal to trust it fully tho, we’ve been leaning on @hud_hq to see what actually happens at runtime vs what claude thinks it did
English
0
0
0
4
Noah
Noah@NoahKingJr·
Me reviewing Claude Code output before pushing directly to prod:
English
43
146
2K
181.5K
CodeZera
CodeZera@codezera11·
i usually start by assuming they’re right and something is broken… just not where they think had almost the exact same situation, Hud.io made it super obvious the issue was upstream and not our code, saved us from chasing ghosts while they were (rightfully) pissed
English
0
0
0
8
Yogini Bende
Yogini Bende@hey_yogini·
Got a refund request this week. "Your emails aren't working." Turned out their staging script had fired in production. Bounce rate spiked. AutoSend paused their campaigns automatically. Their domain reputation tanked so badly, even their support email landed in our spam. Still thinking about how few things look like product bugs when the real issue is somewhere else entirely. How do you respond to angry support emails?
English
9
2
32
5.4K
CodeZera retweeted
flux
flux@0xfluxsec·
I've spent all day working on an LLM <---> MCP tool to perform automated vulnerability analysis on a directory of binaries, working as a state machine. Screenshot of some output attached. The idea is that it will analyse its own results and make recommendations to a vulnerability analyst who can go off and triage further, which may speed up the process (and/or inspire other post-processing tools / workflows). I tested it with Claude + IDA Home and it found the same vulnerabilities through the tool as it did from yesterday. I then realised IDA Home doesn't include headless, so I spent this afternoon porting it over to Ghidra using an MCP integration there which was annoying as it was over a differnet protocol. Interestingly, switching to Ghidra as the backend from Ida gives slightly weaker results (using the same model) which I am trying to debug. A clarification from yesterday: a DKOM-based privilege escalation path from high integrity to System is the more accurate description of what the LLM produced an exploit for. I've made that clearer on GitHub too. The point I'm conveying is that AI and LLMs are driving this. What stood out to me was that the LLM was able to reason far beyond my initial, limited attempt and identify that path to SYSTEM via using an arbitary physical memory read & virtual write vuln (whilst constrained by 32-bit addressing), which I thought was absolutely wild! That's some crazy capability imo. I used a known vulnerable driver because it is a good sample set for testing this functionality. After testing a data set of known vulnerable drivers to validate output, you can then move onto testing binaries of which the status of their exploitability is unknown, that will be the next step of this. Anyway I need a break from this for this afternoon as my brain is tired, but I'm looking forward to seeing where this project goes!
flux tweet media
English
5
8
74
4K
CodeZera retweeted
Evis Drenova
Evis Drenova@evisdrenova·
Claude is not allowed to write outside the workspace. But it wanted to. So Claude wrote a python script and executed it via bash to modify the file essentially hacking my permissions.
Evis Drenova tweet media
English
23
10
308
19.9K
CodeZera retweeted
NeetCode
NeetCode@neetcode1·
man i really miss writing code i miss hopping between files, reading error messages, writing shit code and then refactoring it later.. and then refactoring it again and again.. agents are nice but i just spent three days fixing a feature i probably could've just coded from scratch more quickly gpt 5.4 is my model of choice these days, and it's pretty good but i think i fell for the bait that i didnt need to read the code anymore but idk maybe its a skill issue
English
49
12
417
29.1K
CodeZera retweeted
Dmitriy Kovalenko
Dmitriy Kovalenko@neogoose_btw·
I got 2 exact same AI generated contributions and it is intimidating how much code they are generating. The one on the left is the AI generated PR code, the one on the right is the actual fix needed. The bug is SUPER easy while the agent is likely mislead by the context provided in the issue which is leading to 100x more code to fix it. My change was also AI generated, it's just the way you phrase your request. It's not a surprise Garry generates 100k LOC a week
Dmitriy Kovalenko tweet mediaDmitriy Kovalenko tweet media
English
40
46
968
66.1K
CodeZera retweeted
Donn Felker
Donn Felker@donnfelker·
I was paying for a co-parenting app, $500 a year for two parents. The main thing we got out of it was a easy to view co-parenting calendar. I had @claudeai help me rebuild a web based version in under 20 minutes. Shipped it, cancelled the subscription.
English
5
2
25
4.6K
CodeZera retweeted
pdawg
pdawg@prathamgrv·
I made a Claude Code skill that turns any arxiv paper into working code. Every line traces back to the paper section it came from & any implementation detail the paper skips will be flagged, and not assumed. open sourcing it - github.com/PrathamLearnsT…
English
34
115
1.2K
64.9K