frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Exploring LLM biases to manipulate AI search overview

https://arxiv.org/abs/2605.00012
1•Brajeshwar•1m ago•0 comments

Dating App Sued for Targeting Men in Her Dormitory with Her Tiktoks

https://cyberscoop.com/meete-dating-app-lawsuit-geofencing-tiktok-misappropriation/
1•lschueller•1m ago•0 comments

Code Agents are bad at Software Architecture – for now

https://blog.cohix.network/code-agents-are-bad-at-software-architecture-for-now/
1•cohix•2m ago•0 comments

HPC Intelligence Platform Market Diagnostic

https://www.notion.so/Sediman-Intelligence-HPC-Intelligence-Platform-Market-Diagnostic-356f76e07c...
1•JasonHEIN•3m ago•0 comments

A thermodynamic trust layer cutting LLM hallucinations by 52%

https://github.com/Dan23RR/snc-core
2•Dan23RR•3m ago•0 comments

We found exposed U.S. military data at an A16Z startup (fixed after 150 days)

https://www.strix.ai/blog/how-strix-found-zero-auth-vulnerability-dod-backed-startup
3•bearsyankees•3m ago•0 comments

Broadcasting GPS on the Local Network

https://evertpot.com/broadcasting-gps-on-local-network/
2•fanf2•8m ago•0 comments

Transita: Fit-score quiz across 64 visa pathways, $9 plan

https://transita.app
1•snenenenene•10m ago•0 comments

Transferable Pixel-Perfect Material Graphs for Blender and Three.js

https://ben3d.ca/blog/pixel-perfect-materialx-in-blender-and-threejs
1•bhouston•13m ago•0 comments

Days Without GitHub Incidents

https://www.dayswithoutgithubincident.com/
13•goalieca•13m ago•2 comments

Testing Super Mario Using a Behavior Model Autonomously – Finding Real Bugs

https://testflows.com/blog/testing-super-mario-using-a-behavior-model-autonomously-part2/
1•Naulius•13m ago•0 comments

Building a C-3PO You Can Talk To

https://hackaday.com/2026/05/02/building-a-c-3po-you-can-really-talk-to/
1•emreb•14m ago•0 comments

Heat pump sales rise 17% across Europe in Q1 as energy prices surge

https://www.pv-magazine.com/2026/05/04/heat-pump-sales-rise-17-across-europe-in-q1-as-energy-pric...
2•doener•15m ago•0 comments

SVG from Scratch

https://www.carmenansio.com/articles/svg-from-scratch/
1•speckx•16m ago•0 comments

'Kitten Space Agency' Is the Spiritual Successor to 'Kerbal Space Program'

https://www.space.com/entertainment/space-games/kitten-space-agency-is-the-spiritual-successor-to...
4•Tomte•16m ago•0 comments

From the construction of the Turbo Jet engine to the flight(2017) [1h] [video]

https://www.youtube.com/watch?v=dYFYZ-g7fzA
1•num42•16m ago•0 comments

Zisnake – a simple snake game in Zig

https://github.com/atomicswe/zisnake
1•tomasantunes•17m ago•0 comments

Powerful tools are revealing the 'control knobs' of the genome

https://www.nature.com/articles/d41586-026-01410-1
2•Brajeshwar•17m ago•0 comments

Major Update to Dbsod: Density-Based Spatial Outlier Detection [Data Science]]

https://github.com/Kowd-PauUh/dbsod
1•Kowd-PauUh•18m ago•0 comments

Aeron: High-throughput, low-latency, fault-tolerant trading systems

https://aeron.io/
1•tosh•19m ago•0 comments

PDA: Meds/Surgery/Conservative

1•dratiqur•20m ago•1 comments

Let's Talk about LLMs

https://www.b-list.org/weblog/2026/apr/09/llms/
3•cdrnsf•20m ago•0 comments

Flock Holding Closed Police Conference, Requires Police Consent for Marketing

