![]() |
|
![]() |
| There is a 3rd edition of Steven's APUE published in 2013 but i am not sure whether it covers epoll/kqueue specifically (i don't have this edition). Most probably not since these are specific to Linux/BSD. Stevens/Rochkind only cover the base Unix apis for I/O multiplexing/Asynchronous I/O (select/poll/signals/aio apis) gleaned from SUS (See https://en.wikipedia.org/wiki/Single_UNIX_Specification). You would be better off consulting the specific documentation for these system calls in its OS reference and the various articles describing/comparing them online.
For a Linux specific alternative Michael Kerrisk's The Linux Programming Interface seems pretty good. |
![]() |
| Well one does wonder, where did the icons like BK pick up their own craft? Surely there were no programming books before computers. Which shoulders did our giants stand on? |
![]() |
| in poetry, it is called poetic licence.
in startups, _ _ _. fill in the blanks. suggestions: disrupting changing the world more efficient productivity cost savings people savings hardware unsavings ... |
![]() |
| Can only second you. His style is by far my most favorite among all other technical authors. And thanks for the reminder, time to get another one of his books. |
![]() |
| Thanks for the heads up on "The Unix Programming Environment!" I've been searching for a book with a concise explanation on how to write a compiler, and you can't go wrong with one from Kernighan! |
![]() |
| They mention at one point that Java doesn't have a way to pass a function as a parameter to another function. That was added in Java 8 with lambdas. That's just one off the top of my head. |
![]() |
| I believe you are right as intelligent grows, but the very top end usually has people excelling in many things and personality as well. At least that’s what I noticed. |
![]() |
| I wish interviewing now was more about knowing the concepts in that book versus leetcode
Brian Kernighan prob couldn’t pass a leetcode hard interview in this ridiculous new world |
![]() |
| > Stripe had an interview where they had forked the Jackson Java library, introduced a bug, and then asked me to find and fix it.
I think I would actually enjoy an interview like that. |
![]() |
| I would say that I would hire that person if that was the solution. That said maybe repo wasn’t included in interview. (Would be even better if person figure out how to diff against a new clone) |
![]() |
| Added to the backlog! As our audience grows, we've debated doing live backlog grooming on YouTube so that listeners have a chance to chime in and voice their opinions on what we should read. |
![]() |
| The "g" is silent, folks.
You should try to get Rob Pike on. He'd probably make it a point to correct your pronunciation. I can hear him now... |
![]() |
| You should ask the arraycast guys on how they did it. They got him to talk about ivy and apl/array style programming for an hour or so. |
![]() |
| I'm only one third of the way through the video, but could see that the podcasters are asking some good insightful questions.
Thanks for sharing, OP. |
![]() |
| I just found out we cracked the Top 20 on Hacker News! Crazy! I’m Carter, one of the podcasters from the video. I’m glad you’re enjoying it! It was such a huge honor to talk to Brian Kernighan. |
![]() |
| Years ago he was a guest lecturer for a class I was taking from Scott Bradner - as you said, incredibly nice an approachable guy. I could have listened to him for another hour or two. |
![]() |
| We would have loved nothing more than to talk to him for hours. He was already calling in from England while on his vacation, so I didn't want to take any more of his time, haha! |
![]() |
| What do you mean by this exactly? Like a list of all upcoming books we’ll discuss? If you’re curious, you can find that on our website at www.bookoverflow.io! |
![]() |
| I think they mean that the description of the episode should have a list of books (and maybe other resources) that were mentioned in the episode itself. |
![]() |
| I can appreciate supporting the effort, but the "stickiness" of Amazon affiliate links seem pretty pernicious. I briefly tried to find a source for this and failed, but my understanding is that the affiliate can see any product purchased while the affiliation through the link is active, which is something like a 24 hour timeout or another link for a different affiliate is used. Maybe my perspective is out of date, if so my apologies, but that seems like a net negative contribution to personal privacy of viewers.
Edit: This video humorously discusses the "leakage" I think of as bad: https://www.youtube.com/watch?v=M2PYgjgDdWg |
![]() |
| I suggest you add Software Tools in Pascal to your list of books to podcast about. Also by Kernighan.
I own a copy of that book and think it is good. |
![]() |
| You might get more than you bargained for on that topic.
Kernighan and Plaugher had written "Software Tools" in RATFOR. Then they wrote "Software Tools in Pascal". And then, in direct response to the experience of writing that, Kernighan wrote a paper titled "Why Pascal Is Not My Favorite Programming Language". (Because writing in Pascal should have been way easier than writing in RATFOR, and it wasn't, and Kernighan gave some thought to why it wasn't.) It's still an interesting read. You can find it online, for example at https://www.cs.virginia.edu/~evans/cs655/readings/bwk-on-pas... Note well: This refers to the original standard version of the language. Extensions like Turbo Pascal fixed many of the problems. (Except that, as he said, there was no portability between the extensions. Even that kind of was fixed by Turbo Pascal becoming the "standard" extensions.) |
![]() |
| I knew that it inserts semicolons but I still don't understand why they removed semicolons entirely and forced a bracketing style. The comment was in mild jest to that maybe being the reason why |
To give a concrete example; i had some experience in network programming/protocol implementations before i came across this book. In the "Notations" chapter, they show network message pack/unpack routines written in the style of printf/scanf functions with format strings specifying the packet layout! This was a eye-opening lesson for me in the use of proper notations and little languages. There is also some code snippet examples showing ideas behind Virtual Machines, Code Threading, JIT compilation etc.
Folks should also get Kernighan and Pike's older book "The Unix Programming Environment" to go with this. The chapter "Program Development" gives a complete example of developing a compiler for a small calculator language using compiler development tools (and no theory!) in around 50 pages. This is the smallest and simplest exposition that i know of on how to write a compiler.
In summary; get all of Kernighan's books and study them! :-)