frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

It's Always the Process, Stupid

https://its.promp.td/its-always-the-process-stupid/
56•DocIsInDaHouse•1h ago•14 comments

DNS LOC Record (2014)

https://blog.cloudflare.com/the-weird-and-wonderful-world-of-dns-loc-records/
41•mikejeays•1h ago•14 comments

Hachi: An Image Search Engine

https://eagledot.xyz/hachi.md.html
32•warangal•1h ago•3 comments

System 7 natively boots on the Mac mini G4

https://macos9lives.com/smforum/index.php?topic=7711.0
251•ibobev•12h ago•60 comments

WinApps: Run Windows apps as if they were a part of the native Linux OS

https://github.com/winapps-org/winapps
237•klaussilveira•4d ago•109 comments

Build Your Own Router with URLPattern()

https://jschof.dev/posts/2025/11/build-your-own-router/
16•tobr•4d ago•0 comments

WebR – R in the Browser

https://webr.sh/
46•creata•5d ago•8 comments

Airbus A320 – intense solar radiation may corrupt data critical for flight

https://www.airbus.com/en/newsroom/press-releases/2025-11-airbus-update-on-a320-family-precaution...
406•pyrophoenix•17h ago•119 comments

Garfield's Proof of the Pythagorean Theorem

https://en.wikipedia.org/wiki/Garfield%27s_proof_of_the_Pythagorean_theorem
95•benbreen•8h ago•50 comments

Running a Business Means Contact with Reality

https://fredkozlowski.com/2025/11/02/running-a-business-means-contact-with-reality/
28•fkozlowski•3d ago•15 comments

Chainalysis Successful Deanonymization Attack on Monero

https://darkwebinformer.com/chainalysis-successful-deanonymization-attack-on-monero-2/
14•Anon84•3h ago•3 comments

Show HN: Explore what the browser exposes about you

https://neberej.github.io/exposedbydefault/
122•coffeecoders•4d ago•48 comments

Show HN: I built Magiclip – an all-in-one AI studio

https://magiclip.io/
11•kokau•3h ago•2 comments

Every mathematician has only a few tricks (2020)

https://mathoverflow.net/questions/363119/every-mathematician-has-only-a-few-tricks
180•nill0•13h ago•41 comments

Imgur geo-blocked the UK, so I geo-unblocked my network

https://blog.tymscar.com/posts/imgurukproxy/
439•tymscar•21h ago•147 comments

Leak confirms OpenAI is preparing ads on ChatGPT for public roll out

https://www.bleepingcomputer.com/news/artificial-intelligence/leak-confirms-openai-is-preparing-a...
325•fleahunter•4h ago•301 comments

Bronze Age mega-settlement in Kazakhstan has advanced urban planning, metallurgy

https://archaeologymag.com/2025/11/bronze-age-mega-settlement-in-kazakhstan/
6•CGMthrowaway•1w ago•1 comments

High air pollution could diminish exercise benefits by half – study

https://scienceclock.com/exercise-may-protect-less-when-air-pollution-is-high-study-finds/
113•ashishgupta2209•4h ago•43 comments

DMT-induced shifts in criticality correlate with self-dissolution

https://www.jneurosci.org/content/early/2025/10/24/JNEUROSCI.0344-25.2025
38•Anon84•3h ago•20 comments

How stealth addresses work in Monero

https://www.johndcook.com/blog/2025/11/24/monero-stealth-addresses/
51•ibobev•4d ago•32 comments

The CRDT Dictionary: A Field Guide to Conflict-Free Replicated Data Types

https://www.iankduncan.com/engineering/2025-11-27-crdt-dictionary/
15•birdculture•3h ago•0 comments

Confessions of a Software Developer: No More Self-Censorship

https://kerrick.blog/articles/2025/confessions-of-a-software-developer-no-more-self-censorship/
287•Kerrick•17h ago•243 comments

So you wanna build a local RAG?

https://blog.yakkomajuri.com/blog/local-rag
333•pedriquepacheco•22h ago•80 comments

Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
91•gregsadetsky•3d ago•27 comments

Molly: An Improved Signal App

https://molly.im/
374•dtj1123•21h ago•227 comments

The risk of round numbers and sharp thresholds in clinical practice

https://www.nature.com/articles/s41746-025-02079-y
49•asplake•1w ago•19 comments

A triangle whose interior angles sum to zero

https://www.johndcook.com/blog/2025/11/28/tricusp-triangle/
119•tzury•15h ago•55 comments

Language is primarily a tool for communication rather than thought (2024) [pdf]

https://gwern.net/doc/psychology/linguistics/2024-fedorenko.pdf
107•netfortius•1d ago•45 comments

Airloom – 3D Flight Tracker

https://objectiveunclear.com/airloom.html
241•azinman2•22h ago•76 comments

Belgian Police exposed using botnets to manipulate EU data law impact assessment

https://old.reddit.com/r/europe/comments/1p9kxhm/belgian_federal_police_forgot_to_turn_their_vpn/
149•saubeidl•4h ago•27 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)