frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

End-to-end model that listens, sees, thinks and responds on video in real time

https://twitter.com/minchoi/status/2070347790115565792
1•dawkins•32s ago•0 comments

A debugging story: Learning debugging principles from a production outage

https://www.iinuwa.xyz/blog/a-debugging-story/
1•dorianniemiec•1m ago•0 comments

Browser agent that reads a page in ~2k tokens, not ~180k

https://www.npmjs.com/package/pixelpi
1•josharsh•3m ago•0 comments

Badge of Infamy, by Lester del Rey (1957) [pdf]

https://ebook-mecca.com/online/Badge%20of%20Infamy%20-%20Lester%20Del%20Rey.pdf
1•joebig•6m ago•0 comments

DeepSeek open-sources inference optimizations with 60–85% faster generation [pdf]

https://github.com/deepseek-ai/DeepSpec/blob/main/DSpark_paper.pdf
4•aurenvale•9m ago•0 comments

The White House's post-quantum executive order is an important milestone

https://blog.cloudflare.com/post-quantum-eo-2026/
1•taubek•10m ago•0 comments

Beer CSS – Build material design in record time

https://www.beercss.com
1•Seb-C•22m ago•0 comments

Show HN: Fognitix – an autonomous desktop browser that drives itself

https://www.fognitix.com/
1•fognitix•23m ago•0 comments

Show HN: Waitlio – The waitlist software for your next launch

https://waitlio.com
1•543310•23m ago•0 comments

An extension of the traditional PDF standard

https://github.com/AlexandrosGounis/pdfx
1•SVI•24m ago•0 comments

JEP Draft: Deprecate the macOS/X64 Port for Removal

https://openjdk.org/jeps/8386091
1•Tomte•26m ago•0 comments

NYC's last horse track, Aqueduct, ending live races

https://apnews.com/article/nyc-horse-racing-track-closing-aqueduct-c52bac4978ba99d2c921408ffdf05f13
1•geox•36m ago•0 comments

What Everyone Gets Wrong About AI and Learning [video]

https://www.youtube.com/watch?v=0xS68sl2D70
1•thunderbong•39m ago•0 comments

How much does a token cost?

https://www.erikjs.com/experiences/llm-token-counter
1•csgod•43m ago•0 comments

A New Fossil Discovery Just Rewrote 150 Years of Evolutionary Theory

https://www.404media.co/a-new-fossil-discovery-just-rewrote-150-years-of-evolutionary-theory/
1•susiecambria•48m ago•0 comments

The "Digital Cash Envelope": Making Crypto Gifting as Easy as Cash

https://www.indiehackers.com/post/the-digital-cash-envelope-making-crypto-gifting-as-easy-as-cash...
1•mybucks_online•53m ago•0 comments

Eyes Do More Than See (1965) – Isaac Asimov

http://www-graphics.stanford.edu/~tolis/toli/other/eyes.html
1•kegenaar•54m ago•0 comments

Fine-tuned a model on Advaita Vedanta text

https://huggingface.co/aaravshirpurkar/turiya-model
2•aaravshirpurkar•57m ago•1 comments

Plane slams into Beijing's tallest building, sends debris raining down [video]

https://www.youtube.com/watch?v=YNJYR_HE8uo
2•Imustaskforhelp•1h ago•0 comments

Search SDK – Integrate web search into agents

https://search-sdk.dev/
1•haxzie•1h ago•0 comments

Sequence Modeling with CTC

https://distill.pub/2017/ctc/
1•diginova•1h ago•0 comments

WebSite Grader and Analytics for Small Businesses

https://stackra.app/
1•LBeck84•1h ago•0 comments

Show HN: PhoneCode: Local-First ADE Running Natively on Android

https://github.com/dttdrv/phonecode
1•dttdrv•1h ago•0 comments

A model-free runtime that holds photonic/quantum hardware steady under drift

https://compute.neophotonics.ca/
1•quantumbum•1h ago•0 comments

Higher rate limits on the Claude API

https://platform.claude.com/docs/en/api/rate-limits
1•thedebuglife•1h ago•0 comments

Show HN: Cyclearchive.com – search vintage cycling magazines

https://cyclearchive.com/search/
1•alastairr•1h ago•0 comments

How to evaluate multimodal VLMs for your video use case

https://labs.videodb.io/research/how-to-evaluate-multimodal-vlms-for-your-video-use-case
1•notTechy•1h ago•0 comments

Show HN: Brytlog – AI logger

https://github.com/Guy-Sela/brytlog
1•guy-sela•1h ago•0 comments

The US lock of the Web – ache

https://ache.one/notes/the-us-lock-of-the-web
3•abdelhousni•1h ago•0 comments

World Cup fans frustrated by 'confusing and expensive' tipping culture in US

https://www.bbc.com/news/articles/clyxgjykx7lo
8•theanonymousone•1h ago•2 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 ...