frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Migrating the main Zig repository from GitHub to Codeberg

https://ziglang.org/news/migrating-from-github-to-codeberg/
502•todsacerdoti•5h ago•358 comments

Penpot: The Open-Source Figma

https://github.com/penpot/penpot
183•selvan•5h ago•21 comments

DIY NAS: 2026 Edition

https://blog.briancmoses.com/2025/11/diy-nas-2026-edition.html
132•sashk•4h ago•45 comments

Voyager 1 is about to reach one light-day from Earth

https://scienceclock.com/voyager-1-is-about-to-reach-one-light-day-from-earth/
878•ashishgupta2209•17h ago•305 comments

Music eases surgery and speeds recovery, study finds

https://www.bbc.com/news/articles/c231dv9zpz3o
35•1659447091•2h ago•2 comments

Willis Whitfield: A simple man with a simple solution that changed the world

https://www.sandia.gov/labnews/2024/04/04/willis-whitfield-a-simple-man-with-a-simple-solution-th...
38•rbanffy•2d ago•5 comments

Coq: The World's Best Macro Assembler? [pdf] [2013]

https://nickbenton.name/coqasm.pdf
46•addaon•3h ago•20 comments

G0-G3 corners, visualised: learn what "Apple corners" are

https://www.printables.com/model/1490911-g0-g3-corners-visualised-learn-what-apple-corners
10•dgroshev•3d ago•0 comments

Principles of Vasocomputation

https://opentheory.net/2023/07/principles-of-vasocomputation-a-unification-of-buddhist-phenomenol...
7•eatitraw•1h ago•0 comments

S&box is now an open source game engine

https://sbox.game/news/update-25-11-26
287•MaximilianEmel•11h ago•93 comments

Running Unsupported iOS on Deprecated Devices

https://nyansatan.github.io/run-unsupported-ios/
130•OuterVale•8h ago•43 comments

Mixpanel Security Breach

https://mixpanel.com/blog/sms-security-incident/
7•jaredwiener•38m ago•1 comments

Functional Data Structures and Algorithms: a Proof Assistant Approach

https://fdsa-book.net/
40•SchwKatze•5h ago•5 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
10•gregTurri•2h ago•3 comments

Gemini CLI Tips and Tricks for Agentic Coding

https://github.com/addyosmani/gemini-cli-tips
253•ayoisaiah•13h ago•88 comments

Last Issue of "ECMAScript News"

https://ecmascript.news/archive/es-next-news-2025-11-26.html
5•Klaster_1•1h ago•0 comments

A Fast 64-Bit Date Algorithm (30–40% faster by counting dates backwards)

https://www.benjoffe.com/fast-date-64
314•benjoffe•4d ago•65 comments

C100 Developer Terminal

https://caligra.com/
66•matthewsinclair•8h ago•63 comments

Fara-7B: An efficient agentic model for computer use

https://github.com/microsoft/fara
114•maxloh•12h ago•37 comments

Bring bathroom doors back to hotels

https://bringbackdoors.com/
601•bariumbitmap•9h ago•462 comments

The EU made Apple adopt new Wi-Fi standards, and now Android can support AirDrop

https://arstechnica.com/gadgets/2025/11/the-eu-made-apple-adopt-new-wi-fi-standards-and-now-andro...
405•cyclecount•10h ago•184 comments

DSP 101 Part 1: An Introductory Course in DSP System Design

https://www.analog.com/en/resources/analog-dialogue/articles/dsp-101-part-1.html
32•teleforce•6h ago•3 comments

Evaluating Uniform Memory Access Mode on AMD's Turin

https://chipsandcheese.com/p/evaluating-uniform-memory-access
5•zdw•2h ago•0 comments

Comic Code Reviews

https://www.jona.ca/2025/11/comic-code-reviews.html
54•JonathanAquino•6d ago•29 comments

A woman on a mission to photograph every species of hummingbird

https://www.audubon.org/magazine/meet-woman-mission-photograph-every-species-of-hummingbird-world
120•zeech•4d ago•23 comments

Ruby Was Ready from the Start

https://obie.medium.com/ruby-was-ready-from-the-start-4b089b17babb
41•thunderbong•2d ago•8 comments

A cell so minimal that it challenges definitions of life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
272•ibobev•21h ago•118 comments

Making my 1970's-style renderer multi-threaded

https://filiph.net/text/making-my-1970s-renderer-multi-threaded.html
22•Apocryphon•3d ago•3 comments

Bonsai_term: A library for building dynamic terminal apps by Jane Street

https://github.com/janestreet/bonsai_term
21•azhenley•6h ago•7 comments

Alan.app – Add a Border to macOS Active Window

https://tyler.io/2025/11/alan/
119•donatj•12h ago•68 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

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

Comments

reikonomusha•6mo 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•6mo 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•6mo 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•6mo 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)