frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Decode Your Life Path and Love Line Instantly

https://destinymatrics.com/
1•hmazapthan•2m ago•0 comments

Snakes and Ladders

https://entropicthoughts.com/snakes-and-ladders
1•kqr•2m ago•0 comments

AI Is Finding More Bugs Than Open-Source Teams Can Fight Off

https://www.bloomberg.com/news/articles/2026-04-17/anthropic-s-mythos-adds-strain-on-cybersecurit...
1•helsinkiandrew•8m ago•2 comments

5x faster prime generation than OpenSSL via Riemann zeta zeros (SpectralPrimes)

https://github.com/model-vpr/ultrafast-spectral-primes
1•vpr-research•9m ago•0 comments

Launchstack – Open-source knowledge layer that index your docs for Claude MCP

https://github.com/Deodat-Lawson/LaunchStack
1•DaggersDreaming•11m ago•0 comments

The quiet disappearance of the free-range childhood

https://bigthink.com/mind-behavior/the-quiet-disappearance-of-the-free-range-childhood/
4•sylvainkalache•15m ago•0 comments

State of Kdenlive

https://kdenlive.org/news/2026/state-2026/
2•f_r_d•16m ago•0 comments

Practical Antiforgery in Software Design

https://hudlow.org/2026/practical-antiforgery
2•fanf2•17m ago•0 comments

Floating Point Fun on Cortex-M Processors

https://danielmangum.com/posts/floating-point-cortex-m/
2•hasheddan•17m ago•0 comments

Bacterial enzyme-responsive hydrogels deliver antibiotics to infected wounds

https://www.science.org/doi/10.1126/sciadv.adz0786
2•PaulHoule•17m ago•0 comments

Poor Planning and Lax Oversight Wastes Millions

https://www.mass.gov/doc/the-steamship-authoritys-website-development-project/download
2•jonl521•18m ago•0 comments

Tell HN: GitHub Apps – Private key is not private

https://github.com/login
1•time4tea•19m ago•1 comments

A Consigliere on Every Desk and in Every Home

https://www.wysr.xyz/p/a-consigliere-on-every-desk-and-in
1•martialg•19m ago•0 comments

A 1151-Year Quasi-Commensurability Among All Planets Except Uranus

https://arxiv.org/abs/2604.03049
1•zenutrio•22m ago•0 comments

Mac-control-MCP – 63-tool native Swift MCP server for macOS

https://github.com/AdelElo13/mac-control-mcp
1•adelelo13•23m ago•0 comments

The Download: cyberscammers' banking bypasses, and carbon removal troubles

https://www.technologyreview.com/2026/04/16/1136034/the-download-cyberscammers-banking-bypasses-m...
2•joozio•24m ago•0 comments

Show HN: Ricci Flow – AI Web Scraper

https://chromewebstore.google.com/detail/ricci-flow-–-ai-web-scrap/ngeodkdeahmlnceiomeeidoidhni...
2•qwikhost•24m ago•0 comments

Who Uses AI Agents (and Who Just Runs the Demo)

https://www.bhusalmanish.com.np/blog/posts/who-actually-uses-ai-agents.html
2•okchildhood•24m ago•0 comments

Escaped wolf returned to zoo after nine-day search

https://www.cnn.com/2026/04/17/asia/south-koreans-escaped-wolf-intl-scli
1•Bender•25m ago•0 comments

Show HN: TweakIdea – 14-dimension startup idea evaluation in Claude Code

https://github.com/eph5xx/tweakidea
1•ephx•30m ago•0 comments

Tomb Raider Studio Faces Fourth Round of Layoffs in Just 12 Months

https://kotaku.com/tomb-raider-remake-crystal-dynamics-layoffs-2000680096
2•PaulHoule•31m ago•0 comments

Atlassian's new data collection policy protects rich customers, AI eats the rest

https://www.theregister.com/2026/04/18/atlassians_new_data_collection_policy/
2•Bender•33m ago•0 comments

Venice AI – private and unbiased AI

https://venice.ai/
1•t0bia_s•33m ago•0 comments

Convolutional neural networks in APL (2019)

https://dl.acm.org/doi/10.1145/3315454.3329960
1•tosh•38m ago•0 comments

Type-level invariants in the Spectre Programming Language

https://spectre-docs.pages.dev/type-system-expanded#type-level-invariants
1•death_eternal•38m ago•0 comments

KV the Apostate

https://queue.acm.org/detail.cfm?id=3806209
1•jruohonen•38m ago•0 comments

A new study found that AI has a higher impact in the home than in the office

https://www.computerworld.com/article/4159817/ai-is-finally-delivering-productivity-for-remote-em...
1•mikelgan•40m ago•2 comments

Productivity gains with an AI-based IDE at Google

https://arxiv.org/abs/2601.19964
1•azhenley•40m ago•0 comments

Show HN: Link Shortener – Itlinks.me

https://itlinks.me
2•IgorStojanov•48m ago•0 comments

When U.S. Air Force discovered the flaw of averages (2016) [pdf]

https://noblestatman.com/uploads/6/6/7/3/66731677/cockpit.flaw.averages.pdf
1•tosh•49m 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•11mo ago

Comments

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