CAPTCHAs are over (in ticketing) (Score: 150+ in 1 day)
Link: https://readhacker.news/s/6v3Cp
Comments: https://readhacker.news/c/6v3Cp
Link: https://readhacker.news/s/6v3Cp
Comments: https://readhacker.news/c/6v3Cp
behind.pretix.eu
CAPTCHAs are over (in ticketing) - pretix – behind the scenes - Behind the scenes of pretix, your friendly open source ticketing…
Behind the scenes blog of pretix, your friendly ticketing system from next door.
Now you can watch the Internet Archive preserve documents in real time (❄️ Score: 150+ in 2 days)
Link: https://readhacker.news/s/6uXCt
Comments: https://readhacker.news/c/6uXCt
Link: https://readhacker.news/s/6uXCt
Comments: https://readhacker.news/c/6uXCt
The Verge
Now you can watch the Internet Archive preserve documents in real time
A new livestream to study/sleep to.
Lieferando.de has captured 5.7% of restaurant related domain names (🔥 Score: 151+ in 2 hours)
Link: https://readhacker.news/s/6v6Zc
Comments: https://readhacker.news/c/6v6Zc
Link: https://readhacker.news/s/6v6Zc
Comments: https://readhacker.news/c/6v6Zc
mondaybits.com
Lieferando.de has captured 5.7% of restaurant related domain names
I recently decided to compile a very large list of domain names for the German country code top-level domain .de. I did this with the help of the Common Crawl project which provides a free, open repository of web crawl data and web graphs for the last years.…
On File Formats (❄️ Score: 150+ in 5 days)
Link: https://readhacker.news/s/6uQjN
Comments: https://readhacker.news/c/6uQjN
Link: https://readhacker.news/s/6uQjN
Comments: https://readhacker.news/c/6uQjN
Lisping at JPL (2002) (❄️ Score: 151+ in 4 days)
Link: https://readhacker.news/s/6uTKC
Comments: https://readhacker.news/c/6uTKC
Link: https://readhacker.news/s/6uTKC
Comments: https://readhacker.news/c/6uTKC
Remote Prompt Injection in Gitlab Duo Leads to Source Code Theft (❄️ Score: 152+ in 3 days)
Link: https://readhacker.news/s/6uX9u
Comments: https://readhacker.news/c/6uX9u
Link: https://readhacker.news/s/6uX9u
Comments: https://readhacker.news/c/6uX9u
Legitsecurity
Remote Prompt Injection in GitLab Duo Leads to Source Code Theft
The Legit research team unearthed vulnerabilities in GitLab Duo.
Bagel: Open-source unified multimodal model (Score: 152+ in 7 hours)
Link: https://readhacker.news/s/6v6Hk
Comments: https://readhacker.news/c/6v6Hk
Link: https://readhacker.news/s/6v6Hk
Comments: https://readhacker.news/c/6v6Hk
BAGEL
BAGEL: Scalable Unified Multimodal Model
A scalable unified multimodal model, revolutionizing how AI interacts with complex systems.
Trading with Claude, and writing your own MCP server (❄️ Score: 150+ in 4 days)
Link: https://readhacker.news/s/6uUgy
Comments: https://readhacker.news/c/6uUgy
Link: https://readhacker.news/s/6uUgy
Comments: https://readhacker.news/c/6uUgy
Ask HN: Anyone struggling to get value out of coding LLMs? (Score: 155+ in 6 hours)
Link: https://readhacker.news/c/6v6Y7
I use LLMs daily for stuff like:
- solving tasks that just require applying knowledge ("here's a paste of my python import structure. I don't write Python often and I'm aware I'm doing something wrong here because I get this error, tell me the proper way organise the package").
- writing self-contained throwaway pieces of code ("here's a paste of my DESCRIBE TABLE output, write an SQL query to show the median [...]").
- as a debugging partner ("I can SSH to this host directly, but Ansible fails to connect with this error, what could be causing this difference").
All these use cases work great, I save a lot of time. But with the core work of writing the code that I work on, I've almost never had any success. I've tried:
- Cursor (can't remember which model, the default)
- Google's Jules
- OpenAI Codex with o4
I found in all cases that the underlying capability is clearly there (the model can understand and write code) but the end-to-end value is not at all. It could write code that _worked_, but trying to get it to generate code that I am willing to maintain and "put my name on" took longer than writing the code would have.
I had to micromanage them infinitely ("be sure to rerun the formatter, make sure all tests pass" and "please follow the coding style of the repository". "You've added irrelevant comments remove those". "You've refactored most of the file but forgot a single function"). It would take many many iterations on trivial issues, and because these iterations are slow that just meant I had to context switch a lot, which is also exhausting.
Basically it was like having an intern who has successfully learned the core skill of programming but is not really capable of good collaboration and needs to be babysat all the time.
I asked friends who are enthusiastic vibe coders and they basically said "your standards are too high".
Is the model for success here that you just say "I don't care about code quality because I don't have to maintain it because I will use LLMs for that too?" Am I just not using the tools correctly?
Link: https://readhacker.news/c/6v6Y7
I use LLMs daily for stuff like:
- solving tasks that just require applying knowledge ("here's a paste of my python import structure. I don't write Python often and I'm aware I'm doing something wrong here because I get this error, tell me the proper way organise the package").
- writing self-contained throwaway pieces of code ("here's a paste of my DESCRIBE TABLE output, write an SQL query to show the median [...]").
- as a debugging partner ("I can SSH to this host directly, but Ansible fails to connect with this error, what could be causing this difference").
All these use cases work great, I save a lot of time. But with the core work of writing the code that I work on, I've almost never had any success. I've tried:
- Cursor (can't remember which model, the default)
- Google's Jules
- OpenAI Codex with o4
I found in all cases that the underlying capability is clearly there (the model can understand and write code) but the end-to-end value is not at all. It could write code that _worked_, but trying to get it to generate code that I am willing to maintain and "put my name on" took longer than writing the code would have.
I had to micromanage them infinitely ("be sure to rerun the formatter, make sure all tests pass" and "please follow the coding style of the repository". "You've added irrelevant comments remove those". "You've refactored most of the file but forgot a single function"). It would take many many iterations on trivial issues, and because these iterations are slow that just meant I had to context switch a lot, which is also exhausting.
Basically it was like having an intern who has successfully learned the core skill of programming but is not really capable of good collaboration and needs to be babysat all the time.
I asked friends who are enthusiastic vibe coders and they basically said "your standards are too high".
Is the model for success here that you just say "I don't care about code quality because I don't have to maintain it because I will use LLMs for that too?" Am I just not using the tools correctly?
Jjui – A Nice TUI for Jujutsu (Score: 150+ in 12 hours)
Link: https://readhacker.news/s/6v6nY
Comments: https://readhacker.news/c/6v6nY
Link: https://readhacker.news/s/6v6nY
Comments: https://readhacker.news/c/6v6nY
GitHub
GitHub - idursun/jjui: Jujutsu UI (jjui) is a Text User Interface (TUI) designed for interacting with the Jujutsu version control…
Jujutsu UI (jjui) is a Text User Interface (TUI) designed for interacting with the Jujutsu version control system. - idursun/jjui
GitHub issues is almost the best notebook in the world (Score: 157+ in 7 hours)
Link: https://readhacker.news/s/6v6Un
Comments: https://readhacker.news/c/6v6Un
Link: https://readhacker.news/s/6v6Un
Comments: https://readhacker.news/c/6v6Un
Simon Willison’s Weblog
GitHub issues for notes
GitHub issues is *almost* the best notebook in the world. Free and unlimited, for both public and private notes. Comprehensive Markdown support, including syntax highlighting for almost any language. Plus …
A new class of materials that can passively harvest water from air (🔥 Score: 153+ in 3 hours)
Link: https://readhacker.news/s/6v7B2
Comments: https://readhacker.news/c/6v7B2
Link: https://readhacker.news/s/6v7B2
Comments: https://readhacker.news/c/6v7B2
Penn Engineering Blog
Penn Engineers Discover a New Class of Materials That Passively Harvest Water from Air - Penn Engineering Blog
A serendipitous observation in a Chemical Engineering lab at Penn Engineering has led to a surprising discovery: a new class of nanostructured materials that can … Read More ›
German court sends VW execs to prison over Dieselgate scandal (🔥 Score: 165+ in 1 hour)
Link: https://readhacker.news/s/6v7TV
Comments: https://readhacker.news/c/6v7TV
Link: https://readhacker.news/s/6v7TV
Comments: https://readhacker.news/c/6v7TV
POLITICO
German court sends VW execs to prison over Dieselgate scandal – POLITICO
Consequences continue to be meted out over the massive corporate wrongdoing.
Hacker News now runs on top of Common Lisp (🔥 Score: 153+ in 1 hour)
Link: https://readhacker.news/s/6v8cg
Comments: https://readhacker.news/c/6v8cg
Link: https://readhacker.news/s/6v8cg
Comments: https://readhacker.news/c/6v8cg
Lisp journey
Hacker News now runs on top of Common Lisp - Lisp journey
Hacker News was written in the Arc lisp dialect, a dialect created by Paul Graham. Arc was implemented on top of Racket, but that has now changed. HN runs on top of SBCL since a few months.But why? For performance reasons. I recently noticed that Hacker News…
TIL: timeout in Bash scripts (Score: 150+ in 7 hours)
Link: https://readhacker.news/s/6v7mD
Comments: https://readhacker.news/c/6v7mD
Link: https://readhacker.news/s/6v7mD
Comments: https://readhacker.news/c/6v7mD
heitorpb.github.io
TIL: timeout in Bash scripts | Heitor's log
How to use the `timeout` command to terminate processes after a specified time and how to combine it with `until` for smarter shell scripting.
Sleep apnea pill shows striking success in large clinical trial (Score: 150+ in 9 hours)
Link: https://readhacker.news/s/6v7cc
Comments: https://readhacker.news/c/6v7cc
Link: https://readhacker.news/s/6v7cc
Comments: https://readhacker.news/c/6v7cc
www.science.org
Sleep apnea pill shows striking success in large clinical trial
Drug combination targeting lax airways is nearing an FDA submission
Duolingo CEO tries to walk back AI-first comments, fails (🔥 Score: 160+ in 1 hour)
Link: https://readhacker.news/s/6v8wD
Comments: https://readhacker.news/c/6v8wD
Link: https://readhacker.news/s/6v8wD
Comments: https://readhacker.news/c/6v8wD
Hypertext
Duolingo CEO tries to walk back AI-first comments, fails - Hypertext
Duolingo CEO Luis von Ahn keeps putting his foot in it when it comes to conversations about AI.
TeleMessage Customers Include DC Police, Andreessen Horowitz, JP Morgan,Hundreds (🔥 Score: 154+ in 3 hours)
Link: https://readhacker.news/s/6v8dS
Comments: https://readhacker.news/c/6v8dS
Link: https://readhacker.news/s/6v8dS
Comments: https://readhacker.news/c/6v8dS
micahflee
TeleMessage customers include DC Police, Andreessen Horowitz, JP Morgan, and hundreds more
💡Update May 26, 2025: I've published the source code for TeleMessage Explorer: a new open source research tool
I've been digging through the 410 GB of Java heap dumps from TeleMessage's archive server, provided by DDoSecrets. Here's a description of the…
I've been digging through the 410 GB of Java heap dumps from TeleMessage's archive server, provided by DDoSecrets. Here's a description of the…
Cloudflare CEO: Football piracy blocks will claim lives (Score: 153+ in 4 hours)
Link: https://readhacker.news/s/6v7Xb
Comments: https://readhacker.news/c/6v7Xb
Link: https://readhacker.news/s/6v7Xb
Comments: https://readhacker.news/c/6v7Xb
Torrentfreak
Cloudflare CEO: Football Piracy Blocks Will Claim Lives; "I Pray No One Dies" * TorrentFreak
Cloudflare CEO Matthew Prince says he "Pray no one dies" after revealing that piracy blocking denies access to critical resources in Spain.
Claude 4 and GitHub MCP will leak your private GitHub repositories (🔥 Score: 151+ in 3 hours)
Link: https://readhacker.news/s/6v8xu
Comments: https://readhacker.news/c/6v8xu
Link: https://readhacker.news/s/6v8xu
Comments: https://readhacker.news/c/6v8xu