frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a hedge fund level backtest analyzer that runs in the browser

https://tradechef.io/
1•raaa1•4m ago•0 comments

Built SwiPR – swipe-to-review GitHub PRs with AI context

https://github.com/nochinxx/SwiPR
1•nochinxx•9m ago•0 comments

The Nerdy Escorts Cashing in on Silicon Valley's AI Boom

https://www.forbes.com/sites/annatong/2026/06/07/the-nerdy-escorts-cashing-in-on-silicon-valleys-...
2•Anon84•9m ago•0 comments

Some yes no questions about Trump, tech perspective

https://gist.github.com/jasonm23/c236a60add30b0b3d2ec50f6c754a55a
1•jasonm23•9m ago•1 comments

MCP security tracks API's playbook – we know how that ends

https://www.reversinglabs.com/blog/mcp-security-tracks-api-playbook
1•mooreds•10m ago•0 comments

Quadratic funding democratizes allocation by rewarding projects w/ broad support

https://internetfreedom.torproject.org/funding-distribution/
1•Cider9986•12m ago•0 comments

Firefox for Android's Play Integrity check hits custom ROMs

https://www.omgubuntu.co.uk/2026/06/mozilla-firefox-android-google-play-integrity
1•akagusu•13m ago•0 comments

Copyright – Right Answer for Open Source Code, Wrong Answer for Open Source AI?

https://opensource.org/ai/webinars/copyright-right-answer-for-open-source-code-wrong-answer-for-o...
1•totetsu•17m ago•0 comments

Ignore what everyone else is doing

https://briandouglas.ie/developer_noise/
4•inventor7777•19m ago•0 comments

Livestreaming Trilemma: HLS, WebRTC, MOQ

https://swmansion.com/blog/livestreaming-trilemma-hls-webrtc-moq/
1•aloukissas•20m ago•0 comments

79% on LongMemEval: How We Beat Full-Context GPT-4 with a Local SQLite Database

https://medium.com/@vektormemory/79-on-longmemeval-how-we-beat-full-context-gpt-4-with-a-local-sq...
2•vektormemory•20m ago•0 comments

Dealership revoked offer to buy back customer's BMW, blaming wayward AI chatbot

https://www.cbc.ca/news/business/ai-chatbot-bmw-dealership-9.7230226
2•pseudolus•21m ago•0 comments

How We Automated Technical Implementation

https://antimetal.com/blog/how-we-automated-technical-implementation
1•herbertl•22m ago•0 comments

Ask HN: What computer are you using for AI coding tools?

1•willsmith72•23m ago•3 comments

State of Brain Emulation Report 2025

https://brainemulation.mxschons.com/
1•jonnonz•23m ago•0 comments

Show HN: Bit Flip – Daily Coding Questions

https://www.olukayode.tech/goodies/bit-flip
1•zt4ff•23m ago•0 comments

What's New in WeatherMesh-6

https://windbornesystems.com/blog/introducing-wm-6
3•tomeraberbach•24m ago•0 comments

Raress96/Dolby-Atmos-encoder: PoC Dolby Atmos encoder

https://github.com/raress96/dolby-atmos-encoder
1•xbmcuser•31m ago•0 comments

ShinyHunters hacked 100 orgs by exploiting an Oracle PeopleSoft 0-day

https://www.theregister.com/cyber-crime/2026/06/11/shinyhunters-claims-oracle-peoplesoft-0-day-hi...
5•Bender•35m ago•0 comments

Research Is Not Engineering at a Slower Speed

https://voiceinthemachine.com/2026/06/10/research-is-not-engineering-at-a-slower-speed/
2•linguae•35m ago•0 comments

AI Cannot Desire

https://www.troywolters.com/blog/ai-cannot-desire.html
1•ctw•39m ago•0 comments

The Field Guide to Grid Lanes

https://webkit.org/blog/18098/introducing-the-field-guide-to-grid-lanes/
1•javatuts•40m ago•0 comments

SpaceX IPO Makes Elon Musk the First Trillionaire

https://www.rnz.co.nz/news/world/598001/spacex-ipo-makes-elon-musk-the-world-s-first-trillionaire
2•voisin•40m ago•0 comments

The Janko Project: Exploring Isomorphic Keyboards

https://www.thejankoproject.com
1•tomeraberbach•41m ago•0 comments

Trump Is in Trouble: Kharg Island Ground Invasion Threats Nuclear Risk [video]

https://www.youtube.com/watch?v=JqXsCCGINes
3•Bender•42m ago•0 comments

Lite XL – Fast, Lightweight and Powerful Text-Editing Experience

https://lite-xl.com/
4•giancarlostoro•46m ago•0 comments

BPF in the Agentic Era

https://lwn.net/Articles/1075067/
1•signa11•51m ago•0 comments

Claude Fable is relentlessly proactive

https://simonwillison.net/2026/Jun/11/fable-is-relentlessly-proactive/
21•lumpa•51m ago•6 comments

Show HN: AI Verdict – Run ChatGPT, Claude, Gemini and Perplexity Side-by-Side

https://aiverdict.github.io/
1•aiverdict•53m ago•0 comments

Show HN: A PDF analysis tool for parser and representation differences

https://pqpdf.com/tools/scan.php
2•pqpdf•54m 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•1y ago

Comments

qwertox•1y ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•1y 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•1y 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•1y ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•1y 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•1y ago
Who runs such an AI generated script without checking the code first?
qwertox•1y 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•1y ago
Right so lets just always run the code as is ?
qwertox•1y 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•1y 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•1y ago
In which Roko's Basilisk fires a warning shot.
jethronethro•1y ago
This is why you test code or a script before running it for real. Live and learn, I guess ...