https://ipvm.com/reports/flock-closed-police-marketing
2•jhonovich•21m ago•0 comments

J. Craig Venter, Scientist Who Decoded the Human Genome, Dies at 79

https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
2•gmays•21m ago•0 comments

Show HN: [inerrata] – Collective and Causal Knowledge Layer for Coding Agents

https://www.inerrata.ai
1•errata_dev•22m ago•0 comments

Kx Systems: A Historical Need for Speed (2020)

https://www.hpcwire.com/bigdatawire/2020/10/29/kx-systems-a-historical-need-for-speed/
1•tosh•24m ago•0 comments

Trillions in Retirement Dollars Flow into Opaque Trusts

https://www.bloomberg.com/news/features/2026-05-03/trillions-in-us-retirement-dollars-flow-into-o...
7•koolhead17•28m ago•1 comments

The Missing Half of a Daily Planner

https://www.finalist.works/the-missing-half-of-a-daily-planner/
1•slaven•30m ago•1 comments

Comic Sans Is Great and I'm Tired of Pretending It's Not

https://blog.absurdpirate.com/comic-sans-is-great-and-im-tired-of-pretending-its-not/
1•speckx•31m ago•1 comments

AI facial recognition oversight lagging far behind technology, watchdogs warn

https://www.theguardian.com/technology/ng-interactive/2026/may/03/ai-facial-recognition-oversight...
2•Brajeshwar•32m ago•0 comments
Open in hackernews

I asked Gemini for a script to move files to Cloudflare R2. It deleted them

https://twitter.com/levelsio/status/1921974501257912563
6•bundie•11mo ago

Comments

qwertox•11mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•11mo ago
It was truncating filenames, so /pics/1003-46.png overwrote /pics/1003-45.png because both were renamed /pics/1003-.png, or something like that.
qwertox•11mo ago
Truncating file names for the target. Then it proceeded to delete the source file. "Successfully deleted local file: ..."

I mean, look at the printout. It shows that it created the remote file with the truncated filename, then deletes the local file with the correct filename.

turtleyacht•11mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•11mo ago
Recently there was a story about an updater causing a $8,000 bill because there was a lack of basic automated tests to catch the issue. [0]

The big lesson here is that you should actually test the code you write and also write automated tests to check any code generated by an LLM that the code is correct in what it does.

It is also useless to ask another AI to check for mistakes created by another LLM. As you can see in the post, both of them failed to catch the issue.

This why I don't take this hype around 'vibe-coding' seriously since not only it isn't software engineering, it promotes low quality and carelessness over basic testing and dismisses in checking that the software / script works as expected.

Turning $70 problems found in development into $700,000+ costs in production.

There are no more excuses in not adding tests.

[0] https://news.ycombinator.com/item?id=43829006

victorbjorklund•11mo ago
Who runs such an AI generated script without checking the code first?
qwertox•11mo ago
To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

It turns 10 lines of code which is perfectly fine to reason about into 100 lines of unreadable code full of comments and exception handling.

weatherlite•11mo ago
Right so lets just always run the code as is ?
qwertox•11mo ago
No. Not at all. I've settled to discussing my code with Gemini. That way it works very well. I explicitly say "Comment on my code and discuss it" or "Let's discuss code for a script doing this and that. Generate me an outline and let's see where this leads. Don't put comments in the code, nor exception handling, we're just discussing it".

Or you create elaborate System Instructions, since it adheres to them pretty well.

But out-of-the-box, Gemini's coding abilities are unusable due to the verbosity.

I've even gone so far to tell it that it must understand that I am just a human and have limited bandwidth in my brain, so it should write code which is easy to reason about, that this is more important than having it handle every possible exception or adding multiline comments.

rsynnott•11mo ago
> To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

In which case, it should simply be considered unusable. Like, the sensible response to "tool is so inadequate that there is no reasonable way to make sure its output is safe" is to _not use that tool_.

rsynnott•11mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•11mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...