See all Lex Fridman transcripts on Youtube

youtube thumbnail

Brian Kernighan: UNIX, C, AWK, AMPL, and Go Programming | Lex Fridman Podcast #109

1 hours 43 minutes 9 seconds

🇬🇧 English

S1

Speaker 1

00:00

The following is a conversation with Brian Kernighan, a professor of computer science at Princeton University. He was a key figure in the computer science community in the early Unix days, alongside Unix creators Ken Thompson and Dennis Ritchie. He co-authored the C programming language with Dennis Ritchie, the creator of C, and has written a lot of books on programming, computers, and life, including the practice of programming, the Go programming language, and his latest, Unix, a history, and a Memoir. He co-created AWK, the text processing language used by Linux folks like myself.

S1

Speaker 1

00:39

He co-designed Ample, an algebraic modeling language that I personally love and have used a lot in my life for large scale optimization. I think I can keep going for a long time with his creations and accomplishments, which is funny because given all that, he's 1 of the most humble and kind people I've spoken to on this podcast. Quick summary of the ads. 2 new sponsors, the amazing, self-cooling 8 Sleep mattress and Raycon earbuds.

S1

Speaker 1

01:13

Please consider supporting the podcast by going to eightsleep.com slash Lex and going to buyraycon.com slash Lex. Click the links, buy the stuff. It really is the best way to support this podcast and the journey I'm on. If you enjoy this thing, subscribe on YouTube, review it with Firestarz and Apple Podcast, support it on Patreon, or connect with me on Twitter at Lex Friedman.

S1

Speaker 1

01:39

As usual, I'll do a few minutes of ads now, and never any ads in the middle that can break the flow of the conversation. This show is sponsored by 8Sleep and its incredible Pod Pro mattress that you can check out at 8sleep.com slash Lex to get $200 off. The mattress controls temperature with an app and can cool down to as low as 55 degrees. Research shows that temperature has a big impact on the quality of our sleep.

S1

Speaker 1

02:08

Anecdotally, it's been a game changer for me. I love it. The Pod Pro is packed with sensors that track heart rate, heart rate variability, and respiratory rate, showing it all on their app once you wake up. Plus, if you have a partner, you can control the temperature of each side of the bed.

S1

Speaker 1

02:26

I don't happen to have 1, but the Asleep app reminds me that I should probably get on that. So ladies, if a temperature controlled mattress isn't a good reason to apply, I don't know what is. The app's health metrics are amazing, but the cooling alone is honestly worth the money. As some of You know, I don't always sleep, but when I do, I choose the Asleep Pod Pro mattress.

S1

Speaker 1

02:51

Check it out at asleep.com slash Lex to get $200 off. This show is also sponsored by Raycon earbuds. Get them at buyraycon.com slash Lex. They've quickly become my main method of listening to podcasts, audio books, and music.

S1

Speaker 1

03:10

When I run, do the push-ups and pull-ups that I've begun to hate at this point, or just living life. In fact, I often listen to brown noise with these when I'm thinking deeply about something. It helps me focus the mind. They're super comfortable, pair easily, great sound, great bass, 6 hours of playtime.

S1

Speaker 1

03:30

In fact, for fun, I have 1 of the earbuds in now and I'm listening to Europa by Santana, probably 1 of my favorite guitar songs. It kind of makes me feel like I'm in a music video. So, they told me to say that a bunch of celebrities use these, like Snoop Dogg, Melissa Etheridge, and Cardi B. I don't even know who Cardi B is, but her earbud game is on point.

S1

Speaker 1

03:55

To mention celebrities I actually care about, I'm sure if Richard Feynman was still with us, he'd be listening to the Joe Rogan experience with Raycon earbuds. Get them at buyraycon.com slash Lex. It's how they know I sent you and increases the chance that he'll support this podcast in the future. So for all of the sponsors, click all of the links.

S1

Speaker 1

04:17

It really helps this podcast. And now, here's my conversation with Brian Kernighan.

S2

Speaker 2

04:25

Unix started being developed 50 years ago, maybe more than 50 years ago. Can you tell the story, like you describe in your new book, of how Unix was created?

S3

Speaker 3

04:35

Ha, if I can remember that far back, it was some while ago. So I think the gist of it is that at Bell Labs In 1969, there were a group of people who had just finished working on the Multics project, which was itself a follow-on to CTSS. So we can go back sort of an infinite regress in time, but the CTSS was a very, very, very nice time-sharing system.

S3

Speaker 3

05:00

It was very nice to use. I actually used it as that summer I spent in Cambridge in 1966.

S2

Speaker 2

05:06

What was the hardware there? So what's the operating system? What's the hardware there?

S2

Speaker 2

05:10

What's the CTS look like?

S3

Speaker 3

05:12

So CTSS looked like kind of like a standard time-sharing system. Certainly at the time, it was the only time-sharing.

S2

Speaker 2

05:19

Let's go back to the basic. What's the time-sharing system?

S3

Speaker 3

05:22

Okay. In the beginning was the word and the word was the sound. And then

S2

Speaker 2

05:25

there was time-sharing systems. Yeah.

S3

Speaker 3

05:27

If we go back into, let's call it the 1950s and early 1960s, most computing was done on very big computers, physically big, although not terribly powerful by today's standards, that were maintained in very large rooms. And you use things like punch cards to write your programs on and talk to them. So you would take a deck of cards, write your program on it, send it over a counter, hand it to an operator.

S3

Speaker 3

05:53

And some while later back would come something that said, Oh, you made a mistake. And then you'd recycle. And so it was very, very slow. So the idea of time-sharing was that you take basically that same computer, but connect to it with something that looked like an electric typewriter.

S3

Speaker 3

06:09

That could be a long distance away, it could be close, but fundamentally what the operating system did was to give each person who was connected to it and wanting to do something a small slice of time to do a particular job. So I might be editing a file, so I would be typing. And every time I hit a keystroke, the operating system would wake up and said, oh, he typed character, let me remember that. And then he'd go back to doing something else.

S3

Speaker 3

06:34

So it'd be going around and around a group of people who were trying to get something done, giving each a small slice of time and giving them each the illusion that they pretty much had the whole machine to themselves. And hence, time sharing, that is sharing the computing time resource of the computer among a number of people who were doing it.

S2

Speaker 2

06:54

Without the individual people being aware that there's others, in a sense, the illusion, the feelings that the machine is your own.

S3

Speaker 3

07:02

