frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can AI reliably generate dashboards from Excel or CSV files?

https://dashboardbuilder.net/ai-generated-dashboard
1•Garywilson76•54s ago•0 comments

Choosing GPT-5.6 Sol, Terra, or Luna in Codex

https://twitter.com/pvncher/status/2077708372363624894
1•pretext•1m ago•0 comments

Show HN: Pagora AI, WordPress AI page builder that outputs plain HTML/CSS/JS

https://wordpress.org/plugins/pagora-ai/
1•azertyvode•1m ago•0 comments

Show HN: MechArchive – an open, sourced catalog of the robots

https://mecharchive.com/
1•filippogroppi•2m ago•0 comments

The Moment Steven Bartlett Realizes His Podcast Is Compromised [video]

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

Capture Clauses as Effects

https://blog.yoshuawuyts.com/capture-clauses-as-effects/
1•ambigious7777•3m ago•0 comments

Why standard time is better for your health than daylight saving time

https://www.washingtonpost.com/wellness/2026/07/16/why-standard-time-is-better-your-health-than-d...
2•jonah•3m ago•0 comments

AI chatbots are at risk of spreading government restrictions on online speech

https://www.msn.com/en-us/news/world/ai-chatbots-are-at-risk-of-spreading-government-restrictions...
2•galaxyLogic•4m ago•0 comments

Two things every MCP author should add

https://twitter.com/owjuhl/status/2077747945659646233
2•owjuhl•4m ago•0 comments

Under-16s to be banned from buying energy drinks

https://news.sky.com/story/under-16s-to-be-banned-from-buying-energy-drinks-13564058
2•austinallegro•5m ago•0 comments

Claudeisms: A list of words Claude Code overuses

https://github.com/archiewood/claudeisms
1•archiewood•5m ago•0 comments

Show HN: FilesFlow – Browser-based PDF and image tools that run locally

https://filesflow.net/
1•blert•5m ago•0 comments

Why people chasing after useless token saving plugins and ignoring real solution

1•yohji1984•6m ago•0 comments

German AI consortium releases Soofi S, an open 30B model that tops benchmarks

https://the-decoder.com/german-ai-consortium-releases-soofi-s-an-open-30b-model-that-tops-benchma...
4•amai•8m ago•0 comments

The Hunt for the Counterfeiter Trying to Make the Perfect Bill

https://www.nytimes.com/2026/07/16/magazine/counterfeit-dollars.html
2•paulpauper•8m ago•0 comments

Funding Canonical Visions //GMs

https://amazing-lantern-c21.notion.site/Funding-canonical-visions-GMs-396adeecc3dc804ab012f015f3b...
1•paulpauper•8m ago•0 comments

The Decline of Sumptuousness in Cinema

https://yakimenko.substack.com/p/on-the-decline-of-sumptuousness-in-451
2•paulpauper•9m ago•0 comments

ACT-2 Preview: Sunday Robotics

https://twitter.com/tonyzzhao/status/2077806003308179802
1•manmeet•9m ago•0 comments

An overview of language features and implementation tasks that contribute toward

https://ghc.serokell.io/dh
2•fanf2•10m ago•0 comments

Teleprompter operator investigated over alleged Kalshi trades on Trump speeches

https://www.axios.com/2026/07/16/white-house-teleprompter-kalshi-investigation
3•doctoboggan•11m ago•0 comments

Show HN: Tree, truth, druid, dryad, and tar share one Proto-Indo-European root

https://p.migdal.pl/tree-of-tree/
1•stared•11m ago•0 comments

Flight Planning with Little Navmap

https://tech.marksblogg.com/little-navmap-flight-planning.html
1•marklit•11m ago•0 comments

Control of shear thickening rheological properties of polishing slurry(2021) [pdf]

https://www.euspen.eu/knowledge-base/ICE21153.pdf
1•pillars•12m ago•0 comments

Show HN: Custom Claude Status Lines

https://claudelines.com/
2•OG_BME•12m ago•1 comments

What can we learn from Bun's rapid Rust rewrite with AI?

https://newsletter.pragmaticengineer.com/p/the-pulse-what-can-we-learn-from-07f
1•pseudolus•13m ago•0 comments

It's shovels all the way down

https://jamesthomason.com/its-shovels-all-the-way-down/
2•dollar•13m ago•0 comments

FDA Approves First Oral Therapy That Inhibits PCSK9

https://www.fda.gov/drugs/news-events-human-drugs/fda-approves-first-oral-therapy-inhibits-propro...
1•michaefe•14m ago•0 comments

Cloudflare Outage Ongoing

https://slacreditwatch.com/i/cloudflare/kdnfshk5vs51
2•devd1976•15m ago•0 comments

Mushroom.app (Apple Intelligence, On-Device)

https://www.getmushroom.app/
1•qpe0•16m ago•0 comments

Visa Vulnerability Agentic Harness

https://github.com/visa/visa-vulnerability-agentic-harness
2•wslh•16m 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 ...