frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Claude Sonnet 4 now supports 1M tokens of context

https://www.anthropic.com/news/1m-context
889•adocomplete•9h ago•492 comments

Search all text in New York City

https://www.alltext.nyc/
65•Kortaggio•1h ago•14 comments

Ashet Home Computer

https://ashet.computer/
189•todsacerdoti•6h ago•41 comments

Scapegoating the Algorithm

https://asteriskmag.com/issues/11/scapegoating-the-algorithm
33•fmblwntr•2h ago•16 comments

Show HN: Building a web search engine from scratch with 3B neural embeddings

https://blog.wilsonl.in/search-engine/
328•wilsonzlin•9h ago•57 comments

Journaling using Nix, Vim and coreutils

https://tangled.sh/@oppi.li/journal
76•icy•11h ago•23 comments

A gentle introduction to anchor positioning

https://webkit.org/blog/17240/a-gentle-introduction-to-anchor-positioning/
42•feross•3h ago•10 comments

Training language models to be warm and empathetic makes them less reliable

https://arxiv.org/abs/2507.21919
206•Cynddl•12h ago•210 comments

Show HN: Omnara – Run Claude Code from anywhere

https://github.com/omnara-ai/omnara
209•kmansm27•9h ago•100 comments

Multimodal WFH setup: flight SIM, EE lab, and music studio in 60sqft/5.5M²

https://www.sdo.group/study
182•brunohaid•3d ago•78 comments

AI Eroded Doctors' Ability to Spot Cancer Within Months in Study

https://www.bloomberg.com/news/articles/2025-08-12/ai-eroded-doctors-ability-to-spot-cancer-within-months-in-study
34•zzzeek•1h ago•20 comments

Blender is Native on Windows 11 on Arm

https://www.thurrott.com/music-videos/324346/blender-is-native-on-windows-11-on-arm
116•thunderbong•3d ago•42 comments

WHY2025: How to become your own ISP [video]

https://media.ccc.de/v/why2025-9-how-to-become-your-own-isp
94•exiguus•8h ago•13 comments

The Missing Protocol: Let Me Know

https://deanebarker.net/tech/blog/let-me-know/
75•deanebarker•5h ago•52 comments

Launch HN: Design Arena (YC S25) – Head-to-head AI benchmark for aesthetics

61•grace77•9h ago•23 comments

LLMs aren't world models

https://yosefk.com/blog/llms-arent-world-models.html
226•ingve•2d ago•115 comments

Go 1.25 Release Notes

https://go.dev/doc/go1.25
111•bitbasher•4h ago•11 comments

Why are there so many rationalist cults?

https://asteriskmag.com/issues/11/why-are-there-so-many-rationalist-cults
383•glenstein•10h ago•584 comments

The Equality Delete Problem in Apache Iceberg

https://blog.dataengineerthings.org/the-equality-delete-problem-in-apache-iceberg-143dd451a974
43•dkgs•7h ago•21 comments

RISC-V single-board computer for less than 40 euros

https://www.heise.de/en/news/RISC-V-single-board-computer-for-less-than-40-euros-10515044.html
126•doener•4d ago•72 comments

Debian GNU/Hurd 2025 released

https://lists.debian.org/debian-hurd/2025/08/msg00038.html
180•jrepinc•3d ago•93 comments

Dumb to managed switch conversion (2010)

https://spritesmods.com/?art=rtl8366sb&page=1
34•userbinator•3d ago•15 comments

Visualizing quaternions, an explorable video series

https://eater.net/quaternions
3•uncircle•3d ago•0 comments

Weave (YC W25) is hiring a founding AI engineer

https://www.ycombinator.com/companies/weave-3/jobs/SqFnIFE-founding-ai-engineer
1•adchurch•8h ago

Fixing a loud PSU fan without dying

https://chameth.com/fixing-a-loud-psu-fan-without-dying/
14•sprawl_•3d ago•16 comments

Galileo’s telescopes: Seeing is believing (2010)

