frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
399•PaulHoule•9h ago•113 comments

UUID package coming to Go standard library

https://github.com/golang/go/issues/62026
170•soypat•7h ago•92 comments

this css proves me human

https://will-keleher.com/posts/this-css-makes-me-human/
254•todsacerdoti•11h ago•86 comments

LLMs work best when the user defines their acceptance criteria first

https://blog.katanaquant.com/p/your-llm-doesnt-write-correct-code
199•dnw•7h ago•169 comments

Galileo's handwritten notes found in ancient astronomy text

https://www.science.org/content/article/galileo-s-handwritten-notes-found-ancient-astronomy-text
114•tzury•1d ago•24 comments

Helix: A post-modern text editor

https://helix-editor.com/
122•doener•9h ago•40 comments

Maybe there's a pattern here?

https://dynomight.net/pattern/
104•surprisetalk•2d ago•65 comments

Querying 3B Vectors

https://vickiboykis.com/2026/02/21/querying-3-billion-vectors/
39•surprisetalk•3d ago•3 comments

Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting

https://github.com/moongate-community/moongatev2
252•squidleon•18h ago•139 comments

Working and Communicating with Japanese Engineers

https://www.tokyodev.com/articles/working-and-communicating-with-japanese-engineers
11•zdw•3d ago•4 comments

The Longing (1999)

https://www.cluetrain.com/book/longing.html
18•herbertl•3d ago•1 comments

Editing changes in patch format with Jujutsu

https://www.knifepoint.net/~kat/kb-jj-patchedit.html
18•cassepipe•2d ago•2 comments

Modernizing swapping: virtual swap spaces

https://lwn.net/Articles/1059201/
22•voxadam•1d ago•8 comments

What canceled my Go context?

https://rednafi.com/go/context-cancellation-cause/
48•mweibel•3d ago•27 comments

Tech employment now significantly worse than the 2008 or 2020 recessions

https://twitter.com/JosephPolitano/status/2029916364664611242
869•enraged_camel•15h ago•577 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
48•c0m4r•9h ago•23 comments

CT Scans of Health Wearables

https://www.lumafield.com/scan-of-the-month/health-wearables
215•radeeyate•18h ago•44 comments

Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

50•sam_palus•14h ago•72 comments

The shady world of IP leasing

https://acid.vegas/blog/the-shady-world-of-ip-leasing/
109•alibarber•11h ago•60 comments

Entomologists use a particle accelerator to image ants at scale

https://spectrum.ieee.org/3d-scanning-particle-accelerator-antscan
127•gmays•17h ago•24 comments

Sarvam 105B, the first competitive Indian open source LLM

https://www.sarvam.ai/blogs/sarvam-30b-105b
15•logicchains•1h ago•0 comments

My application programmer instincts failed when debugging assembler

https://landedstar.com/blog/posts/how-my-application-programmer-instincts-failed-when-debugging-a...
7•lifefeed•1d ago•5 comments

C# strings silently kill your SQL Server indexes in Dapper

https://consultwithgriff.com/dapper-nvarchar-implicit-conversion-performance-trap
97•PretzelFisch•10h ago•68 comments

Hardening Firefox with Anthropic's Red Team

https://www.anthropic.com/news/mozilla-firefox-security
564•todsacerdoti•21h ago•153 comments

A tool that removes censorship from open-weight LLMs

https://github.com/elder-plinius/OBLITERATUS
159•mvdwoord•18h ago•75 comments

Show HN: 1v1 coding game that LLMs struggle with

https://yare.io
21•levmiseri•1d ago•6 comments

A Modular Robot Dashboard

https://github.com/transitiverobotics/transact
18•chfritz•1d ago•0 comments

Tell HN: I'm 60 years old. Claude Code has re-ignited a passion

413•shannoncc•9h ago•287 comments

Workers who love ‘synergizing paradigms’ might be bad at their jobs

https://news.cornell.edu/stories/2026/03/workers-who-love-synergizing-paradigms-might-be-bad-thei...
554•Anon84•19h ago•307 comments

Ada 2022

https://www.adaic.org/ada-resources/standards/ada22/
134•tosh•13h ago•34 comments
Open in hackernews

Using Coalton to implement a quantum compiler (2022)

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

Comments

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