frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does creatine make you smarter?

https://dynomight.net/creatine/
52•surprisetalk•26m ago•26 comments

The startup's Postgres survival guide

https://hatchet.run/blog/postgres-survival-guide
85•abelanger•3h ago•36 comments

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
33•starfallg•52m ago•11 comments

OpenAI Presence

https://openai.com/index/introducing-openai-presence/
27•getnoenemy•59m ago•0 comments

Show HN: HN Hall of Fame – browse 3,100 legendary Hacker News links

https://www.orangecrumbs.com/hall/
19•oyster143•41m ago•6 comments

Airbus Full Scale Foldable Wing Extensions

https://www.airbus.com/en/newsroom/press-releases/2026-07-airbus-launches-new-flight-test-program...
15•r2sk5t•1h ago•1 comments

Launch HN: Unlayer (YC W22) – Add email and document builders to your app

https://unlayer.com
6•adeelraza•10m ago•1 comments

10 REM"_(C2SLFF4

https://beej.us/blog/data/mystery-comment/
102•ingve•4h ago•24 comments

Neo Radar: A browser-based orbital mechanics engine with 41k real asteroids

https://neoradar.space
11•daviazpen•56m ago•2 comments

Making

https://beej.us/blog/data/ai-making/
15•erikschoster•38m ago•0 comments

Introduction to Formal Verification with Lean Part 1

https://hashcloak.com/blog/tutorial-introduction-to-formal-verification-with-lean-(part-1)
176•badcryptobitch•3d ago•28 comments

Drake Anthony Recreates the Mechanical Bulb First Seen in 1675 – TechEBlog

https://www.techeblog.com/drake-anthony-styropyro-mechanical-bulb-barometric-light/
32•rbanffy•6d ago•8 comments

I Built a Private Genomics Study with Stoffel MPC

https://vishakh.blog/2026/07/21/i-built-a-private-genomics-study-with-stoffel-mpc/
14•vishakh82•1h ago•10 comments

Cornell's Interactive Wall of Birds

https://academy.allaboutbirds.org/features/wallofbirds/?_hsmi=428996456
60•yareally•3d ago•21 comments

Perlin's Noise Algorithm

https://blog.jaysmito.dev/blog/02-perlins-noise-algorithm/
7•ibobev•1h ago•0 comments

Intel Starts Shipping High-NA EUV Silicon

https://morethanmoore.substack.com/p/intel-starts-shipping-high-na-euv
194•zdw•3d ago•77 comments

Six questions before you add an LLM

https://cameronmpalmer.medium.com/should-you-even-use-an-llm-b4f3b7914f4d
3•cameronmpalmer•28m ago•1 comments

Ghost Cut – or why Cut and Paste is broken everywhere

https://ishmael.textualize.io/blog/ghost-cut/
5•willm•1h ago•1 comments

Ethics Is the Skill That Matters Most Now

https://agonora.com/blog/ethics-most-important-skill
7•mw67•1h ago•3 comments

Beaver who escaped to find mate welcomes first kit

https://www.bbc.com/news/articles/c70gz4zpv97o
14•1659447091•4d ago•6 comments

The Pillars of an API Platform

https://launchany.com/the-pillars-of-an-api-platform/
4•mooreds•1h ago•0 comments

Original Apollo 11 Guidance Computer source code for command and lunar modules

https://github.com/chrislgarry/Apollo-11
139•noteness•10h ago•43 comments

Why I Am Not Going to Buy a Computer

https://karlvmuller.com/posts/why-i-am-not-going-to-buy-a-computer/
53•KarlVM12•49m ago•50 comments

Critical Minerals: Reducing U.S. Import Reliance with Substitution and Recycling

https://www.gao.gov/products/gao-26-108687
7•Jimmc414•45m ago•0 comments

A Zipper Patent Sat in a Garage for 40 Years. Now It's Real

https://www.yankodesign.com/2026/05/31/a-zipper-patent-sat-in-a-garage-for-40-years-now-its-real/
13•crescit_eundo•34m ago•2 comments

Which streaming service was that on again

https://www.timwehrle.de/blog/which-streaming-service-was-that-on-again/
6•weetii•1h ago•2 comments

Hologram works. Elixir runs in the browser

https://hologram.page/blog/backing-hologram
12•lawik•1h ago•1 comments

Physical Media vs. Digital Media

https://itsjustchronicallyoffline.bearblog.dev/physical-media-vs-digital-media/
6•speckx•1h ago•3 comments

OpenAI and Hugging Face address security incident during model evaluation

https://openai.com/index/hugging-face-model-evaluation-security-incident/
1473•mfiguiere•20h ago•1004 comments

How to Read a Painting

https://sheets.works/data-viz/how-to-read-a-painting/
41•darshi7331•1h ago•24 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
57•andsoitis•1y ago

Comments

reikonomusha•1y ago
Coalton remains in active development and is used at a couple companies. Like a handful of others in recent history, it's a language that's designed and implemented directly against the needs of either actual products or (PLT-unrelated) research initiatives, so things like performance aren't an afterthought.

There are a few software engineering positions in the Boston, MA area to work on the Coalton compiler (algebraic type systems, optimizations, high-performance computing, dev tools, ...) and to use it for autonomous, firm realtime systems (unrelated to quantum). Email in profile if interested.

joshjob42•1y ago
Is Coalton compatible broadly compatible with the features of CIEL? I've been interested in getting into CL, and CIEL seems like a very nice batteries-included way to do that. But Coalton is also quite interesting and brings some features that may be useful. But I'm such a novice in this particular space (I'm mostly a Julia user with Python and some elisp) that I can't quite tell. Obviously I could start learning CL using CIEL and later play with Coalton but was just wondering if you knew how they may play together.
reikonomusha•1y ago
Coalton can be used wherever (almost any) Common Lisp can be used: mixed in, side by side, exclusively, as an library, etc.

CIEL doesn't presently ship any native Coalton interfaces, so all invocations of CIEL within Coalton code would have to be in a "lisp" form, which is like Rust's "unsafe".

    (define (some-coalton-function arg)
      ;; break out to Lisp
      (lisp String (arg)
        ...CIEL stuff here...))
On ordinary safety settings, the String declaration on the Lisp code will be checked at runtime so that wrong types don't leak back into the surrounding/calling Coalton code.

Conversely, Coalton code can be freely used within Common Lisp code regardless of whether it uses CIEL.

dang•1y ago
A couple bits of past discussion:

Using Coalton to Implement a Quantum Compiler - https://news.ycombinator.com/item?id=36413832 - June 2023 (1 comment)

Using Coalton to Implement a Quantum Compiler - https://news.ycombinator.com/item?id=32741928 - Sept 2022 (1 comment)