frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Overview of the Ada Computer Language Competition (1979)

https://iment.com/maida/computer/redref/
35•transpute•3h ago•4 comments

Building my own solar power system

https://medium.com/@joe_5312/pg-e-sucks-or-how-i-learned-to-stop-worrying-and-love-building-my-own-solar-system-acf0c9f03f3b
141•JKCalhoun•2d ago•91 comments

Veo 3 and Imagen 4, and a new tool for filmmaking called Flow

https://blog.google/technology/ai/generative-media-models-io-2025/
620•youssefarizk•15h ago•361 comments

Convolutions, Polynomials and Flipped Kernels

https://eli.thegreenplace.net/2025/convolutions-polynomials-and-flipped-kernels/
46•mfrw•4h ago•3 comments

Gemma 3n preview: Mobile-first AI

https://developers.googleblog.com/en/introducing-gemma-3n/
323•meetpateltech•15h ago•114 comments

Clojuring the web application stack: Meditation One

https://www.evalapply.org/posts/clojure-web-app-from-scratch/index.html
91•adityaathalye•20h ago•22 comments

“ZLinq”, a Zero-Allocation LINQ Library for .NET

https://neuecc.medium.com/zlinq-a-zero-allocation-linq-library-for-net-1bb0a3e5c749
166•cempaka•10h ago•55 comments

Litestream: Revamped

https://fly.io/blog/litestream-revamped/
316•usrme•13h ago•69 comments

Writing into Uninitialized Buffers in Rust

https://blog.sunfishcode.online/writingintouninitializedbuffersinrust/
72•luu•1d ago•65 comments

Withnail and I (2001)

https://www.criterion.com/current/posts/122-withnail-and-i
30•dcminter•3d ago•8 comments

What makes a good engineer also makes a good engineering organization (2024)

https://moxie.org/2024/09/23/a-good-engineer.html
185•kiyanwang•2d ago•48 comments

Deep Learning Is Applied Topology

https://theahura.substack.com/p/deep-learning-is-applied-topology
414•theahura•19h ago•166 comments

The NSA Selector

https://github.com/wenzellabs/the_NSA_selector
245•anigbrowl•14h ago•65 comments

The Future of Junior Software Engineering Roles

https://adventuresincoding.substack.com/p/the-future-of-junior-software-engineering
23•pootietangus•5h ago•37 comments

AI's energy footprint

https://www.technologyreview.com/2025/05/20/1116327/ai-energy-usage-climate-footprint-big-tech/
189•pseudolus•23h ago•183 comments

My favourite fonts to use with LaTeX (2022)

https://www.lfe.pt/latex/fonts/typography/2022/11/21/latex-fonts-part1.html
125•todsacerdoti•4d ago•35 comments

Red Programming Language

https://www.red-lang.org/p/about.html
155•hotpocket777•15h ago•83 comments

Life before the web – Running a Startup in the 1980's (2016)

https://blog.zamzar.com/2016/07/13/life-before-the-web-running-a-startup-in-the-1980s/
42•gscott•4d ago•7 comments

A Secret Trove of Rare Guitars Heads to the Met

https://www.newyorker.com/magazine/2025/05/26/a-secret-trove-of-rare-guitars-heads-to-the-met
55•bookofjoe•7h ago•18 comments

Show HN: 90s.dev – Game maker that runs on the web

https://90s.dev/blog/finally-releasing-90s-dev.html
266•90s_dev•18h ago•96 comments

Taito-tastic: Kiki Kaikai and its Hardware

https://nicole.express/2025/pocky-but-wheres-rocky.html
25•ingve•2d ago•2 comments

Why does the U.S. always run a trade deficit?

https://libertystreeteconomics.newyorkfed.org/2025/05/why-does-the-u-s-always-run-a-trade-deficit/
231•jnord•21h ago•554 comments

Show HN: A Tiling Window Manager for Windows, Written in Janet

https://agent-kilo.github.io/jwno/
236•agentkilo•18h ago•81 comments

Linguists find proof of sweeping language pattern once deemed a 'hoax'

https://www.scientificamerican.com/article/linguists-find-proof-of-sweeping-language-pattern-once-deemed-a-hoax/
94•bryanrasmussen•2d ago•89 comments

OpenAI Codex hands-on review

https://zackproser.com/blog/openai-codex-review
124•fragmede•18h ago•89 comments

