frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Global Challenges in AI Safety for Biosecurity

https://www.lesswrong.com/posts/KH2JjfSrw6tJdmKzw/global-challenges-in-ai-safety-for-biosecurity
2•joozio•18m ago•0 comments

OnePlus Settled

https://finshots.in/archive/how-oneplus-settled/
1•vismit2000•26m ago•0 comments

I tried the new Fairphone, a phone designed to be repaired

https://www.fastcompany.com/91608879/i-tried-the-new-fairphone-a-phone-designed-to-be-repaired
2•vismit2000•28m ago•0 comments

Laser Your Way into Debug Mode on the RP2350

https://hackaday.com/2026/09/19/laser-your-way-into-debug-mode-on-the-rp2350/
1•mdp2021•32m ago•0 comments

Show HN: ChatGPT to Word – export a thread to a readable .docx

https://chatgpt2word.com
1•leiships•33m ago•0 comments

Show HN: Website Auditor –> Test your brand's AI visibility, get growth plan

https://website-auditor.io/
1•SpikeyCoder•35m ago•0 comments

Show HN: Web Tools List – browser tools grouped by the job, not the format

https://webtoolslist.com
1•leiships•35m ago•0 comments

Dropbox's Jan 1st 2027 terms of service

https://www.dropbox.com/terms2026
10•simonebrunozzi•37m ago•9 comments

My Dad Died by Suicide. He Left Me with 694 Video Diaries to Explain Why – NYT

https://www.youtube.com/watch?v=Kimur4jkJT8
1•johntfella•40m ago•0 comments

Show HN: Morse Code Translator – real-time text-to-Morse with audio

https://morsetranslator.me/
1•shaliji•41m ago•0 comments

RunMyWealth

https://runmywealth.com/
1•Thecompunder•45m ago•0 comments

Unit tests mark territory more than squash bugs

https://yosefk.com/blog/unit-tests-mark-territory-more-than-squash-bugs.html
1•luu•49m ago•0 comments

Spain Orders Blocks on Archive.today and Its Mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
21•latein•1h ago•6 comments

Free scanner for exposed Supabase data in AI-built apps (Lovable, Bolt, Base44)

https://api.trustboost.dev/free-scan
3•Teocrispin•1h ago•0 comments

Dancing Mania

https://en.wikipedia.org/wiki/Dancing_mania
2•hypnot•1h ago•0 comments

Office Open XML

https://en.wikipedia.org/wiki/Office_Open_XML
3•azhenley•1h ago•0 comments

Here’s How an AI Slowdown An AI Slowdown Could Be Enforced

https://www.wired.com/story/heres-how-an-ai-slowdown-could-actually-work/
3•ent101•1h ago•0 comments

Some Thoughts on the Economics of UPI and MDR

2•pyeri•1h ago•0 comments

AgentSec Audit

https://github.com/hicklax13/agentsec-audit
2•ConnorBHickey13•1h ago•0 comments

OpenAI retiring GPT-5.5 on October 14

https://www.gizmochina.com/2026/09/16/openai-retiring-gpt-5-5-on-october-14-you-may-need-to-updat...
2•f055•1h ago•0 comments

SpriteIt – Feature Rich, Re-designed 2D/3D SpriteSheet Maker

https://ssstand.itch.io/spriteit
2•ssstand•1h ago•1 comments

Seven, Forever

https://github.com/02zerocool/truth-benchmark
2•o2zer0cool•1h ago•0 comments

AI art is theft – on artists, mathematicians impact on AI

https://twitter.com/wordgrammer/status/2101429761528455669
4•diginova•1h ago•0 comments

Show HN: ScoreTail, Browser-based sheet music editor with live collaboration

https://scoretail.com
2•tan-z-tan•1h ago•0 comments

Orchestrating Claude Code Agents: The Chief of Staff Pattern

https://asyncdot.com/blog/chief-of-staff-pattern-orchestrating-claude-code-sessions/
3•octalpixel•1h ago•0 comments

Best Websites to Generate Theme for PowerBi

2•AnasKhalid•1h ago•0 comments

Dark Age

https://artagnon.com/art/dark-age
6•artagnon•1h ago•3 comments

Built the first open source Python library – converting Word, Excel to PDF

https://github.com/mini-software/MiniPdf
3•shps951002•1h ago•0 comments

Phylo brings frontier AI to more scientists with open models on Fireworks

https://fireworks.ai/blog/phylo-brings-frontier-ai-to-more-scientists-with-open-models-on-fireworks
3•measurablefunc•1h ago•0 comments

Observations on LLMs for Privacy Work

https://desfontain.es/blog/llms-for-privacy.html
3•luu•1h 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 ...