frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't Paste the AI, please

https://dontpastetheai.com/
776•pjerem•5h ago•386 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
289•emctech•3h ago•96 comments

Malicious Rust Crate Arrayref Runs a Build-Time Payload

https://safedep.io/arrayref-proc-macro1-rust-build-time-malware/
36•abhisek•34m ago•5 comments

Show HN: I trained a 125M model to autocomplete piano on-device

https://simedw.com/2026/08/20/midi-autocomplete/
111•simedw•1h ago•28 comments

Windows brings out the Rorschach test in everyone (2003)

https://devblogs.microsoft.com/oldnewthing/20030825-00/?p=42803
272•luu•7h ago•99 comments

OpenRouter is joining Stripe

https://openrouter.ai/blog/announcements/openrouter-is-joining-stripe/
912•rvz•20h ago•469 comments

Seeing beyond BMI: Estimating cardiometabolic risk with smartphone imagery

https://research.google/blog/seeing-beyond-bmi-estimating-cardiometabolic-risk-with-smartphone-im...
24•leanderjanssen•2h ago•8 comments

Turns are Better than Radians (2022)

https://www.computerenhance.com/p/turns-are-better-than-radians
277•mayoff•12h ago•147 comments

Google has stopped pushing Git tags for some Android source code

https://grapheneos.social/@GrapheneOS/117057099753905023
715•Animux•20h ago•278 comments

Proof of Human (YC S23) Is Hiring a Member of Technical Staff

https://www.ycombinator.com/companies/proof-of-human/jobs/ZTZHEbb-member-of-technical-staff
1•timshell•1h ago

Go 1.27

https://go.dev/blog/go1.27
714•database64128•19h ago•217 comments

DiffusionGemma Technical Report

https://arxiv.org/abs/2608.00146
4•gmays•33m ago•0 comments

A faster way to calculate the day of the week

https://www.benjoffe.com/fast-day-of-week
208•gavide•3d ago•49 comments

Risk Engineering

https://risk-engineering.org/
26•throwaw12•3h ago•4 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
973•kareiva•1d ago•157 comments

Show HN: Streambench – Native Mac Client for Kafka and NATS

https://streambench.app
9•valentinprgnd•5d ago•1 comments

Manabu Kosaka's Handmade Paper Sculptures

https://coca11272000.wixsite.com/manabukosaka
164•surprisetalk•23h ago•19 comments

Canonical Backs New Project to Translate Large C Codebases into Safe Rust

https://linuxiac.com/canonical-backs-new-project-to-translate-large-c-codebases-into-safe-rust/
10•datakan•45m ago•2 comments

Browser De-Slop

https://www.sacredheartsc.com/blog/browser-de-slop/
27•cullumsmith•1h ago•23 comments

Unsloth Dynamic 3.0 GGUFs

https://unsloth.ai/docs/basics/dynamic-3.0-ggufs
304•jonesy827•19h ago•106 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
240•1e1a•18h ago•57 comments

UK internet age checks have boosted rogue adult sites, says Pornhub

https://www.ft.com/content/295c2eba-da29-434d-84e0-e9de3b0b1cc2
13•thm•56m ago•3 comments

Casio F-B100W-1A

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
428•__fst__•22h ago•354 comments

Sol loves to cheat

https://jumploops.com/blog/sol-loves-to-cheat/
208•jumploops•1d ago•170 comments

The Chauffeur Problem

https://engines.egr.uh.edu/episode/1495
41•leowoo91•3d ago•22 comments

Australia passes law to levy tech giants that fail to pay for local news

https://www.reuters.com/legal/litigation/australia-passes-law-levy-tech-giants-that-fail-pay-loca...
36•thm•2h ago•21 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
504•yassa9•1d ago•82 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
409•karlmush•1d ago•237 comments

fx :Tiny, open, native coding agent.

https://fx.sh
299•handfuloflight•1d ago•128 comments

Filtered Vector Search: What Acorn Fixes, and What Fixes Acorn

https://qdrant.tech/articles/filtered-vector-search-acorn/
7•softwaredoug•4d ago•0 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)