frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ghzinga: GitHub TUI to keep issues and PRs on the side while using agents

https://github.com/dutifuldev/ghzinga
1•hosolmaz•7m ago•0 comments

Unihemispheric Slow-Wave Sleep

https://en.wikipedia.org/wiki/Unihemispheric_slow-wave_sleep
1•thunderbong•9m ago•0 comments

Mobitty – mobile-first web terminal for agents

https://mobitty.dev/
1•weichensw•9m ago•0 comments

Build with Nitro on Vercel

https://vercel.com/kb/nitro
1•flashbrew•10m ago•0 comments

Why Aren't Pure Languages More Common in the Industry?

https://old.reddit.com/r/AskProgramming/comments/1tz10fm/why_arent_pure_languages_more_common_in_...
1•parallelminds•11m ago•0 comments

Narcissism of Small Differences

https://en.wikipedia.org/wiki/Narcissism_of_small_differences
1•gregsadetsky•11m ago•0 comments

Flow type checker being ported to rust

https://github.com/facebook/flow/blob/main/rust_port/rust_port_status.md
1•cod1r•13m ago•0 comments

Show HN: Markdown Editor and Reader for Mac

https://www.kitemarkdown.com/
2•antonynjoro•14m ago•0 comments

Porting Zircon (Fuchsia OS's kernel) C++ code to Rust

https://cs.opensource.google/fuchsia/fuchsia/+/main:zircon/skills/cpp-to-rust-coder/SKILL.md
2•s314•15m ago•1 comments

Declank – Remove AI Watermarks from Images

https://declank.skeptrune.com/
1•skeptrune•17m ago•0 comments

Introducing GAPs: GraphQL Auxiliary Proposals

https://graphql.org/blog/2026-06-01-announcing-gaps/
1•markl42•23m ago•0 comments

Show HN: Z2H market awareness OS for traders

https://zero2h.com/preview/hn-preview/
1•pkpie1234•27m ago•0 comments

A Declaration of the Independence of Cyberspace (1996)

https://www.eff.org/cyberspace-independence
1•ipnon•28m ago•0 comments

Substack CEO dismisses popular open letter about platform drift as 'AI slop'

https://substack.com/@cb/note/c-271417569
1•navs•30m ago•0 comments

Show HN: Wifiland – I turned nearby Wi-Fi network names into a live fantasy map

https://wifiland.meaningofdesign.com/
1•meaningofdesign•32m ago•0 comments

Lessons from late founding a tech debt ridden startup(2025)

https://inverted-tree.com/posts/lessons-from-founding-tech-debt-ridden-startup/
1•ioxnav•35m ago•0 comments

How to tame AI's voracious appetite for energy

https://knowablemagazine.org/content/article/technology/2026/lowering-energy-use-artificial-intel...
1•anujbans•44m ago•0 comments

Valve P2P networking broken for more than 2 months

https://github.com/ValveSoftware/GameNetworkingSockets/issues/398
34•babuskov•52m ago•9 comments

Please read my cease and desist and lawsuit case against the FBI

4•susdeepstatefbi•57m ago•2 comments

Made globe hologram experience – includes emergency prediction system

https://global-predict--jordantownsend2.replit.app/hologram
2•Subtextofficial•1h ago•0 comments

Most people across 36 countries have negative views of Israel

https://www.pewresearch.org/short-reads/2026/06/04/most-people-across-36-countries-have-negative-...
4•goldfishgold•1h ago•0 comments

Are Memories Transferable – Or Edible?

https://www.quantamagazine.org/are-memories-transferable-or-edible-20260605/
2•anujbans•1h ago•0 comments

Show HN: Get v2.0

https://github.com/Water-Run/get/releases/tag/v2.0
3•linzhangrun•1h ago•0 comments

The Russian who invented semiconductors 25 years before the USA

https://www.semidoped.com/p/til-the-man-who-invented-the-future
15•johncole•1h ago•3 comments

2ez.sol Its 1999 again Free games. 2ez

https://2ez.sol.site
1•sgspace•1h ago•1 comments

Grid: E2EE Alternative to Life360

https://mygrid.app
1•thebiblelover7•1h ago•1 comments

Field of clones: How horse replicas came to dominate polo

https://knowablemagazine.org/content/article/technology/2026/cloned-polo-horses
30•gscott•1h ago•12 comments

Lego launches 12,060-piece Sagrada Família – its biggest ever set

https://www.cnn.com/2026/06/05/style/lego-sagrada-familia-gaudi-scli-intl
4•giuliomagnifico•1h ago•2 comments

Show HN: LLM for Dummies

https://ronreiter.github.io/llm-for-dummies/
1•ronreiter•1h ago•0 comments

Show HN: TakoVM – Isolated model and tool execution used by enterprises

https://github.com/las7/TakoVM
9•sakuraiben•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 ...