https://www.historytoday.com/archive/history-matters/galileos-telescopes-seeing-believing
14•hhs•3d ago•4 comments

Nexus: An Open-Source AI Router for Governance, Control and Observability

https://nexusrouter.com/blog/introducing-nexus-the-open-source-ai-router
81•mitchwainer•11h ago•21 comments

Australian court finds Apple, Google guilty of being anticompetitive

https://www.ghacks.net/2025/08/12/australian-court-finds-apple-google-guilty-of-being-anticompetitive/
322•warrenm•12h ago•119 comments

How to safely escape JSON inside HTML SCRIPT elements

https://sirre.al/2025/08/06/safe-json-in-script-tags-how-not-to-break-a-site/
69•dmsnell•4d ago•40 comments

Comparing baseball greats across eras, who comes out on top?

https://phys.org/news/2025-07-baseball-greats-eras.html
6•PaulHoule•2d ago•13 comments
Open in hackernews

Blender is Native on Windows 11 on Arm

https://www.thurrott.com/music-videos/324346/blender-is-native-on-windows-11-on-arm
116•thunderbong•3d ago

Comments

bhouston•6h ago
Nice! I would expect that it was relatively straight foward given that Blender is native on MacOS ARM and also iOS ARM?

Blender is just so nice to use these days.

Hydraulix989•5h ago
And Linux ARM, I would expect?
seba_dos1•4h ago
Yes, Blender was native on my ARM phone several years ago already - until its GPU requirements went up.
geraldcombs•5h ago
For us (Wireshark) the difficulty wasn't with our own codebase, but with getting our dependencies ported over. Most libraries built just fine, but some strongly assumed that "Windows" meant "x86".

It's not just Windows, either. Many libraries (particularly ones that use Autotools) are absolutely blind to the notion that you might want a universal binary on macOS.

astrange•3h ago
When we ported OpenJDK to macOS, I ended up producing a universal binary by having the Makefile run itself to produce HotSpot twice, and then gluing them together with `lipo` afterwards. There isn't really a better way when the actual project configurations are different.

IIRC it was eventually removed because nobody else needed to do such a thing so it was hard to maintain.

kccqzy•3h ago
Sure. How else would you build a universal binary then? Given the low-level nature of the language not many tasks can be usefully shared between different architectures.
geraldcombs•2h ago
For plain C/C++ you can just pass `-arch x86_64 -arch arm64` to clang. CMake takes care of this for you if you specify `CMAKE_OSX_ARCHITECTURES=x86_64;arm64` and IIRC Meson has similar functionality.
kccqzy•2h ago
TIL. I didn't know clang supports this natively.
delta_p_delta_x•22m ago
Clang is natively a cross-compiler. Pass in --sysroot and a corresponding valid sysroot tree for any micro architecture/platform (arm-eabi, macOS, Windows MSVC, PowerPC, Alpine Linux with musl, you name it) and Clang will happily retarget the binary to the correct target platform.
zdw•1h ago
I assume this is faster than doing two separate builds, because it can skip certain steps of the complier pipeline, and only the items that are arch specific (codegen, probably others) are done twice?
Uehreka•1h ago
> also iOS ARM?

Wait WHAT?! Since when?

bhouston•1h ago
It was announced two weeks ago. Details: https://youtu.be/JFtvdItYNBU
geon•1h ago
I think it has built for years. There just hasn't been a usable UI.
joshmarinacci•5h ago
Why has it taken so long to get the Windows ecosystem fully on ARM? Apple’s transition only took a year or two.
cultofmetatron•5h ago
1.apple controls the hardware. they only need to focus on supporting a handful of skus. windows needs to support way more which they don't directly control

2. The software development toolchain is highly focussed

3. they committed. there are no more intel cpus so developers can either adapt or die. windows by contrast has x86 and arm builds going forward. that means a larger surface area for developers to target and they will avoid that kind of pain if they can.

4. microsoft management is all over the place and lacks the focus that apple has. Apple doesn't do everything right but when they want to do something well. it shows. even their failures are polished.