Ask HN: Conversational AI to Learn a Language

58•edweis•4d ago•39 comments

Robin: A multi-agent system for automating scientific discovery

https://arxiv.org/abs/2505.13400
133•nopinsight•17h ago•18 comments

Semantic search engine for ArXiv, biorxiv and medrxiv

https://arxivxplorer.com/
113•0101111101•11h ago•19 comments

The Dawn of Nvidia's Technology

https://blog.dshr.org/2025/05/the-dawn-of-nvidias-technology.html
155•wmf•16h ago•54 comments

Disabling kernel functions in your process (2009)

https://chadaustin.me/2009/03/disabling-functions/
19•rolph•7h ago•3 comments
Open in hackernews

Clojuring the web application stack: Meditation One

https://www.evalapply.org/posts/clojure-web-app-from-scratch/index.html
91•adityaathalye•20h ago

Comments

adityaathalye•20h ago
The ongoing discussion for Biff [1] prompted me to re-share my post because I'd like more people to understand this "other way". Outside Clojureville, it is not obvious most of these Clojure "frameworks" are not monoliths.

The consummate Clojurist's default (and very normal-feeling way) to build a web application (or any application for that matter) is to roll their own web stack from production-grade libraries.

Of course, this state of affairs is a double-edged sword, just like is true for traditional web frameworks. In my post, I try to go into the whys and the wherefores, building upward from first principles.

[1] Biff – a batteries-included web framework for Clojure https://news.ycombinator.com/item?id=44037426

andersmurphy•20h ago
A fantastic post! Enjoyed re-reading it.

I'd say the nice thing with the Clojure way of building your own stack is it becomes quite easy to swap parts out. On a previous project we swapped out our web server three different times with minimal changes (jetty -> aleph -> httpkit) as for the most part they all shared the same interface.

After a while you get good at seeing where you want things to be configurable and where you don't. It also gives you the confidence to roll your own micro stack/framework which means you are not dependent on third party aggregates to adopt new features.

adityaathalye•17h ago
Thank you for the kind appreciation. Made my day :)

Yes; next to the sheer stability of parts, their fungibility is a business-critical feature of the Clojure ecosystem. Of course said fungibility does not magically manifest. However the effort to get there is "not much", I'd say. The use of "system" libraries, with some well-reasoned module design brings it pretty close to magic.

As in the post, a fungible, production-grade part can be just a multimethod (e.g. the router in the post). Why? Because "production" comes in all sizes. A small SaaS with a few hundred customers may chug along happily with a bunch of functions.

yakshaving_jgt•3h ago
This suggests to me that “production grade” isn’t much of a qualifier at all then.

You could just as well say that PHP has “production grade” functions.

adityaathalye•2h ago
Hm, I'm saying a given function can be production grade. I'm not saying all functions are production-grade. Also, I'm saying production comes in all sizes. If your micro-SaaS app gives you a livelihood, that's hella production --- real skin in game, real stakes in ground.

To analogise further...

- HackerNews is a "production" system, you would agree. Back in 2015, it was still true. Are flat files a "production grade" primary data storage choice? [1]

- Suppose your production service transacts a million requests an hour (say it is a short-link maker). Further, let's say it has only a handful of API endpoints. Do you really need a whole routing library for that, if a single multimethod does exactly what you need, correctly?

etc...

[1] https://news.ycombinator.com/item?id=9990630

(edit: add reference for flat file storage)

yakshaving_jgt•2h ago
Right. And what I’m saying is that if “production grade” means all of these things, then it’s not a very meaningful qualifier.

My personal site is statically generated — it’s just a bunch of HTML files and some CSS. Do you not think it would be a bit pretentious of me to describe that as “production grade”?

If “production grade” simply means fit for purpose, then given the GP commenter’s reason for their initial web server swap, wouldn’t you say by definition that jetty is not production grade, since it doesn’t (didn’t?) support SSE?

adityaathalye•1h ago
I agree with you... "production grade" is in fact a meaningless term without saying what grade one's production needs to be.

A static site that serves is most definitely a production system. Perhaps one that could scale in traffic almost without end.

evalapply.org gets (to my continued amazement) 20K+ unique visitors a month when it's business as usual. On a busy HN day, it's easily that much in hours. I don't have to think about "scaling problems". I don't have one.

I'm being the realest real with you.

