frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Bought and Restored "Old" Technology to Prove the Economy Is Imploding [video]

https://www.youtube.com/watch?v=C_0xBbEFjLk
1•rglover•7s ago•0 comments

Flock cameras haven't improved Atlanta's crime clearance rates

https://atlpresscollective.com/2026/07/28/flock-cameras-atlanta-clearance-rates/
1•jimt1234•12s ago•0 comments

macOS 27 Golden Gate features redesigned traffic light window controls

https://9to5mac.com/2026/08/17/macos-27-golden-gate-beta-6-features-redesigned-traffic-light-wind...
2•akyuu•1m ago•0 comments

Speeding Up the Plush Garbage Collector

https://pointersgonewild.com/2026-08-17-speeding-up-the-plush-garbage-collector/
1•matt_d•2m ago•0 comments

Cumora, a cross-platform team chat where AI agents work alongside humans

https://github.com/yetone/cumora
1•jinqueeny•2m ago•0 comments

Autists Posts to Moltbook

https://www.moltbook.com/post/134f96ff-e275-45db-a52c-561b68b8c923
1•andytratt•2m ago•0 comments

Skills from a Smart Bear

https://skills.asmartbear.com/
1•duck•3m ago•0 comments

Identity Theft, Credit Reports, and You

https://www.kalzumeus.com/2017/09/09/identity-theft-credit-reports/
1•Anon84•4m ago•0 comments

Con Kolivas Revives -ck Patches & MuQSS To Improve Linux Desktop Responsiveness

https://www.phoronix.com/news/Con-Kolivas-Linux-Patches-2026
1•voxadam•5m ago•0 comments

Sources: NBA has no evidence Ballmer funneled money to Leonard via sponsors

https://www.espn.com.au/nba/story/_/id/49639157/nba-la-clippers-aspiration-investigation-steve-ba...
2•edfsadfer•5m ago•0 comments

Cursor Origin is now live

https://xcancel.com/cursor_ai/status/2089399057659596847
1•SpyCoder77•5m ago•0 comments

Examining RFK Jr.'S Role in the Measles Outbreak

https://www.nationalreview.com/news/examining-rfk-jr-s-role-in-the-measles-outbreak/
1•petethomas•6m ago•0 comments

U.S. data-center capacity may nearly double by 2028

https://aicharts.grok.me/c/data-center-power
1•echohive42•7m ago•0 comments

Russia fires economist over Ukraine war warning

https://www.ft.com/content/a1b720e3-e1e6-4a13-bdb0-9cc27399ceb4
1•petethomas•9m ago•0 comments

Linux 7.2 Released

https://kernelnewbies.org/Linux_7.2
1•diegocg•10m ago•1 comments

AI writes dead code – the Go team's deadcode tool finds it in one command

https://towardsdev.com/how-to-find-and-remove-the-dead-code-your-agent-wrote-752eb1e738d0?sk=283d...
1•cheikhdev•12m ago•0 comments

Why Is It So Hard to Build a Transformer?

https://www.nytimes.com/interactive/2026/08/17/magazine/transformers-power-electric-grid.html
1•donohoe•15m ago•0 comments

MidWestWhips

http://www.midwestwhips.com/index.html
2•sickophancy•17m ago•0 comments

3D FPS Gaming on the Commodore PET [video]

https://www.youtube.com/watch?v=aTkArf0htMw
1•amichail•21m ago•0 comments

Pfizer, Valneva Lyme vaccine starts review in Europe

https://pharmaphorum.com/news/pfizer-valneva-lyme-vaccine-starts-review-europe
1•cubefox•22m ago•0 comments

Feel the burn: 90% of people heal faster by focusing on their pain – study

https://www.timesofisrael.com/feel-the-burn-90-of-people-heal-faster-by-focusing-on-their-pain-is...
2•calf•24m ago•1 comments

DOJ Official Flags Stanford for Scrutiny over Foreign Donations

https://www.bloomberg.com/news/articles/2026-08-17/doj-official-flags-stanford-for-scrutiny-over-...
2•petethomas•24m ago•0 comments

The bitter lesson is the observation in artificial intelligence

https://en.wikipedia.org/wiki/Bitter_lesson
2•doener•26m ago•0 comments

Multi-stage distributed query execution in ClickHouse Cloud

https://clickhouse.com/blog/multi-stage-distributed-query-execution-clickhouse-cloud
1•samaysharma•26m ago•0 comments

Bluesky draws its logo on screenshots

https://timmarinin.net/2026/bluesky-screenshots/
41•gavide•27m ago•21 comments

scScript for Linux

https://scapplications.com/
3•OptionOfT•30m ago•1 comments

Sailors on the USS Abraham Lincoln reportedly dealing with poor conditions

https://taskandpurpose.com/news/uss-abraham-lincoln-conditions-sailors/
3•bushwart•30m ago•0 comments

The Carrion-Eaters: What We Did to Jason Arday

https://samkriss.substack.com/p/the-carrion-eaters
3•jiblish•31m ago•0 comments

Nation's Largest Reservoirs Are Drying Up, Threatening Life in the Southwest

https://www.nytimes.com/2026/08/17/climate/lake-powell-record-low-colorado.html
13•johntfella•32m ago•11 comments

DEF Con 33 – Kill List: Hacking an Assassination Site on the Dark Web [video]

https://www.youtube.com/watch?v=cYZmRp90hss
2•Bender•36m 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 ...