frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gray wolf reeled in a crab trap with a rope

https://www.popsci.com/environment/wolf-uses-tool-video/
1•geox•56s ago•0 comments

Rope science, part 11 – practical syntax highlighting (2017)

https://xi-editor.io/docs/rope_science_11.html
2•todsacerdoti•2m ago•0 comments

Ask HN: White Label Chat Apps?

1•stonedge•4m ago•0 comments

A triangle whose interior angles sum to zero

https://www.johndcook.com/blog/2025/11/28/tricusp-triangle/
3•tzury•9m ago•0 comments

Virtual MCP Servers: A Use Case-Driven Solution to Tool Overload

https://www.pulsemcp.com/posts/virtual-mcp-servers-and-gateways
1•jngiam1•10m ago•0 comments

What a federal ban on THC-infused drinks and snacks could mean for hemp industry

https://apnews.com/article/hemp-thc-drinks-ban-law-8d77842cb250291a178db6f9d39f8b7e
3•petethomas•16m ago•0 comments

Show HN: Free PPT generator after NotebookLM removed the feature

https://ppt.gbase.ai
1•jinfeng79•16m ago•1 comments

Show HN: Sourcewizard – A wizard for generating integration specs

https://github.com/sourcewizard-ai/sourcewizard/tree/main/apps/planner-ui
2•mifydev•17m ago•5 comments

Air pollution may reduce health benefits of exercise

https://www.ucl.ac.uk/news/2025/nov/air-pollution-may-reduce-health-benefits-exercise
2•hhs•19m ago•0 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
1•jaredwiener•20m ago•0 comments

You Need More Lux (2023)

https://meaningness.com/sad-light-led-lux
1•turtleyacht•20m ago•0 comments

The tech behind Shopify BFCM globe this year

https://twitter.com/pushmatrix/status/1994241257497931944
1•xal•26m ago•0 comments

How the brain decides what to remember

https://www.rockefeller.edu/news/38658-how-the-brain-decides-what-to-remember/
1•hhs•32m ago•1 comments

Shipping Progressive Web Apps Everywhere

https://www.bbc.co.uk/webarchive/https%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Finternet%2Fentries%2F3533c...
2•imjacobclark•32m ago•0 comments

Just Use Postgres for Everything

https://www.amazingcto.com/postgres-for-everything/
3•b-man•32m ago•0 comments

Rare Near-Equatorial Tropical Cyclone Senyar Hits Aceh, Indonesia

https://en.tempo.co/read/2068942/tropical-cyclone-senyar-makes-rare-landfall-in-aceh
1•terryds•32m ago•0 comments

Show HN: Prompt Refiner – Lightweight Python lib to clean and compress LLM input

https://github.com/JacobHuang91/prompt-refiner
1•xinghaohuang•40m ago•1 comments

GreyNoise IP Check

https://check.labs.greynoise.io/
2•kekqqq•43m ago•0 comments

Evolution Strategies at the Hyperscale

https://arxiv.org/abs/2511.16652
2•azhenley•46m ago•0 comments

Nvidia ToolOrchestra – 8B model "manager" improves intelligence and efficiency

https://arxiv.org/abs/2511.21689
1•hereme888•46m ago•0 comments

Incidents: The Exceptional as Routine

https://surfingcomplexity.blog/2025/11/28/incidents-the-exceptional-as-routine/
2•azhenley•52m ago•0 comments

Kalshi hit as Nevada judge deems platform subject to gambling laws; will appeal

https://www.ft.com/content/2f07aed7-58b0-45d3-87d4-c3c883a616fa
4•hhs•53m ago•0 comments

Jetpack Navigation 3

https://android-developers.googleblog.com/2025/05/announcing-jetpack-navigation-3-for-compose.html
2•lairv•53m ago•0 comments

Shopify launched 3D Racing Game in the browser

https://www.shopify.com/ca/editions/summer2025/drive
2•terryds•1h ago•1 comments

Is AI Eating the World?

https://philippdubach.com/2025/11/23/is-ai-really-eating-the-world/
2•gmays•1h ago•0 comments

The Fatal Trap UBI Boosters Keep Falling Into

