frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI is just unauthorised plagiarism at a bigger scale

https://axelk.ee/ai-is-just-unauthorised-plagiarism-at-a-bigger-scale/
168•speckx•43m ago•65 comments

Flipper One – we need your help

https://blog.flipper.net/flipper-one-we-need-your-help/
418•sandebert•3h ago•234 comments

Google's Antigravity Bait and Switch

https://www.0xsid.com/blog/antigravity-bait-n-switch
31•ssiddharth•31m ago•5 comments

Google officially announces that ads will be included in AI Mode search results

https://blog.google/products/ads-commerce/google-marketing-live-search-ads/
332•sofumel•4h ago•281 comments

Python 3.15: features that didn't make the headlines

https://blog.changs.co.uk/python-315-features-that-didnt-make-the-headlines.html
129•rbanffy•3h ago•60 comments

Lost Images from the 1945 Trinity Nuclear Test Restored

https://spectrum.ieee.org/trinity-nuclear-test
74•pseudolus•3h ago•17 comments

Hating AI Is Good

https://www.thehandbasket.co/p/hating-ai-is-good-actually
159•cdrnsf•46m ago•141 comments

Who Wins and Who Loses in Prediction Markets? Evidence from Polymarket

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6443103
16•vcf•1h ago•4 comments

Show HN: Rmux – A programmable terminal multiplexer with a Playwright-style SDK

https://github.com/helvesec/rmux
118•shideneyu•5h ago•58 comments

FatGid: FreeBSD 14.x kernel local privilege escalation

https://fatgid.io/
25•WhyNotHugo•2h ago•0 comments

An OpenAI model has disproved a central conjecture in discrete geometry

https://openai.com/index/model-disproves-discrete-geometry-conjecture/
1285•tedsanders•19h ago•934 comments

Cekura (YC F24) Is Hiring

https://www.ycombinator.com/companies/cekura-ai/jobs/AiWwUxI-forward-deployed-engineer-us
1•atarus•2h ago

US employers spend more than $1.5B a year to fight labor unions, report finds

https://www.theguardian.com/us-news/2026/may/20/how-much-companies-spend-fight-unions
48•robtherobber•56m ago•9 comments

GitHub confirms breach of 3,800 repos via malicious VSCode extension

https://www.bleepingcomputer.com/news/security/github-confirms-breach-of-3-800-repos-via-maliciou...
946•Timofeibu•1d ago•399 comments

Magic the Gathering format: Fun 40

https://fabiensanglard.net/mtg/fun//index.html
17•ibobev•1h ago•10 comments

IBM invented semiconductor manufacturing automation

https://spectrum.ieee.org/semiconductor-fabrication
19•rbanffy•3h ago•0 comments

What Do Gödel's Incompleteness Theorems Mean?

https://www.quantamagazine.org/what-do-godels-incompleteness-theorems-truly-mean-20260518/
41•baruchel•2d ago•10 comments

No Slop Grenade

https://noslopgrenade.com/
181•napolux•4h ago•95 comments

Show HN: I reverse engineered Apple's video wallpapers

https://github.com/kageroumado/phosphene
352•kageroumado•14h ago•81 comments

Haskell Foundation 2026 Update

https://discourse.haskell.org/t/haskell-foundation-2026-update/14136
151•azhenley•12h ago•52 comments

Flipper One Tech Specs

https://docs.flipper.net/one/general/tech-specs
457•gregsadetsky•19h ago•150 comments

The Letter S, by Donald Knuth (1980) [pdf]

https://gwern.net/doc/design/typography/1980-knuth.pdf
225•bambax•14h ago•38 comments

DOS Zone

https://dos.zone/
304•rglover•15h ago•70 comments

All the bugs they found

https://andreapivetta.com/posts/all-the-bugs-they-found.html
66•ziggy42•2d ago•23 comments

New features in GCC 16: Improved error messages and SARIF output

https://developers.redhat.com/articles/2026/04/28/gcc-16-improved-error-messages-sarif-output
114•siteshwar•2d ago•19 comments

Fender escalates legal campaign against S-style guitars

https://www.guitarworld.com/gear/electric-guitars/fender-cease-and-desist-lsl-instruments
75•rectang•2d ago•61 comments

A Bipartisan Amendment Would End Police License Plate Tracking Nationwide

https://www.wired.com/story/a-bipartisan-amendment-would-end-police-license-plate-tracking-nation...
20•cdrnsf•1h ago•1 comments

Anthropic is expanding to Colossus2. Will use GB200

https://twitter.com/nottombrown/status/2057194829986300375
252•aurareturn•17h ago•278 comments

How fast is N tokens per second really?

https://mikeveerman.github.io/tokenspeed/
457•hexagr•3d ago•94 comments

Recreate famous water profiles using supermarket bottled water

https://www.waterdictionary.net
90•smugglerFlynn•2d ago•42 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)