frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fzf: Color Themes

https://junegunn.github.io/fzf/color-themes/
1•junegunn•35s ago•0 comments

Microsoft's new developer-optimized Windows embraces Linux more

https://www.theverge.com/news/941314/microsoft-windows-11-developer-optimized-experience-linux
1•teleforce•3m ago•0 comments

End of Civilization News

https://www.math.columbia.edu/~woit/wordpress/?p=15705
1•mathgenius•4m ago•0 comments

Show HN: Agentcad – Claude Code's favorite CAD tool

https://github.com/jdilla1277/agentcad
1•jdilla127•6m ago•0 comments

Exact UNORM8 to Float

https://fgiesen.wordpress.com/2024/11/06/exact-unorm8-to-float/
1•firephox•6m ago•0 comments

The Internet Needs More Cross-Pollinators

https://brennan.day/the-internet-needs-more-cross-pollinators/
1•ZacnyLos•7m ago•0 comments

MIT 6.001 Structure and Interpretation, 1986 [video]

https://www.youtube.com/watch?v=-J_xL4IGhJA&list=PLE18841CABEA24090
1•jimsojim•8m ago•0 comments

Vivaldi (Chrome) ruining website colors

https://yeechie.nl/vivaldi-chrome-ruining-website-colors
1•ZacnyLos•8m ago•0 comments

PetMood – Your pet pops up while you browse

https://chromewebstore.google.com/detail/petmood-pet-wellness-noti/llalgcfjenkdaecjdapdagjhfedfiamc
1•SangwonKim•8m ago•0 comments

DigitalOcean says it is now an OpenRouter AI model provider

https://runtimewire.com/article/digitalocean-openrouter-ai-model-provider
1•theanonymousone•10m ago•0 comments

P-Code Machine

https://en.wikipedia.org/wiki/P-code_machine
1•tosh•10m ago•0 comments

Data-Centric Artificial Intelligence

https://link.springer.com/article/10.1007/s12599-024-00857-8
1•teleforce•12m ago•0 comments

Drones planned to protect Britain's undersea cables from Russia

https://www.telegraph.co.uk/world-news/2026/05/31/drones-protect-britain-undersea-cables-russia/?...
2•giuliomagnifico•14m ago•0 comments

Creating Games on Android

https://godotengine.org/article/gabe-stable-release/
1•__natty__•19m ago•0 comments

Publishers in UK can opt out of Google AI search results

https://www.bbc.co.uk/news/articles/c775pp26yz5o
3•todd-davies•22m ago•0 comments

Spidra

https://spidra.io
1•spidra•23m ago•1 comments

Microsoft forms partnership with Unsloth AI about local LLM execution

https://xcancel.com/UnslothAI/status/2061925637892297122
1•theanonymousone•25m ago•0 comments

Bending Light: How Optics Research Is Rewriting the Rules of Computing

https://www.allaboutcircuits.com/news/bending-light-how-optics-research-rewriting-rules-of-comput...
1•giuliomagnifico•27m ago•0 comments

Vim Classic 8.3 Released

https://vim-classic.org/news/vim-8.3-released.html
1•LaSombra•28m ago•0 comments

Azure HorizonDB: Enterprise-Ready Postgres, Engineered for the AI Era

https://techcommunity.microsoft.com/blog/adforpostgresql/azure-horizondb-enterprise-ready-postgre...
1•aamederen•30m ago•0 comments

SpaceX plans IPO price at $135 per share, targeting record $75B raise

https://www.reuters.com/business/media-telecom/spacex-plans-raise-75-billion-ipo-135-per-share-so...
3•JumpCrisscross•31m ago•0 comments

Homes.plus – Chrome extension overlaying investor metrics on Zillow

https://homes.plus/
2•ecuras•32m ago•1 comments

Revo, the Programming Language

https://gills.pages.dev/revo/
2•birdculture•34m ago•0 comments

GoPro Faces Bankruptcy

https://www.digitec.ch/captcha
2•teleforce•35m ago•0 comments

The Cloud vs. Edge Debate Is Over

https://marcobambini.substack.com/p/the-cloud-vs-edge-debate-is-over
2•marcobambini•35m ago•0 comments

Life and work is not meant to be spent in isolation

https://46elks.com/blog/2026/05/29/an-amazing-time-for-programmers
2•jlundberg•35m ago•0 comments

Block-Level CRDT: The Missing Piece for Collaborative AI Agent Memory

https://marcobambini.substack.com/p/block-level-lww-the-missing-piece
1•marcobambini•36m ago•0 comments

Casey Muratori's 'Wading Through AI' [video]

https://www.youtube.com/watch?v=bjO-s4rNPlY&list=PLEMXAbCVnmY6U_pA-7GKuP9xiv9utLaP4
3•xyzal•41m ago•0 comments

Microsoft CEO: We're moving from OS and apps to agents instead

https://9to5mac.com/2026/06/02/microsoft-ceo-were-moving-from-os-and-apps-to-agents-instead/
6•aragilar•43m ago•1 comments

Show HN: Who built this website? Check any domain

https://whosbuilt.com
2•hboon•43m 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 ...