Pretty much that was the idea. Yes, you had, if it were well done, and if it were fast enough and other people weren't doing too much, you did have the illusion that you had the whole machine to yourself. And it was very much better than the punch card model.

S3

Speaker 3

07:16

And so CTSS, the compatible time-sharing system, was I think arguably the first of these. It was done, I guess, technically in 64, something like that. It ran on an IBM 7094, slightly modified to have twice as much memory as the norm. It had 2 banks of 32K words instead of 1.

S3

Speaker 3

07:37

So, it's just you

S2

Speaker 2

07:38

were- 32K words, yeah.

S3

Speaker 3

07:40

Each word was 36 bits, so call it, you know, about 150 kilobytes times 2. So, by today's standards, that's down in the noise. But at the time, that was a lot of memory and memory was expensive.

S3

Speaker 3

07:53

So CTSS was just a wonderful environment to work on. It was done by the people at MIT, led by Fernando Corbato, Corby, who died just earlier this year, and a bunch of other folks. So I spent the summer of 66 working on that. Had a great time, met a lot of really nice people, and indirectly knew of people at Bell Labs who were also working on a follow-on to CTSS that was called Multics.

S3

Speaker 3

08:24

So Multics was meant to be the system that would do everything that CTSS did, but do it better for a larger population. All the usual stuff.

S2

Speaker 2

08:31

Now the actual time sharing, the scheduling, how much, what's the algorithm that performs the scheduling? What's that look like? How much magic is there?

S2

Speaker 2

08:40

What are the metrics? How does it all work in the beginning?

S3

Speaker 3

08:44

So The answer is I don't have a clue. I think the basic idea was nothing more than who all wants to get something done. Suppose that things are very quiet in the middle of the night, then I get all the time that I want.

S3

Speaker 3

08:55

Suppose that you and I are contending at high noon for something like that, then probably the simplest algorithm is a round robin 1 that gives you a bit of time, gives me a bit of time. And then we could adapt to that. Like, what are you trying to do? Are you text editing or are you compiling or something?

S3

Speaker 3

09:11

And then we might adjust the scheduler according to things like that.

S2

Speaker 2

09:15

So, okay, so Multics was trying to just do some of the, clean it up a little bit.

S3

Speaker 3

09:20

Well, it was meant to be much more than that. So Multics was the multiplexed information and computing service, and it was meant to be a very large thing that would provide computing utility, something that where you could actually think of it as just a plug in the wall service, sort of like cloud computing today, same idea, but 50 odd years earlier. And so what Multics offered was a richer operating system environment, a piece of hardware that was better designed for doing the kind of sharing of resources, and presumably lots of other things.

S2

Speaker 2

09:55

Do you think people at that time had the dream of what cloud computing is starting to become now, which is computing is everywhere that you can just plug in almost, you know, and you never know how the magic works. You just kind of plug in, add your little computation that you need to perform and it does it. Was that the dream?

S3

Speaker 3

10:14

I don't know where that was the dream. I wasn't part of it at that point. Remember, I was an intern for a summer.

S3

Speaker 3

10:19

But my sense is, given that it was over 50 years ago, yeah, they had that idea that it was an information utility, that it was something where if you had a computing task to do, you could just go and do it. Now I'm betting that they didn't have the same view of computing for the masses, let's call it, the idea that your grandmother would be shopping on Amazon. I don't think that was part of it. But if your grandmother were a programmer, it might be very easy for her to go and use this kind of utility.

S2

Speaker 2

10:51

What was your dream of computers at that time? What did you see as the future of computers? Could you have predicted what computers are today?

S3

Speaker 3

10:59

Oh, short answer, absolutely not. I have no clue. I'm not sure I had a dream.

S3

Speaker 3

11:03

It was a dream job in the sense that I really enjoyed what I was doing. I was surrounded by really, really nice people. Cambridge is a very fine city to live in in the summer, less so in the winter when it snows, but in the summer It was a delightful time. And so I really enjoyed all of that stuff and I learned things.

S3

Speaker 3

11:20

And I think the good fortune of being there for summer led me then to get a summer job at Bell Labs the following summer. And that was quite useful for the future.

S2

Speaker 2

11:31

So this Bell Labs is this magical, legendary place. So first of all, where is Bell Labs? And can you start talking about that journey towards Unix at Bell Labs?

S3

Speaker 3

11:46

Yeah, so Bell Labs is physically scattered around, at the time, scattered around New Jersey. The primary location was in a town called Murray Hill, or a location called Murray Hill. It was actually across the boundary between 2 small towns in New Jersey called New Providence and Berkeley Heights.

S3

Speaker 3

12:03

Think of it as about 15, 20 miles straight west of New York City, and therefore about an hour north of here in Princeton. And at that time, it had make up a number, 3,000 or 4,000 people there, many of whom had PhDs and mostly doing physical sciences, chemistry, physics, materials, kinds of things, but very strong math and rapidly growing interest in computing as people realized you could do things with computers that you might not have been able to do before. You could replace labs with computers that had worked on models of what was going on. So that was the essence of Bell Labs.

S3

Speaker 3

12:44

And again, I wasn't a permanent employee there. That was another internship. I got lucky in internships.

S2

Speaker 2

12:50

I mean, if you could just linger on it a little bit, what was in the air there? Because some of the, the number of Nobel Prizes, the number of Turing Awards, and just legendary computer scientists that come from there, inventions including, developments including Unix, it's just, it's unbelievable. So was there something special about that place?

S3

Speaker 3

13:11

Oh, I think there was very definitely something special. I mentioned the number of people, it's a very large number of people, very highly skilled and working in an environment where there was always something interesting to work on because the goal of Bell Labs, which was a small part of AT&T, which provided basically the country's phone service, The goal of AT&T was to provide service for everybody. And the goal of Bell Labs was to try and make that service keep getting better.

S3

Speaker 3

13:37

So improving service. And that meant doing research on a lot of different things. Physical devices like the transistor or fiber, optical cables or microwave systems, all of these things the labs worked on. And it was kind of just the beginning of real boom times in computing as well.

S3

Speaker 3

13:57

Because when I was there, I went there first in 66. So computing was at that point fairly young and so people were discovering that you could do lots of things with computers.

S2

Speaker 2

14:08

So how's Unix born? So Multics,

S3

Speaker 3

14:12

in spite of having an enormous number of really good ideas and lots of good people working on it fundamentally didn't live up, at least in the short run, and I think ultimately really ever, to its goal of being this information utility. It was too expensive and certainly what was promised was delivered much too late. And so in roughly the beginning of 1969, Bell Labs pulled out of the project.

