frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Void: Open-source Cursor alternative

https://github.com/voideditor/void
417•sharjeelsayed•5h ago•191 comments

Reservoir Sampling

https://samwho.dev/reservoir-sampling/
205•chrisdemarco•4h ago•45 comments

From: Steve Jobs. "Great idea, thank you."

https://blog.hayman.net/2025/05/06/from-steve-jobs-great-idea.html
433•mattl•3h ago•112 comments

Notes on rolling out Cursor and Claude Code

https://ghiculescu.substack.com/p/nobody-codes-here-anymore
105•jermaustin1•5h ago•32 comments

Progress toward fusion energy gain as measured against the Lawson criteria

https://www.fusionenergybase.com/articles/continuing-progress-toward-fusion-energy-breakeven-and-gain-as-measured-against-the-lawson-criteria
116•sam•6h ago•40 comments

Stability by Design

https://potetm.com/devtalk/stability-by-design.html
22•potetm•1h ago•6 comments

When Abandoned Mines Collapse

https://practical.engineering/blog/2025/5/6/when-abandoned-mines-collapse
85•impish9208•2d ago•11 comments

Block Diffusion: Interpolating Autoregressive and Diffusion Language Models

https://m-arriola.com/bd3lms/
21•t55•3h ago•3 comments

The Rise and Fall of the Visual Telegraph (2017)

https://parisianfields.com/2017/11/05/the-rise-and-fall-of-the-visual-telegraph/
14•geox•2h ago•2 comments

First American pope elected and will be known as Pope Leo XIV

https://www.cnn.com/world/live-news/new-pope-conclave-day-two-05-08-25
359•saikatsg•5h ago•575 comments

Static as a Server

https://overreacted.io/static-as-a-server/
54•danabramov•4h ago•34 comments

Using NASA’s SMAP satellite to detect L-band interference

https://radioandnukes.substack.com/p/how-dare-you-transmit-at-14-ghz
283•c16•12h ago•63 comments

Mathematical Problem Solving

https://www.cip.ifi.lmu.de/~grinberg/t/20f/
28•ibobev•3d ago•0 comments

The second birth of JMW Turner

https://www.newstatesman.com/culture/art-design/2025/04/the-second-birth-of-jmw-turner
5•prismatic•2d ago•0 comments

Ciro (YC S22) is hiring a software engineer to build AI agents for sales

https://www.ycombinator.com/companies/ciro/jobs
1•dwiner•4h ago

Implementing State Machines in PostgreSQL (2017)

https://felixge.de/2017/07/27/implementing-state-machines-in-postgresql/
6•todsacerdoti•1h ago•0 comments

Show HN: Using eBPF to see through encryption without a proxy

https://github.com/qpoint-io/qtap
153•tylerflint•5h ago•46 comments

Ask HN: What are good high-information density UIs (screenshots, apps, sites)?

333•troupo•8h ago•270 comments

How Obama’s BlackBerry got secured (2013)

https://www.electrospaces.net/2013/04/how-obamas-blackberry-got-secured.html
176•lastdong•3d ago•64 comments

Shape and topology morphing of closed surfaces integrating origami and kirigami

https://www.science.org/doi/10.1126/sciadv.ads5659
12•bryanrasmussen•2d ago•2 comments

Egyptologist uncovers hidden messages on Paris’s iconic obelisk

https://news.artnet.com/art-world/hidden-messages-paris-luxor-obelisk-2636508
67•isaacfrond•13h ago•65 comments

How to harden GitHub Actions

https://www.wiz.io/blog/github-actions-security-guide
184•moyer•2d ago•58 comments

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
46•andsoitis•3d ago•4 comments

AI focused on brain regions recreates what you're looking at (2024)

https://www.newscientist.com/article/2438107-mind-reading-ai-recreates-what-youre-looking-at-with-amazing-accuracy/
38•openquery•2d ago•23 comments

My new deadline: 20 years to give away virtually all my wealth

https://www.gatesnotes.com/home/home-page-topic/reader/n20-years-to-give-away-virtually-all-my-wealth
465•nrvn•7h ago•499 comments

My stackoverflow question was closed so here's a blog post about CoreWCF

https://richardcocks.github.io/2025-05-08-CoreWCF.html
79•eterm•9h ago•113 comments

How to start a school with your friends

https://prigoose.substack.com/p/how-to-start-a-university
7•geverett•2h ago•2 comments

Google to back three new nuclear projects

https://www.esgtoday.com/google-to-back-three-new-advanced-nuclear-projects/
252•aburan28•8h ago•263 comments

IPinfo started offering free unlimited country-level geolocation and ASN details

https://ipinfo.io/lite
17•tnr23•5h ago•3 comments

DNA is maybe 60-750MB of data

https://dynomight.net/dna/
16•MattSayar•6h ago•3 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

https://coalton-lang.github.io/20220906-quantum-compiler/
45•andsoitis•3d ago

Comments

reikonomusha•5h 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•4h 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•4h 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•5h 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)