frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Don’t Look Up: Sensitive internal links in the clear on GEO satellites [pdf]

https://satcom.sysnet.ucsd.edu/docs/dontlookup_ccs25_fullpaper.pdf
216•dweekly•5h ago•54 comments

NanoChat – The best ChatGPT that $100 can buy

https://github.com/karpathy/nanochat
1098•huseyinkeles•16h ago•212 comments

Copy-and-Patch: A Copy-and-Patch Tutorial

https://transactional.blog/copy-and-patch/tutorial
29•todsacerdoti•2h ago•3 comments

Palisades Fire suspect's ChatGPT history to be used as evidence

https://www.rollingstone.com/culture/culture-news/chatgpt-palisades-fire-suspect-1235443216/
92•quuxplusone•5d ago•66 comments

Dutch government takes control of Chinese-owned chipmaker Nexperia

https://www.cnbc.com/2025/10/13/dutch-government-takes-control-of-chinese-owned-chipmaker-nexperi...
423•piskov•21h ago•338 comments

Why Study Programming Languages

https://people.csail.mit.edu/rachit/post/why-study-programming-languages/
19•bhasi•1h ago•7 comments

No science, no startups: The innovation engine we're switching off

https://steveblank.com/2025/10/13/no-science-no-startups-the-unseen-engine-were-switching-off/
440•chmaynard•18h ago•322 comments

Sony PlayStation 2 fixing frenzy

https://retrohax.net/sony-playstation-2-fixing-frenzy/
110•ibobev•8h ago•39 comments

First device based on 'optical thermodynamics' can route light without switches

https://phys.org/news/2025-10-device-based-optical-thermodynamics-route.html
135•rbanffy•5d ago•16 comments

vali, a C library for Varlink

https://emersion.fr/blog/2025/announcing-vali/
25•GalaxySnail•3d ago•6 comments

Show HN: SQLite Online – 11 years of solo development, 11K daily users

https://sqliteonline.com/
376•sqliteonline•18h ago•125 comments

Modern iOS Security Features – A Deep Dive into SPTM, TXM, and Exclaves

https://arxiv.org/abs/2510.09272
157•todsacerdoti•13h ago•3 comments

New York Times, AP, Newsmax and others say they won't sign new Pentagon rules

https://apnews.com/article/pentagon-press-access-defense-department-rules-95878bce05096912887701e...
141•baobun•4h ago•38 comments

America is getting an AI gold rush instead of a factory boom

https://www.washingtonpost.com/business/2025/10/13/manufacturing-artificial-intelligence/
188•voxleone•16h ago•188 comments

DDoS Botnet Aisuru Blankets US ISPs in Record DDoS

https://krebsonsecurity.com/2025/10/ddos-botnet-aisuru-blankets-us-isps-in-record-ddos/
118•JumpCrisscross•8h ago•93 comments

LLMs are getting better at character-level text manipulation

https://blog.burkert.me/posts/llm_evolution_character_manipulation/
83•curioussquirrel•11h ago•52 comments

JIT: So you want to be faster than an interpreter on modern CPUs

https://www.pinaraf.info/2025/10/jit-so-you-want-to-be-faster-than-an-interpreter-on-modern-cpus/
117•pinaraf•1d ago•23 comments

All in on MatMul? Don’t Put All Your Tensors in One Basket!

https://www.sigarch.org/dont-put-all-your-tensors-in-one-basket-hardware-lottery/
3•matt_d•5d ago•0 comments

Smartphones and being present

https://herman.bearblog.dev/being-present/
248•articsputnik•17h ago•162 comments

Strudel REPL – a music live coding environment living in the browser

https://strudel.cc
148•birdculture•12h ago•26 comments

A series of debugging sessions for Strimzi

https://github.com/fvaleri/strimzi-debugging
4•fvaleri•5d ago•0 comments

Why did containers happen?

https://buttondown.com/justincormack/archive/ignore-previous-directions-8-devopsdays/
107•todsacerdoti•19h ago•119 comments

NVIDIA DGX Spark In-Depth Review: A New Standard for Local AI Inference

https://lmsys.org/blog/2025-10-13-nvidia-dgx-spark/
24•yvbbrjdr•6h ago•17 comments

Passt – Plug a Simple Socket Transport

https://passt.top/passt/about/
13•zdw•1w ago•1 comments

America's future could hinge on whether AI slightly disappoints

https://www.noahpinion.blog/p/americas-future-could-hinge-on-whether
119•jxmorris12•14h ago•105 comments

JSON River – Parse JSON incrementally as it streams in

https://github.com/rictic/jsonriver
179•rickcarlino•5d ago•80 comments

Abstraction, not syntax

https://ruudvanasseldonk.com/2025/abstraction-not-syntax
87•unripe_syntax•22h ago•44 comments

StreamingVLM: Real-Time Understanding for Infinite Video Streams

https://arxiv.org/abs/2510.09608
22•badmonster•7h ago•0 comments

Scaling request logging with ClickHouse, Kafka, and Vector

https://www.geocod.io/code-and-coordinates/2025-10-02-from-millions-to-billions/
125•mjwhansen•5d ago•18 comments

Optery (YC W22) – Hiring Tech Lead with Node.js Experience (U.S. & Latin America)

https://www.optery.com/careers/
1•beyondd•14h ago
Open in hackernews

vali, a C library for Varlink

https://emersion.fr/blog/2025/announcing-vali/
25•GalaxySnail•3d ago

Comments

NewJazz•2h ago
What does varlink do that grpc or capnproto don't offer? Hell, it doesn't even seem much batter than openapi...
emersion•1h ago
The main use-case is different: gRPC and Cap'n'Proto are designed for networked servers, while D-Bus and Varlink are designed for local IPC. Varlink is a lot simpler than other alternatives.
sam_bristow•1h ago
I've only had a cursory look at Varlink, but it almost felt too simple. In particular the lack of unsigned or sized integers.

This might enf up being be fine, but it gave me pause when I looked at it previously.

wolletd•49m ago
It's JSON with some simple idea of RPC added to it. With the main idea apparently being that it is human-readable.

We've been using Varlink for one project, but I've never found myself in a situation where I had any benefit from the data being JSON. You rarely read the raw data. But compared to gRPC or CapnProto, you lost compile-time type checking and now you need 10mins of testing a vending machine before you get a "key not found"-error because you missed one spot on renaming.

Also, I've written varlink-cpp building on asio and nl-json at some point: https://github.com/wolletd/varlink-cpp. But as our varlink usage declined, it never found much usage and isn't maintained.

emersion•37m ago
"you lost compile-time type checking" makes it sound like you haven't been using code generation? Varlink has an interface definition language which makes everything type-safe.
ongy•1h ago
Huh, that way of doing asynchronicity is quite interesting.

Though my Haskell and Rust primed brain really dislikes the way ownership of the memory allocation for the response struct works.

It gets allocated by the caller (library), handed over to the function fully owned, and then gets consumed by the response function?