#148: Python Book Authors' Panel Discussion Transcript
00:00 Are you a fan of developer and technical books? Have you ever wondered what went into the writing
00:04 of your favorite Python book? This week we'll peek inside the world of book authorship with
00:10 a panel of renowned developer-focused authors. You'll meet Katherine Jarmul, Bruce Eccle,
00:15 Luciano Romalo, Dan Vader, and Brian Okken. This is Talk Python to Me, episode 148, recorded
00:21 January 26, 2018.
00:24 Welcome to Talk Python to Me, a weekly podcast on Python, the language, the libraries, the
00:43 ecosystem, and the personalities. This is your host, Michael Kennedy. Follow me on Twitter
00:47 where I'm @mkennedy. Keep up with the show and listen to past episodes at talkpython.fm
00:52 and follow the show on Twitter via at talkpython.
00:55 Hey everyone, before we get to the panel discussion, I want to tell you really quickly about a new
01:01 course we just launched, Mastering PyCharm. If you've worked with some of these IDEs like
01:07 PyCharm, you know there's so much going on. There are so many features and those can actually
01:12 be a little bit hard to discover and use. So I created this eight-hour course to give you
01:17 a grand tour of PyCharm. And it turns out it's also a grand tour of software development. We cover
01:24 things like source control, refactoring, working with databases, client-side web apps, Python packages,
01:29 unit testing, data science tools, working with projects, being super productive with the editor,
01:35 and lots more. So if that sounds appealing to you, just visit training.talkpython.fm and find the
01:41 Mastering PyCharm course. Now let's meet our panel. Hello everyone. Welcome to Talk Python. We have
01:47 Luciano Romalo, Brian Aachen, Bruce Eccle, Dan Bader, Catherine Jarmul, and me of course, Michael,
01:54 your host. And we're going to do a pretty large tech book author panel, which I'm really excited to
02:00 share this, all of your thoughts with everybody. It's going to be so fun. Let's do a quick round of
02:06 introductions. Some of you have been guests on the show before. Some of you are my co-hosts,
02:10 right, Brian? And people know you well, but we'll go around the table real quick. Start with you,
02:15 Catherine. Maybe just quickly tell people who you are and what you do day to day.
02:20 Hi, yeah. Thanks. I'm Catherine. You might know me by Kjam, and I run a data science company here in
02:28 Berlin, Germany called Kjamistem. And I mainly work on data science and machine learning, but I also have
02:34 kind of a focus on in production and deployment and systems. So I've been doing more security work
02:42 recently, but those are the things I'm passionate about. Yeah, very cool. Luciano, how about yourself?
02:48 I'm the author of Fluid Python, and I currently work for ThoughtWorks, this global consulting company.
02:55 I'm sometimes in projects with clients, but more recently, I'm also in our global capability team,
03:01 which is a team that aims to develop the capabilities of our consultants around the world.
03:07 And I've been diving into the wonderful world of e-learning and books and those kinds of systems
03:14 to pick one for us to use. Yeah, that sounds really, really fun. Bruce, how about yourself?
03:19 So I'm Bruce Eccle. Apparently, what I do is study programming languages in hindsight,
03:26 because I look back on my career and I see that seems to be what I do. Right now, I tried to start
03:33 working on a book on concurrent Python, and that as concurrency always has been deeper, whole than I
03:43 expected. And there's all kinds of interesting other possibilities. And in the meantime, I got sucked
03:49 into a project which we've been working on for almost a year now called Atomic Kotlin. So I'm mostly
03:59 immersed in Kotlin right now. The other thing that I've done for the last almost 10 years is study
04:05 alternative organizational structures to try and come up with ways of organizing groups and companies that
04:14 doesn't suck. Because there's plenty that do, right? Mostly they do, which is why I realized
04:19 that I went off on my own like 30 years ago because I didn't want to play in that sandbox. And now I'm
04:28 realizing I should have created a better sandbox. But oh well, hindsight.
04:32 Yeah, well, there's a lot of stuff you can see in hindsight. That's right. Brian, people know you,
04:37 I'm sure, but go ahead and introduce yourself for those who don't.
04:39 Yeah, my name is Brian Okken. I wrote Python testing with pytest. And my day job, I guess I do coast a couple podcasts. And then also, I'm a lead engineer for lead engineer slash software manager, test manager for a small team as part of a communication test system for Roden Schwartz.
05:01 Okay, excellent. And Dan, how are you?
05:04 Hey, I'm good. Thanks for inviting me back on your awesome show. And I feel like I'm in amazing company this time. So yeah, my name is Dan Bader. I recently published a book called Python Tricks, a buffet of awesome Python features. And I also do some Python consulting and then also run a couple of Python related websites, realpython.com, nerdlettering.com and my own personal website at debater.org.
05:30 So it's almost like 100% Python that I spend my time with every day.
05:35 That's really awesome. All right. Well, thanks for that, everyone. Now people kind of know where we're all coming from. So a couple of you have mentioned the books that you've written. I'll just make some quick comments on that and others haven't. So for example, Dan, you have the Python Tricks book, which we actually did an episode on 141 on Talk Python on that. That's great. Luciano, you have Fluent Python, which we had an episode on that on Talk Python.
06:00 Python as well. Brian, you have pytest, which we talk about a lot on the podcast. Catherine, tell us a bit about some of your authorship.
06:08 Yeah, so I co-authored Data Wrangling with Python, which is an introduction to Python for people that perhaps are starting to want to work with data. And then I have a few O'Reilly video trainings. And I also helped create the second edition of Web Scraping with Python or Python Web Scraping, migrating into Python 3 last year.
06:31 Yeah, that's really interesting. I feel like there's a lot of people coming into Python through the data science angle. And while it feels like it's pretty similar, it's not really exactly the same type of Python that you write. I feel like when I read data science code, it actually feels like I'm reading a slightly different flavor or variant of Python. Let's say if I'm reading like web code or something.
06:53 Yes. When we start thinking about the popular data science libraries, they're often heavily complemented with either Cython, for example, if we're using NumPy.
07:04 Or, you know, Wes, creator of Pandas, he was an R person first and then wrote Pandas. So there's some things in Pandas that are much more idiomatic of R than they are of Python. Of course, that's changing over time. But we find these interesting influences from other places. And like, for example, if you're working with Spark, or the JVM or anything that's JVM backed, then you might also see some things that look more similar to Java.
07:32 So it's this weird world where there's a lot of people working on libraries, and they may not be Python first. And for that reason, it has some different quirks, if you will.
07:43 Can I jump in?
07:44 Yeah, please go ahead.
07:45 I totally agree with what Karen just said. But I just want to add another thing, which is, for instance, in Fluent Python and most of our intermediate books, we emphasize a lot the use of iterators and generators, those kinds of structures in the language.
08:00 But then, when you go to use NumPy, that's just wrong most of the time, because you want to use the vectorized operations, right?
08:09 And so this is kind of a fundamental shift in thinking. And I won't remember the name of the book now, but I have a really good reference, a book by a French author, but it's Creative Commons.
08:22 And it's written in English about changing your mindset from iterative code to vectorized code for NumPy. I will share with you the link later.
08:31 Yeah, that'd be great. I'll put it in the show notes. Very cool. Bruce, you've written quite a few books. I've known about your books for a really long time. You want to talk about some of them that are notable?
08:40 Well, probably most people know me for thinking in C++ and thinking in Java. But yes, I've written a bunch more. And then there have been a number of attempts that haven't worked out.
08:55 And I seem to also do a lot of co-authoring, even though I keep saying I'm not going to do that anymore, because it can be very hard.
09:04 But yeah, I started out actually in hardware in my first book, which I self-published.
09:13 And sometimes think, gee, I should have just kept doing that. It was a long time ago, and self-publishing was a little more challenging at the time.
09:22 You were a real rebel doing that.
09:23 A little bit, yeah. It was called Computer Interfacing with Pascal and C. And then I got involved in C++, and I was on the Standards Committee for its first eight years.
09:33 Although I can't tell you anything about C++ now. It's changed so much.
09:37 It's really different, yeah.
09:38 It is. I wrote several books on C++ and then kind of moved over to Java. And then I've, let's see, I co-authored a book on Flex.
09:47 I tried co-authoring one a couple of times on C#. And then Atomic Scala. And now I'm working on Atomic Kotlin.
10:00 And I keep trying to write a book on Python. And yeah, I mean, like people ask, well, are you ever going to write a book like Thinking in Java for Python?
10:11 But I would say Luciano's book would be that book. So that's not, it makes no sense for me to try and do that.
10:18 But this concurrency project is, I don't know if anybody has like looked at Julia, but that's kind of thrown me because I'm going, well, maybe the answer is not to use Python.
10:32 So anyway, it's, it's, concurrency is, it's probably been my biggest struggle in my career.
10:39 Okay.
10:40 Yeah. So thank you. So that's, there's a lot of interesting stuff happening around Python concurrency right now.
10:46 You know, the whole async and await stuff is showing up.
10:48 There's a lot of web frameworks that are sort of async only or async first.
10:52 I think it's a good time for covering that topic. So yeah, very cool.
10:56 It is, but I'm just starting to wonder if the answer isn't to kind of step outside of, of the mainstream Python world and, and connect to Python rather than try and do it in Python. I don't know yet.
11:10 I think it somewhat depends on whether it's computational or it's IO bound, like you're waiting on web services and databases.
11:16 Sure. Parallel versus async. Yeah.
11:19 Yes, exactly. So, but that sounds interesting to explore in a book. So I'm looking forward to checking that out when, when you finally wrangle that topic.
11:28 All right. So let's dig into this concept that you touched on there a little bit about co-authoring.
11:33 Co-authoring to me sounds both fun and really hard. And I guess it depends how you do it. If you write different chapters and stuff, I've certainly co-authored online courses, but no books.
11:45 So who out there has, I know Bruce, you said you've done it some, anyone else done any co-authoring or considered it and why, why not?
11:52 I have only co-authored books at this point in time.
11:56 So.
11:56 Oh, how interesting. How was your experience? So why did you go down that path?
12:01 The initial book that I wrote with Jackie Kazel, she actually was writing it on her own first and then reached out to me because, yeah, the deadline, you know, she wanted to reach deadlines and two heads are better than one sometimes for that.
12:15 And I think that if you're not really organized about exactly what is expected, I mean, it's the same thing as like, for example, if you were building a project with a friend on, on the side, let's say you're moonlighting or something.
12:31 You're usually doing it with someone, you know, or perhaps somebody who knows somebody who you know.
12:36 So there's some element of personal connection.
12:38 You need to be really clear about, you know, deadlines, who's doing what, make sure it's absolutely clear and that you have some knowledge sharing in terms of who's going to cover what parts in what sequential order.
12:51 And this is extremely hard to do, even with bright folks by your side.
12:56 But, yeah, I would say organization and really trying to use something as if you would almost do an issue tracker to really say, OK, are you going to be doing the introduction to generators here or should I do it in a later chapter and so forth?
13:11 Yeah, I use an organic process, which is much harder.
13:15 I guess it's not harder if it's working, but I mean, it's interesting because I see this division between when people talk about book authoring and there's the OK, you have to have a lot of structure.
13:28 Some people say you have to write from X hours to X hours every single day.
13:34 And then I guess for me, I look at that and I go, I understand that that works for some people.
13:40 But for me, I need to be inspired to write.
13:44 And so I don't write when I'm not inspired.
13:46 And if I'm working with somebody, I can't manage them.
13:52 I can't like say you have to do this or that.
13:57 But I will say one of the things after doing this a while and then I asked Gerald Weinberg about it and he's written and co-authored most of his books.
14:07 And he had several guidelines for co-authoring.
14:11 And the first one was everybody works on every chapter.
14:16 The second, I think, was you never sign a contract until the book is done.
14:23 And the third thing, and there might have been a fourth one that I can't remember right now.
14:28 But the third thing is if the book fails, you walk away from it.
14:34 Nobody owns anything about it.
14:37 And I've never been able to successfully do that.
14:41 But I feel like that is a way to keep you out of trouble.
14:47 Because the times that I've gotten into trouble is when, for example, you do a contract first.
14:52 And then the other person might or might not feel like, well, you know, it's almost like working in a lab.
15:00 When one of the lab partners punts and then you go, well, we're committed, so I have to take over.
15:07 That's all I wanted to say.
15:09 I'm kind of like you.
15:10 I know some authors, they have really strict guidelines.
15:14 I'm going to sit down and work from 8 a.m. to noon every day and just do that until I'm done.
15:23 I'm one of these people who, if I get inspired, I can be like five times more efficient and effective in producing stuff than if I'm not.
15:32 I just kind of stare at the screen and get distracted and whatnot.
15:34 I don't know if I'm particularly productive or just particularly unproductive other times.
15:39 But capturing that inspiration is really important to me.
15:42 And I can see how it's a tough balance with a co-author.
15:45 Well, the one thing I wanted to point out was that I often see the people who say, oh, you have to do, you know, you have to work from 8 until noon every day.
15:54 They're the ones who talk about it.
15:57 But the people who go, well, I have this organic process, they tend not to talk about it.
16:01 So people who are wanting to write books think that the first way is the only way to do it.
16:06 Right, right.
16:07 Makes sense.
16:08 Brian, did you consider trying to co-author yours?
16:12 How long did your book take you to write?
16:14 Like about twice as long as I thought it would take.
16:16 But no, I worked on it for probably almost a year.
16:21 But with my lifestyle and a busy work schedule, I guess like everybody else, I don't think I could have co-authored with somebody because I think they would have been frustrated.
16:31 However, that being said, I did work with a development editor that was, she was reviewing it.
16:37 We talked about the book content on a regular basis.
16:41 And she isn't a co-author, but may as well have been very much appreciated input.
16:48 And then also, you know, getting feedback from other people.
16:51 I did get some ideas from some of the core pytest people of things to add that I had forgotten.
16:59 So even though I didn't co-author at all or consider it, I did pull an input from lots of places.
17:06 Yeah, that's great.
17:08 This portion of Talk Python to me is brought to you by Linode.
17:11 Are you looking for bulletproof hosting that's fast, simple, and incredibly affordable?
17:15 Look past that bookstore and check out Linode at talkpython.fm/Linode.
17:20 That's L-I-N-O-D-E.
17:22 Plans start at just $5 a month for a dedicated server with a gig of RAM.
17:26 They have 10 data centers across the globe.
17:29 So no matter where you are, there's a data center near you.
17:31 Whether you want to run your Python web app, host a private Git server, or file server,
17:36 you'll get native SSDs on all the machines, a newly upgraded 200 gigabit network, 24-7 friendly
17:43 support, even on holidays, and a seven-day money-back guarantee.
17:46 Do you need a little help with your infrastructure?
17:49 They even offer professional services to help you get started with architecture, migrations,
17:55 and more.
17:56 Get a dedicated server for free for the next four months.
17:58 Just visit talkpython.fm/Linode.
18:01 Dan, how about you?
18:03 So I didn't work with a co-author.
18:05 I think just in terms of how I like to work, I just preferred doing this on my own also because
18:11 I really wanted to know if I had it in me.
18:14 Could I actually finish this project and then publish that?
18:17 I think I might reconsider that for future book projects, but pretty much like everyone else
18:24 mentioned there's some downsides around that.
18:27 If you're in any kind of partnership, then as always, it can be really awesome, but it can
18:31 also be like your downfall where maybe one person is less committed than the other one,
18:35 and then it becomes tricky to actually ship the final product.
18:39 So yeah, didn't do it for my book, but I was very happy that I got Marietta Waiya's input
18:45 on the book and also she wrote the foreword for the book.
18:49 So that was great support for me.
18:51 Yeah, that's nice.
18:52 Luciano, have you co-authored any books?
18:53 No, I haven't.
18:54 But I liked that Dan just mentioned the fact that he wanted to write the book on his own
18:59 to see if he was capable of doing that because for me, that was totally the point as well.
19:04 Actually, I started actually three other books in the last 20 years that I never finished,
19:11 and Fluid Pattern was the only one that I managed to finish.
19:14 I never had a co-author in the other projects either, so I didn't let anyone down.
19:18 But in this case, I had a contract with O'Reilly, which is a publisher that I really admire,
19:26 and I was self-employed at the time.
19:29 So I decided to, you know, just that in this case, failure was not going to be an option.
19:35 And I did it, I wrote about part-time for about nine months.
19:41 And then my editor at O'Reilly, Megan Blanchett, who is just completely awesome,
19:46 and she's now working for Pragmatic Programmers.
19:49 I really recommend, if you want to work with a publisher, one of the greatest benefits is having a great editor, and she is one great editor.
19:58 Anyway, Megan started talking to me that, you know, it was likely that I wasn't going to make the deadline and so on.
20:07 The rhythm wasn't as fast as she expected.
20:10 And then I just had a serious conversation with my wife and said, you know what, I need to write this book and I'm not going to do anything else.
20:17 So I just quit my other part-time work and worked full-time on the book for the next nine months.
20:24 So in about a year and a half, I finished it.
20:26 And I'm really glad I did it.
20:28 But I know, I feel very privileged that I was able to stop everything for nine months to work on the book.
20:34 Yeah, I was going to say, that's a real commitment to taking that much time effectively off work.
20:40 I mean, obviously you're working, but you don't get paid very much as you complete chapters, right?
20:46 It's not until the book is done that you actually, you see the benefit.
20:49 I ate into my savings.
20:51 I can tether that.
20:52 Yeah.
20:52 Yeah.
20:53 That's pretty intense.
20:54 And this is a big bet, right?
20:55 Every one of you has written the book.
20:57 You know, you said nine months.
20:58 Brian said a year.
21:00 Like, that is a big project.
21:02 And you don't really get that much feedback until you ship it.
21:06 Catherine, you want to speak to that?
21:08 Like, how did you think about that and handle it?
21:10 For me, you know, both of the times that I was co-authoring a book, I was also consulting and usually working on projects.
21:20 So books were kind of like a mornings, nights, weekends.
21:24 I have a very compassionate partner who would refill my coffee.
21:29 And yeah, it was definitely something that was more of like a passion time.
21:36 I mean, it hasn't been said here yet, but like, don't expect, even if your book is popular, to make any decent amount of living wage off of a book.
21:46 So this really needs to be not something that you see necessarily as a job that will make you money to feed yourself and so forth, but more as something that you do because you enjoy the other things that you might get from a book writing or you enjoy contributing back to the overall knowledge of the community and so forth.
22:06 I pretty much time boxed my writing in a sense of saying, if this particular chapter took longer than one weekend, then just turn it in as it was and work with my editor.
22:19 And for me, this worked well in terms of not having it take over my entire life.
22:26 Yeah, I'm sure that helps manage the stress of it as well.
22:29 Let's touch on this sort of benefits revenue thing for a little bit.
22:34 And one of the first areas I wanted to ask you all about is self-publishing versus working with a traditional publisher, O'Reilly, Pragmatic, whoever.
22:47 So just to kind of put this in perspective for the listeners who maybe haven't thought a whole lot about it, there's a book that I read quite a while ago from the guys who created Ruby actually, Ruby on Rails rather, called Getting Real from 37 Signals.
23:01 And I think you can get it for free now, but at the time you could read it on the web or you could buy a digital version and they self-published it.
23:08 And then they wrote some kind of retrospective blog post a year or two later and said, we did really well with this book.
23:14 We made a half a million dollars off of this book that we wrote and put online and sold the PDF and Mubi and stuff for.
23:21 But if we'd worked with a traditional publisher, we would have gotten like 10%, $50,000.
23:27 And the difference between half a million and $50,000 seems to me really, really significant.
23:31 But all the benefits of you, you are all talking about of, say, having an editor, having the support, this whole success story that they had was predicated upon them having a very large following on their blog and around their sort of company or anyway.
23:48 So I know some of you have self-published and some of you have gone through the traditional route.
23:53 Maybe, Brian, do you want to take that first?
23:57 Did you think about self-publishing?
23:58 What are your thoughts on that?
23:59 I wanted to write a book in the first place because I had an e-book that I self-published that was essentially a collection of blog posts and tutorials that I just put together.
24:11 Yeah, I remember that.
24:12 It sold for like five bucks a piece.
24:14 And since a lot of people were buying it, they could get the content for free anyway.
24:21 That's what made me want to pursue working with a publisher.
24:26 But I had heard all of these stories about people not making very much.
24:31 And so I did hold, after talking with a few different publishers, settled with Pragmatic because I think they're extremely fair with their revenue split.
24:43 So the, it still isn't something, I mean, it's only been out since September.
24:48 It's not something I'm getting rich off of, but I don't worry about whether or not I can afford Starbucks anymore.
24:54 I guess that's the perspective I have on that.
24:58 But the, I would definitely go again.
25:00 I'd probably do both.
25:01 I'm looking forward to do both self-publishing and working with a publisher.
25:06 The benefit of working with a development editor, I think, is enough to offset some of the differences in revenue that you get, by our perspective.
25:16 Yeah, and it also depends on how big your audience is that you can connect with to get the book, right?
25:22 Like if, Stephen King could probably really easily self-publish a book and be fine.
25:27 But if you've never written a book and you don't run a bunch of podcasts or something like this, it can be a challenge, right?
25:32 Yeah, and then also to put in perspective the 37 Signals book, I mean, they had a huge following when they were publishing that.
25:40 Signals versus noise was very large.
25:43 And so.
25:44 Yep, yep.
25:45 I've had a lot of experience with this.
25:48 And, I mean, first of all, it's important to understand how the publishing industry works.
25:54 And there's about 10% of the books published kind of break even or make some profit.
26:03 And about 1% of the books published are actual successes.
26:08 So when you get involved with that, if you have a book that's a success, it's got to pay for the 90% of failures.
26:17 So, and the publishing industry looks at these numbers and they tend to say, well, to get our numbers up, we just have to publish more books.
26:27 They don't consider, should we try and make better books?
26:32 And there are, of course, special cases and things like that where that's not the case.
26:37 But in general, that's kind of how their numbers work.
26:40 And so the other thing that you have to look at is, you know, what kind of commitment are they going to have?
26:46 For the longest time, I wouldn't take, I wouldn't worry about the advance.
26:52 And then, you know, after talking to people, I realized, actually, you want to push for the largest advance you can get because you want to put the publisher in financial jeopardy.
27:03 Because that's what's going to stimulate them to go out and promote your book.
27:08 And some publishers will try and promote a book for a few months.
27:13 And then if it doesn't, you know, go gold, then they sort of drop it and they stop.
27:19 There's all these pitfalls that you can get into.
27:22 And you don't have control of your book anymore once you sign that contract unless you rewrite the contract, which they'll tell you that we know we don't do.
27:31 But you can.
27:33 You can always line through the contract and everything.
27:37 So if you self-publish, you are then responsible for, as people have been saying, promoting your own books.
27:45 And sometimes it works and sometimes it doesn't.
27:48 But even when it doesn't work, you'll often get maybe more money than you would have just by taking in advance.
27:57 Right.
27:58 It's got to be basically like 10 times less good to do your self-publishing or something on that scale, right?
28:04 Something on that scale.
28:05 There's also the satisfaction of doing it yourself.
28:08 And I'll point out one more thing, which is that now if you start talking to a publisher, even one that you've published with before,
28:16 the first thing they'll do is send you this form that's asking you, how are you going to promote your book?
28:23 Do you have a blog?
28:24 Do you have a podcast?
28:25 Do you have all these things?
28:26 And when you look at that and you go, well, why am I working with you if I'm going to be promoting my book?
28:33 You know, what are you bringing to the table?
28:35 And these days, if they can't promote it, then you can pretty much do all the rest of the stuff yourself.
28:43 And so unless they're wonderful promoters, you should really think seriously about what are you getting from the publisher.
28:52 Yeah, that's really great advice.
28:53 Luciano, yours was through O'Reilly.
28:56 You said that's your only book.
28:57 Did you consider self-publishing or would you in the future?
29:00 Oh, yeah, I would.
29:01 But really, for me, it's pretty clear that it was since I don't have a big following and I'm not really good at marketing,
29:10 it was important for me to author a book with a well-regarded publisher.
29:15 And I also learned a lot from them.
29:17 So I don't regret at all the fact that I worked with O'Reilly.
29:21 On the contrary, I think I was very lucky to be able to work with them.
29:26 But in the future, yes, I totally consider self-publishing or a different publisher or whatever, but mostly self-publishing.
29:33 Yeah, your book was really popular.
29:35 So I definitely think it put you on the map after that.
29:38 So that's really cool.
29:39 Catherine, yours was through a traditional publisher, right?
29:42 Yeah.
29:43 So I have a book with O'Reilly and a book with Pact.
29:47 And, yeah, have been approached from some other folks as well.
29:51 But knowing how much time and energy goes into a book, I'm actually really curious to hear from some of the others that have self-published.
29:59 How did you go about through the editing process and what platforms did you use?
30:05 Did you determine pricing beforehand or was this something you figured out after?
30:10 This is something I'm very curious about.
30:12 Go ahead, Luciana.
30:13 No, just to add, I really like the questions that she was asking.
30:17 But just to add, like, for instance, tech reviewers, that was something that was awesome that already – well, I could have gone after people to do that.
30:26 But anyway, tech reviewers.
30:28 Yeah.
30:29 Dan, I'm saving you for last in this round because I know that you did self-publish yours, right?
30:34 Yeah, I went 100% with the self-published route.
30:38 What was that experience like?
30:39 Maybe speak to some of Catherine's questions.
30:41 I mean, for me, I think it worked out really well.
30:43 But I can totally see, you know, there's just different tradeoffs involved, right?
30:48 So where I was starting from – well, one reason was completely personal.
30:52 Where I – the reason I went, you know, into self-employment was because I wanted to have 100% control over the projects that I work on and sort of, you know, who I work with.
31:01 I just wanted to have that control over my life.
31:04 And so I wasn't going to hand it off, you know, to a publisher and just be like, okay, you know, now I have all these deadlines and all this stuff in my life that I really enjoyed not having.
31:12 So that was one personal reason.
31:15 And then the other one was, I think, Bruce, you mentioned that with how publishers today, especially for a first-time author, they're not really going to go out there and, like, put on a big, like, roadshow and promote your book and, you know, pay for ads and whatnot.
31:29 It's pretty much like you're on your own anyway.
31:31 You just get a chance to kind of maybe have some of the prestige of that publisher color off on your book.
31:37 And so I looked at my situation.
31:39 I was like, okay, well, I have this programming blog.
31:41 I have this Twitter following.
31:42 And I have a bit of an audience that I can work with here, right?
31:46 And so I decided to go the self-publishing route.
31:49 And I think it worked out pretty well.
31:51 I mean, I'm still working on that first half million or whatever.
31:54 But, you know, in the end, it was worthwhile doing it that way for sure.
31:59 Yeah, that's cool.
31:59 Maybe tell us what some of the tools you used and things like that.
32:03 Oh, yeah, in terms of just making it happen from a technical perspective.
32:06 Yeah, yeah.
32:07 Like, how did you actually build it?
32:08 I think I'll ask software developers, for anyone who's listening, I think you're in a uniquely great situation right now for self-publishing your book.
32:18 Because, I mean, all of the tools are out there.
32:21 A lot of them are open source.
32:22 And you can just, you know, compile all of the e-book formats that you're going to need or a print-ready PDF that you can hand off to,
32:29 an on-demand printer like CreateSpace.
32:31 And you can all find all of that stuff online.
32:33 It's not super easy to use.
32:35 But, you know, if you can work with Python or C compiler, you can definitely make that work.
32:39 And so that's what I did.
32:41 So I pretty much had, like, a full, like, build pipeline for my Python tricks book.
32:47 So I used a tool.
32:48 Well, first of all, I wrote everything in Markdown, which, for those of you who don't know, it's like a plain text format that typically compiles to HTML.
32:57 And it's just a little bit nicer, you know, for you to insert bold text and headlines and stuff like that.
33:03 But there's a really great tool called Pandoc.
33:06 And it's a document compiler or conversion tool.
33:09 So you can feed all kinds of formats into it, including Markdown, which is what I did.
33:14 And then on the other hand, you can output HTML.
33:18 You can output LaTeX and then compile that to a PDF.
33:22 So that was, like, a central tool that I used where I could feed in my source files and then have all the different output formats that I needed generated.
33:30 And I could adjust sort of the typography and, you know, page sizes and all of that.
33:35 And the great thing is because, well, you're just feeding in, like, a bunch of plain text files into this tool.
33:41 And then what comes out in this sort of LaTeX intermediate stuff or code, it's all plain text, right?
33:48 So you can really understand how this all works and you can use other tools like, for example, a C preprocessor to actually have little macros and stuff in your input text that I can now use.
34:01 And I can generate, you know, five different versions of the book with one little build script.
34:05 So I just hit return and it will generate the Kindle file.
34:08 It will generate the print file for Amazon CreateSpace.
34:11 It will generate the e-book file and all these different formats.
34:15 And once you've got that set up, like, hopefully I'm going to be able to carry that over for my next book project.
34:20 Wow, that sounds really, really cool.
34:22 Could you also maybe tell people, like, how you sold it?
34:25 I know some people use Gumroad.
34:26 You can self-publish on Amazon.
34:28 You could just put a PDF in a Stripe checkout JavaScript thing on your website.
34:34 Like, how did you actually get it out to the world?
34:37 Yeah, so for the first version, I actually used Gumroad.
34:40 And I just set up a page on my site that had a Gumroad button.
34:46 You can embed it and people can enter their credit card information and buy your book and download it right away.
34:51 And that worked okay.
34:55 And initially, I released it at, you know, a really low price.
34:58 I think the first iteration of the book, it was, I don't know, it had maybe like 20 or 30 pages.
35:04 And I think I started selling it at $3.99 or $4.99 or something.
35:10 A relatively low price for a book like that.
35:13 And then just over time, as it grew, I got more serious about the delivery mechanism.
35:18 Awesome.
35:18 And now it's actually on Amazon.
35:20 And it's published on Amazon Kindle.
35:23 And it's available as print copies through the Amazon CreateSpace on-demand printing thing.
35:28 And then I'm also using a company called BookBaby.
35:32 And they're like an e-book publisher.
35:34 But they're not really like a publisher in a traditional sense.
35:37 But you just send them a file.
35:38 And they will make sure it gets on all the different e-book stores that are out there.
35:42 Like the iBook store for iPhones and iPads.
35:46 And also Amazon and Barnes & Noble.
35:48 And they're kind of like a multiplexer for that.
35:51 You know, you sent them one file and paid them $300.
35:53 And they put it everywhere.
35:55 So curious to see how that will play out.
35:57 That's really interesting.
35:58 And one other thing is, you know, Bruce really made a great point about you go to the publisher.
36:03 And they're like, how are you going to promote your book?
36:05 Right?
36:05 Like, I'm sure people are thinking, wait a minute.
36:07 That's why I'm here talking to you.
36:09 Because you have the audience and the reach.
36:11 But you managed to get your book, like, number one in Python on Amazon.
36:15 Even though you had no publisher, right?
36:17 Yeah, that was pretty crazy.
36:18 And it made the whole thing, like, very real all of a sudden.
36:22 So, yeah, that was great.
36:23 Yeah, yeah, absolutely.
36:24 The reason, you know, you can...
36:26 Like, I was able to do that because I had worked on building that following.
36:30 And building, like, I started a Python newsletter.
36:32 And started just sharing articles and sharing tips and stuff on my blog.
36:37 And on my Twitter.
36:39 And that gained enough momentum that I was able to say, look, like, I'm going to be launching this book now.
36:46 You can get it on Amazon and kind of have this...
36:49 Yeah, just have this big launch and send...
36:52 You know, make a couple of, like, thousand sales on the first day.
36:55 And that really bumped it up.
36:56 And then you can kind of ride out that wave.
36:59 But obviously, that's...
37:00 You know, you can only do that if you worked on building up that audience first.
37:03 And I can totally understand that.
37:05 You know, that takes a lot of time.
37:06 Like, that actually probably took a lot more time than writing the book itself.
37:10 And so, I think that's...
37:12 You know, it's not like a magic bullet where you can just go like, oh, you tweeted a bunch of times.
37:15 And then it'll do really well.
37:17 It'll be fine.
37:18 It's just a whole nother project that you'd be working on.
37:20 Yeah.
37:20 Tweet a lot.
37:21 Yeah.
37:21 So, another topic that I wanted to touch on with you all is there's probably a lot of people out there who would like to write a book.
37:29 They'd like to put something that they're really passionate and expert about out there in some sort of written form.
37:37 But maybe they've never considered themselves a good writer.
37:41 Like, they got a B in literature and they didn't really enjoy essays and things like that.
37:45 So, like, maybe we'll start with you, Brian.
37:47 Like, what would you give people advice for, like, improving their technical writing or, you know, sort of getting started like that?
37:53 Blog.
37:54 Start blogging.
37:55 Just write.
37:56 I mean, the best way to get better at something is to practice.
37:59 So, do it.
38:01 I was...
38:02 I've been blogging for maybe five years or more before I started writing.
38:08 And I don't do it very consistently.
38:10 And I definitely don't do it very much now because, like, you know, two podcasts and all.
38:15 But the...
38:16 You audio blog.
38:17 Well, yeah.
38:18 And I started podcasting because I thought it would be easier than writing blog posts.
38:22 And, yeah, that's a mistake.
38:24 That's my advice is just do it and get feedback and be humble about the feedback and listen to it.
38:31 You know, I mentioned that in the entrance of the introduction to the book of Luciano.
38:37 He was one of the reviewers of my book and was very honest about the direction it was going.
38:42 And I took it to heart and it made it better.
38:45 So, listen to feedback.
38:46 Yeah.
38:46 It sounds really good.
38:47 Luciano?
38:47 Yeah.
38:48 Blogging, totally.
38:49 I just recently...
38:51 I never have been very disciplined with blogs.
38:53 So, recently, I just launched a wiki based on DocuWiki, the PHP wiki engine, which is really nice because it's simple.
39:01 And it's called Stand Up Dev.
39:04 I'm writing slowly there.
39:05 One of the advantages for me of having a wiki instead of a blog is that I like to be able to link across and also not having this time-based scheme of publishing.
39:17 But I wanted to say one thing that I actually tweeted some time ago.
39:22 David M. Geary is the author of some famous Java graphics books and, more recently, an HTML5 canvas book.
39:31 And he wrote, I think, in one of his prefaces, a recipe for writing a programming book.
39:37 It also applies to blog, but it's really good.
39:41 The recipe is, code is an interesting example illustrating an idea.
39:46 And I think this is the key, right?
39:48 I call this the example-driven approach of writing.
39:51 So, you think of an interesting example that demonstrates an idea.
39:55 Then you explain it.
39:57 So, the text flows from the example.
40:00 The text is there to explain the example.
40:02 And the example is there, of course, to convey some ideas, some concepts.
40:06 And then you just repeat.
40:08 And I took this idea to heart.
40:11 And I think one of the things that I'm proud of in Flint Python is I think it has interesting examples.
40:17 Short but interesting.
40:18 I don't like books that have a lot of full-bar examples, for instance.
40:22 Flint Python has a few full-bar examples, but most of them are not full-bar examples.
40:26 And it's hard, actually, to come up with good examples.
40:29 But I think it's totally worth it to make the book interesting.
40:33 And, of course, you can do that.
40:34 Yeah, I agree.
40:35 I don't like those fake examples either.
40:37 I always feel like they're kind of a cop-out.
40:39 I think it's good to be able to build from something into the book.
40:43 So, in my case, I built on lots of presentations because I've been using Python and I've been evangelizing Python since 1998.
40:51 So, I had a lot of presentations and a lot of course material over the years that were just slides and examples.
40:57 So, a lot of that went into the book.
41:00 So, I really think the idea of having some prior motivation to develop examples and write, like a blog or courses or podcasts or whatever, is a very good way of building up material to then launch into a book.
41:14 Great advice.
41:15 And you brought up the example of sort of almost a pattern for writing, a recipe for writing blogs and books.
41:22 I interviewed a Jesse Giroudavis from MongoDB.
41:25 He wrote a really great article.
41:28 I think actually he gave a talk on it and then also wrote an article.
41:30 He basically classified five different design patterns for blogging.
41:36 And if you know what pattern you're aiming for, it's really much easier to write because you're like, oh, well, that means it goes like this, this, this, and there's some of that, and then it finishes like that.
41:44 That's nice.
41:45 Yeah, it was really, really nice.
41:46 Actually, that was episode 69 of Talk Python.
41:49 Catherine, what advice for people who maybe don't write a lot but want to?
41:54 Yeah, I mean, this is a little bit hard for me because, yeah, I had a degree in journalism right before I started doing Python.
42:04 So, trouble with writing is not a problem?
42:07 Writing kind of was a job.
42:09 Yeah, exactly.
42:10 Well, when you, so when you go to journalism school or for those of you that might have had writing degrees, you kind of learn to separate writing from the type of writing that most people think and experiment with.
42:26 So, like this whole concept of, like, you have to be in the mood to write and this, that.
42:30 Like, if it's your job, you just can't just be like, oh, editor, I don't really feel like writing today.
42:35 I think I'll go home.
42:37 So, you kind of have to produce.
42:39 So, I compare it to some days, like, you don't want to write code, but you need to write a few lines at least.
42:45 And once you write a few lines, maybe writing a few lines more will feel easier and the day moves forward.
42:52 And I think that in J school, for me, at least, there was quite a lot of very intense deadline writing.
42:58 And you would have to write whether you wanted to or not if you were going to pass that course.
43:03 So, I think this put me in the mind space of, like, okay, I'm going to sit down.
43:08 I'm going to, you know, maybe brainstorm, make a small outline, do whatever tiny little steps, putting one or two words together until I have sentences.
43:16 And then sentences turn into paragraphs and so forth.
43:19 That's really interesting.
43:20 Did you come into programming through this sort of, like, data-driven journalism side of things?
43:25 Well, I was actually supposed to be in computer science from far earlier.
43:29 So, I was, you know, writing C++ when I was in high school and I was packing and running my own website when I was young.
43:38 But I dropped out of computer science because I felt really uncomfortable when I went to university because I was one of the, one of very, very small, small number of women in my program.
43:50 And so, then I went into statistics and after that into journalism and then found my way back to computers.
43:57 Yeah, how interesting.
43:58 And I do find it really surprising that journalism and Python and programming actually intersect non-trivially these days compared to how it used to be, at least.
44:08 There's more and more resources on just how do we combine this data journalism and storytelling all together.
44:16 And I feel like data science is a very interesting intersection there because even as a data scientist, you also have to think about how you tell the story in the sense of how you report it to somebody that might be able to make some sort of actionable choices based on the data that you find.
44:30 I also started in journalism in college.
44:34 My first year, I was a journalism major and one of the best courses I had was taught by an editor from the LA Times.
44:40 And he had us compose at the typewriter.
44:43 That was his, that was the whole thing.
44:46 And we started with, you know, a set of facts and I don't know, an hour and a half.
44:51 And then he kept changing the time and reducing it, reducing it until it was like, I don't know, 15 or 20 minutes to write the story.
44:58 And it was, it was super useful.
45:01 Oh, that sounds really interesting.
45:03 Bruce, go ahead and give us your thoughts on also getting into writing.
45:07 Although being a journalism major, maybe you also have not so much of that experience.
45:12 Well, I did it in high school.
45:14 I was involved in journalism and studied in the first year and kind of realized it was just going to be more of the same thing.
45:21 And so I changed to physics and got into physics and engineering and eventually computer engineering for my master's degree.
45:30 But I kept being like, I kept showing up at the college newspaper and getting involved with there.
45:37 So I guess I always had this impulse to do it.
45:41 But I would say for people, in fact, at the last PyCon, I held a little open spaces for people who are interested in writing.
45:50 And I'd say the, like a couple of the most important things that came out of that, I think I blogged about it.
45:57 So the details are in the, in my blog, but probably the most important things that I think people like don't get taught are something called active voice, which a lot of people don't know what that means.
46:14 It means more or less you're talking in the immediate tense.
46:19 And it makes your sentences shorter and more direct and more connected to the reader.
46:26 And the other thing, which was huge, someone told me this years ago, is once you think you're done with whatever it is, you know, your blog post or your chapter or whatever, is go back and read it aloud.
46:39 And by reading it aloud, and that's every single word, and it takes a long time, but things will jump out at you.
46:47 And it makes you realize that when you're reading quietly, you skip over stuff and you don't notice things.
46:54 And by reading it aloud, it forces you to pay attention to every single word and the amount of rewriting that you will do when you do that process is kind of amazing.
47:04 So most of my work now, I end up editing myself or like when I'm co-authoring the Kotlin book with a woman who's originally Russian and she speaks.
47:17 Her English is good, but she has a hard time writing.
47:20 And so originally, I was just going to kind of be the editor and publisher of this book.
47:26 But now I'm kind of actively writing and rewriting and doing a lot of pretty heavy editing because of that.
47:33 But, you know, that's just the way projects are.
47:35 They change.
47:36 They evolve.
47:38 Yeah, that's really great advice.
47:39 I like the active voice.
47:42 Definitely a fan of that style of writing.
47:44 That is the hardest thing to learn.
47:47 And even when you know what it is, you will fall back to writing in passive voice and then you'll recover.
47:53 The hardest thing in the world, I think, is just to understand what it is and to constantly be looking for places where you can change passive to active.
48:03 Yeah, nice.
48:04 Before we move on, I'm just going to give a quick shout out to something I saw on GitHub this week that's related to what Catherine brought up and used well, Bruce, a little bit.
48:12 You're probably familiar with 538.
48:14 They write a bunch of sort of data-driven articles in journalism.
48:17 They have a place where they have every bit of data for every article that they write all in one GitHub repository.
48:24 So if people are looking to do like data-driven writing, there's just this amazing place at github.com/538.
48:31 Words, not numbers.
48:33 Slash data.
48:34 Very, very cool out there.
48:35 So, Dan, how about you?
48:37 What are your thoughts on this?
48:38 Like, I'm not much of a writer, but I want to write a book.
48:41 How do I do that?
48:42 Man, that's a tough question.
48:43 You know, I can only speak from personal experience.
48:45 And what it came down to for me was at some point in my life, I actually considered going to, you know, getting a journalism degree, which is funny because that came up a couple of times, you know, from everyone else here in the show.
48:56 So maybe there's some weird connection there.
48:58 I'm sort of glad that I didn't go down that road and went with computer science.
49:02 But I just, you know, I really enjoyed working on things like research papers and then, you know, the thesis that I wrote.
49:10 And just I actually got a kick out of the writing and just that habit of, you know, getting up in the morning, sitting down and putting something in writing and having the ability to go back and like refine it.
49:20 And it wouldn't just disappear.
49:22 Right.
49:22 Like, it's not like I'm explaining some idea or something and I'm just talking to someone, but I can put it down and then tweak it and see how it resonates with people and go back.
49:31 And I always found that fascinating.
49:33 Right.
49:33 So I feel like there was some core, like some passion just on the written word, I guess.
49:41 And I'm not a native English speaker.
49:42 So, you know, I was always looking for ways to improve.
49:46 And eventually I just realized, OK, you just got to do it.
49:48 Right.
49:48 You got to sit down and try and write as much as you can.
49:51 So I set a goal for myself writing at least in the beginning, it was 500 words and a thousand and then like 1500 to 2000.
49:59 And it was really hard.
50:01 You know, in the beginning, it was like really, really draining me.
50:04 And it was very exhausting.
50:06 And I just couldn't I felt I could never get even close to writing 2000 words a day.
50:11 That that made a little bit of sense.
50:13 And, you know, actually being able to physically do it.
50:15 But the funny thing is, if you if you keep at it.
50:18 And so, you know, I made a habit out of getting up in the morning, brushing my teeth, getting a cup of coffee and sitting down for an hour and just writing.
50:24 And I mean, I wrote a lot of crap in those days.
50:29 But what I also realized that over the course of a week, just sort of magically by the end of that week, I would have a new draft chapter for it was a different project at the time.
50:40 But, you know, for that project.
50:41 And I think there's something powerful about that where you just you know, you've got to believe in that process and just also be OK with that daily grind and just sit down and do it.
50:50 And whether that's just, you know, free writing, like journaling in the morning or something like that.
50:54 Like if you can build that habit, eventually you will get better at it.
50:58 And eventually great things will happen from that.
51:00 That's great advice.
51:01 Really, really like it.
51:02 All right, everyone.
51:03 We're pretty much out of time for our episode.
51:05 So I think we're going to wrap it up and I'm going to change the questions just a little bit.
51:09 The two questions I ask everyone and keep it short just because there's a lot of us and we are kind of getting low on time.
51:15 So instead of asking you what your favorite Python editor is, I'm going to ask you what editor used to write your book.
51:21 Catherine, let's start with you.
51:23 Them.
51:24 Them.
51:25 Right on.
51:25 And do you write in like Markdown or what?
51:27 Yeah, there's a few different flavors that some of the publishers like to use where some things are mixed around.
51:34 So then when you go back to a real Markdown, you're like, oh, wait, why isn't this working?
51:39 But yeah, I wrote both the books in them.
51:42 Oh, awesome.
51:42 Brian.
51:43 I wrote it all in Sublime and it was in Markdown.
51:45 And some of the pragmatic stuff was almost like Markdown.
51:50 So I had a converter to convert Markdown to the format that they needed.
51:55 Beautiful.
51:57 Luciano.
51:58 I also use Sublime and I used ASCII doc on a recommendation by O'Reilly because they have this tool chain that uses ASCII doc.
52:07 And I used to be a big proponent of restructured texts in the past.
52:12 But ASCII doc is much better.
52:14 And I also find it better than Markdown because it's more expressive for book writing.
52:18 For instance, I'm the kind of author that likes to write footnotes and lots of cross references and things like that.
52:26 So ASCII doc is more appropriate.
52:29 But now I'm curiously I'm starting this draft project that I don't want to talk about.
52:35 But I'm using Latex because it's based on another book that's written in Latex.
52:40 And I'm not really enjoying it.
52:42 ASCII doc is my favorite option.
52:45 That's cool.
52:46 Back when I was working on my math PhD, I wrote a lot of Latex as well.
52:49 Bruce, how about you?
52:50 I've done all the camera-ready pages since Thinking and C++ for my books, even the ones that were published through publishers.
52:59 And because it would do all the indexing and table of contents, I didn't use page layout.
53:06 I used Word.
53:07 But I have switched over to using Pandoc-flavored Markdown.
53:12 And I have a whole bunch of tools sets that I produce things from with that.
53:20 And I use Sublime Text.
53:21 But for the camera-ready pages, I'll probably go back to Word just because, I mean, I'll convert from the Markdown source to Word and then use it for layout because it still has kind of everything in it.
53:36 And a regular page layout program doesn't do that.
53:39 All right.
53:40 Cool.
53:40 Dan?
53:40 I'm using two editors because I found that switching between two different environments, it really helps me just look at the text differently.
53:48 And I often use different devices too.
53:50 So I'll write something on my computer and then, you know, read it again by emailing it to myself on my phone, for example.
53:56 And I just found that other things will jump out at me.
53:59 But for the actual writing, I use a tool called Ulysses.
54:04 I think it's macOS only.
54:06 But it's really great.
54:08 It's like a fancy Markdown editor.
54:10 And I use that to do all of my writing for the newsletter and for the web.
54:13 And then I do all of my editing in Sublime Text and then, yeah, publish from there.
54:19 So I use these two.
54:20 Very cool.
54:20 Very cool.
54:21 For my Markdown, I use IA Writer, which is a Mac thing as well.
54:24 But I don't write any books.
54:25 So, all right.
54:26 So let's go ahead and wrap this up, you guys.
54:28 And I will give you each a chance for a final call to action.
54:31 Say, Dan, how about you?
54:33 Final call to action.
54:33 People are interested.
54:34 What do they do?
54:35 Buy my book.
54:35 No, I feel like that's too easy.
54:40 But seriously, please do.
54:42 They should buy and study your book.
54:44 And then they want to write their own.
54:46 Yeah.
54:49 No, like I feel like the.
54:50 Okay.
54:50 So what would I would love the most besides people buying my book?
54:54 No, I got to stop this.
54:55 I think it would be great if more people went out there and just shared their experience.
55:00 And, you know, please, for everyone listening, like don't feel bad about putting something out there that's not perfect.
55:06 I mean, of course, you're going to get crappy comments and sometimes a little bit snarky feedback.
55:12 But who cares?
55:13 You know, it's that this is the first step and it can only get better from there.
55:18 And you'll be glad when you look back at that, you know, a couple of months or years later and also what this can do for your software development career.
55:24 So I encourage everyone just to go out there, you know, just put like a two or three hundred word program example.
55:30 Put it on your blog or somewhere.
55:32 It will be a great experience.
55:34 Yeah.
55:34 Nice.
55:34 Bruce.
55:35 And a lot of this is my experience with co-authors.
55:38 I would say if you're thinking of writing a book or co-authoring a book, really do some deep, you know, soul searching and try and figure out why you want to do it.
55:50 Because often in the process of writing the book or co-authoring the book, you'll find out what it really is.
55:57 And if it isn't actually in alignment with finishing the book or if you're hoping to be famous or, you know, make a lot of money or and it doesn't mean that like you might want to write a book that promotes your consulting business around a certain topic.
56:14 And that makes sense.
56:16 But know that that's what you're doing before you dive into this project, because if you don't really understand it, what what it is that you want, you might be thinking, oh, well, if I write this book, then I will get what I want.
56:31 And the book probably won't let you do that.
56:37 You may not finish if if it's if it's not really in line with what you want.
56:42 Yeah.
56:42 Good advice.
56:42 Luciano.
56:43 Well, I agree that force yourself or make yourself write or produce content, maybe not in writing, but like maybe slides for talks at a local meetup and teach stuff to people.
56:55 There's always people willing to learn.
56:58 So if you can connect, for instance, to a local hackerspace or makerspace or a similar place, a community place where you can go and teach courses for free, that's going to improve a lot your communication skills and also give you motivation to develop material.
57:16 And the other thing I want to say is if you're going to publish something on the internet, please don't do it on Medium or Facebook or, you know, any of those big platforms that are eating the web.
57:27 Have your own site.
57:28 If it's too expensive for you to have your own domain, share it with a few friends, you know, and just put a simple tool.
57:35 I love DocuWiki, for instance, it's super simple to install.
57:38 And I'm really happy with my two websites that I created with that.
57:43 So do it, but do it on your own site and not, you know, feeding one of those monsters.
57:48 That's really interesting advice.
57:50 And I generally agree with you for sure.
57:52 Catherine?
57:53 I think there's been a lot of great advice shared.
57:56 I think particularly like if you're a junior person or you're starting to learn, let's say you're self-taught, or if you have some imposter syndrome, you come from an underrepresented group in tech.
58:09 I think writing can really help reaffirm that you do actually have quite a large grasp on quite a lot of topics.
58:17 And I recently read an article, I'll share it so you can put it in the links, about how I hacked my imposter syndrome.
58:24 That's awesome.
58:24 And the person went through and essentially every day they would write, you know, some sort of problem they were having debugging with, I believe they work in data science or machine learning.
58:34 And they would end up writing through their mental process and then what they learned.
58:38 And I think these types of things would be great blog posts.
58:41 They show that you're learning and growing as a data scientist.
58:46 And this is something that, you know, you can look back on your body of work after a long period of time, whether you want to post it publicly or have it privately.
58:53 And really just show, wow, I have learned so much.
58:57 And my grasp is so large now after so much time.
59:01 I think this is a really good practice even just to do outside of the publishing realm.
59:06 Yeah, very nice.
59:06 Brian?
59:07 There's a lot of different styles of writing, and I think that's great.
59:11 And people think that just practice is going to make you better, but you also have to learn.
59:17 So like other art forms like drawing, take a blog post or an author that you like their writing style and try to teach something that you know in the style of somebody you admire and just try out different styles and see what fits for you.
59:32 I think that's a good way to start.
59:33 Yeah, that's great advice.
59:35 So I'll leave everyone with one book recommendation that kind of ties some of this stuff together.
59:40 There's this really interesting book called Hustle, the Life-Changing Effects of Constant Motion.
59:45 And it's this book by Jesse Tevilove, who wrote this book about just like always seizing the moment and always just be working on something.
59:54 And the reason this is relevant is he is writing a book.
59:57 Writing a book was taking him years.
59:59 Like, I need some money to survive.
01:00:00 I'm going to try to write a book the opposite of a year.
01:00:02 And so he wrote a 192-page book that is pretty well done in, I think, three days and published it from the time he opened the editor till the time it was on Amazon was seven days.
01:00:12 And it's really inspiring, even if you don't care about authoring a book, just like, oh, my gosh, what can you do if you really like powered through a project?
01:00:19 It's pretty cool.
01:00:20 So people check that out.
01:00:21 If you're inspired, you want to create something around text, I guess.
01:00:24 All right, everyone.
01:00:26 Thank you so much for being on the podcast and sharing your experience.
01:00:29 This was really interesting to have you all.
01:00:31 And I'll talk to you all later.
01:00:32 All right.
01:00:33 Bye.
01:00:33 Thanks, Mike.
01:00:34 Bye-bye.
01:00:34 Thanks.
01:00:35 This has been another episode of Talk Python to Me.
01:00:39 Our panelists have been Catherine Jarmul, Bruce Eccle, Luciano Romalo, Dan Bader, and Brian Okken.
01:00:46 And this episode has been brought to you by Linode.
01:00:48 Linode is bulletproof hosting for whatever you're building with Python.
01:00:52 Get four months free at talkpython.fm/linode.
01:00:56 That's L-I-N-O-D-E.
01:00:59 Are you or a colleague trying to learn Python?
01:01:01 Have you tried books and videos that just left you bored by covering topics point by point?
01:01:05 Well, check out my online course, Python Jumpstart, by building 10 apps at talkpython.fm/course
01:01:11 to experience a more engaging way to learn Python.
01:01:14 And if you're looking for something a little more advanced, try my Write Pythonic Code course
01:01:19 at talkpython.fm/pythonic.
01:01:22 Be sure to subscribe to the show.
01:01:24 Open your favorite podcatcher and search for Python.
01:01:26 We should be right at the top.
01:01:27 You can also find the iTunes feed at /itunes, Google Play feed at /play,
01:01:33 and direct RSS feed at /rss on talkpython.fm.
01:01:37 This is your host, Michael Kennedy.
01:01:39 Thanks so much for listening.
01:01:40 I really appreciate it.
01:01:41 Now get out there and write some Python code.
01:01:43 I really appreciate it.