frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pokémon Go Scans Trained the Navigation Tech for Military Drones

https://dronexl.co/2026/06/09/pokemon-go-scans-niantic-vantor-military-drone-navigation/
178•vrganj•2h ago•68 comments

AI agent runs amok in Fedora and elsewhere

https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/
378•tanelpoder•8h ago•133 comments

Macaroni – a single HTML file messenger

https://github.com/vanyapr/makaroshki
39•snowflaxxx•2h ago•35 comments

Cybersecurity researchers aren't happy about the guardrails on Anthropic's Fable

https://techcrunch.com/2026/06/10/cybersecurity-researchers-arent-happy-about-the-guardrails-on-a...
418•speckx•16h ago•368 comments

πFS

https://github.com/philipl/pifs
729•helterskelter•14h ago•173 comments

Anthropic requires 30 day data retention for Fable and Mythos

https://support.claude.com/en/articles/15425996-data-retention-practices-for-mythos-class-models
402•lebovic•1d ago•205 comments

Reverse engineering the Creative Katana soundbar to control it from Linux

https://blog.nns.ee/2026/02/20/katana-v2x-re/
59•theanonymousone•3d ago•2 comments

Starfish by Peter Watts (1999)

https://www.rifters.com/real/STARFISH.htm#prelude
38•zetalyrae•2d ago•7 comments

Linux latency measurements and compositor tuning

https://farnoy.dev/posts/linux-latency
18•GalaxySnail•1d ago•1 comments

Sequoyah’s syllabary created a written language for the Cherokee

https://www.smithsonianmag.com/innovation/man-created-written-language-cherokee-did-efficiently-e...
152•grahambargeron•10h ago•91 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

650•eries•18h ago•486 comments

Vacuum-Form Signage

https://bethmathews.substack.com/p/the-history-behind-the-signs-lighting
65•benbreen•1d ago•11 comments

PgDog is funded and coming to a database near you

https://pgdog.dev/blog/our-funding-announcement
452•levkk•18h ago•221 comments

How JPL keeps the 13-year-old Curiosity rover doing science

https://spectrum.ieee.org/curiosity-rover-jpl-mars-science
224•pseudolus•15h ago•62 comments

Sweet Jeebus, macOS 27 Golden Gate Removes the Dumb Icons from Menu Items

https://daringfireball.net/2026/06/macos_27_golden_gate_removes_the_dumb_icons_from_menu_items
26•epaga•1h ago•7 comments

GeoLibre 1.0

https://geolibre.app/
237•jonbaer•15h ago•21 comments

Klondike Solitaire game for curses in 5k of C

https://nanochess.org/klondike_in_c.html
70•nanochess•2d ago•8 comments

L'Affaire Siloxane

https://mceglowski.substack.com/p/laffaire-siloxane
223•idlewords•2d ago•38 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
206•kbyatnal•16h ago•47 comments

Who's the smartest corvid?

https://thetyee.ca/Culture/2026/06/05/Whos-the-Smartest-Corvid/
101•NaOH•1d ago•88 comments

World Capitals Voronoi

https://www.jasondavies.com/maps/voronoi/capitals/
85•vincnetas•2d ago•39 comments

Building an HTML-first site doubled our users overnight

https://mohkohn.co.uk/writing/html-first/
1118•edent•20h ago•505 comments

Raspberry Pi 5 – 16GB RAM

https://www.adafruit.com/product/6125?src=raspberrypi
255•akman•12h ago•261 comments

Apache Burr: Build reliable AI agents and applications

https://burr.apache.org/
215•anhldbk•17h ago•106 comments

What is it like to be a bat? (1974) [pdf]

https://www.sas.upenn.edu/~cavitch/pdf-library/Nagel_Bat.pdf
87•shadow28•12h ago•92 comments

The Road to the WASM Component Model 1.0

https://bytecodealliance.org/articles/the-road-to-component-model-1-0
77•emschwartz•2d ago•58 comments

Show HN: HelixDB – A graph database built on object storage

https://github.com/HelixDB/helix-db/tree/main
122•GeorgeCurtis•17h ago•36 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
29•12_throw_away•7h ago•13 comments

CSS: Unavoidable Bad Parts

https://matklad.github.io/2026/06/04/css-unavoidable-bad-parts.html
70•surprisetalk•1d ago•24 comments

All 9,300 Japanese train station, animated by the year it opened (1872–2026)

https://jivx.com/eki
238•momentmaker•20h ago•79 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)