frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ChatIndex – an open-sourced long-context managment system

https://github.com/VectifyAI/ChatIndex
1•LoMoGan•35s ago•0 comments

CISA warns spyware crews are breaking into Signal and WhatsApp accounts

https://www.theregister.com/2025/11/25/cisa_spyware_gangs/
1•Brajeshwar•3m ago•0 comments

Tokyo Overtaken as World's Biggest City

https://news.sky.com/story/jakarta-and-dhaka-topple-tokyo-to-become-worlds-biggest-megacities-134...
1•austinallegro•3m ago•0 comments

'Enshittification': how we got the internet no one asked for [audio]

https://www.theguardian.com/news/audio/2025/nov/24/enshittification-how-we-got-the-internet-no-on...
1•Brajeshwar•4m ago•0 comments

Show HN: Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
1•gregsadetsky•6m ago•0 comments

Weather Modification and Geoengineering Patents 1880-2024

https://weathermodificationhistory.com/patents/
1•msuniverse2026•8m ago•0 comments

Show HN: Catch App Store rejection issues before Apple does

https://tryrubberduck.com/
1•Sayuj01•8m ago•0 comments

'Once in 300 years' rain hits Thai city as floods ravage South East Asia

https://www.bbc.com/news/articles/ckg97wx144jo
2•Brajeshwar•12m ago•0 comments

Show HN: InterviewFlowAI – AI phone and Meet interviews for fast screening

https://interviewflowai.com/
1•mukulmunjal•13m ago•0 comments

Unihertz Titan 2

https://www.unihertz.com/products/titan-2
2•harryday•18m ago•0 comments

Show HN: Aithings.dev – a directory for AI tools, resources, and communities

https://www.aithings.dev/
1•rutagandasalim•24m ago•0 comments

New wearable device lets you touch fabric online, read Braille, and more

https://www.popsci.com/technology/touch-websites-wearable-device/
1•velvet_thunderr•25m ago•0 comments

I bought a tiny Chrome extension 3 months ago and it's now my best acquisition

1•mddanishyusuf•25m ago•0 comments

Stride Game Engine 4.3 with .NET 10 Support

https://www.stride3d.net/blog/announcing-stride-4-3-in-dotnet-10/
1•bj-rn•25m ago•0 comments

Scientists capture real-time images of DNA damage and repair

https://www.sciencedaily.com/releases/2025/11/251123085554.htm
2•ashishgupta2209•38m ago•0 comments

Issue Tracker for Claude Code

https://issue-queue.readthedocs.io/en/latest/llm_agents.html#example-claude-code-integration
1•rodmena•41m ago•0 comments

ICE Arrests the Press

https://petapixel.com/2025/11/24/photojournalist-arrested-covering-ice-protest-as-authorities-imp...
6•cypherpunk666•41m ago•1 comments

The lifespan of the Öresund Bridge can be doubled

https://www.lunduniversity.lu.se/article/new-research-lifespan-oresund-bridge-can-be-doubled
2•gnabgib•42m ago•0 comments

Create your own AI version and scale yourself

https://www.myclone.is/blog/ai-digital-personas-revolutionizing-services/
1•rishikksh20•52m ago•0 comments

Rock Paper Scissors Is a Game of Skill

https://collisteru.substack.com/p/rock-paper-scissors-is-a-game-of
1•Collisteru•55m ago•0 comments

Comparing xeus-Haskell and ihaskell kernels

https://www.datahaskell.org/blog/2025/11/25/a-tale-of-two-kernels.html
1•mchav•56m ago•1 comments

The Protocol Labs Vision for Neurotech and Neuro AI [video]

https://www.youtube.com/watch?v=LKYSzA9scns
1•surprisetalk•56m ago•0 comments

Steel composites integrating diamonds and carbon nanotubes

https://akshatjiwannotes.blogspot.com/2025/10/steel-composites-integrating-diamonds.html
2•akshatjiwan•56m ago•0 comments

Wispcraft

https://kaverennedy.substack.com/p/wispcraft
1•surprisetalk•56m ago•0 comments

So Long Firefox, Hello Vivaldi

https://hackaday.com/2025/11/25/so-long-firefox-part-two/
3•thunderbong•1h ago•0 comments

E-cigs during pregnancy impairs uterine artery blood flow and placental function

https://academic.oup.com/toxsci/advance-article-abstract/doi/10.1093/toxsci/kfaf161/8325239?redir...
3•XzetaU8•1h ago•0 comments

Cartesia TTS Partner with Tencent RTC – Demo

https://sc-rp.tencentcloud.com:8106/t/pA
1•shuoxin-wang•1h ago•0 comments

Show HN: Cloakly – Hide notes and apps during coding interview screen-share

https://www.getcloakly.com
1•jaygood•1h ago•1 comments

Oxycodone Uses, Dosage, Side Effects, and Safety Warnings

https://sites.google.com/view/medixway-pharmacy/medixway-trusted-source-for-every-prescription/
1•fffssdsd•1h ago•1 comments

Show HN: An Open-Source, Local-First Agent Framework in Rust

http://github.com/liquidos-ai/autoagents
1•saivishwak•1h ago•0 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.