S3

Speaker 3

14:37

The project at that point had included MIT, Bell Labs, and General Electric. General Electric made computers, So General Electric was the hardware operation. So Bell Labs, realizing this wasn't going anywhere on a timescale they cared about, pulled out a project. And this left several people with an acquired taste for really, really nice computing environments, but no computing environment.

S3

Speaker 3

15:03

And so they started thinking about what could you do if you're going to design a new operating system that would provide the same kind of comfortable computing as CTSS had, but also the facilities of something like Multics sort of brought forward. So they did a lot of paper design stuff. And at the same time, Ken Thompson found what is characterized as a little used PDP-7, where he started to do experiments with file systems, just how do you store information on a computer in an efficient way. And then this famous story that his wife went away to California for 3 weeks taking their one-year-old son, and 3 weeks, and he sat down and wrote an operating system, which ultimately became Unix.

S3

Speaker 3

15:47

So software productivity was good in those days.

S2

Speaker 2

15:50

So PDP, what's a PDP-7? So it's a piece of hardware.

S3

Speaker 3

15:53

Yeah, it's a piece of hardware. It was 1 of early machines made by Digital Equipment Corporation, DEC, And it was a mini computer, so-called. It had, I would have to look up the numbers exactly, but it had a very small amount of memory, maybe 16K, 16-bit words or something like that, relatively slow, probably not super expensive.

S3

Speaker 3

16:17

Maybe, again, making this up, I'd have to look it up, $100,000 or something like that.

S2

Speaker 2

16:21

Which is not super expensive in those days, right?

S3

Speaker 3

16:24

It was expensive, it was enough that you and I probably wouldn't be able to buy 1, but a modest group of people could get together. But in any case, it came out, if I recall, in 1964. So by 1969, it was getting a little obsolete, and that's why it was little used.

S2

Speaker 2

16:41

If you can sort of comment, what do you think it's like to write an operating system like that? So that process that Ken went through in 3 weeks, because you were, I mean, you're a part of that process. You contributed a lot to Unix's early development.

S2

Speaker 2

16:57

So what do you think it takes to do that first step, that first kind of, from design to reality on the PDP?

S3

Speaker 3

17:05

Well, let me correct 1 thing. I had nothing to do with it. So I did not write it.

S3

Speaker 3

17:10

I have never written operating system code. And so I don't know. Now an operating system is simply code. And this first 1 wasn't very big, but it's something that lets you run processes of some, lets you execute some kind of code that has been written.

S3

Speaker 3

17:27

It lets you store information for periods of time so that it doesn't go away when you turn the power off or reboot or something like that. And there's a kind of a core set of tools that are technically not part of an operating system, but you probably need them. In this case, Ken wrote an assembler for the PDP-7 that worked. He needed a text editor so that he could actually create text.

S3

Speaker 3

17:49

He had the file system stuff that he had been working on and then the rest of it was just a way to load things, executable code from the file system into the memory, give it control and then recover control when it was finished or in some other way quit.

S2

Speaker 2

18:04

What was the code written in the primarily the programming language, was it in assembly?

S3

Speaker 3

18:09

Yeah, PDP 7 assembler that Ken created. These things were assembly language until probably the, call it 1973 or 74, something like that.

S2

Speaker 2

18:21

Forgive me if it's a dumb question, but it feels like a daunting task to write any kind of complex system in assembly.

S3

Speaker 3

18:28

Absolutely.

S2

Speaker 2

18:31

It feels like impossible to do any kind of what we think of as software engineering with assembly because to work in a big picture sort of. I think it's hard.

S3

Speaker 3

18:41

It's been a long time since I wrote assembly language. It is absolutely true that in assembly language, if you make a mistake, nobody tells you. There are no training wheels whatsoever.

S3

Speaker 3

18:49

And so stuff doesn't work. Now what?

S2

Speaker 2

18:51

And you're- There's no debuggers.

S3

Speaker 3

18:53

Well, there could be debuggers, but that's the same problem, right? How do you actually get something that will help you debug it? So part of it is an ability to see the big picture.

S3

Speaker 3

19:05

Now, these systems were not big in the sense that today's pictures are. So the big picture was in some sense more manageable. I mean, then realistically, there's an enormous variation in the capabilities of programmers. And Ken Thompson, who did that first 1, is kind of the singularity, in my experience, of programmers, with no disrespect to you or even to me.

S3

Speaker 3

19:28

He's in several leagues removed.

S2

Speaker 2

19:30

I know there's levels. It's a fascinating thing that there are unique stars in particular in the programming space and at a particular time. You know, the time matters too, the timing of when that person comes along.

S2

Speaker 2

19:44

And a wife does have to leave. There's this weird timing that happens that and then all of a sudden something beautiful is created. I mean, how does it make you feel that there's a system that was created in 3 weeks or maybe you can even say on a whim, but not really, but of course quickly, that is now, you could think of most of the computers in the world run on a Unix-like system. Right.

S2

Speaker 2

20:12

How do you, like, if you kind of zoom from the alien perspective, if you were just observing Earth, that all of a sudden these computers took over the world and they started from this little initial seed of Unix. How does that make you feel?

S3

Speaker 3

20:26

It's quite surprising, and you asked earlier about prediction. The answer is no. There's no way you could predict that kind of evolution.

S3

Speaker 3

20:34

And I don't know whether it was inevitable or just a whole sequence of blind luck. I suspect more of the latter. And so I look at it and think, gee, that's kind of neat. I think the real question is, what does Ken think about that?

S3

Speaker 3

20:50

Because he's the guy arguably from whom it really came. Tremendous contributions from Dennis Ritchie and then others around in that Bell Labs environment. But if you had to pick a single person, that would be Ken.

S2

Speaker 2

21:04

So you've written a new book, Unix, a history and a memoir. Are there some memorable human stories, funny or profound from that time that just kind of stand out?

S3

Speaker 3

21:14

Oh, there's a lot of them in a sense. And again, it's a question of can you resurrect them in real time? If memory fails.

S3

Speaker 3

21:21

But I think part of it was that Bell Labs at the time was a very special kind of place to work because there were a lot of interesting people and the environment was very, very open and free. It was a very cooperative environment, very friendly environment. And so if you had an interesting problem, you go and talk to somebody and they might help you with the solution. And it was a kind of a fun environment too in which people did strange things and often tweaking the bureaucracy in 1 way or another.

S2

Speaker 2

21:52

