frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Retrospectively Reverse-Engineering Apple's Neural Engine

https://eiln.github.io/posts/ane.html
24•zdw•41m ago•2 comments

A misalignment of AI in mathematics

https://mathandai.org/
874•meredydd•14h ago•852 comments

google.com/goto: Google's anti-scraping update

https://www.autom.dev/blog/google-search-goto-links
383•1e1a•5h ago•271 comments

Usenet rewind archive search engine

https://www.usenet-rewind.com/
53•cstadler1869•4h ago•10 comments

I spent $220 on Google app ads and 60% of the installs were robots

https://dayzlegame.com/blog/google-ads-bot-farm/
495•nickabe•14h ago•258 comments

Navier-Stokes Announcement

https://www.claymath.org/news/navier-stokes-announcement/
132•rvz•4h ago•87 comments

A Design Space Exploration of Async/Await

https://cel.cs.brown.edu/blog/design-space-async-await/
267•wcrichton•2d ago•66 comments

Great Lakes sturgeon may be 400 years old:Scientists rethinking how to save them

https://www.cbc.ca/news/canada/ontario-great-lakes-sturgeon-lifespan-study-9.7329250
56•bookofjoe•2d ago•3 comments

Designing for Dual Screen and Foldable Devices with CSS (2023)

https://blog.stephaniestimac.com/posts/2023/05/design-foldable-devices/
29•mooreds•1d ago•5 comments

Inverse Kinematics and Foot Locking

https://theorangeduck.com/page/inverse-kinematics-foot-locking
22•airhangerf15•5d ago•0 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
227•vesterde•1d ago•160 comments

IKEA made a mod for Skyrim [video]

https://www.youtube.com/watch?v=iZODN0QUgjI
14•kegenaar•2d ago•2 comments

Logo Programming

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
274•azhenley•3d ago•112 comments

WeWorm: Zero-Click WeChat Worm

https://calif.io/research/weworm
15•BlackEarth•2h ago•1 comments

OpenAI agents carried out an undisclosed attack on RubyGems

https://www.rubyhack.ai/
661•chao-•9h ago•376 comments

Project Blinkenlights

https://blinkenlights.de/en/
86•doener•10h ago•30 comments

Mind-altering drugs played key role in rise of Andean civilization

https://www.science.org/content/article/mind-altering-drugs-played-key-role-rise-andean-civilization
154•geneticdrifts•15h ago•102 comments

Litelm: LiteLLM Without the Bloat

https://github.com/kennethwolters/litelm
132•kennethwolters•14h ago•42 comments

I've operated petabyte-scale ClickHouse clusters for 5 years

https://www.tinybird.co/blog/what-i-learned-operating-clickhouse
209•adastral•4d ago•78 comments

GrapheneOS' rewritten Messages app is released

https://github.com/GrapheneOS/Messaging/releases/tag/13
270•microtonal•13h ago•194 comments

Λ Snap – An inviting programming language for kids and adults for CS study

https://snap.berkeley.edu/
140•dr_kiszonka•14h ago•78 comments

Show HN: ResolveHQ – A Helpdesk Built on Cloudflare Workers, D1, R2 and Queues

https://github.com/mirza-rizvi/ResolveHQ
57•mirza_rizvi•10h ago•18 comments

AlphaGenome maps 9B DNA variants

https://spectrum.ieee.org/alphagenome-atlas
84•ltononro•2d ago•7 comments

Rune is now open source

https://rune.build/blog/rune-is-now-open-source
179•ernestrc•17h ago•57 comments

The EPA is planning to scrap public review rules for data center pollution

https://capitalbnews.org/data-centers-permit-rules-epa/
452•doener•14h ago•317 comments

Testing Race Conditions

https://projectzero.google/2026/09/maccconc-race-condition.html
45•alpaylan•2d ago•1 comments

Google will buy half the electricity from one of Finland's nuclear power plants

https://www.bbc.com/news/articles/c8r6y4me2g6o
349•lukaspetersson•1d ago•316 comments

Claude is only available to people over 18 years

https://support.claude.com/en/articles/15171100-age-assurance-on-claude
638•Muhammad523•21h ago•626 comments

How we rebuilt complex permissions without migrating to Zanzibar

https://infisical.com/blog/folder-based-rbac
56•FinnLobsien•2d ago•13 comments

RTK reports token savings, but our cost benchmarks disagree

https://quesma.com/blog/does-rtk-make-ai-coding-cheaper/
161•michalwarda•21h ago•80 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)