←back to thread

389 points kurinikku | 6 comments | | HN request time: 0.831s | source | bottom
Show context
Animats ◴[] No.42166199[source]
"Everything is just" approaches usually result in hammering things that don't fit into fitting. That often ends badly. Computing has been through, at least:

- Everything is just a function (SICP)

- Everything is just an object (Smalltalk, and to some extent Java)

- Everything is just a closure (the original Common LISP object system)

- Everything is just a file of bytes (UNIX)

- Everything is just a database (IBM System/38, Tandem)

replies(7): >>42166225 #>>42166849 #>>42167436 #>>42167755 #>>42167841 #>>42168165 #>>42170062 #
Maxatar ◴[] No.42166225[source]
None of the things you mention ended badly though. I think all of those approaches you list are incredibly useful and important concepts and I am very happy that I not only know them, but that because of how universal they are I can leverage my knowledge of one approach to learn or apply another approach.
replies(2): >>42167358 #>>42167565 #
1. thethimble ◴[] No.42167358[source]
Another angle on this is that there’s many formal axiomatic ways to define computing.

Everything is just a Turing machine. Everything is just a function. Everything is the Conway’s game of life.

The fact that all of these forms are equally expressive is quite a surprise when you first discover this. Importantly, it doesn’t mean that any one set of axioms is “more correct” than the other. They’re equally expressive.

replies(1): >>42167625 #
2. brudgers ◴[] No.42167625[source]
Everything is just a Turing machine.

That one ends in a tarpit where everything is possible but nothing of interest is easy.

replies(2): >>42167831 #>>42167859 #
3. Animats ◴[] No.42167831[source]
That's the generic problem with "Everything is a ...". Trying to force things into a paradigm that doesn't fit well complicates things.
replies(2): >>42167985 #>>42168864 #
4. zahlman ◴[] No.42167859[source]
>where everything is possible but nothing of interest is easy.

Real development IMX is not much different. People just have low standards for "interesting" nowadays, and also have vastly increased access to previous solutions for increasingly difficult problems. But while modern programming languages might be more pleasant to use in many ways, they have relatively little to do with the combined overall progress developers have made. Increased access to "compute" (as they say nowadays), effort put into planning and design, and the simple passage of time are all far more important factors in explaining where we are now IMO.

5. brudgers ◴[] No.42167985{3}[source]
The generic problem is every generation thinks they invented sex.

https://www.cs.yale.edu/homes/perlis-alan/quotes.html

6. grugagag ◴[] No.42168864{3}[source]
It is a simplification that makes easier to grasp a paradigm. Sure, it could be taken to extremes and pretend nothing else exists outside this ‘everything is a … “ bubble. Luckily we can learn from others’ mistakes and not fall into traps too often.