So rebellious in certain kinds of ways.

S3

Speaker 3

21:54

In some ways, yeah, absolutely. I think most people didn't take too kindly to the bureaucracy and I'm sure the bureaucracy put up with an enormous amount that they didn't really want to.

S2

Speaker 2

22:05

So maybe to linger on it a little bit, do you have a sense of what the philosophy that characterizes Unix is, the design, not just the initial, but just carry through the years, just being there, being around it. What's the fundamental philosophy behind the system?

S3

Speaker 3

22:23

I think 1 aspect of the fundamental philosophy was to provide an environment that made it easy to write or easier, productive to write programs. So it was meant as a programmer environment. It wasn't meant specifically as something to do some other kind of job.

S3

Speaker 3

22:38

For example, it was used extensively for word processing, but it wasn't designed as a word processing system. It was used extensively for lab control, but it wasn't designed for that. It was used extensively as a front end for big other systems, big dump systems, but it wasn't designed for that. It was meant to be an environment where it was really easy to write programs.

S3

Speaker 3

22:58

So the programmers could be highly productive. And part of that was to be a community. And there's some observation from Dennis Ritchie, I think at the end of the book, that says that from his standpoint, the real goal was to create a community where people could work as programmers on a system. And I think in that sense, certainly for many, many years, it succeeded quite well at that.

S3

Speaker 3

23:22

And part of that is the technical aspects of, because it made it really easy to write programs, people did write interesting programs, those programs tended to be used by other programmers. And so it was kind of a virtuous circle of more and more stuff coming out that was really good for programmers.

S2

Speaker 2

23:39

And you were part of that community of programmers. So what was it like writing programs on that early Unix?

S3

Speaker 3

23:45

It was a blast, it really was. You know, I like to program. I'm not a terribly good programmer, but it was a lot of fun to write code.

S3

Speaker 3

23:55

And in the early days, there was an enormous amount of what you would today, I suppose, call low-hanging fruit. People hadn't done things before, and this was this new environment, and the whole combination of nice tools and very responsive system and tremendous colleagues made it possible to write code. You could have an idea In the morning, you could do an experiment with it. You could have something limping along that night or the next day, and people would react to it, and they would say, oh, that's wonderful, but you really screwed up here.

S3

Speaker 3

24:28

And the feedback loop was then very, very short and tight. And so a lot of things got developed fairly quickly that in many cases still exist today. And I think that was part of what made it fun because programming itself is fun. It's puzzle solving in a variety of ways, but I think it's even more fun when you do something that somebody else then uses Even if they whine about it not working the fact that they used it is is part of the reward mechanism

S2

Speaker 2

24:58

And what was the method of an interaction the communication when you do that feedback loop? I mean this is before the Internet

S3

Speaker 3

25:05

certainly before the Internet It was mostly physical right there, somebody would come into your office and say something.

S2

Speaker 2

25:13

So these places are all close by, like offices are nearby, so you're really lively in interaction.

S3

Speaker 3

25:18

Yeah, yeah, no, Bell Labs was fundamentally 1 giant building, and most of the people were involved in this Unix stuff were in 2 or 3 quarters, and there was a room, oh, how big was it? Probably, call it 50 feet by 50 feet, make up a number of that, which had some access to computers there, as well as in offices and people hung out there and it had a coffee machine. And so it was mostly very physical.

S3

Speaker 3

25:46

We did use email, of course, but it was fundamentally for a long time all on 1 machine, so there was no need for internet.

S2

Speaker 2

25:56

It's fascinating to think about what computing would be today without Bell Labs. It seems so many people being in the vicinity of each other, sort of getting that quick feedback, working together, so many brilliant people. I don't know where else that could have existed in the world and being given how that came together.

S2

Speaker 2

26:17

Yeah, how does that make you feel that that's that little element of history?

S3

Speaker 3

26:23

Well, I think that's very nice, but in a sense it's survivor bias. And if it hadn't happened at Bell Labs, there were other places that were doing really interesting work as well. Xerox PARC is perhaps the most obvious 1.

S3

Speaker 3

26:34

Xerox PARC contributed an enormous amount of good material. And many of the things we take for granted today in the same way came from Xerox PARC experience. I don't think they capitalized in the long run as much. Their parent company was perhaps not as lucky in capitalizing on this, who knows?

S3

Speaker 3

26:52

But that's certainly another place where there was a tremendous amount of influence. There were a lot of good university activities. MIT was obviously no slouch in this kind of thing, and others as well.

S2

Speaker 2

27:07

So Unix turned out to be open source because of the various ways that AT&T operated and sort of it had to, It was, the focus was on telephones. So, well.

S3

Speaker 3

27:18

I think that's a mischaracterization in a sense. It absolutely was not open source. It was very definitely proprietary, licensed, but it was licensed freely to universities in source code form for many years.

S3

Speaker 3

27:33

And because of that, generations of university students and their faculty people grew up knowing about Unix. And there was enough expertise in the community that it then became possible for people to go off in their own direction and build something that looked Unix-like. The Berkeley version of Unix started with that licensed code and gradually picked up enough of its own code contributions, notably from people like Bill Joy, that eventually it was able to become completely free of any AT&T code. Now there was an enormous amount of legal jockeying around this in the late, early to late 80s, early 90s, something like that.

S3

Speaker 3

28:19

And then, I guess the open source movement might have started when Richard Stallman started to think about this in the late 80s. And by 1991, when Torvalds decided he was going to do a Unix-like operating system, there was enough expertise in the community that first he had a target. He could see what to do because the Unix system call interface and the tools and so on were there. And so he was able to build an operating system that at this point, when you say Unix, in many cases what you're really thinking is Linux.

S2

Speaker 2

28:58

Linux, yeah. But It's funny that from my distant perception, I felt that Unix was open source without actually knowing it, but what you're really saying, it was just freely licensed.

S3

Speaker 3

29:11

It was freely licensed.

S2

Speaker 2

29:12

So it felt open source, because universities are not trying to make money, so it felt open source in a sense that you can get access if you wanted.

S3

Speaker 3

29:20

Right, and a very, very, very large number of universities had the license and they were able to talk to all the other universities who had the license. And so technically not open, technically belonging to AT&T, pragmatically pretty open.

S2

Speaker 2

29:34

And so there's a ripple effect that all the faculty and the students then all grew up and then they went throughout the world and permeated in that kind of way. So what kind of features do you think make for a good operating system? If you take the lessons of Unix, you said, you know, make it easy for programmers.

S2

Speaker 2