yakshaving_jgt•3h ago
> On a previous project we swapped out our web server three different times

Why is this desirable?

On all my projects over the past 10 years, I’ve swapped out the web server exactly zero times because the one I have works just fine. The parent comment describes these components as “production grade”, but then if that’s the case, what could be the reason for swapping them out other than self-indulgence?

andersmurphy•2h ago
It's not. But, the fact that we could and it was straight forward still amazes me.

In our case the first time we needed to, we needed SSE and at the time there was no ring-jetty async interface (it's a long time ago so I'm forgetting the details) so we moved to aleph. Much later, we wanted to try out http-kit (self-indulgence) as we were operating behind a proxy anyway for performance reasons and it made a significant difference.

If we'd just started with http-kit that would have been fine. I guess it comes down to what features you need.

Also I 100% agree it's something ideally you would want to avoid a in the case of databases for example so much performance is left on the table because for some reason we want to be able to swap between SQLite, postgres and mySQL. Which in practice you never want to do.

KingMob•1h ago
As the former maintainer of Aleph, I'm very surprised you ran into a situation where http-kit was faster. Or do you mean it was just preferable to develop for?
adityaathalye•2h ago
> Why is this desirable?

Generally, yes one would not want to swap out their web server willy-nilly...

Yet, this is one of those "YAGNI in 99% of your use cases", but when that 1% use case arises, a server swap would be far more desirable than a whole framework shift.

So while self-indulgence can certainly be a motive (and why not? as long as everyone's having a good time), may I offer a few more charitable reasons for this:

- programming API ergonomics

- performance

- application runtime model (servlets -> embedded server)

- security model

- application server features (websockets, comet?)

- binary size

- server configuration niceties

etc...

That said, a developer only has flexibility if it is built in from the get go.

A counterfactual would be to consider the set of developers who have had to put in ugly hacks because they can't just rip the web server out of the framework of choice they are locked into.

(edit: bullet list formatting)

yakshaving_jgt•2h ago
> and why not?

Because I pay the people who work for me.

adityaathalye•1h ago
Well, if you're paying, you certainly get to set the rules. No self-indulgence, then. The other reasons I enumerated may still hold.
gehrman•25m ago
Your comment reminded me of this talk https://www.youtube.com/watch?v=MZy-SNswH2E.

The part about building just the functionality you need, using the bare minimum libraries etc stuck out.

elchief•3h ago
Metabase is written in clojure, if you want to see the source code of a large web app

https://github.com/metabase/metabase

adityaathalye•3h ago
+1

NASA's Common Metadata Repository is worth exploring too https://github.com/nasa/Common-Metadata-Repository

It is a neat example of how an org can structure and manage multiple projects and services in a single git repository. They've use Leiningen to achieve their objective.

> The Common Metadata Repository (CMR) is an earth science metadata repository for NASA EOSDIS data. The CMR Search API provides access to this metadata.

> Building and Running the CMR

> The CMR is a system consisting of many services. The services can run individually or in a single process. Running in a single process makes local development easier because it avoids having to start many different processes. The sections below contain instructions for running the CMR as a single process or as many processes.

(edit: add relevant context for quick reference)

geokon•6m ago
wow I had no idea Nasa used Clojure. I do remmeber them using quite a bit of Java so it's not terribly surprising
ramirond•1h ago
Thanks for the shout! I recommend this video about our Clojure journey: https://www.youtube.com/watch?v=vUe3slLHk20

We are also hiring Clojure devs: https://www.metabase.com/jobs

librasteve•2h ago
a very lyrical post, i will reread at my leisure and try to apply the lessons to https://harcstack.org

that’s HTMX, Air, Red & Cro btw

that said … I am a true believer in HTMX for the right amount of UX dynamism and I don’t initially get solves that piece

andersmurphy•2h ago
If you need the next level of UX dynamism and or realtime updates and or multiplayer. I've handled a billion checkboxes[1] with clojure, sqlite and datastar (realtime hypermedia) just fine.

[1] https://checkboxes.andersmurphy.com

adityaathalye•2h ago
Thank you for the kind appreciation.

Following writing advice or post structuring guidelines is not in my job description at evalapply.org Luckily, Michael Hamburger offered a legitimate excuse in his classic (so I'm told) essay, "An Essay About Essays": https://substack.com/@bombaylitmag/p-162583447