frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Midjourney Medical

https://www.midjourney.com/medical/blogpost
132•ricochet11•1h ago•131 comments

Lore – Open source version control system designed for scalability

https://lore.org/
1010•regnerba•12h ago•547 comments

Taxonomy of the Occlupanida (parasitoids on bread bag tags)

https://www.horg.com/horg/?page_id=921
77•beatthatflight•3h ago•12 comments

US holds off blacklisting DeepSeek, more than 100 firms deemed security risks

https://www.reuters.com/world/china/us-holds-off-blacklisting-chinas-deepseek-more-than-100-firms...
380•giuliomagnifico•23h ago•409 comments

Storied Colors – a catalogue of named colors

https://storiedcolors.com/
107•susiecambria•5h ago•24 comments

Clojure Hosted on Go

https://github.com/glojurelang/glojure
38•dnlo•3h ago•5 comments

U.S. science is in chaos

https://www.scientificamerican.com/article/americas-compact-between-science-and-politics-is-broken/
711•presspot•17h ago•840 comments

Show HN: We built an 8-bit CPU as 2nd year EE students

https://github.com/c0rRupT9/STEPLA-1
35•CorRupT9•2d ago•7 comments

How we run Firecracker VMs inside EC2 and start browsers in less than 1s

https://browser-use.com/posts/firecracker-browser-infra
218•gregpr07•1d ago•144 comments

Launch HN: Adam (YC W25) – Open-Source AI CAD

https://github.com/Adam-CAD/CADAM
161•zachdive•10h ago•84 comments

Loreline – Tools for writing interactive fiction

https://loreline.app/en/
81•smartmic•6h ago•10 comments

[x86] AI Compute Extensions (ACE) Specification

https://x86ecosystem.org/resource/ai-compute-extensions-ace-specification/
4•matt_d•34m ago•0 comments

RFC 10008: The new HTTP Query Method

https://www.rfc-editor.org/info/rfc10008/
329•schappim•16h ago•144 comments

Show HN: An 8-bit live gamecast for baseball

https://ribbie.tv/watch
209•brownrout•10h ago•119 comments

Tesco moving 40k server workloads off VMware amid Broadcom's abusive conduct

https://arstechnica.com/information-technology/2026/06/tesco-moving-40000-server-workloads-off-vm...
184•Bender•6h ago•106 comments

How Madrid built its metro cheaply

https://worksinprogress.co/issue/how-madrid-built-its-metro-cheaply/
40•trymas•7h ago•10 comments

ChatGPT's image generator can be manipulated to produce violent, sexual content

https://mindgard.ai/blog/chatgpt-spontaneously-generated-violent-images-from-a-viral-prompt
59•dijksterhuis•2h ago•80 comments

Show HN: Spin Lab

https://srijanshukla.com/artifacts/spin-lab/
6•srijanshukla18•1d ago•0 comments

Volkswagen started blocking GrapheneOS users

https://discuss.grapheneos.org/d/35949-volkswagen-app?page=3
511•microtonal•12h ago•343 comments

A robot is sprinting towards you. Do you want it running on Claude or Grok?

https://openrouter.ai/blog/insights/royale-last-agent-standing/
184•Usu•6h ago•154 comments

Why thinking out loud with someone beats thinking alone

https://www.thesignalist.io/s/the-dialogue-dividend/
178•kodesko•14h ago•90 comments

Biological evolution and information acquisition

https://www.construction-physics.com/p/biological-evolution-and-information
14•chmaynard•6d ago•1 comments

The Return of Rigorous Full-System Timing Simulation

https://www.sigarch.org/the-return-of-rigorous-full-system-timing-simulation/
35•matt_d•1d ago•0 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
182•Yenrabbit•4d ago•21 comments

Trellis AI (YC W24) hiring a product lead to build agents for healthcare access

https://www.ycombinator.com/companies/trellis-ai/jobs/Cg94htp-product-lead
1•macklinkachorn•10h ago

GLM-5.2 is the new leading open weights model on Artificial Analysis

https://artificialanalysis.ai/articles/glm-5-2-is-the-new-leading-open-weights-model-on-the-artif...
811•himata4113•17h ago•388 comments

Kirkland Roundabouts

https://kirklandroundabouts.com
166•DenisM•3d ago•132 comments

Made a free macOS menu bar app that fixes typing in the wrong keyboard layout

https://flickey.site
52•tal_alfi•7h ago•23 comments

MicroUI – A tiny, portable, immediate-mode UI library written in ANSI C

https://github.com/rxi/microui
198•peter_d_sherman•15h ago•71 comments

Pink Cosmo berries a hit in their trial season (2023)

https://fruitgrowersnews.com/article/pink-cosmo-berries-a-hit-in-their-trial-season/
9•mooreds•3d ago•3 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)