frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to Build a Minimal ZFS NAS Without Synology, QNAP, TrueNAS (2024)

https://neil.computer/notes/how-to-setup-minimal-zfs-nas-without-truenas/
108•4diii•2h ago•57 comments

Tenda firmware (multiple versions) contains hidden authentication backdoor

https://kb.cert.org/vuls/id/213560
147•miniBill•6h ago•39 comments

Copy That Floppy – Cambridge guide for preserving data from fragile floppy disks

https://www.digipres.org/the-floppy-guide/
31•whiteblossom•3h ago•6 comments

GAO: DOE Is Prematurely Excluding Less Expensive Options for Nuclear Cleanup

https://www.gao.gov/products/gao-26-108193
181•Jimmc414•8h ago•76 comments

Structure and Interpretation of Computer Programs Video Lectures (1986)

https://ocw.mit.edu/courses/6-001-structure-and-interpretation-of-computer-programs-spring-2005/v...
126•gjvc•6h ago•10 comments

Canada's only watchmaking school still ticking after 80 years

https://www.cbc.ca/news/canada/montreal/canada-s-only-watchmaking-school-9.7254211
108•throw0101a•3d ago•43 comments

Local, CPU-Friendly, High-Quality TTS (Text-to-Speech) with Kokoro

https://ariya.io/2026/03/local-cpu-friendly-high-quality-tts-text-to-speech-with-kokoro/
372•speckx•12h ago•74 comments

Chat Control 1.0 and 2.0 Explained

https://fightchatcontrol.eu/chat-control-overview
558•gasull•16h ago•184 comments

GPT-5.6 Sol, along with Terra and Luna, will launch publicly this Thursday

https://twitter.com/OpenAI/status/2074704958419792299
114•jfrbfbreudh•2h ago•44 comments

Show HN: Neil the Seal Game

https://neiltheseal.app/
33•dalemhurley•2d ago•32 comments

The difference between "today's task" and "accretive work"

https://pluralistic.net/2026/07/02/canonization/
21•hn_acker•5d ago•8 comments

Pure-Python symbolic regression that rediscovered Kepler's law from 8 data point

https://github.com/ariel95500-create/gp-elite
32•sade_95•5d ago•11 comments

30papers.com – Ilya's 30 essential ML papers, in a beginner friendly format

https://30papers.com/
457•notmcrowley•14h ago•71 comments

Herdr: One terminal to rule them all

https://herdr.dev/
241•handfuloflight•6d ago•108 comments

Show HN: Davit, a Apple Containers UI

https://davit.app
270•xinit•11h ago•59 comments

Is The Economist Always Wrong?

https://www.economist.com/interactive/finance-and-economics/2026/07/02/is-the-economist-always-wrong
117•nreece•4h ago•96 comments

Show HN: Chiptune Radio

https://chiptune-radio.alephvoid.com/
40•bootbloopers•5h ago•7 comments

LineageOS Statistics

https://stats.lineageos.org
33•pentagrama•5h ago•12 comments

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos

https://noma.security/blog/gitlost-how-we-tricked-githubs-ai-agent-into-leaking-private-repos/
10•ColinEberhardt•1h ago•1 comments

l: A new runtime for k and q

https://lv1.sh/
129•skruger•12h ago•73 comments

Show HN: Rowboat – Open-source, local-first alternative to Claude Desktop

https://github.com/rowboatlabs/rowboat
139•segmenta•14h ago•39 comments

Scheme Is a Hoot

https://gracefulliberty.com/notes/scheme-is-a-hoot/
60•signa11•2d ago•5 comments

Every new car sold in the European Union must include a driver monitoring camera

https://allaboutcookies.org/eu-mandatory-distracted-driver-system
543•nickslaughter02•9h ago•704 comments

Out of the Armchair

https://literaryreview.co.uk/out-of-the-armchair
3•Thevet•6d ago•0 comments

IEEE Rolls Out Large Language Models Training Course

https://spectrum.ieee.org/large-language-models-ieee-course
56•JeanKage•1w ago•8 comments

Jim's TrueType QR Code Font

https://github.com/jimparis/qr-font
165•arantius•14h ago•21 comments

Why skilled workers come to Germany and then leave again

https://www.dw.com/en/germany-migrants-skilled-workers-integration-labor-market-bureaucracy-langu...
224•theanonymousone•19h ago•575 comments

We're extending access to Fable 5 on all paid plans through July 12

https://twitter.com/claudeai/status/2074548242386178258
150•minimaxir•12h ago•161 comments

Notes on Software Quality

https://anthonyhobday.com/blog/20260410
114•speckx•12h ago•50 comments

StreetComplete: Fixing OpenStreetMap, one tiny quest at a time

https://streetcomplete.app/
733•kls0e•17h ago•173 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)