frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
1384•Kaibeezy•10h ago•478 comments

Apple fixes bug that cops used to extract deleted chat messages from iPhones

https://techcrunch.com/2026/04/22/apple-fixes-bug-that-cops-used-to-extract-deleted-chat-messages...
391•cdrnsf•6h ago•101 comments

We found a stable Firefox identifier linking all your private Tor identities

https://fingerprint.com/blog/firefox-tor-indexeddb-privacy-vulnerability/
464•danpinto•9h ago•139 comments

Tempest vs. Tempest: The Making and Remaking of Atari's Iconic Video Game

https://tempest.homemade.systems
23•mwenge•1h ago•3 comments

Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model

https://qwen.ai/blog?id=qwen3.6-27b
725•mfiguiere•13h ago•348 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
453•zdw•3d ago•109 comments

Over-editing refers to a model modifying code beyond what is necessary

https://nrehiew.github.io/blog/minimal_editing/
304•pella•8h ago•173 comments

Website streamed live directly from a model

https://flipbook.page/
171•sethbannon•8h ago•61 comments

OpenAI's response to the Axios developer tool compromise

https://openai.com/index/axios-developer-tool-compromise/
18•shpat•2h ago•1 comments

Technical, cognitive, and intent debt

https://martinfowler.com/fragments/2026-04-02.html
207•theorchid•10h ago•50 comments

Ping-pong robot beats top-level human players

https://www.reuters.com/sports/ping-pong-robot-ace-makes-history-by-beating-top-level-human-playe...
78•wslh•11h ago•91 comments

Verus is a tool for verifying the correctness of code written in Rust

https://verus-lang.github.io/verus/guide/
14•fanf2•2d ago•1 comments

Approximating Hyperbolic Tangent

https://jtomschroeder.com/blog/approximating-tanh/
26•jtomschroeder•3h ago•4 comments

Our eighth generation TPUs: two chips for the agentic era

https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu...
409•xnx•14h ago•199 comments

The handmade beauty of Machine Age data visualizations

https://resobscura.substack.com/p/the-handmade-beauty-of-machine-age
11•benbreen•12h ago•1 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
294•marklit•14h ago•230 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
278•hubraumhugo•12h ago•207 comments

Parallel agents in Zed

https://zed.dev/blog/parallel-agents
174•ajeetdsouza•9h ago•105 comments

Effectful Recursion Schemes

https://effekt-lang.org/blog/recursion-schemes/
17•marvinborner•2d ago•1 comments

The Illuminated Man: an unconventional portrait of JG Ballard

https://www.theguardian.com/books/2026/apr/20/the-illuminated-man-by-christopher-priest-and-nina-...
49•agronaut•6h ago•17 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
196•ndr42•1d ago•144 comments

Ultraviolet corona discharges on treetops during storms

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
205•t-3•13h ago•57 comments

Bring your own Agent to MS Teams

https://microsoft.github.io/teams-sdk/blog/bring-your-agent-to-teams/
22•umangsehgal93•4h ago•7 comments

The Neon King of New Orleans

https://gardenandgun.com/new-orleans-neon-king
37•renameme•5h ago•6 comments

What killed the Florida orange?

https://slate.com/business/2026/04/florida-state-orange-food-houses-real-estate.html
121•danso•2d ago•108 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
417•ingve•14h ago•301 comments

Bodega cats of New York

https://bodegacatsofnewyork.com
165•zdw•5d ago•59 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
110•mfiguiere•9h ago•42 comments

New study compares growing corn for energy to solar production

https://www.anthropocenemagazine.org/2025/04/new-study-compares-growing-corn-for-energy-to-solar-...
71•dotcoma•7h ago•110 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
900•sohkamyung•16h ago•210 comments
Open in hackernews

Rip language. Compiles to ES2022. Built-in reactivity

https://github.com/shreeve/rip-lang
16•perfunctory•2d ago

Comments

angleofrepose•1h ago
This is cool. I enjoy seeing these kinds of projects, thanks for sharing it and thanks for making it.

There has been so much innovation over the years around transpilers/compilers to JS, it makes me wonder what a programming paradigm of à la carte first class language functionality could look like and how it might interoperate. A system in which I might grab Haskell type syntax, Clojure list comprehensions and JS arrow functions, all together, and all working just fine.

Probably want to break up files into more granular chunks, probably more like next gen polyglot notebooks beyond a cell per language and more like custom languages composed of features in any given cell.

The system could be made to translate between functionality based on editor preference. Like python list comprehensions? Read my Clojure comprehension in that syntax.

I know this would not perfectly map, as some language functionality is more powerful than others. Still interesting to think about.

ngruhn•23m ago
> New operators — !, //, %%, =~, |>, .new(), and more Reactive operators — :=, ~=, ~> as language syntax

I my mind, this is such common mistake in language design. For people familiar with the language, adding just-one-more operator is very enticing: it's succinct and avoids naming things. But do that a few times and the language becomes a cryptic mess where everything has a random !,*,#,$,# attached somewhere. Looking at you JavaScript and C++. It can get even worse when operators can be defined in userland like in Haskell. Props to Python for keeping it mostly at bay.