frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The GraphQL Goldmine: How to Reverse Engineer APIs for Scraping

https://norvilis.com/the-graphql-goldmine-how-to-reverse-engineer-apis-for-scraping/
1•zilton•1m ago•0 comments

A2i – A simple feed to keep up with AI drops

https://www.a2i.now/
1•markke•1m ago•0 comments

OpenAI is throwing everything into building an automated researcher

https://www.technologyreview.com/2026/03/20/1134438/openai-is-throwing-everything-into-building-a...
1•Brajeshwar•2m ago•1 comments

Infoporn

https://msx.horse/blog.php?b=blog%2F2026_03_17.nfo
1•mintplant•2m ago•0 comments

Crypto.com lays off 12% of workforce as latest company to cite AI in job cuts

https://www.cnbc.com/2026/03/19/crypto-com-layoffs-12percent-ai-job-loss.html
1•1vuio0pswjnm7•6m ago•0 comments

The future of SaaS is agentic

https://akashyap.ai/the-future-of-saas-is-agentic/
2•KashyapArjun•6m ago•0 comments

Show HN: JavaScript Performance Benchmarking

https://benchmarkstudio.net/en/
1•emurlin•8m ago•0 comments

Hero UI v3

https://heroui.com/docs/react/releases/v3-0-0
1•threatofrain•9m ago•0 comments

Why craft-lovers are losing their craft

https://writings.hongminhee.org/2026/03/craft-alienation-llm/
1•dahlia•9m ago•0 comments

AI Won't Disappear: Here's Why and What's Next

https://ahmd.io/blog/2026/03/19/ai_future_security/
1•ahmed-araby•9m ago•0 comments

SteamRT3: A 64-bit Steam client for Linux

https://store.steampowered.com/news/group/4397053/view/532125848715658035
2•Venn1•13m ago•0 comments

Welcome to the Stockyard of Unaffordability

http://charleshughsmith.blogspot.com/2026/03/welcome-to-stockyard-of-unaffordability.html
1•speckx•13m ago•0 comments

NY proposes removing QSBS tax breaks for founders

https://www.jdsupra.com/legalnews/new-york-proposal-to-tax-qsbs-gains-4562142/
1•theahura•15m ago•0 comments

Widely used Trivy scanner compromised in ongoing supply-chain attack

https://arstechnica.com/security/2026/03/widely-used-trivy-scanner-compromised-in-ongoing-supply-...
1•Brajeshwar•15m ago•0 comments

Vibe Code Builds You Can Try

https://hendersonmatthew.substack.com/p/4-vibe-code-builds-you-can-actually
1•alokDT•17m ago•0 comments

MCP Vulnerabilities Every Developer Should Know

https://composio.dev/content/mcp-vulnerabilities-every-developer-should-know
2•fagnerbrack•18m ago•0 comments

Accessing Hardware in Rust

https://ferrous-systems.com/blog/hardware-access-rust/
1•vinhnx•19m ago•0 comments

Do You Need a CMS?

https://joost.blog/do-you-need-a-cms/
1•taubek•22m ago•0 comments

Solod: Go can be a better C

https://antonz.org/solod/
1•begoon•23m ago•2 comments

Show HN: QueryPad – Browser SQL Playground for CSV, JSON, and Parquet Files

https://github.com/vericontext/querypad
1•kiyeonjeon•26m ago•1 comments

Show HN: Inner Warden – Self-Defending Security Agent: eBPF+LSM+XDP (Rust, 29MB)

https://github.com/InnerWarden/innerwarden/
2•maiconburn•26m ago•0 comments

Apple Announces New Mac Sales Record Following MacBook Neo Launch

https://www.macrumors.com/2026/03/20/apple-shares-mac-sales-achievement/
22•akyuu•28m ago•7 comments

Jury finds Musk owes damages to Twitter investors for his tweets

https://arstechnica.com/tech-policy/2026/03/jury-agrees-that-musks-tweets-during-twitter-takeover...
10•Brajeshwar•29m ago•0 comments

Show HN: I saw Norton Commander on X and nostalgia made me build it for the web

https://github.com/victorantos/NC
2•victorbuilds•33m ago•0 comments

ESLint Tuned for Claude

https://github.com/jonathannen/eslint-formatter-prompter
2•jwilliams•34m ago•1 comments

Origin-Edge-Client: applying Amdahl's Law to network architecture

https://suthakamal.substack.com/p/one-stores-things-the-other-thinks
1•suthakamal•35m ago•1 comments

Asimov DIY Kit

https://asimov.inc/diy-kit
1•SergeAx•38m ago•0 comments

USPS warns stamp price could rise to nearly $1 amid financial strain

https://www.scrippsnews.com/politics/economy/usps-warns-stamp-price-could-rise-to-nearly-1-amid-f...
1•bookofjoe•38m ago•1 comments

Show HN: A deterministic middleware to compress LLM prompts by 50-80%

https://github.com/ARPAHLS/skillware
3•rosspeili•38m ago•0 comments

Fast Python with Rust: a data-oriented approach

https://hackeryarn.com/post/fast-python-with-rust/
1•hackeryarn•41m 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•10mo ago

Comments

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