frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Steam Machine launches today

https://store.steampowered.com/news/group/45479024/view/685257114654870245
1469•theschwa•13h ago•1292 comments

Will It Mythos?

https://swelljoe.com/post/will-it-mythos/
110•mindingnever•2h ago•61 comments

GLM-5.2 – How to Run Locally

https://unsloth.ai/docs/models/glm-5.2
324•TechTechTech•9h ago•141 comments

VibeThinker: 3B param model that beats Opus 4.5 on reasoning with novel SFT+GRPO

https://arxiv.org/abs/2606.16140
132•timhigins•5h ago•45 comments

Polymarket has flooded social media with deceptive videos by paid creators

https://www.wsj.com/business/media/polymarket-social-media-bets-prediction-market-441cdeb5?st=HhTZY2
196•Vaslo•2d ago•152 comments

In praise of memcached

https://jchri.st/blog/in-praise-of-memcached/
123•j03b•5h ago•45 comments

An Introduction to YOLO26

https://blog.roboflow.com/yolo26/
58•teleforce•5h ago•15 comments

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
11•CommonGuy•1h ago•2 comments

OpenAI DayBreak – GPT-5.5-Cyber

https://openai.com/index/daybreak-securing-the-world/
47•AaronO•5h ago•12 comments

Optocam Zero: a Pi Zero based digital camera made using off the shelf components

https://github.com/dorukkumkumoglu/optocamzero
157•iamnothere•11h ago•39 comments

Ultralytics YOLO26: Unified Real-Time End-to-End Vision Models

https://arxiv.org/abs/2606.03748
31•teleforce•4h ago•3 comments

My Mathematical Regression

https://blog.dahl.dev/posts/my-mathematical-regression/
268•aleda145•3d ago•103 comments

Cyberdecks, going analog, and convivial technology

https://blog.hydroponictrash.solar/cyberdecks-going-analog-and-convivial-technology/
87•akkartik•3d ago•44 comments

Moebius: 0.2B image inpainting model with 10B-level performance

https://hustvl.github.io/Moebius/
275•DSemba•17h ago•68 comments

Japanese symbols that speak without words

https://arun.is/blog/japan-symbols/
163•msephton•11h ago•86 comments

Windows NT for GameCube/Wii

https://github.com/Wack0/entii-for-workcubes
53•zdw•3d ago•9 comments

Ask HN: Anthropic banned me from using Claude Code and I don't know what to do

11•ayi•35m ago•3 comments

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
179•zdgeier•15h ago•159 comments

Package Managers need global hooks

https://captnemo.in/blog/2026/06/17/package-managers-need-hooks/
16•evakhoury•4d ago•20 comments

Canada plans 'nuclear renaissance' with up to 10 reactors built by 2040

https://www.cbc.ca/news/politics/federal-nuclear-strategy-9.7244509
434•geox•12h ago•276 comments

How Lume Works: The Retrieval Primitives

https://deepbluedynamics.com/blog/lume-retrieval-primitives
4•kordlessagain•2d ago•0 comments

Canyon HUD helmet for road riding

https://media-centre.canyon.com/en-INT/266866-new-canyon-heads-up-display-helmet-could-be-a-safet...
89•zh3•2d ago•101 comments

Flock-Powered Police Chiefs Stalking Women Shows Why Warrants Are Needed

https://ipvm.com/reports/police-chiefs-track
482•jhonovich•11h ago•198 comments

1,700 free online courses from top universities

https://www.openculture.com/freeonlinecourses
161•momentmaker•5h ago•32 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
178•HaxleRose•18h ago•112 comments

Kyber (YC W23) Is Hiring a Head of Engineering

https://www.ycombinator.com/companies/kyber/jobs/FGmI8mx-head-of-engineering
1•asontha•10h ago

ytr: YouTube Radio for Emacs

https://xenodium.com/ytr-youtube-radio-for-emacs
96•xenodium•9h ago•9 comments

Help I accidentally a wigglegram

https://lmao.center/blog/wiggle-accidents/
525•gregsadetsky•3d ago•121 comments

Chevron signs 20-year power agreement with Microsoft for West Texas data center

https://www.chevron.com/newsroom/2026/q2/chevron-signs-20-year-power-agreement-with-microsoft-for...
141•cdrnsf•17h ago•126 comments

Deno Desktop

https://docs.deno.com/runtime/desktop/
1057•GeneralMaximus•1d ago•381 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)