frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

LLMs caused drastic vocabulary shift in biomedical publications

https://www.science.org/doi/10.1126/sciadv.adt3813
57•em3rgent0rdr•1h ago•28 comments

Mini NASes marry NVMe to Intel's efficient chip

https://www.jeffgeerling.com/blog/2025/mini-nases-marry-nvme-intels-efficient-chip
173•ingve•4h ago•73 comments

EverQuest

https://www.filfre.net/2025/07/everquest/
76•dmazin•3h ago•27 comments

How to Incapacitate Google Tag Manager and Why You Should (2022)

https://backlit.neocities.org/incapacitate-google-tag-manager
26•fsflover•1h ago•8 comments

Why I left my tech job to work on chronic pain

https://sailhealth.substack.com/p/why-i-left-my-tech-job-to-work-on
215•glasscannon•6h ago•136 comments

Eight dormant Satoshi-era Bitcoin wallets reactivated after 14 yrs

https://twitter.com/WatcherGuru/status/1941167512491864554
45•amrrs•45m ago•19 comments

Compression Dictionary Transport

https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Compression_dictionary_transport
48•todsacerdoti•4h ago•4 comments

Kepler.gl

https://kepler.gl/
86•9woc•5h ago•10 comments

Air Pollution May Contribute to Development of Lung Cancer in Never-Smokers

https://today.ucsd.edu/story/air-pollution-may-contribute-to-development-of-lung-cancer-in-never-smokers-new-study-finds
9•gmays•54m ago•2 comments

Show HN: I AI-coded a tower defense game and documented the whole process

https://github.com/maciej-trebacz/tower-of-time-game
148•M4v3R•6h ago•87 comments

UpCodes (YC S17) is hiring a Head of Ops to automate construction compliance

https://up.codes/careers?utm_source=HN
1•Old_Thrashbarg•2h ago

Writing a Game Boy Emulator in OCaml

https://linoscope.github.io/writing-a-game-boy-emulator-in-ocaml/
188•ibobev•9h ago•31 comments

Larry (cat)

https://en.wikipedia.org/wiki/Larry_(cat)
189•dcminter•9h ago•46 comments

ChatGPT creates phisher's paradise by serving the wrong URLs for major companies

https://www.theregister.com/2025/07/03/ai_phishing_websites/
24•josephcsible•56m ago•0 comments

``Free as Air, Free as Water, Free as Knowledge'' (1992)

http://bactra.org/Sterling/Free_as_the_Air_Free_as_Water_Free_as_Knowledge.html
11•whoopdedo•3d ago•1 comments

Bcachefs may be headed out of the kernel

https://lwn.net/Articles/1027289/
56•ksec•5h ago•50 comments

Gremllm

https://github.com/awwaiid/gremllm
14•andreabergia•2h ago•3 comments

Is an Intel N100 or N150 a better value than a Raspberry Pi?

https://www.jeffgeerling.com/blog/2025/intel-n100-better-value-raspberry-pi
205•transpute•7h ago•177 comments

Lens: Lenses, Folds and Traversals

https://hackage.haskell.org/package/lens
53•hyperbrainer•3d ago•17 comments

In a milestone for Manhattan, a pair of coyotes has made Central Park their home

https://www.smithsonianmag.com/science-nature/in-a-milestone-for-manhattan-a-pair-of-coyotes-has-made-central-park-their-home-180986892/
90•sohkamyung•3d ago•80 comments

Can Large Language Models Play Text Games Well?

https://arxiv.org/abs/2304.02868
45•willvarfar•8h ago•29 comments

Show HN: BunkerWeb – the open-source and cloud-native WAF

https://docs.bunkerweb.io/latest/
68•bnkty•7h ago•25 comments

Wind Knitting Factory

https://www.merelkarhof.nl/work/wind-knitting-factory
197•bschne•22h ago•54 comments

Zig breaking change – initial Writergate

https://github.com/ziglang/zig/pull/24329
167•Retro_Dev•15h ago•179 comments

Show HN: A cross-platform terminal emulator written in Java

https://github.com/sebkur/forceterm
46•sebkur•3d ago•8 comments

The Novelty of the Arpanet

https://twobithistory.org/2021/02/07/arpanet.html
3•xk3•3d ago•0 comments

Rust and WASM for Form Validation

https://sebastian.lauwe.rs/blog/rust-wasm-form-validation/
35•slau•7h ago•15 comments

Killer whales groom each other with pieces of kelp

https://www.science.org/content/article/killer-whales-groom-each-other-pieces-kelp
74•noleary•3d ago•42 comments

Logging Shell Commands in BusyBox? Yes, You Can Now

http://carminatialessandro.blogspot.com/2025/06/logging-shell-commands-in-busybox-yes.html
10•acarminati•3d ago•0 comments

A Rust-TypeScript integration

https://github.com/beeeeep54/rust-typescript
42•wreedtyt•7h ago•44 comments
Open in hackernews

How to render a mesh gradient using RBF interpolation

https://www.notion.so/Smooth-Mesh-Gradients-with-RBF-Interpolation-1ba8eeb5a3e68046b34cf997fe67d3c1?source=copy_link
12•olpyhn•7h ago

Comments

olpyhn•7h ago
Mesh gradients are a powerful way to create smooth, organic color transitions. Traditional techniques like spline-based interpolation or multiple overlapping radial gradients can be effective—but they also come with trade-offs: visual artifacts, complexity, or the need for structured meshes.

In this article, I’ll show you how to use Radial Basis Function (RBF) interpolation to generate seamless gradients from just a set of colored points. This approach is portable, flexible, and simple to implement.

smidgeon•7h ago
RBFs are splendid, but you don't need to have them "decay with distance", indeed, ones which don't (mutliquartics etc) often have better approximation properties and better-conditioned linear systems to solve, give them a go! https://www.sciencedirect.com/science/article/abs/pii/S09557...
olpyhn•5h ago
Interesting, will try it out. Thank you!

Tbh, I tried several different functions, but nothing worked better than inverse quadric function. Though, I'm not sure if I tried anything without decay

smidgeon•5h ago
One interesting group is the compactly supported RBFs, for example those of Wendland https://math.iit.edu/~fass/603_ch4.pdf the advantage being that the resulting linear systems are sparse, useful when you have lots of points to interpolate and "gaps" is not an issue.