29:58

Like that seems to be an important 1. But also Unix turned out to be exceptionally robust and efficient. So is that an accident when you focus on the programmer or is that a natural outcome?

S3

Speaker 3

30:14

I think Part of the reason for efficiency was that it began on extremely modest hardware. Very, very, very tiny. And so you couldn't get carried away.

S3

Speaker 3

30:23

You couldn't do a lot of complicated things because you just didn't have the resources, either processor speed or memory. And so that enforced a certain minimality of mechanisms and maybe a search for generalizations so that you would find 1 mechanism that served for a lot of different things rather than having lots of different special cases. I think the file system in Unix is a good example of that. The file system interface in its fundamental form is extremely straightforward.

S3

Speaker 3

30:53

And that means that you can write code very, very effectively for the file system. And then 1 of those generalizations is that, gee, that file system interface works for all kinds of other things as well. And so in particular, the idea of reading and writing to devices is the same as reading and writing to a disk that has a file system. And then that gets carried further in other parts of the world.

S3

Speaker 3

31:18

Processes become, in effect, files in a file system. And the Plan 9 operating system, which came along, I guess, in the late 80s or something like that, took a lot of those ideas from the original Unix and tried to push the generalization even further so that in plan 9, a lot of different resources are file systems. They all share that interface. So that would be 1 example where finding the right model of how to do something means that an awful lot of things become simpler and it means therefore that more people can do useful, interesting things with them without having to think as hard about it.

S2

Speaker 2

31:54

So you said you're not a very good programmer. That's true. You're the world's most Modest human being, okay, but you'll continue saying that.

S2

Speaker 2

32:03

I understand how this works. But you do radiate a sort of love for programming. So let me ask, do you think programming is more an art or a science? Is it creativity or kind of rigor?

S3

Speaker 3

32:16

I think it's some of each. It's some combination. Some of the art is figuring out what it is that you really want to do, what should that program be, what would make a good program, and that's some understanding of what the task is, what the people who might use this program want.

S3

Speaker 3

32:33

I think that's art in many respects. The science part is trying to figure out how to do it well. Some of that is real computer science-y stuff, like what algorithm should we use at some point? Mostly in the sense of being careful to use algorithms that will actually work properly, scale properly, avoiding quadratic algorithms when a linear algorithm should be the right thing, that kind of more formal view of it.

S3

Speaker 3

33:03

Same thing for data structures. But also it's, I think, an engineering field as well. And engineering is not quite the same as science because engineering, you're working with constraints. You have to figure out not only what is a good algorithm for this kind of thing, but what's the most appropriate algorithm given the amount of time we have to compute, the amount of time we have to program, what's likely to happen in the future with maintenance, who's going to pick this up in the future, all of those kind of things that if you're an engineer, you get to worry about.

S3

Speaker 3

33:37

Whereas if you think of yourself as a scientist, well, you can maybe push them over the horizon in a way. And if you're an artist, what's that?

S2

Speaker 2

33:45

So just on your own personal level, what's your process like of writing a program? Say a small and large sort of tinkering with stuff. Do you just start coding right away and just kind of evolve iteratively with a loose notion or do you plan on a sheet of paper first and then kind of design what they teach you in the kind of software engineering courses in undergrad or something like that?

S2

Speaker 2

34:13

What's your process like?

S3

Speaker 3

34:15

It's certainly much more the informal incremental. First, I don't write big programs at this point. It's been a long time since I wrote a program that was more than, I call it a few hundred or more lines, something like that.

S3

Speaker 3

34:26

Many of the programs I write are experiments for either something I'm curious about or often for something that I wanna talk about in a class. And so those necessarily tend to be relatively small. A lot of the kind of code I write these days tends to be for sort of exploratory data analysis where I've got some collection of data and I wanna try and figure out what on earth is going on in it. And for that, those programs tend to be very small.

S3

Speaker 3

34:52

Sometimes you're not even programming, you're just using existing tools like counting things. Or sometimes you're writing ox scripts because 2 or 3 lines will tell you something about a piece of data. And then when it gets bigger, well, then I will probably write something in Python because that scales better. Up to call it a few hundred lines or something like that.

S3

Speaker 3

35:14

And it's been a long time since I wrote programs that were much more than that.

S2

Speaker 2

35:18

Speaking of data exploration and awk, first, what is awk?

S3

Speaker 3

35:23

So awk is a scripting language that was done by myself, L. Aho, and Peter Weinberger. We did that originally in the late 70s.

S3

Speaker 3

35:32

It was a language that was meant to make it really easy to do quick and dirty tasks like counting things or selecting interesting information from basically all text files, rearranging it in some way or summarizing it.

S2

Speaker 2

35:48

It runs a command on each line of a file. I mean, it's still exceptionally widely used today.

S3

Speaker 3

35:55

Oh, absolutely, yeah.

S2

Speaker 2

35:56

And it's so simple and elegant, sort of the way to explore data. Turns out you can just write a script that does something seemingly trivial on a single line, and that giving you that slice of the data somehow reveals something fundamental about the data. And that keeps, that seems to work still.

S3

Speaker 3

36:16

Yeah, it's very good for that kind of thing. And that's sort of what it was meant for. I think what we didn't appreciate was that the model was actually quite good for a lot of data processing kinds of tasks and that it's kept going as long as it has because at this point it's over 40 years old, and it's still, I think, a useful tool.

S3

Speaker 3

36:36

And well, this is paternal interest, I guess, but I think in terms of programming languages, you get the most bang for the buck by learning awk. And it doesn't scale to big programs, but it does pretty darn well on these little things where you just want to see all the somethings in something. So yeah, I find I probably write more awk than anything else at this point.

S2

Speaker 2

36:58

So what kind of stuff do you love about awk? Like is there, if you can comment on sort of things that give you joy when you can, in a simple program, reveal something about the data? Is there something that stands out from particular features?

S3

Speaker 3

37:15

I think it's mostly the selection of default behaviors. You sort of hinted at it a moment ago. What Ock does is to read through a set of files and then within each file, it reads through each of the lines.

S3

Speaker 3

37:28

And then on each of the lines, It has a set of patterns that it looks for. That's your awk program. And if 1 of the patterns matches, there is a corresponding action that you might perform. And so it's kind of a quadruply nested loop or something like that.

S3

Speaker 3

37:45

And that's all completely automatic. You don't have to say anything about it. You just write the pattern and the action and then run the data by it. And so that paradigm for programming is very natural and effective 1.

S3

