frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask for no, don't ask for yes (2022)

https://www.mooreds.com/wordpress/archives/3518
36•skogstokig•1h ago•11 comments

JSON-LD Explained for Personal Websites

https://hawksley.dev/blog/json-ld-explained-for-personal-websites/
100•ethanhawksley•2h ago•23 comments

Prefer duplication over the wrong abstraction (2016)

https://sandimetz.com/blog/2016/1/20/the-wrong-abstraction
364•rafaepta•5h ago•247 comments

Beyond All Reason (Free Total Annihilation Inspired RTS)

https://www.beyondallreason.info
381•mosiuerbarso•9h ago•223 comments

(How to Write a (Lisp) Interpreter (In Python)) (2010)

https://norvig.com/lispy.html
144•tosh•5h ago•42 comments

Identity verification on Claude

https://support.claude.com/en/articles/14328960-identity-verification-on-claude
409•bathory•8h ago•369 comments

The minimum viable unit of saleable software

https://brandur.org/minimum-viable-unit
86•brandur•4h ago•37 comments

An Embedded Linux on a Single Floppy

https://github.com/w84death/floppinux
40•modinfo•2d ago•18 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
19•zhubert•2h ago•20 comments

Occupancy Math on the AMD MI355X: A From-First-Principles Guide

https://indianspeedster.github.io/blog/occupancy-math-mi355x/
35•skidrow•4d ago•3 comments

Cocktail Optimization, an Integer Programming Problem

https://bunkum.us/2026/06/18/cocktail-ingredients-milp
16•ftgregg•2d ago•2 comments

Tell HN: Happy Fathers Day

140•consumer451•4h ago•22 comments

Wildcard (YC W25) is hiring an applied ML engineer

https://www.ycombinator.com/companies/wildcard/jobs/SEmo4di-founding-applied-ml-engineer
1•kaushikmahorker•4h ago

A 3D voxel game engine written in APL

https://github.com/namgyaaal/avoxelgame
139•sph•13h ago•12 comments

15-minute at-home Lyme disease tick test

https://www.bostonglobe.com/2026/06/17/business/lyme-disease-tick-test/
217•bookofjoe•3d ago•145 comments

Loupe – A iOS app that raises awareness about what native apps can see

https://github.com/mysk-research/loupe
495•Cider9986•1d ago•206 comments

Developers don't understand CORS (2019)

https://fosterelli.co/developers-dont-understand-cors
333•toilet•19h ago•249 comments

System call instrumentation on Linux/x86‑64 using memory‑indirect calls, part I

https://www.humprog.org/~stephen/blog/2026/06/15/#system-call-instrumentation-on-intel-negative-r...
37•matt_d•4d ago•14 comments

Show HN: TownSquare, a tiny presence layer for websites

https://townsquare.cauenapier.com/
237•cauenapier•1d ago•135 comments

Running MicroVMs in Proxmox VE, the Easy Way

https://taoofmac.com/space/blog/2026/06/18/1845
197•zdw•2d ago•33 comments

Proportional-Integral-Derivative (PID) controllers

https://en.wikipedia.org/wiki/PID_controller
81•dhorthy•2d ago•46 comments

Slow breathing modulates brain function and risk behavior

https://www.cell.com/neuron/fulltext/S0896-6273(26)00339-9
359•croes•23h ago•102 comments

Excessive nil pointer checks in Go

https://konradreiche.com/blog/excessive-nil-pointer-checks-in-go/
88•ingve•3d ago•65 comments

Show HN: Pulse – Dashboard for Claude Code, approve tool calls from your phone

https://github.com/nikitadoudikov/claude-pulse
24•nikitadvd•1d ago•11 comments

Burnout is real for open source maintainers

https://openjsf.org/blog/burnout-is-real-for-open-source-maintainers
108•theanonymousone•4h ago•51 comments

Fossil Fuels Are 40% of Freight Shipping Tonnage, but Half Its Fuel Use

https://cleantechnica.com/2026/06/16/shipping-freight-energy-fossil-cargo/
135•choult•6h ago•98 comments

The brain was not designed for this much bad news

https://www.sciencedaily.com/releases/2026/06/260614012006.htm
350•colinprince•17h ago•294 comments

Renting a sewing machine from the library

https://www.bbc.com/future/article/20260618-the-weird-and-wonderful-libraries-of-finland
327•sohkamyung•22h ago•194 comments

Djevops: Self-Host Django Easily

https://github.com/mherrmann/djevops
6•mherrmann•3d ago•2 comments

Epoll vs. io_uring in Linux

https://sibexi.co/posts/epoll-vs-io_uring/
247•Sibexico•22h ago•59 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)