-
14 votes
-
Energy supplier abandons Lake Tahoe residents to serve data centers
23 votes -
Cory Doctorow - The Reverse Centaur's Guide to Life After AI (Excerpt)
27 votes -
Bun has been rewritten in Rust
27 votes -
Gemini 3.2 Flash rumored to hit 92% of GPT-5.5 performance at lower cost
23 votes -
Di.gg AI preview
26 votes -
Overworked AI agents turn "marxist"
14 votes -
When Richard Dawkins met Claude
23 votes -
Most US doctors are quietly using the OpenEvidence AI tool. Few patients know about it.
16 votes -
Introducing Googlebook, designed for Gemini Intelligence
22 votes -
Multiple security bugs in Dnsmasq
10 votes -
San Francisco-based startup Andon Labs has put an artificial intelligence agent nicknamed “Mona” in charge at an experimental café in the Swedish capital
14 votes -
Mythos finds a curl vulnerability
31 votes -
Curl will end its bug bounty program by the end of January due to excessive AI generated reports
63 votes -
AI chatbots
9 votes -
Adversaries leverage AI for vulnerability exploitation, augmented operations, and initial access
5 votes -
‘The odds are not in our favour’: who sets the Doomsday Clock – and what can they tell us about the future of humanity?
10 votes -
AI comes to Playtime; Artifical companions, real risks
11 votes -
Multi-Token Prediction (MTP) with Gemma 4
20 votes -
OpenAI's WebRTC problem
10 votes -
Teaching Claude why
17 votes -
AI is breaking two vulnerability cultures
19 votes -
Behind the scenes hardening Firefox with Claude Mythos Preview
20 votes -
New AI data center in Utah will generate and consume more than twice the amount of power the entire state uses
46 votes -
Pawmometer uses real-time weather data to estimate ground temps and flag unsafe surfaces for dogs
16 votes -
Deepfakes are coming for your bank account
10 votes -
Forget the AI apocalypse. Memes have already nuked our culture.
15 votes -
US data center land use issues are fake
21 votes -
Google Chrome silently installs a 4 GB AI model on your device without consent
55 votes -
Young people are falling behind, but not because of AI
23 votes -
For thirty years I programmed with Phish on, every day. In 2026, the music is out of phase with the work.
32 votes -
Spotify is introducing a 'Verified' badge to help users identify when artists on its platform are human, not AI-generated
16 votes -
US National Security Agency using Anthropic's Mythos despite blacklist
10 votes -
Music streamer Deezer allows users to filter out AI music, so why does Spotify not offer the same?
46 votes -
Anthropic invests at the top tier in the Blender Foundation
13 votes -
The zero-days are numbered — Firefox team uses AI to find and fix vulnerabilities
38 votes -
Synthesizing multi-agent harnesses for vulnerability discovery
9 votes -
Chat Jimmy - A nearly instantaneous AI chatbot
17 votes -
Prototyping with LLMs
23 votes -
How AI prevents meritocracy
18 votes -
Apple names insider John Ternus as CEO, Tim Cook to become executive chairman
55 votes -
Robot golf vs holes that keep getting harder
24 votes -
Florida opens criminal inquiry into ChatGPT tied to fatal school shooting
22 votes -
AI: Where in the loop should humans go?
18 votes -
Ring camera is getting more and more annoying
I've had a ring camera for several years. Historically I've been mostly satisfied with it, but lately they are adding some features that are pretty annoying. The worst is that they've been adding...
I've had a ring camera for several years. Historically I've been mostly satisfied with it, but lately they are adding some features that are pretty annoying.
The worst is that they've been adding neighborhood alerts and other proximity alerts, with categories for traffic and weather and lost pets and things like that. Today I got a "community alert" which was actually an advertisement for a local animal shelter. I don't have anything against animal shelters, but my motion detector camera alter is not the correct venue for this message. It's clear that amazon is trying to muscle in on Nextdoor. I don't use Nextdoor. I find it to be like facebook, full of cranks and advertisements and nosey annoying people.
So now I had to wade through a few pages of menus to find where to turn of this new annoyance. Obviously, if I could I would opt out of all new features.The other annoying thing is that they turned on some AI evaluation of what the camera sees. So I was getting messages like "there's someone with a garden hose on your lawn" or "a person is carrying a cardboard box". There were a few things wrong with this
- I didn't sign up to have this and it slows down the alerts so they are up to 30 seconds after the motion is detected
- The AI sometimes made errors, especially at certain times of day where it misidentified different things in the yard (for example, some place marked by shadow was interpreted as a sidewalk when there isn't a sidewalk there). This happens of course because the AI doesn't know anything about my property, it evaluates everything from scratch each time it looks at an image.
- The ring app started bugging me with upselling messages to pay extra for the AI messages
So yeah. I just wanted to vent about the enshittification of this thing. I'm also aware of the privacy issues of ring cameras and how they're going to use the "pet finder" functionality to keep track of everyone. But this rant isn't really about that more important stuff, just the frustration of how these tech companies won't just leave anything alone because they have different goals than us.
33 votes -
Vibe coding is just the return of Excel/Access, with more danger
I probably triggered some PTSD right there. Was just in a meeting at work, where we listed off everything that makes software development hard and slow. An excersize for the thread would be to...
I probably triggered some PTSD right there.
Was just in a meeting at work, where we listed off everything that makes software development hard and slow. An excersize for the thread would be to replicate that list. It turned out that Claude helps with like 1/5th or less of it....especially in a collaborative environment.
So, the situation we're now encountering is that random business areas can vibe code out something, tell nobody, throw it in AWS, have it become a critical part of a business process that fails when they quit, and nobody even has access to look at what was made.
It gives me comfort that in about 5 years there will be a new surge in demand for programmers to reign in all the rogue applications that need shutdown because of the immense risk to continual operation of a company, from data leaks to broken payroll.
It'll be Y2K all over again.
45 votes -
Income tax will be dead within five years as AI jobs crisis grows, says Monzo founder
10 votes -
Static analysis, dynamic analysis, and stochastic analysis
For a long time programmers have had two types of program verification tools, static analysis (like a compiler's checks) and dynamic analysis (running a test suite). I find myself using LLMs to...
For a long time programmers have had two types of program verification tools, static analysis (like a compiler's checks) and dynamic analysis (running a test suite). I find myself using LLMs to analyze newly written code more and more. Even when they spit out a lot of false positives, I still find them to be a massive help. My workflow is something like this:
- Commit my changes
- Ask Claude Opus "Find problems with my latest commit"
- Look though its list and skip over false positives.
- Fix the true positives.
git add -A && git commit --amend --no-edit- Clear Claude's context
- Back to step 2.
I repeat this loop until all of the issues Claude raises are dismissable. I know there are a lot of startups building a SaaS for things like this (CodeRabbit is one I've seen before, I didn't like it too much) but I feel just doing the above procedure is plenty good enough and catches a lot of issues that could take more time to uncover if raised by manual testing.
It's also been productive to ask for any problems in an entire repo. It will of course never be able to perform a completely thorough review of even a modestly sized application, but highlighting any problem at all is still useful.
Someone recently mentioned to me that they use vision-capable LLMs to perform "aesthetic tests" in their CI. The model takes screenshots of each page before and after a code change and throws an error if it thinks something is wrong.
10 votes -
Inside Doug Liman’s $70 million AI-made movie starring Casey Affleck and Gal Gadot
18 votes -
Sovereign Cloud stats every CIO needs before their next board meeting
7 votes