Speaker 3

37:56

And I think we captured that reasonably well in Ock. And it does other things for free as well. It splits the data into fields so that on each line there's fields separated by white space or something. And so it does that for free.

S3

Speaker 3

38:08

You don't have to say anything about it. And it collects information as it goes along. Like what line are we on? How many fields are there on this line.

S3

Speaker 3

38:17

So lots of things that just make it so that a program which in another language, let's say Python, would be 5, 10, 20 lines in Arc is 1 or 2 lines.

S2

Speaker 2

38:27

And so because it's 1 or 2 lines, you can do it on the shell. Like you don't have to open up another whole thing. You can just do it right there in the interaction with the operatives directly.

S2

Speaker 2

38:38

Is there other shell commands that you love over the years like you really enjoy using? Oh, grep. Grep?

S3

Speaker 3

38:47

Grep's the only 1. Yeah, Grep does everything.

S2

Speaker 2

38:51

So Grep is a kind of a, what is it? A simpler version of awk, I would say?

S3

Speaker 3

38:55

In some sense, yeah, right, because- What is Grep? So Grep is, it basically searches the input for particular patterns, regular expressions, technically of a certain class. And it has that same paradigm that Ock does.

S3

Speaker 3

39:08

It's a pattern action thing. It reads through all the files and then all the lines in each file, but it has a single pattern, which is the regular expression you're looking for and a single action printed if it matches. So in that sense, it's a much simpler version and you could write grep and awk as a one-liner. And I use grep probably more than anything else at this point, just because it's so convenient and natural.

S2

Speaker 2

39:34

Why do you think, it's such a powerful tool, Graph Knock, why do you think operating systems like Windows, for example, don't have it? Sort of, You can of course, I use, which is amazing now, there's Windows for Linux, which you could basically use all the fun stuff like Auken, grep, and inside of Windows, but Windows naturally, as part of the graphical interface, the simplicity of grep, sort of searching through a bunch of files and just popping up naturally. Why do you think that's unique to the Unix and Linux environment?

S3

Speaker 3

40:11

I don't know. And it's not strictly unique, but it's certainly focused there. And I think some of it's the weight of history that Windows came from MS-DOS.

S3

Speaker 3

40:21

MS-DOS was a pretty pathetic operating system, although common on an unboundedly large number of machines. But somewhere in roughly the 90s, Windows became a graphical system. I think Microsoft spent a lot of their energy on making that graphical interface what it is. That's a different model of computing.

S3

Speaker 3

40:43

It's a model of computing where you point and click and sort of experiment with menus. It's a model of computing works rather well for people who are not programmers. You just want to get something done, whereas teaching something like the command line to non-programmers turns out to sometimes be an uphill struggle. And so I think Microsoft probably was right in what they did.

S3

Speaker 3

41:06

Now you mentioned Whistle or whatever it's called, the

S2

Speaker 2

41:09

Linux. I wonder what's pronounced, W-S-L is what? I've never actually pronounced the Whistle, I like it.

S3

Speaker 3

41:13

I have no idea. But there have been things like that for a long, a SIGWIN for example, which is a wonderful collection of take all your favorite tools from Unix and Linux and just make them work perfectly on Windows. And so that's something that's been going on for at least 20 years, if not longer.

S3

Speaker 3

41:30

And I use that on my 1 remaining Windows machine routinely because it's for, if you're doing something that is batch computing, command line, suitable for command line, that's the right way to do it because the Windows equivalents are, if nothing else, not familiar to me.

S2

Speaker 2

41:47

But I would definitely recommend to people to if they don't use Sigma to try Whistle. Yes. I've been so excited that I could use Bash, that you Bash write scripts quickly in Windows.

S2

Speaker 2

42:00

It's changed my life. Okay, what's your perfect programming setup? What computer, what operating system, what keyboard, what editor?

S3

Speaker 3

42:10

Yeah, perfect is too strong a word. It's way too strong a word. What I use by default, I have at this point a 13-inch MacBook Air, which I use because it's a reasonable balance of the various things I need.

S3

Speaker 3

42:25

I can carry it around. It's got enough computing horsepower, screen's big enough, keyboard's okay. I basically do most of my computing on that. I have a big iMac in my office that I use from time to time as well, especially when I need a big screen, but otherwise it tends not to be used as much.

S2

Speaker 2

42:47

Editor.

S3

Speaker 3

42:48

I use mostly SAM, which is an editor that Rob Pike wrote long ago at Bell Labs. Did that, sorry to

S2

Speaker 2

42:56

interrupt, does that precede VI? Does that precede EMAX?

S3

Speaker 3

43:00

It post dates both VI and EMAX. It is derived from Rob's experience with ED and VI.

S1

Speaker 1

43:10

What's ED?

S3

Speaker 3

43:12

That's the original Unix editor.

S2

Speaker 2

43:14

Oh, wow.

S3

Speaker 3

43:16

Dated probably before you were born.

S2

Speaker 2

43:19

So what's, actually, what's the history of editors? Can you briefly, because this is your, I use Emacs, I'm sorry to say, sorry to come out with that. But what's the kind of interplay there?

S2

Speaker 2

43:33

So Sam, you asked.

S3

Speaker 3

43:35

So in ancient times, like call it the first time-sharing systems, going back to what we were talking about, there were editors, there was an editor on CTSS that I don't even remember what it was called. It might've been edit, where you could type text, program text, and it would do something, or document text.

S2

Speaker 2

43:53

You could save

S3

Speaker 3

43:54

the text. And save it, you could edit it, the usual thing that you would get in an editor. And Ken Thompson wrote an editor called QED, which was very, very powerful.

S3

Speaker 3

44:05

But these were all totally a command-based. They were not mouse or cursor-based, because it was before mice and even before cursors, because they were running on terminals that printed on paper, okay? No CRT-type displays, let alone LEDs. And so then when Unix came along, Ken took QED and stripped it way, way, way, way down.

S3

Speaker 3

44:28

And that became an editor that he called ED. And It was very simple, but it was a line oriented editor. And so you could load a file and then you could talk about the lines 1 through the last line and you could, you know, print ranges of lines. You could add text, you could delete text, you could change text, or you could do a substitute command that would change things within a line or within groups of lines.

S3

Speaker 3

44:49

So you

S2

Speaker 2

44:49

can work on a parts of a file essentially.

S3

Speaker 3

44:51

Yeah, you can work on any part of it, the whole thing or whatever, but it was entirely command line based and it was entirely on paper. Okay, paper. And that meant that you changed.