GeekyBear•4h ago
Apple had ARM versions of it's own software ready to go on day one.

Apple's developer IDE was ready to go on day one.

Apple's Rosetta translation layer was much more widely compatible with legacy x86 software than Microsoft's Prism.

duped•5h ago
Apple stopped selling Intel Macs and the ARM Macs were the better machines when they did
kimixa•5h ago
In addition to the other reasons listed below, Apple employee's provided the initial ARM porting patches in the first place.

It sounds like Microsoft was involved in this project (though the text seems to imply Qualcomm might have been the primary contributor), it remains that they didn't do it however many years ago when Windows on ARM was first released.

TylerE•4h ago
Also Apple had done it before - twice, really. 68k -> PPC ('member FAT binaries?) -> Intel -> ARM
dkiebd•5h ago
Microsoft has already made several attempts at ARM. It's not clear that this attempt will be the last one, in fact, it's quite probable that it will be abandoned. So why invest in it.
p_ing•5h ago
That's not the correct question to ask. There's no reason to fully transition the ecosystem to any one singular architecture, Microsoft has always been happy since the origin of NT 3.1 to run some flavor of Windows on non-x86 architectures, but they were never dominate because x86 is dominate, and rightfully so.
motoboi•5h ago
Rosetta and universal binaries is the answer. Things just worked and gave people a working scaffold to do incremental improvement.

Much easier than a big bang replacement.

SlowTao•4h ago
It feels like the internal interest in Windows ARM comes in waves, that they keep letting it slide backwards.

I mean they have been trying since Windows RT on the original surface tablet 13 years ago.

imiric•3h ago
To be fair, the Surface Pro 11 ARM is really good. It's the best actual computer in a tablet form factor I've ever used. iPads and Android tablets are crippled by their OS, and x86 tablets are bulky, hot, underperform, and/or have poor battery life.

Performance of every day tasks on the Surface is excellent, it sips power, and Microsoft has done a great job with their x86 emulation layer (Prism). Most x86 apps (including games!) work without any involvement from the user. In the few cases I ran into issues, tweaking the emulation settings for the app fixed the issue, and I think there was only one app that refused to run, though I don't remember what it was right now. Performance even with emulation is pretty good.

This experience is light years ahead of Windows RT, and even Windows on ARM from a few years ago.

So I don't think Microsoft's interest in ARM is waning anytime soon. They're clearly heavily invested in it, and the hard work has been paying off.

sunshowers•54m ago
Agreed, I got the Surface Pro 11 to have a Windows on ARM device to test on, and it's quickly become my favorite portable device. It's really nice to have a tablet that lasts days on battery, that you can draw on and then flip around and write code on.

The last thing I was waiting on was Zed, which now works on Windows ARM as of a couple weeks ago (though there aren't official builds yet so I build it from source).

Hate to hand it to Microsoft but it's just a really versatile and powerful device.

thewebguyd•4h ago
> Why has it taken so long to get the Windows ecosystem fully on ARM? Apple’s transition only took a year or two.

No incentive for third parties. Apple dictates the hardware, and can say "no more x86" and devs either have to jump on board or abandon Apple.

No such thing with Windows. x86 is still the default on windows laptops, and will likely be for the foreseeable future. The X elite still seems to have no successor in the pipeline, and the few laptops that have it don't outsell x86 so why bother.

snvzz•2h ago
>and will likely be for the foreseeable future.

Nah, high performance RISC-V (on RVA23 profile) is just around the corner.

Might come as early as by year end. Early next year at worst.

We've known about Windows for RISC-V since 2021, NA's RISC-V Summit. Like Google with Android, Microsoft has set RVA23 as baseline.

Once the hardware and Windows are there, expect the open platform to take over.

macintux•1h ago
Apple had all the incentives in the world to provide a transition plan and leave Intel behind. Also lots, and lots of practice with platform migrations, and they were transitioning to a hardware platform they were already selling in the billions.

Microsoft has exactly none of that. I'd be astonished to see RISC-V or ARM "take over" in the Windows world in less than another two decades, unless Intel's ongoing decline drags the entire X86 platform with it.

nomel•2h ago
> "no more x86" and devs either have to jump on board or abandon Apple.

I don't think that's fair. They provided a very smooth transition, with a well performing translation layer. The user wouldn't have to care or even notice when they picked up a new ARM MacBook, except their battery lasted way longer and cooler. Everything that worked still worked (well, 64bit at least). I'm still running x86-64 apps, and developing for x86-64, on my ARM MacBook.

When the first Windows RT came out, there was no compatibility, and this wasn't communicated well. They nuked the customer perception on day 1. When they finally implemented the x86 compatibility, it had terrible performance and compatibility.

Now, Apple's 32-bit to 64-bit transition was definitely a "jump on board or abandon Apple", but the Intel to Arm transition was well crafted, from a user perspective.

asveikau•20m ago
> When the first Windows RT came out, there was no compatibility, and this wasn't communicated well.

It was worse than this. Source compatibility with the Win32 APIs you would use for ~20 years to target x86/amd64 was explicitly a non goal. To target ARM you needed to use their new, half-baked frameworks designed for the Windows 8 tablets. You couldn't recompile a desktop app, even if it would have worked fine had they given you the headers and libs to do it.

Even internally, even among decision makers, people were very confused about this.

Uehreka•1h ago
Nah, you could’ve waited 5 years to port if you were concerned about your x86 binaries not being supported, the bigger deal was that Apple was shipping good ARM computers and if you’re a developer, you don’t want your app to seem slow on what consumers can see is clearly a fast machine.

Microsoft has made multiple abortive lethargic gestures towards ARM, but has yet to get people excited about an ARM computer that runs Windows.

acchow•4h ago
Apple also stopped selling new x86 machines. You had no choice but to port to Arm
bangaladore•3h ago
Simple answer: the Windows ecosystem is vastly larger than Apple's in hardware, software, and use cases.
jayd16•3h ago
They stopped x86 support so it's move or be gone. It's survivor bias to say it's fully on arm, no?
segphault•3h ago
Apple’s development stack and a large portion of their third-party developer base already had fairly mature ARM support for iOS. It made for a much smoother transition. Microsoft’s lack of meaningful mobile footprint meant that they started from further behind.
cowmix•2h ago
MSFT simply has done half-assed attempts at ARM for each wave / attempt over the past 10+ years. APPL, for each processor move, "bet the company" and it was full speed ahead whereas MSFT has never HAD to align everything for a move.

Having said all that, I've been using a Snapdragon Elite X laptop since day one and the experience has gotten better over the year plus I've been using it. Once there was a native port of command line git (yes, THAT didn't even work) - my life got a lot better.

7jjjjjjj•1h ago
Apple has the M-series chips. Windows laptops are made with Qualcomm processors that are far behind Intel and AMD in performance. As a result, Windows has no road towards completely replacing X86, the two architectures will live side by side for the foreseeable future.
keithnz•1h ago
you said it in your question, Apple was making a transition. Windows isn't.
gt0•52m ago
Agree with the other answer, just no incentive for third party developers.

With Apple it really is a transition, with Windows, it's well under 5% of PC sales, so probably under 1% of actual computers in use.

Apple is 100% on board with ARM, Microsoft isn't and the OEMs even less so, you can barely buy an ARM Windows desktop, only thin laptops.

Where I work, we ship Windows desktops for an industrial application, and we haven't even had a meeting about supporting ARM, it's like they don't exist.

zoytek•2h ago
What do I think? Those Shein ads are taking up a lot of space.
jackvalentine•2h ago
Are there any retail Windows 11 ARM devices that aren’t Qualcomm?
wyldfire•1h ago
Retail? No. Coming soon [1] [2].

[1] https://www.reuters.com/technology/mediatek-designs-arm-base...

[2] https://www.tomshardware.com/pc-components/cpus/nvidia-and-m...