https://thereader.mitpress.mit.edu/the-fatal-trap-ubi-boosters-keep-falling-into/
3•haritha-j•1h ago•0 comments

When LLMs learn to take shortcuts, they become evil

https://www.economist.com/science-and-technology/2025/11/26/when-llms-learn-to-take-shortcuts-the...
2•etewiah•1h ago•1 comments

People Who Don't Lose Weight on Wegovy May Have Genetic Differences

https://www.scientificamerican.com/article/why-ozempic-and-wegovy-dont-cause-weight-loss-for-ever...
3•paulpauper•1h ago•1 comments

Design-a-Protein.com

https://design-a-protein.com
2•tjala•1h ago•0 comments

AI Music Sommelier and Gemini

https://dailyspotter.com/
2•levigrace•1h ago•2 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•7mo ago

Comments

LegNeato•7mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•7mo ago
Surprisingly, it seems this project just supports Spir-V and PTX, but not DXIL or AMDGCN.

I say surprisingly, because I'd expect Rust support to be more mature than Zig's.

lostmsu•7mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•7mo ago
I am a complete noob in GPU but is AMDGCN the older generation with the new one being RDNA? If you generate a binary for AMDGCN, will it run on the newest cards?

Also, I though that these GPU ISAs were "proprietary". I wonder how reliable the binary generation can be.

AliChraghi•7mo ago
AMD ISAs are changing for almost every generation so LLVM[1] continues to keep the architecture name "amdgcn" and handle the variation based on the model flag (e.g., -mcpu=gfx1030 for RDNA2, -mcpu=gfx1100 for RDNA3).

> I though that these GPU ISAs were "proprietary"

PTX spec[2] is publicly available but the actual hardware assembly (SASS) is not. Although i believe Nsight allows you to view it.

1. https://llvm.org/docs/AMDGPUUsage.html#processors

2. https://docs.nvidia.com/cuda/parallel-thread-execution

imtringued•7mo ago
If LLVM can target AMD GPUs what exactly prevents AMD and ROCm from supporting all the damn GPUs?

At this point I'm convinced that the real problem with AMD GPUs isn't necessarily the compilers (although they do produce mediocre code) or even the hardware itself, but some crappy C++ driver code that can't handle running graphics and compute at the same time. The datacenter GPUs never had to run graphics in the first place, so they are safe.

slavik81•7mo ago
In my experience, the compiler, compute drivers, and HIP runtime work fine for all modern AMD GPUs. The only parts of the stack that don't run on all GPUs are the math and AI libraries. And that is mostly because AMD isn't building and testing those libraries for unsupported GPUs. The actual work required to enable functional support was straightforward enough that I ported them myself when packaging the libraries for Debian. Though, I had a lot of help on the testing.

See the Debian Trixie Supported GPU list: https://salsa.debian.org/rocm-team/community/team-project/-/...

SomaticPirate•7mo ago
While I admire the work of hobbyists it still looks like C/C++ will be the default until a GPU vender makes the decision to support these libraries.

From my understanding, Vulkan and OpenGL are nice but the true performance lies in the specific toolkits (ie CUDA, Metal).

Wrapping the vendor provided frameworks is liable to break and that isn't tenable for someone who wants to do this on a professional basis.

pjmlp•7mo ago
They also miss that on CUDA's case it is an ecosystem.

Actually it is C, C++, Fortran, OpenACC and OpenMP, PTX support for Java, Haskell, Julia, C#, alongside the libraries, IDE tooling and GPU graphical debugging.

Likewise Metal is plain C++14 plus extensions.

On the graphics side, HLSL dominates, following by GLSL and now slang. There are then MSL, PSSL and whatever NVN uses.

By the way, at GTC NVIDIA announced going all in with Python JIT compilers for CUDA, with feature parity with existing C++ tooling. There is now a new IR for doing array programming, Tile IR.

dismalaf•7mo ago
I don't quite get this comment.

This is supposed to be used in place of CUDA, HIP, Metal, Vulkan, OpenGL, etc... It's targeting the hardware directly so doesn't need to be supported as such.

The site also seems to clearly state it's a work in progress. It's just an interesting blog post...

slowmovintarget•7mo ago
The Zig compiler can compile C, though.