S3

Speaker 3

45:02

Actual paper. Yeah, right, real paper. And so if you changed the line, you had to print that line using up another line of paper to see what the change caused, okay? Yeah.

S3

Speaker 3

45:12

So when CRT displays came along, then you could start to use cursor control and you could sort of move where you were on the screen

S2

Speaker 2

45:22

in a- Without reprinting every time. Without reprinting.

S3

Speaker 3

45:27

And 1 of, there were a number of editors there. The 1 that I was most familiar with and still use is VI, which was done by Bill Choi. And so that dates from probably the late 70s as a guess.

S3

Speaker 3

45:41

And it took full advantage of the cursor controls. I suspected Emacs was roughly at the same time, but I don't know. I've never internalized Emacs. So I use, at this point, I stopped using ED, although I still can.

S3

Speaker 3

45:56

I use VI sometimes, and I use SAM when I can.

S2

Speaker 2

46:00

And SAM is available on most systems?

S3

Speaker 3

46:03

It is available. You have to download it yourself from typically the plan line operating system distribution. It's been maintained by people there.

S3

Speaker 3

46:11

And so I- I'll

S2

Speaker 2

46:12

get home tonight, I'll try it. It's cool. It sounds fascinating.

S2

Speaker 2

46:17

Although my love is with Lisp and Emacs, I've went into that hippie world of...

S3

Speaker 3

46:24

I think it's a lot of things. What religion were you brought up with?

S2

Speaker 2

46:27

Yeah, that's true. That's true. Most of the actual programming I do is C, C++ and Python, but my weird sort of, yeah, my religious upbringing is in Lisp.

S2

Speaker 2

46:38

So, can you take on the impossible task and give a brief history of programming languages from your perspective?

S3

Speaker 3

46:46

So I guess you could say programming languages started probably in what, the late 40s or something like that. People used to program computers by basically putting in zeros and ones using something like switches on a console, and then, or maybe holes in paper tapes, something like that. So extremely tedious, awful, whatever.

S3

Speaker 3

47:07

And so I think the first programming languages were relatively crude assembly languages where people would basically write a program that would convert mnemonics like add, A-D-D, into whatever the bit pattern was that corresponded to an add instruction. And they would do the clerical work of figuring out where things were. So you could put a name on a location in a program and the assembler would figure out where that corresponded to when the thing was all put together and dropped into memory. And early on, and this would be the late 40s and very early 50s, there were assemblers written for the various machines that people used.

S3

Speaker 3

47:50

You may have seen in the paper just a couple of days ago, Tony Berker died. He did this thing in Manchester called AutoCode, a language which I knew only by name. But it sounds like it was a flavor of assembly language, sort of a little higher in some ways. And it replaced a language that Alan Turing wrote, which you put in zeros and ones, but you put it in backwards order because that was how hardware worked.

S2

Speaker 2

48:14

Very strange. That's right, yeah, yeah, that's right, backwards.

S3

Speaker 3

48:17

So assembly language is then, let's call that the early 1950s. And so every different flavor of computer has its own assembly language. So the EdSac had its, and the Manchester had its, and the IBM whatever, 7090 or 704 or whatever had hits and so on.

S3

Speaker 3

48:34

So everybody had their own assembly language.

S2

Speaker 2

48:35

And assembly languages have a few commands, additions, subtraction, and branching of some kind, if then type of situation.

S3

Speaker 3

48:42

Right, they have exactly in their simplest form at least 1 instruction per, or 1 assembly language instruction per instruction in the machine's repertoire. And so you have to know the machine intimately to be able to write programs in it. And if you write an assembly language program for 1 kind of machine, and then You say, geez, it's nice, I'd like a different machine.

S3

Speaker 3

49:02

Start over. Okay, so very bad. And so what happened in the late 50s was people realized you could play this game again and you could move up a level in writing or creating languages that were closer to the way the real people might think about how to write code. And there were, I guess, arguably 3 or 4 at that time period.

S3

Speaker 3

49:25

There was Fortran, which came from IBM, which was formula translation, meant to make it easy to do scientific and engineering computations. I didn't

S2

Speaker 2

49:32

know that, formula translation, wow. That's what

S3

Speaker 3

49:34

it stood for. Yeah. There was COBOL, which is the common business-oriented language that Grace Hopper and others worked on, which was aimed at business kinds of tasks.

S3

Speaker 3

49:43

There was ALGOL, which was mostly meant to describe algorithmic computations. I guess you could argue basic was in there somewhere. I think it's just a little later. And so all of those moved the level up.

S3

Speaker 3

49:56

And so they were closer to what you and I might think of as we were trying to write a program. And they were focused on different domains, Fortran for formula translation, engineering computations, let's say COBOL for business, that kind of thing.

S2

Speaker 2

50:11

Still used today, at least Fortran probably.

S3

Speaker 3

50:14

Oh yeah, COBOL too. But the deal was that once you moved up that level, then you, let's call it Fortran, you had a language that was not tied to a particular kind of hardware because a different compiler would compile for a different kind of hardware. And that meant 2 things.

S3

Speaker 3

50:30

It meant you only had to write the program once, which was very important. And it meant that you could, in fact, if you were a random engineer, physicist, whatever, you could write that program yourself. You didn't have to hire a programmer to do it for you. Might not be as good as you'd get with a real programmer, but it was pretty good.

S3

Speaker 3

50:45

And so it democratized and made much more broadly available the ability to write code.

S2

Speaker 2

50:51

So it puts the power of programming into the hands of people like you.

S3

Speaker 3

50:54

Yeah, anybody who is willing to invest some time in learning a programming language and is not then tied to a particular kind of computer. And then in the 70s, you get system programming languages, of which C is the survivor. And-

S2

Speaker 2

51:09

What does system programming languages mean?

S3

Speaker 3

51:11

Programs that, programming languages that would take on the kinds of things that would necessary to write so-called system programs, things like text editors or assemblers or compilers or operating systems themselves, those kinds of things. And

S2

Speaker 2

51:27

Fortran- They have to be feature rich. They have to be able to do a lot of stuff, a lot of memory management, access processes, all that kind of stuff. They have the processing.

S3

Speaker 3

51:35

It's a different flavor of what they're doing. They're much more in touch with the actual machine, but in a positive way. That is, you can talk about memory in a more controlled way.

S3

Speaker 3

51:45

