48:48I mean, fundamentally as engineers,
you navigate them one by one, you
48:52know, while sweating profusely.
48:55That's how that goes, I think.
48:56yeah, I feel like there's, there's
a bunch of interesting problems in
48:58all of the things that you've said.
49:00I had a few, couple small conversations
with PVH, talking about, he built this
49:04thing based around lenses of, of how
data can evolve over time in a Cambria.
49:09That was it.
49:09Yeah.
49:10Um, in local-first software.
49:11And I have a bunch of my
own thoughts about that.
49:13And you know, like I've got
designs in mind that I'd love
49:16to experiment and play with.
49:18So there's something there, which is,
you know, like it's really interesting.
49:21HTML, has evolved beautifully over time.
49:24Like HTML has barely changed at
all since it was first introduced.
49:28like we've introduced new tags,
but almost like all of the
49:30tags still follow the same.
49:32Fundamentally XML style
structure, and that's wonderful.
49:36It's wonderful.
49:36It's been able to evolve like that.
49:38Email has evolved slightly
less gracefully, but emails.
49:41I think email up email programs
from the 70s probably still work
49:44today with most modern emails,
which is incredible, even though.
49:48Email messages themselves are
almost impossible to pass correctly.
49:51And, I've got a lot of
thoughts about that as well.
49:53I've got some friends who work at
FastMail and they've, pinned me to the
49:55wall with things about email that I
had no idea about that are horrific.
49:59but there's this open problem,
which is how can data models change.
50:02So there's a, set of problems
there, which I'd love to solve.
50:05There's a set of problems around,
how is our data stored and sent.
50:09in my mind, what I would
really like to have is.
50:11I feel like there's some kinds of programs
where I actually really You know, I'm so
50:16sorry to the Ink and Switch folks, I'm
quite happy for there to be a centralized
50:18server for Discord, or for IRC.
50:20For something like that, when there's
a place that we all go to, I'm quite
50:23happy for there to be one computer
that's authoritative and decides, you
50:26know, all of the messages that are and
aren't part of the log of messages.
50:30I feel the same way about banks.
50:32I'm more than happy for them to use
a centralized transactional database.
50:35I'm not a Bitcoin absolutist by any means.
50:37I think decentralized
databases work great.
50:39but I'd really like some set of
primitives where, The primitives that
50:41I use in my computer program, like what
I embed into my program and use, are
50:45the same set of primitives that I could
use either with a centralized server,
50:48which has transactions and various
other ergonomics, or with something
50:51like Automerge or Yjs, where, I'm
actually collaboratively editing a CRDT.
50:56And I feel like there's a lot of overlap
there around what's the shape of the data.
50:59What does the change look like?
51:01You know, subscriptions, which
also you almost always want
51:03in a centralized use case.
51:05and then there's a bunch of
questions around performance.
51:08so I wrote a CRDT library of my own called
Diamond Types I haven't kept up with all
51:11of the demands that I've made of myself.
51:13busy and distracted, but I use that.
51:15That was the test bed in original
place where I built Eg-walker,
51:18which is an algorithm that I've
written a paper on, which is just
51:20for collaborative text editing.
51:21and I wanted to make
it really, really fast.
51:23And people kept saying, well,
but don't you know that if you
51:26collaboratively edit a text document
in something like Yjs or Automerge,
51:29it stores every single keystroke
that's ever made to the document.
51:32And these documents are going to get
huge, and we need some way to be able to
51:35prune history, and it's really important.
51:37So I said, well, Look, that might,
I agree, I think that's a very
51:40interesting and important problem.
51:42But let's first start, let's just
start by trying to make it as fast
51:45as possible and as small as possible.
51:46So, you know, even if we prune
it, it's going to be pruned
51:49to be even smaller regardless.
51:50this is always when I do a lot of
performance work and people, a lot of
51:54times people reach for multi threading.
51:56Let's, let's spawn it across lots of
threads on your computer, which is a fine
51:59approach, but It's almost always better
to start with trying to make it run as
52:02fast as you can on one thread before
you run it across multiple threads.
52:04I mean, this is why the M1 series
of, of Apple was like such a big
52:08deal because it showed like, okay,
we can actually do a lot better even
52:12in a single threaded environment.
52:15Exactly.
52:15Yeah, but It turns out that, the
collaboratively editable text documents
52:19don't actually grow very fast.
52:21the amount of data, the number
of bytes on disk is tiny.
52:23And, and yeah, like I think
that it might be useful to
52:25build software to prune anyway.
52:27And I've got a bunch of, you know, like
I've thought a lot about that problem
52:29because people keep talking about it.
52:30but from an engineering perspective,
a lot of the time we can just keep all
52:33of the data and it's actually fine.
52:34We just need to, for example, store
it in some slightly more efficient
52:37way sometimes than raw JSON.
52:38And, you know, and like, that's the
thing that we need to think about.
52:41modern computers are so fast.
52:43Like, yeah,
52:44I feel like similar to what you've
mentioned before with quoting Paul
52:49Graham of like, what was the quote again?
52:52It's it's what would it be ridiculous
to not have in a hundred years?
52:55Yeah, exactly.
52:56So you imagine a hundred years, it's
like, we still don't have something.
52:58It's crazy.
52:59Then it's, okay, well, if we didn't have
that in 100 years, it would be crazy.
53:02Could we just build it today?
53:04Exactly.
53:05So similar to that, we can also ask
ourselves more often, like, Which things
53:10would actually be totally fine that
historically we always like shied away
53:14from and that sort of like by now, there's
sort of like this, picture of like a baby
53:20elephant kind of, pinned to a pole and
it's like, it has learned it cannot escape
53:25and now it's, a full upgrown, elephant
and still, pinned to this tiny pole.
53:29I think there's like, a lot of
similar stuff, the way, how we go
53:33about programming and we need to
unlearn, forget about some things.
53:38And this is, I feel like also why
some of the most brilliant, new
53:42technologies are by people, by, by
newcomers, like new generations of
53:47programmers who are like blissfully
unaware of some of like the old stigma.
53:53And this is how we get new ideas as well.
53:56yeah, I really agree with that.
53:57there's something that it doesn't,
I keep thinking about, there
53:59was a, there was the Unix room.
54:01So Unix was invented in a place by some
people and they sat in a room together and
54:06they had one computer and they would write
programs and show them to each other.
54:08And someone wrote spell, you know,
and, and someone wrote like, they
54:12wrote these different little Unix
programs and said, Hey, check it out.
54:15And then, some people, made the
pipe operator and made piping work.
54:18And they started to be able
to connect these programs
54:20together to be able to make.
54:21You know, quite complex programs just as
a series of small programs pipe together.
54:25This is a really beautiful
primitive, and it's a beautiful
54:28thing that, someone created.
54:29And we have it on all
of our modern terminals.
54:32I think there's even a version on Windows,
but all Unixes have something like this.
54:35I feel like at some point we gave
up trying to invent new kinds of
54:38primitives like that, and I dunno
why, but it feels like the sort of
54:41thing that we should be able to do.
54:43Obviously, you know, I sometimes
think about, we've been
54:46talking about the web a bit.
54:47And, we have this beautiful idea,
which is, so we've got these
54:50two different ideas right now.
54:52We've got a desktop application, and
desktop applications have access to
54:55everything that the user has access
to by default, which is interesting.
54:57And Apple's trying to change this,
but keeps getting in trouble for it.
55:00desktop applications are binaries.
55:02They're always native
binaries on every platform.
55:04And they have access to some
set of native, APIs and they
55:07can make sys calls directly.
55:08And then we have another set of
applications called web applications,
55:11which is sandboxed by a browser and,
you know, historically only written
55:14in JavaScript and written in a way
that they can operate on every, every
55:17computer, but only inside the web browser.
55:19And like.
55:20Web applications are really successful, I
think, not because of the web browser, but
55:24because you don't have to install them.
55:26And people sort of forget this, but
they're kind of equivalent, except
55:29this one you have to install for
some reason, and this one you don't.
55:32And because you don't have to install
a web app, people spend a lot of
55:34time optimizing them for size.
55:36So you load up the New York Times and
it'll load a lot of Crap, probably,
55:40but we're looking on the order of
maybe half a meg of JavaScript.
55:42Maybe it's a couple megs of
JavaScript and some images.
55:45Um, whereas if I install, you know,
I haven't actually tried this.
55:47I'm going to get in trouble by
somebody who will actually go and
55:49look, but you look at most iPhone
apps, for example, and they, there
55:53are hundreds of megabytes in size.
55:54I think the Uber app is like
300 megs or something crazy.
55:57Like the Facebook app is huge
and it doesn't even have content.
56:00Like it's not even like
the Uber app is loading.
56:02It's like installing databases.
56:04Who even knows what's in there?
56:06But then web applications are written
in slow languages and I just feel like
56:09it's like well, we could just make
a new platform and we could give it
56:13a new kind of application where you
don't have to install it, but also it
56:15gets access to some set of beautiful
native primitives that might be even
56:19better than what the web provides
today for applications themselves.
56:22Like the web obviously is
designed as a document.
56:25Viewing platform and then we've could
have hacked on applications because it
56:28was so convenient, and we could make
it so that data is just transparently
56:32available and accessible between programs
beautifully using all of the tools and
56:36technologies we've been talking about.
56:38but no one works on this stuff because
we sort of take for granted, it's
56:41like, there's the ruins of old Rome,
you know, and that's, that's like Unix
56:44or it's the, you know, the machine
code and x86 assembly and then modern,
56:48you know, people say, oh, well, Then
they build the web browser and then we
56:51build on top of the web browser react.
56:53And then you build an application on top
of react, but then the application slows.
56:56So you do some other wacky
thing on top of that.
56:58And it's like, you know, underneath the
city is this giant, you know, all of
57:02these ruins that are all full of code
and all being used by modern programs.
57:06But that so many people, particularly
young engineers, they have no
57:09idea about all of this crap.
57:10They just know that if they type the
right thing into a react application,
57:13that they'll get something on the screen.
57:15But all of that stuff, we can actually
like, you know, burn it all if we want
57:19to, and then go and make beautiful things
right from the very base of computers.
57:23Yeah.
57:24I mean, I think there's this sort of
like innovators dilemma and I think this,
57:29you mentioning email as an example, I
think this is one of the words, since
57:33you, you just emails and browsers,
like you, you just cannot get away
57:38with like not supporting the old stuff.
57:40And this is where, If you build a
brand new thing, you don't have to,
57:45account for all of like the historic
mess, and you can just start over.
57:49And, I think this is probably just having
the, the courage or naivety to start over.
57:58I think that that's highly underrated.
58:00and also for the record, I've just
checked, blank loading New York times.
58:04It's like currently five megabytes of
just javaScript and, depending on, well,
58:09and 20 megs, of like other stuff that
I've loaded, like with images and so on.
58:14So, I think that this just proves the
point, like even for New York times,
58:18like five megs of JavaScript, it's fine.
58:21I don't want to know how much of
that is like ads related, et cetera,
58:25but, I just want to encourage
people to rethink their, like their
58:30learned, thinking about trade offs.
58:33Like we're, it's at the same time,
we're kind of indoctrinated with like,
58:37okay, we need to make the initial
page load as quick as possible.
58:42We always have connectivity.
58:44I'd like to alter that slightly
and say like, when we're connected.
58:49We probably have pretty good connectivity.
58:51So let's embrace that, but we're,
not going to be always connected
58:55for the moments where we don't
have perfect connectivity.
58:58Let's, like piggyback on the times
when we had good connectivity and we
59:04should just sync the deltas instead of
like reloading everything every time.
59:08Also goes back to the build problem, the
build system problem that we had before.
59:14Since we don't build things in a
principled enough way, so we don't
59:17trust the stuff that was there before,
and so that leads to us reloading
59:22everything from scratch all the time.
59:24And, I think that's another big
culprit of, systems problems.
59:29I read a great article a while ago,
comparing the size of JavaScript bundles
59:33with War and Peace, saying like, you know,
could you, how many copies of War and
59:38Peace could fit in your JavaScript bundle?
59:40and it's quite a lot.
59:41and the other thing I sometimes
think about is, how many bytes of
59:44data would it take if you took a
screenshot of your website, even as a
59:48PNG, and then sent me the screenshot,
would that be larger or smaller
59:52than it takes to load your website?
59:54And if the answer is that your
screenshot would be smaller than all
59:56of the code that you send me, then
maybe you're doing something wrong.
59:59but even then, like, yeah, I really
encourage people to also think
1:00:03about from the perspective of,
the web browser, it's all code.
1:00:07You know, if you, if you start digging,
it's code a really long way down.
1:00:11And all of that code can be changed.
1:00:13Like web browsers are open source.
1:00:14I've got some quite famously,
infamously, I've got some source
1:00:17code, in Google Chrome, to be able to
interact with Xbox game controllers.
1:00:20I'm not sure if it's still
there, but, I wrote, a user land,
1:00:25USB driver for Google Chrome.
1:00:28so that if you're on Mac OS in
particular, so if you plug in an Xbox
1:00:30game controller to a Mac computer and you
want to play video games, in browsers,
1:00:36then the Xbox controller will work.
1:00:38But there's so much stuff like that, that
like, you know, and I think that's almost
1:00:40crazy that that, that is in Google Chrome.
1:00:43it should be the operating system,
but there's lots of perimeters
1:00:45that we could put in Google Chrome.
1:00:47That would mean that, you know, if
there's some, if there are things
1:00:49that we want to be able to have
access to as web developers, We can
1:00:52build them in as primitives, and
everyone can get access to them.
1:00:54Like, a lot of the standards committees,
you can just go to them, it turns out.
1:00:57You know, like, there's open mailing
lists of the people that build
1:01:00all of this stuff, and they're
just nerds like us, you know?
1:01:02Like, they've just got all of
their own crotchety, angry opinions
1:01:05that they'll tell you about if
you give them half a chance.
1:01:07but, I don't know.
1:01:08I feel like there's not enough
conversation around all this
1:01:11stuff, how it could be better.
1:01:12Going back slightly to the moment where
you reflected on that kind of the creation
1:01:19of primitives, what I found, at least
looking back at my own creative work,
1:01:25what I found easier to than just forcing a
primitive into existing out of thin air is
1:01:32rather embrace sort of like organic chaos,
and then study it really hard and then
1:01:39see basically out of the existing mess.
1:01:43typically if you look hard enough,
if you observe hard enough, you
1:01:46can, observe some things that
later can emerge as primitives.
1:01:53And, this is where almost
paradoxically the more requirements
1:01:57I apply on a certain system.
1:02:01The more it becomes
like simpler over time.
1:02:05And so I've basically just taken more
kind of like inner peace by like, not
1:02:10knowing the primitives upfront right away.
1:02:13I'm basically just trying
to solve the problem.
1:02:15Like I happily say yes to a few
problems and I've had enough, past
1:02:22experience where out of that mess.
1:02:24through lucky coincidences, I realized,
okay, here's some useful, more general
1:02:30primitives and in hindsight, those
primitives look very obvious and
1:02:34someone who then looks at that system
and maybe builds a similar one, they
1:02:39can already embrace those primitive
ideas and, build on top of them, the
1:02:44beginning, but I think for novel, new
primitives, I think the most likely path
1:02:51for them to come into existence is out
of emergence and not out of like forcing
1:02:56them into existence out of thin air.
1:02:58I agree with everything and I'm a
little bit dubious on that last point.
1:03:03And just to push back a little
bit, I think that it's got to
1:03:05be this push and pull, you know,
like they're both so important.
1:03:10I really like what you said though.
1:03:11Again, Rich Hickey, who, You
should watch all of his talks.
1:03:15Anyone who's listening to this, he's
much more insightful than I will ever
1:03:18be, I think, but he gave a talk once and
he said, he talked about hammock driven
1:03:22development as in software development
driven by writing some code and then
1:03:27going outside and lying in a hammock
and thinking really hard about it.
1:03:30And just, just letting it percolate,
like letting the design that you've
1:03:34come up with percolate and say, how does
this problem actually really want to be
1:03:37solved if I were to do a good job at it?
1:03:39and instead of sort of half arsing a
million things and having everyone across
1:03:43the industry half arse the same set of
eight things, you know, lists and so
1:03:46on, I don't know, I can't help but think
that if, if a few people spend some time.
1:03:51Some serious time thinking a lot about
lists, we could have some really nice
1:03:54lists in web browsers and all these
different things and then it would
1:03:57just be solved for everybody, you know,
1:03:58maybe this is, this is why I've
prefaced it with like, that's being
1:04:02for me, the easier path, like for me,
step one is half arsing something.
1:04:07And then looking at it, but I need to
have it be laid out wrong first for me
1:04:12to spot, oh, this is, this is how right.
1:04:15Looks like some more brilliant people
than me can probably skip step one.
1:04:20But for me, this one has
been a more proven approach.
1:04:24I mean, it's the same for me.
1:04:25I used to teach programming and
something, you know, my students would.
1:04:29Sort of sometimes come to me asking me
how they should design their program
1:04:32before they even start writing any code.
1:04:34And I'm convinced that you know
the least about your program,
1:04:38like you know the least about the
program before you start writing it.
1:04:40That's the time that you will
know the least that you will
1:04:42ever know about this problem.
1:04:44So you're the least qualified you're
ever going to be to design it correctly.
1:04:47You know, so you become qualified by
throwing something on the screen and
1:04:51then taking the time to reflect on the
knowledge that you've gained to figure out
1:04:54how it could be written in a better way.
1:04:56it's, yeah, I absolutely agree.
1:04:59And I think this is also this underscore
is like one of the most important things
1:05:04that I hold dearly in the craft of
software engineering, which is the ease
1:05:08of iteration and the speed of iteration.
1:05:11And this is where I spend a obscene
amount of time on just like making
1:05:15so that I have fun and iterating.
1:05:19That it's very cheap for me
to get it wrong 10 times and
1:05:23it's fun to do every iteration.
1:05:26but if it's gruesome to do one
iteration, then you just, run
1:05:30out of like joy and energy.
1:05:32Until you get to the right point.
1:05:34So making the iteration cycles, it's
like, it sounds very obvious, but I
1:05:38think very few people actually put
in the work since it's also partially
1:05:42some pretty annoying work, like getting
your, like your monorepo set up, all
1:05:47dialed in, like particular, like which
JavaScript package manager should you use?
1:05:51Like all of like those stupid things,
but getting all of that stuff dialed in,
1:05:55I think that the reward is, quite big.
1:05:58I mean.
1:05:59I assume that you've read this, but,
again, to plug more things that people
1:06:02should read if they haven't, there's
that beautiful essay of Worse is
1:06:05Better, that talks about all of this.
1:06:07And I feel like, yeah, I think that
life exists like in the intersection
1:06:11of thinking it through and just
throwing something at the wall.
1:06:14And I think all good software is going
to have elements of both of these things
1:06:17where, you know, there's not too much
upfront design and upfront thinking,
1:06:21but there's not too little of it either.
1:06:22You know, like there's got to be some
amount of time, but after you've written
1:06:25a whole lot of code, you take a step back
and you say, how should this have been?
1:06:28If I knew everything I knew
now, how would I build it?
1:06:30And I think everything beautiful
and everything incredible has
1:06:33a lot of those feedback loops.
1:06:35Like I listened to an amazing talk at,
GDC, the Game Developers Conference,
1:06:38once talking about this, and he said
essentially all good games are made
1:06:41by having some ideas, writing them
in code, trying them out, and then
1:06:45throwing out 80 percent of them because
they weren't very good ideas, but 20
1:06:47percent of them were really good ideas.
1:06:49And he said in that talk that
the quality of any program that
1:06:52you make is proportional to the
number of iteration cycles you get
1:06:55through, not how long one cycle is.
1:06:57The number of iteration cycles,
just the sheer amount of repetition
1:07:01that you go through in writing code,
reflecting, changing the code, making
1:07:05it better, writing more code and so on.
1:07:07And I think it's, yeah, I
think it's a beautiful idea.
1:07:10I've been doing improv comedy classes
lately and over the last few years and
1:07:14in improv we learn it's, you can't plan.
1:07:17There's no planning.
1:07:17You don't have a meeting with
your, the people you share the
1:07:20stage with before the show starts.
1:07:22So everything is just asking
the question of what comes next?
1:07:25Like, which I feel like
is this life philosophy.
1:07:27Just at every moment, what comes next?
1:07:29And maybe what comes next
is writing more code.
1:07:31And maybe what comes next is
stepping away and thinking about
1:07:33the code and refactoring it.
1:07:34But, like, I feel like that's
the right question just to
1:07:37hold, you know, consciously.
1:07:39so you've given me two segues now to
ask you about another topic that I
1:07:43think is very top of mind for you.
1:07:44So one is sort of this almost evolution,
like, nature evolution of software
1:07:50and good products, et cetera, where
it's all about the iteration cycles.
1:07:53That's like how biology works.
1:07:55So this is why we as humans exist, et
cetera, and why other good things exist.
1:08:00and then also asking the
question, what is next?
1:08:03That is, that's the essence
of how an LLM works.
1:08:07So I think you've been thinking
a lot about, the topic of AI and
1:08:11what that means for our culture of
programmers and software creatives.
1:08:17So I'm, I'm curious, what are some
of the leading questions for you
1:08:22are when you're rethinking and
like digging into the topic of AI?