NHacker Next
  • new
  • past
  • show
  • ask
  • show
  • jobs
  • submit
Carl's Required Reading (carlkolon.com)
pragmatic 15 hours ago [-]
Decent list but the ORM thing makes me suspicious.

He links here as some kind of damning proof that ORMs are default bad.

https://openai.com/index/scaling-postgresql/

“It’s a poor craftsmen who blames their tools.”

My ORM rule of thumb: ORM for CRUD not Reports

If you are joining 12 tables for operational data, you have a design flaw. That’s a reporting query pattern.

Often temp tables, CTEs etc are needed as an immediate fix with redesign as a long term fix. The query planner simply can’t optimize that in a reasonable time or it’s beyond there scope if what it can optimize. Also their solution to “joining in memory” is common.

My DB query rule of thumb: If the query is hard for you to understand, it’s hard for the planner to understand.

Default to small fast simple queries and pipeline them together.

Shorel 9 hours ago [-]
Your DB query rule goes against my experience.

Sometimes longer and more complex queries run much, much faster. The users complain about "complexity", but when they see the performance comparison they change their minds.

drunkboxer 1 days ago [-]
andai 23 hours ago [-]
Excellent list.

The last article links here, which I enjoyed:

https://venge.net/graydon/talks/VectorizedInterpretersTalk-2...

drunkboxer 22 hours ago [-]
Is there a video presentation to go along with the slides that you know of?
cckolon 1 days ago [-]
I love these! “Not Quite the Same” sounds a lot like “The Wrong Abstraction” from my list. It’s a really important point and I’m glad to see there are more articles about it!
drunkboxer 1 days ago [-]
Yep, I have the wrong abstraction on my list as well. There's a couple on ratfactor that really hit the same point home.

I think the lwn article on "the midlayer mistake" is somewhat the same point but to a different extreme, and in some ways libraries not frameworks too.

olives 1 days ago [-]
Microservices

grug wonder why big brain take hardest problem, factoring system correctly, and introduce network call too

seem very confusing to grug

^ This is the best and funniest paragraph of text that I’ve read this year

Cerium 1 days ago [-]
I'm a fan of the t-rex:

> given choice between complexity or one on one against t-rex, grug take t-rex: at least grug see t-rex

That section reminds me of The Litany Against Fear.

adityaathalye 12 hours ago [-]
Hah, indeed!

  "I must not complect.
  Complexity is the mind-killer.
  Complexity is the little-death that brings obliteration.
  I will face complexity and I will permit it to pass over me and through me.
  And when it has gone past, I will turn the inner eye to see its path.
  Where the complexity has gone, there will be nothing.
  Only I will remain."

  — Litany Against Complexity
I made that up in blog post that feels aligned with Carl's world-view. The Litany appears here in the post: https://www.evalapply.org/posts/writing-practices-to-10x-eng...
kristianp 1 days ago [-]
Pleasant to hear about the Object-Relational Impedance Mismatch [1], haven't heard about that concept for a long time - maybe a decade!. The reason I like Dapper [2] is that it makes you use your own sql.

Edit "lets" -> "makes".

[1] https://en.wikipedia.org/wiki/Object%E2%80%93relational_impe...

[2] https://github.com/DapperLib/Dapper

niko323 1 days ago [-]
The Grug Brain article is fantastic, and even better if you run it through an LLM to convert from caveman. This thing is a gem.
dwedge 1 days ago [-]
Yeah I really struggled to read the style of writing and gave up even though I know I probably totally agree with the message
homarp 17 hours ago [-]
nuancebydefault 9 hours ago [-]
I am a grug!
seabre 1 days ago [-]
> PostGIS is a great database and its foundational data type is geography.

Hate to "well ackchyually" the author here, but I'm gonna. The foundational data type in PostGIS is not geography, but geometry. geography is geodetic layer on top of geometry. I honestly don't use geography that much because it only supports a subset of the geometry functions.

cckolon 1 days ago [-]
Thanks for the callout! I have much more experience with geography but you’re totally right. I’ll add a note
orphereus 1 days ago [-]
Thanks for a drop of humanity in this place. I feel saner
cweagans 8 hours ago [-]
OP might also like Essentialism. Very in line with YAGNI - it guides things outside of API design too!
MarkusQ 1 days ago [-]
I personally hate YAGNI, because it so often leads to balkanized APIs that only implement the "needed" features and omit things that a reasonable person would expect because they weren't needed initially. Far better to have a clear and explicable model that is fully and consistently implemented.
hasley 19 hours ago [-]
That is something I observed too:

When you build a tool (physical or software) or an API (web or library) it should be easy to use. The easier it is to use the higher the probability that people will use it. So, if people build a kind of rudimentary thing and say that is all you need (which may be technically correct), then they do not optimize for likelihood of adoption/usage.

sebmellen 1 days ago [-]
Yes I agree with this. It’s all a matter of taste and interpretation at the end of the day. YAGNI has been useful for me in stopping the development of truly complex featureful work that is not needed. But you can go overkill and strip away everything that makes your application nice to use, or that makes your domain representation syntactically complete. And that’s just stupid.
markus_zhang 1 days ago [-]
DDIA is great. I read and re-read the small section about LSM merge tree in the first and second edition of the book and got interested in this stuff. It is always a pleasure to read about internals.
dzonga 16 hours ago [-]
the impact of recursivedoubts i.e htmx creator on software engineering practices and adhering to simplicity is monumental but the industry keeps heading towards complexity.
pragmatic 15 hours ago [-]
Because everyone wants to Cargo Cult the architecture they see in Big Tech blogs.

“If we build like Google, we become Google”

I don’t know why a small company would want Google’s engineering problems.

goodboyjojo 22 hours ago [-]
cool list. might check these books out later
viveknathani_ 1 days ago [-]
great reading list, but also a great career arc OP! loved skimming through your site!
cckolon 1 days ago [-]
Thank you :)
SiddhantSood 1 days ago [-]
Grug.
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
Rendered at 04:44:55 GMT+0000 (Coordinated Universal Time) with Vercel.