frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

An Age of Promethean Ambitions

https://brianschrader.com/archive/an-age-of-promethean-ambitions/
1•sonicrocketman•2m ago•0 comments

Lessons from CalyxOS signing process redesign

https://calyxos.org/news/2026/02/10/calyxos-hsm-signing/
1•PaulHoule•2m ago•0 comments

US Government Open Data MCP

https://github.com/lzinga/us-gov-open-data-mcp
1•Insight54•3m ago•1 comments

Trump Threatens to Cut Off Trade After Spain Denies Air Base Use

https://www.bloomberg.com/news/articles/2026-03-03/trump-threatens-to-cut-off-trade-after-spain-d...
3•akyuu•3m ago•0 comments

The Republic of Execution

https://blog.hermesloom.org/p/the-republic-of-execution
1•sigalor•4m ago•0 comments

Show HN: Homebrew tap for unsigned macOS apps rejected by official casks

https://github.com/SoftwareRat/homebrew-unsigned-tap
1•Enlarged9135•4m ago•0 comments

Patterns in AI-Augmented Software Development

https://library.chironcodex.com/books/patterns-in-ai-augmented-software-development
1•grahamlee•4m ago•0 comments

The six dumbest ideas in computer security (2005)

https://www.ranum.com/security/computer_security/editorials/dumb/
1•alcazar•6m ago•0 comments

Google accelerates Chrome release cycle

https://www.theverge.com/tech/888001/google-accelerates-chrome-releases-cutting-cycle-in-half
2•cdrnsf•6m ago•0 comments

You are going to get priced out of the best AI coding tools

https://newsletter.danielpaleka.com/p/you-are-going-to-get-priced-out-of
1•fi-le•7m ago•0 comments

Helicone Is Joining Mintlify

https://www.helicone.ai/blog/joining-mintlify
1•mgw•8m ago•0 comments

Show HN: Letting Claude automate fleets of browser sandboxes

https://twitter.com/steeldotdev/status/2028855809233526799
2•huss97•9m ago•0 comments

The 5am myth: Waking early won't make you more successful

https://www.rnz.co.nz/life/wellbeing/the-5am-myth-waking-early-won-t-make-you-more-successful
6•billybuckwheat•10m ago•1 comments

GPT‑5.3 Instant

https://openai.com/index/gpt-5-3-instant/
4•meetpateltech•11m ago•0 comments

Show HN: Qgate – Classical trajectory filtering for noisy quantum circuits

https://github.com/ranbuch/qgate-trajectory-filter
1•ranbuch•12m ago•0 comments

Show HN: BaseCFO – workbooks as a queryable dashboard for fractional CFOs

https://basecfo.com:443/early-access
1•mustafabagdatli•13m ago•0 comments

Show HN: Viib – Generate production ready static ads from a single URL

https://viib.co
1•travelhead•13m ago•0 comments

1995: From Batman Forever's cinematic design to HTML tables

https://cybercultural.com/p/1995-web-design/
2•colinprince•14m ago•0 comments

Show HN: t-req – Open-source programmable API engine built on .http files

https://github.com/tensorix-labs/t-req
3•mad_poet•15m ago•0 comments

Lucent: YouTube Focus Mode and Auto 4K open source

https://chromewebstore.google.com/detail/lucent-youtube-focus-mode/bpciannhcoipobpfeofondnhiadfcbib
2•lvfrm•15m ago•0 comments

Show HN: MuninnDB – ACT-R decay and Hebbian memory for AI agents

https://github.com/scrypster/muninndb
2•mjbonanno•16m ago•2 comments

Microgpt on the ESP32 – But Why?

https://duggan.ie/posts/microgpt-on-the-esp32-but-why
2•duggan•16m ago•0 comments

Shattered Glass (1998)

https://www.vanityfair.com/magazine/1998/09/bissinger199809
2•thomassmith65•18m ago•1 comments

Upgrading the Samsung Trifold battery by 71% using SiC

https://www.youtube.com/watch?v=YCQLKhB2ywQ
2•luyu_wu•19m ago•0 comments

Ask HN: How do solo founders find academic co-founders for STTR grants?

2•Rao_Atreya•19m ago•1 comments

Would You Buy Generic AI?

https://tomtunguz.com/white-label-ai/
2•swolpers•19m ago•0 comments

Show HN: Arbor – AI research workbench, question to knowledge graph

https://www.arborinquiries.com/
2•FlynnLachendro•20m ago•1 comments

PEP 827 – Type Manipulation

https://peps.python.org/pep-0827/
3•pboulos•21m ago•0 comments

Regenerator 2000: interactive disassembler for the C64 and other 6502 systems

https://regenerator2000.readthedocs.io/en/latest/
3•homarp•22m ago•1 comments

CEOs are betting big on AI while barely using it

https://www.charterworks.com/ceos-are-betting-big-on-ai-while-barely-using-it/
5•swolpers•22m 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•9mo ago

Comments

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