frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The newest Instagram “exploit” is the goofiest I've seen

https://www.0xsid.com/blog/meta-account-takeover-fiasco
1214•ssiddharth•7h ago•297 comments

Debug Project

https://debug.com/
122•Eridanus2•3h ago•49 comments

OpenAI frontier models and Codex are now available on AWS

https://openai.com/index/openai-frontier-models-and-codex-are-now-available-on-aws/
39•typpo•2h ago•9 comments

AI Agent Guidelines for CS336 at Stanford

https://github.com/stanford-cs336/assignment1-basics/blob/main/CLAUDE.md
298•prakashqwerty•7h ago•108 comments

Should you normalize RGB values by 255 or 256?

https://30fps.net/pages/255-vs-256-division/
166•pplanu•6h ago•73 comments

CS336: Language Modeling from Scratch

https://cs336.stanford.edu/
336•kristianpaul•9h ago•42 comments

GrapheneOS Speech Services version 2 released

https://discuss.grapheneos.org/d/36001-grapheneos-speech-services-version-2-released
79•pretext•5h ago•14 comments

What appear to be biochemical processes may be a natural feature of geology

https://www.quantamagazine.org/the-dirt-that-refused-to-die-20260601/
183•speckx•8h ago•55 comments

Stealing from Biologists to Compile Haskell Faster

https://www.iankduncan.com/engineering/2026-05-30-stealing-from-biologists-to-compile-haskell-fas...
84•mooreds•2d ago•4 comments

Nvidia RTX Spark

https://www.nvidia.com/en-us/products/rtx-spark/
303•shenli3514•18h ago•249 comments

Microsoft builds MacBook Pro rival with NVIDIA-powered Surface Laptop Ultra

https://www.windowslatest.com/2026/06/01/microsoft-builds-its-ultimate-macbook-pro-rival-with-the...
113•jbk•11h ago•303 comments

Ask HN: Who is hiring? (June 2026)

145•whoishiring•8h ago•212 comments

I made my phone slow on purpose

https://vinewallapp.com/notes/i-made-my-phone-slow-on-purpose/
160•gcampos•4d ago•142 comments

Launch HN: Expanse (YC P26) – Unlock Wasted GPU Capacity

67•ismaeel_bashir•10h ago•20 comments

Anthropic confidentially submits draft S-1 to the SEC

https://www.anthropic.com/news/confidential-draft-s1-sec
426•surprisetalk•7h ago•337 comments

Windows GOG DOS Games on M-Series Macs

https://f055.net/technology/windows-gog-dos-games-on-m-series-macs/
133•f055•10h ago•78 comments

Only 17% of all 64-bit Integers are products of two 32-bit integers

https://lemire.me/blog/2026/05/22/only-17-of-all-64-bit-integers-are-products-of-two-32-bit-integ...
186•sebg•4d ago•91 comments

Ask HN: Who wants to be hired? (June 2026)

83•whoishiring•8h ago•248 comments

GitHub and the crime against software

https://eblog.fly.dev/githubbad.html
184•pplanu•5h ago•81 comments

Flipper Zero Zig Template

https://github.com/NishantJoshi00/flipper-template
123•Nars088•10h ago•9 comments

Show HN: DepsGuard – one command to harden NPM/pnpm/yarn/bun/uv configs

https://github.com/arnica/depsguard
7•eranation•6h ago•0 comments

Malicious npm packages detected across Red Hat Cloud Services

https://github.com/RedHatInsights/javascript-clients/issues/492
713•kurmiashish•10h ago•403 comments

The Pirate Bay Remains Resilient, 20 Years After the Raid

https://torrentfreak.com/the-pirate-bay-remains-resilient-20-years-after-the-raid/
477•speckx•9h ago•238 comments

Show HN: A free Linux adaptation of NETworkManager by BornToBeRoot

https://github.com/thongor77/nmlinux
15•magetriste•2d ago•3 comments

Sysadmining Like It's 2009

https://lambdacreate.com/posts/sysadmining-like-its-2009
86•yacin•10h ago•37 comments

Linux Basics for Hackers (2019)

https://github.com/ahegazy0/linux-basics-for-hackers-notes
123•ibobev•10h ago•22 comments

Medium Access Control Protocols

https://jasonfantl.com/posts/Multiple-Access-Protocols/
3•jfantl•1d ago•0 comments

Handmade Hawaiian Islands Map

https://www.notesfromtheroad.com/roam/hawaiian-islands-map.html
50•bovermyer•2d ago•16 comments

Building a custom mount for a telescoping webcam

https://john.mercouris.online/webcam-mount.html
10•jmercouris•2d ago•2 comments

Florida sues OpenAI and Sam Altman over AI risks

https://www.politico.com/news/2026/06/01/openai-hit-with-florida-lawsuit-00944215
168•cyunker•7h ago•156 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)