frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Replace your boss before they replace you

https://replaceyourboss.ai/
163•_tk_•1h ago•40 comments

Same-day upstream Linux support for Snapdragon 8 Elite Gen 5

https://www.qualcomm.com/developer/blog/2025/10/same-day-snapdragon-8-elite-gen-5-upstream-linux-...
193•mfilion•3h ago•87 comments

The Input Stack on Linux: An End-to-End Architecture Overview

https://venam.net/blog/unix/2025/11/27/input_devices_linux.html
68•venamresm__•3h ago•3 comments

Quake Engine Indicators

https://fabiensanglard.net/quake_indicators/index.html
103•liquid_x•3d ago•18 comments

Memories of .us

https://computer.rip/2025-11-11-dot-us.html
23•sabas_ge•1d ago•0 comments

Why Strong Consistency?

https://brooker.co.za/blog/2025/11/18/consistency.html
23•SchwKatze•21h ago•10 comments

Linux Kernel Explorer

https://reverser.dev/linux-kernel-explorer
469•tanelpoder•13h ago•70 comments

Penpot: The Open-Source Figma

https://github.com/penpot/penpot
613•selvan•17h ago•143 comments

Tell HN: Happy Thanksgiving

220•prodigycorp•14h ago•51 comments

Show HN: Runprompt – run .prompt files from the command line

https://github.com/chr15m/runprompt
69•chr15m•5h ago•26 comments

Feedback doesn't scale

https://another.rodeo/feedback/
22•ohjeez•1d ago•0 comments

The VanDersarl Blériot: a 1911 airplane homebuilt by teenage brothers

https://www.historynet.com/vandersarl-bleriot/
21•ForHackernews•3h ago•12 comments

Pakistan says rooftop solar output to exceed grid demand in some hubs next year

https://www.reuters.com/sustainability/boards-policy-regulation/pakistan-says-rooftop-solar-outpu...
89•toomuchtodo•3h ago•60 comments

Inspired by Spider-Man, scientists recreate web-slinging technology

https://scienceclock.com/inspired-by-spider-man-scientists-recreate-web-slinging-technology/
10•ohjeez•23h ago•1 comments

TPUs vs. GPUs and why Google is positioned to win AI race in the long term

https://www.uncoveralpha.com/p/the-chip-made-for-the-ai-inference
117•vegasbrianc•6h ago•143 comments

Mixpanel Security Breach

https://mixpanel.com/blog/sms-security-incident/
174•jaredwiener•12h ago•99 comments

Cherry gives up German production and wants to sell core division

https://www.heise.de/en/news/Cherry-gives-up-German-production-and-wants-to-sell-core-division-11...
25•jsheard•1h ago•18 comments

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

https://nickbenton.name/coqasm.pdf
120•addaon•15h ago•53 comments

Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)

https://github.com/Dancode-188/synckit
46•danbitengo•5h ago•21 comments

DIY NAS: 2026 Edition

https://blog.briancmoses.com/2025/11/diy-nas-2026-edition.html
343•sashk•17h ago•217 comments

Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs

https://github.com/MartenBE/mkslides
52•MartenBE•6h ago•7 comments

The current state of the theory that GPL propagates to AI models

https://shujisado.org/2025/11/27/gpl-propagates-to-ai-models-trained-on-gpl-code/
129•jonymo•7h ago•167 comments

Ray Marching Soft Shadows in 2D (2020)

https://www.rykap.com/2020/09/23/distance-fields/
155•memalign•12h ago•27 comments

Interactive λ-Reduction

https://deltanets.org/
100•jy14898•2d ago•21 comments

Music eases surgery and speeds recovery, study finds

https://www.bbc.com/news/articles/c231dv9zpz3o
163•1659447091•15h ago•80 comments

Technical Deflation

https://benanderson.work/blog/technical-deflation/
52•0x79de•3d ago•53 comments

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

https://www.printables.com/model/1490911-g0-g3-corners-visualised-learn-what-apple-corners
114•dgroshev•4d ago•57 comments

We're losing our voice to LLMs

https://tonyalicea.dev/blog/were-losing-our-voice-to-llms/
289•TonyAlicea10•5h ago•327 comments

Gemini CLI Tips and Tricks for Agentic Coding

https://github.com/addyosmani/gemini-cli-tips
373•ayoisaiah•1d ago•129 comments

Willis Whitfield: Creator of clean room technology still in use today (2024)

https://www.sandia.gov/labnews/2024/04/04/willis-whitfield-a-simple-man-with-a-simple-solution-th...
136•rbanffy•2d ago•53 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)