frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Climate Resilient Are the Largest Cities?

https://alphageo.ai/how-climate-resilient-are-the-worlds-largest-cities/
1•asib•1m ago•0 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
1•stared•1m ago•0 comments

Forgefy: Keep every product growing while you build the next one

https://forgefy.io
1•turnfreaky•2m ago•0 comments

Forward Guidance: A Stronger Canada [video]

https://www.youtube.com/watch?v=eYAwioM3RQI
1•ramijames•2m ago•0 comments

GPT-6 Astra one-shots a launch video in an open-source editor

https://github.com/veedstudio/open-edit
1•anton-zazerski•2m ago•0 comments

A tool for reproducing typical production incidents in Kubernetes

https://github.com/coroot/rca-lab
1•valyala•3m ago•0 comments

Show HN: NissyGirl – A 3D web based handheld console rendered in HTML/CSS

https://nissygirl.com/
1•tanishalfelven•5m ago•0 comments

The two Christian saints who are the Buddha

https://signoregalilei.com/2026/08/30/the-two-christian-saints-who-are-secretly-the-buddha/
1•surprisetalk•6m ago•0 comments

How corporate America built a better Roach Motel

https://pluralistic.net/2026/09/06/hotels-california/
1•hn_acker•6m ago•0 comments

Rolling with the Punches: Why Cybersecurity Is Backgammon, Not Chess

https://www.philvenables.com/post/rolling-with-the-punches-why-cybersecurity-is-backgammon-not-chess
1•crescit_eundo•6m ago•0 comments

Show HN: Otter, a multi-threaded JavaScript runtime capable of 1k+ threads

https://github.com/gi-dellav/otter
1•gidellav•7m ago•0 comments

The failure your LLM dashboard can't see

https://percentes.ai/writing/2026/the-failure-your-dashboard-cannot-see/
1•itsveems•7m ago•0 comments

Concentration Risk

https://www.wheresyoured.at/concentration-risk/
1•crescit_eundo•8m ago•0 comments

How Much Stuff Do You Own?

https://www.inconspicuous.info/p/how-much-stuff-do-you-own
1•the-mitr•8m ago•0 comments

Show HN: Anypick, open library for filtering LLMs based on capabilites and price

https://github.com/gi-dellav/anypick
1•gidellav•8m ago•0 comments

A faster way to convert a timestamp to hour, min, SEC

https://www.benjoffe.com/fast-time-of-day
1•fanf2•8m ago•0 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://arxiv.org/abs/2608.09867
1•alehlopeh•8m ago•0 comments

Clickable Whitespace

https://idiallo.com/blog/clickable-whitespace
2•Brajeshwar•9m ago•0 comments

Making coding agents work together

1•pattagod•9m ago•0 comments

Major breakthrough made on Navier-Stokes Problem

https://www.newscientist.com/article/2588115-major-breakthrough-made-on-famous-millennium-maths-p...
1•oj2828•10m ago•0 comments

DHS 'Predictive Policing' Unit Is Analyzing Americans' Financial Habits

https://www.404media.co/a-secretive-dhs-predictive-policing-unit-is-analyzing-americans-financial...
2•abraham•10m ago•0 comments

Show HN: Multistack, a TUI environment for parallel coding agents

https://github.com/gi-dellav/multistack/tree/main
1•gidellav•10m ago•0 comments

Ask HN: Is JavaScript as insecure as ActiveX was at the peak?

1•roschdal•11m ago•1 comments

What made Anthropic walk away from the $6B Decart deal?

https://www.calcalistech.com/ctechnews/article/sy77he6oml
1•mgh2•11m ago•0 comments

Show HN: A cozy home for your Goodreads books

https://reading-room.transitivebullsh.it
1•transitivebs•13m ago•0 comments

US Reading Scores Plummet on Global Exam

https://www.nytimes.com/2026/09/08/us/us-reading-test-scores-pisa.html
2•toomuchtodo•14m ago•1 comments

PyPI Blog: Incident File Hosting Errors

https://blog.pypi.org/posts/2026-09-08-file-hosting-errors/
2•miketheman•14m ago•0 comments

OpenAI stole mathematicians' private research from their own Codex chats

https://www.reddit.com/r/technology/comments/1waoiai/report_openai_stole_mathematicians_private/
7•nreece•15m ago•1 comments

I think Astra is absolutely amazing but I'm back to 5.6 for software engineering

https://twitter.com/mitsuhiko/status/2097318251403395471
3•tosh•16m ago•0 comments

List of mathematical discoveries by artificial intelligence

https://en.wikipedia.org/wiki/List_of_mathematical_discoveries_by_artificial_intelligence
1•frozenseven•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 ...