frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: I'm an airline pilot – I built interactive graphs/globes of my flights

https://jameshard.ing/pilot
1173•jamesharding•16h ago•170 comments

Why does Kars4Kids sends most of its money to one town in New Jersey? (2023)

https://www.mossplanet.news/p/why-does-kars4kids-sends-most-of
57•myballshurt•1h ago•14 comments

Normalizing Flows Are Capable Generative Models

https://machinelearning.apple.com/research/normalizing-flows
115•danboarder•9h ago•27 comments

Learn OCaml

https://ocaml-sf.org/learn-ocaml-public/#activity=exercises
110•smartmic•9h ago•32 comments

c4wa – C compiler for Web Assembly

https://github.com/kign/c4wa
35•90s_dev•3d ago•5 comments

James Webb Space Telescope reveals its first direct image of an exoplanet

https://www.smithsonianmag.com/smart-news/james-webb-space-telescope-reveals-its-first-direct-image-discovery-of-an-exoplanet-180986886/
172•divbzero•12h ago•81 comments

SymbolicAI: A neuro-symbolic perspective on LLMs

https://github.com/ExtensityAI/symbolicai
145•futurisold•11h ago•38 comments

London's Largest Ancient Roman Fresco Is “Most Difficult Jigsaw Puzzle”

https://www.thisiscolossal.com/2025/06/mola-liberty-roman-fresco/
4•surprisetalk•3d ago•0 comments

A brief history of children sent through the mail (2016)

https://www.smithsonianmag.com/smart-news/brief-history-children-sent-through-mail-180959372/
97•m-hodges•9h ago•84 comments

The Original Macintosh: Calculator Construction Set

https://www.folklore.org/Calculator_Construction_Set.html
15•fidotron•2d ago•2 comments

Reinforcement learning, explained with a minimum of math and jargon

https://www.understandingai.org/p/reinforcement-learning-explained
80•JnBrymn•3d ago•2 comments

Facebook is starting to feed its AI with private, unpublished photos

https://www.theverge.com/meta/694685/meta-ai-camera-roll
177•pier25•5h ago•116 comments

Qwen VLo: From “Understanding” the World to “Depicting” It

https://qwenlm.github.io/blog/qwen-vlo/
181•lnyan•15h ago•52 comments

Multi-Stage Programming with Splice Variables

https://tsung-ju.org/icfp25/
31•matt_d•6h ago•4 comments

Weird Expressions in Rust

https://www.wakunguma.com/blog/rust-weird-expr
148•lukastyrychtr•14h ago•120 comments

10 Years of Pomological Watercolors

https://parkerhiggins.net/2025/04/10-years-of-pomological-watercolors/
186•fanf2•15h ago•29 comments

Structuring Arrays with Algebraic Shapes

https://dl.acm.org/doi/abs/10.1145/3736112.3736141
75•todsacerdoti•10h ago•6 comments

Transmitting data via ultrasound without any special equipment

https://halcy.de/blog/2025/06/27/transmitting-data-via-ultrasound-without-any-special-equipment/
106•todsacerdoti•13h ago•33 comments

nimbme – Nim bare-metal environment

https://github.com/mikra01/nimbme
56•michaelsbradley•11h ago•12 comments

bootc-image-builder: Build your entire OS from a Containerfile

https://github.com/osbuild/bootc-image-builder
42•twelvenmonkeys•3d ago•11 comments

I Deleted My Second Brain

https://www.joanwestenberg.com/p/i-deleted-my-second-brain
7•MrVandemar•36m ago•0 comments

Theoretical Analysis of Positional Encodings in Transformer Models

https://arxiv.org/abs/2506.06398
24•PaulHoule•7h ago•2 comments

Dubai Reality Check: An Indian VC's Year of Truth

https://www.dealflowiq.com/p/dubai-reality-check-an-indian-vcs
5•koolhead17•21m ago•0 comments

Spark AI (YC W24) is hiring a full-stack engineer in SF (founding team)

https://www.ycombinator.com/companies/spark/jobs/kDeJlPK-software-engineer-full-stack-founding-team
1•juliawu•9h ago

Rust in the Linux kernel: part 2

https://lwn.net/SubscriberLink/1025232/fbb2d90d084368e3/
90•chmaynard•7h ago•33 comments

Show HN: Do you know RGB?

https://maxwellito.github.io/do-you-know-rgb/
72•maxwellito•3d ago•53 comments

New Process Uses Microbes to Create Valuable Materials from Urine

https://newscenter.lbl.gov/2025/06/17/new-process-uses-microbes-to-create-valuable-materials-from-urine/
32•gmays•11h ago•8 comments

Does a Focus on Royalty Obscure British History?

https://www.historytoday.com/archive/head-head/does-focus-royalty-obscure-british-history
25•pepys•3d ago•7 comments

A New Kind of Computer (April 2025)

https://lightmatter.co/blog/a-new-kind-of-computer/
51•gkolli•4d ago•21 comments

Whitesmiths C compiler: One of the earliest commercial C compilers available

https://github.com/hansake/Whitesmiths-C-compiler
104•todsacerdoti•4d ago•32 comments
Open in hackernews

c4wa – C compiler for Web Assembly

https://github.com/kign/c4wa
35•90s_dev•3d ago

Comments

comex•3h ago
In the comparison with Emscripten using wasm-decompile [1], the author appears to have forgotten to turn on optimization. Yes, if you run emcc with no -O option then you will get extremely bad generated code quality, similar to most C compilers. Add -O and you get nice and tight code similar to what c4wa outputs.

[1] https://github.com/kign/c4wa/blob/master/etc/doc/comparison....

lioeters•2h ago
> c4wa needs Java 11 or above

It sounded good until this part. Would have been nice if it were written in the subset of C that it supports, so it could compile the compiler to Wasm.

apitman•2h ago
This is actually pretty compelling to me. I think the more support for freestanding wasm modules the better.

I'm working on a custom wasm app runtime and I don't want to have to implement the entire API surface of Emscripten or WASI. The new component model is even more complex. I wish there was more tooling available for using C/Rust stdlib functions for things like reading files or opening a socket, but being able to define your own API to handle the actually operations in the host/module interface.

pyrolistical•1h ago
Zig can also compile to free standing wasm
Anduia•20m ago
Last commit on Jan 29, 2022