frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Node.js Security Checklist

https://blog.risingstack.com/node-js-security-checklist/
1•Brysonbw•2m ago•0 comments

The Commission for Stopping Further Improvements (2023)

https://blog.rootsofprogress.org/isambard-brunel-on-engineering-standards
1•cainxinth•4m ago•0 comments

Protect the Stack: Why Infrastructure Providers Should Not Police Content

https://protectthestack.org/
1•pabs3•4m ago•0 comments

Indian billionaire claims research backs gravity ageing hypothesis

https://www.continue.com/gravity/hypothesis
2•ajax33•10m ago•0 comments

"How to Lose $1.3B Dollars": Veritasium on Overconfidence [video]

https://www.youtube.com/watch?v=9M_QK4stCJU
1•zahlman•11m ago•0 comments

Exploring the Fragmentation of Wayland, an xdotool adventure

https://www.semicomplete.com/blog/xdotool-and-exploring-wayland-fragmentation/
1•viraptor•11m ago•0 comments

Oil and Water: LLMs in Low‑Tolerance Workflows

https://www.gojiberries.io/oil-and-water-llms-in-low-tolerance-workflows/
1•neehao•14m ago•0 comments

Geoffrey Litt – The Future of Malleable Software [video]

https://www.youtube.com/watch?v=zJf0UeCwQqE
1•kousun12•14m ago•0 comments

Microsoft: We see all the backlash and we know we have a lot to fix in Windows

https://www.neowin.net/news/microsoft-we-see-all-the-backlash-and-we-know-we-have-a-lot-to-fix-in...
6•defrost•18m ago•3 comments

Google Issues Critical New VPN Threat Warning for Billions of Users

https://www.forbes.com/sites/daveywinder/2025/11/11/google-issues-critical-vpn-threat-warning-for...
1•mgh2•21m ago•0 comments

Open Table is spying on you and ratting out your bad habits

https://nypost.com/2025/11/12/lifestyle/diner-ai-data-on-opentable-could-get-you-a-canceled-reser...
2•mgh2•25m ago•0 comments

Mecanum Wheeled Car-Robot

https://github.com/ShreeshaBhat1004/4-mecanum-wheeled-Robot
1•honeyman1•31m ago•0 comments

Tina Brown Thinks the Über-Rich Have It Coming

https://www.nytimes.com/2025/11/15/magazine/tina-brown-interview.html
1•whack•34m ago•0 comments

Lake Nyos Disaster

https://en.wikipedia.org/wiki/Lake_Nyos_disaster
2•hansjorg•37m ago•0 comments

ML Systems Textbook by Havard

https://www.mlsysbook.ai/
2•vinhnx•47m ago•0 comments

What is special about MCP?

https://jessitron.com/2025/11/09/what-is-special-about-mcp/
2•vinhnx•51m ago•0 comments

Discover Amazing Open-Source Projects

https://www.opensourceprojects.dev/
1•salkahfi•55m ago•0 comments

Finding a CPU Design Bug in the Xbox 360

https://randomascii.wordpress.com/2018/01/07/finding-a-cpu-design-bug-in-the-xbox-360/
2•ibobev•57m ago•1 comments

The world’s carbon emissions continue to rise. But 35 countries show progress

https://theconversation.com/the-worlds-carbon-emissions-continue-to-rise-but-35-countries-show-pr...
1•geox•1h ago•0 comments

A dream EEG and mentation database (the largest dream database yet)

https://www.nature.com/articles/s41467-025-61945-1
1•DrierCycle•1h ago•0 comments

C3 vs. C: A cleaner C for 2025? [video]

https://www.youtube.com/watch?v=yJClpzNxs3s
1•lerno•1h ago•1 comments

IDEmacs: A Visual Studio Code clone for Emacs

https://codeberg.org/IDEmacs/IDEmacs
44•nogajun•1h ago•5 comments

Switzerland's VPN surveillance law could force logging (ProtonVPN exiting)

https://dovpn.com/swiss-vpn-surveillance-protonvpn-privadovpn/
4•keltiek•1h ago•1 comments

Solving a Million-Step LLM Task with Zero Errors

https://arxiv.org/abs/2511.09030
2•meander_water•1h ago•0 comments

Sega Master System Part 2: Mode 4 on the Mark III

https://bumbershootsoft.wordpress.com/2025/11/15/sega-master-system-part-2-mode-4-on-the-mark-iii/
2•ibobev•1h ago•0 comments

Garibaldi, History's Sexiest Revolutionary?

https://www.historyextra.com/period/victorian/historys-sexiest-revolutionary-meet-the-mesmerising...
2•thomassmith65•1h ago•2 comments

How can DOGE fix federal IT? Lock out vendor lock-in

https://federalnewsnetwork.com/commentary/2025/04/how-can-doge-fix-federal-it-lock-out-vendor-loc...
2•hhs•1h ago•0 comments

Russians confront wartime internet cuts with public shrug, private fury

https://www.washingtonpost.com/world/2025/11/15/russia-mobile-internet-cuts/
2•bookofjoe•1h ago•1 comments

Tech Capitalists Don't Care About Humans

https://jacobin.com/2025/11/musk-thiel-altman-ai-tescrealism/
32•tablets•1h ago•13 comments

The Numbers Rant

https://sniffnoy.dreamwidth.org/591165.html
1•andsoitis•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•6mo ago

Comments

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