You can talk about the different data types that the machine supports and underway there, and more ways to structure and organize data. And so the system programming languages, there was a lot of effort in that in the, call it the late 60s, early 70s. C is, I think, the only real survivor of that. And then what happens after that, you get things like object-oriented programming languages, because as you write programs in a language like C, at some point scale gets to you and it's too hard to keep track of the pieces and there's no guardrails or training wheels or something like that to prevent you from doing bad things.

S3

Speaker 3

52:24

So C++ comes out of that tradition.

S2

Speaker 2

52:27

And so- And then it took off from there. I mean, there's also a parallel, slightly parallel track with a little bit of the functional stuff with Lisp and so on. But I guess from that point, it's just an explosion of languages.

S2

Speaker 2

52:38

There's the Java story, there's the JavaScript, there's all the stuff that the cool kids these days are doing with Rust and all that. So what's to you, so you wrote a book, The C Programming Language, and C is probably 1 of the most important languages in the history of programming languages, if you kind of look at impact. What do you think is the most elegant or powerful part of C? Why did it survive?

S2

Speaker 2

53:07

Why did it have such a long lasting impact?

S3

Speaker 3

53:11

I think it found a sweet spot of expressiveness, that you could rewrite things in a pretty natural way, and efficiency, which was particularly important when computers were not nearly as powerful as they are today. You've got to put yourself back 50 years, almost, in terms of what computers could do. That's roughly 4 or 5 generations, decades of Moore's law, right?

S3

Speaker 3

53:37

So expressiveness and efficiency and I don't know, perhaps the environment that it came with as well, which was Unix. So it meant if you wrote a program, it could be used on all those computers that ran Unix, and that was all of those computers because they were all written in C, and that way, Unix, the operating system itself, was portable, as were all the tools. So it all worked together, again, in 1 of these things where things fed on each other in a positive cycle.

S2

Speaker 2

54:05

What did it take to write sort of a definitive book, probably definitive book on all of program, like it's more definitive to a particular language than any other book on any other language, and did 2 really powerful things, which is popularized the language, at least from my perspective, maybe you can correct me, and second is created a standard of how, you know, how this language is supposed to be used and applied. So what did it take? Did you have those kinds of ambitions in mind when working on that?

S3

Speaker 3

54:38

Is this some kind of joke? No, of course not.

S2

Speaker 2

54:43

So it's an accident of timing, skill, and just luck.

S3

Speaker 3

54:48

A lot of it is, clearly, timing was good. Now, Dennis and I wrote the book in 1977.

S2

Speaker 2

54:53

Dennis Ritchie.

S3

Speaker 3

54:54

Yeah, right. And at that point, Unix was starting to spread. I don't know how many there were, but it would be dozens to hundreds of Unix systems.

S3

Speaker 3

55:03

And C was also available on other kinds of computers that had nothing to do with Unix. And so the language had some potential. And there were no other books on C and Bell Labs was really the only source for it. And Dennis, of course, was authoritative because it was his language and he had written the reference manual, which is a marvelous example of how to write a reference manual.

S3

Speaker 3

55:29

Really, really Very, very well done. So I twisted his arm until he agreed to write a book and then we wrote a book. And the virtue or advantage at least I guess of going first is that then other people have to follow you if they're going to do anything. And I think it worked well because Dennis was a superb writer.

S3

Speaker 3

55:50

I mean, he really, really did. The reference manual in that book is his, period. I had nothing to do with that at all. Just crystal clear prose, very, very well expressed.

S3

Speaker 3

56:02

Then he and I, I wrote most of the expository material and then he and I sort of did the usual ping ponging back and forth, refining it. But I spent a lot of time trying to find examples that would sort of hang together and that would tell people what they might need to know at about the right time that they should be thinking about needing it. And I'm not sure it completely succeeded, but it mostly worked out fairly well.

S2

Speaker 2

56:28

What do you think is the power of example? I mean, you're the creator, at least 1 of the first people to do the Hello World program, which is like the example. If aliens discover our civilization hundreds of years from now, it'll probably be Hello World programs.

S2

Speaker 2

56:46

Just like a half-broken robot communicating with them with a hello world. So what, and that's a representative example, so what do you find powerful about examples?

S3

Speaker 3

56:56

I think a good example will tell you how to do something, and it will be representative of, you might not wanna do exactly that, but you will wanna do something that's at least in that same general vein. And so a lot of the examples in the C book were picked for these very, very simple, straightforward text processing problems that were typical of Unix. I want to read input and write it out again.

S3

Speaker 3

57:23

There's a copy command. I want to read input and do something to it and write it out again. There's a grab. And so that kind of find things that are representative of what people want to do and spell those out so that they can then take those and see the core parts and modify them to their taste.

S3

Speaker 3

57:45

And I think that a lot of programming books that I, I don't look at programming books a tremendous amount these days, but when I do, a lot of them don't do that. They don't give you examples that are both realistic and something you might want to do. Some of them are pure syntax. Here's how you add 3 numbers.

S3

Speaker 3

58:05

Well, come on, I could figure that out. Tell me how I would get those 3 numbers into the computer and how we would do something useful with them and then how I put them back out again neatly formatted.

S2

Speaker 2

58:15

And especially if you follow that example, there is something magical of doing something that feels useful.

S3

Speaker 3

58:20

Yeah, right. And I think it's the attempt, and it's absolutely not perfect, but the attempt in all cases was to get something that was going to be either directly useful or would be very representative of useful things that a programmer might want to do. But within that vein of fundamentally text processing, reading text, doing something, writing text.

S2

Speaker 2

58:44

So you've also written a book on Go language. I have to admit, so I worked at Google for a while and I've never used Go.

S3

Speaker 3

58:53

Well, you missed something.

S2

Speaker 2

58:54

Well, I know I missed something for sure. I mean, so Go and Rust are 2 languages that I hear very, spoken very highly of and I wish I would like to, well, there's a lot of them. There's Julia, there's all these incredible modern languages.

S2

Speaker 2

59:10

But if you can comment before, or maybe comment on What do you find, where does Go sit in this broad spectrum of languages? And also, how do you yourself feel about this wide range of powerful, interesting languages that you may never even get to try to explore? Just because of time.

S3

Speaker 3

59:31

So I think, so Go first comes from that same Bell Labs tradition in part, not exclusively, but 2 of the 3 creators, Ken Thompson and Rob Pike. So literally the people. Yeah, the people.

S3

Speaker 3

59:45

And then with this very, very useful influence from the European school, in particular, the Klaus Wirth influence through Robert Griesemer, who was, I guess, a second-generation down student at ETH.