Fire up a REPL, grab your favorite Stephen King novel, and hold on to the seat of your pants! Jimmy Miller returns to reveal why, at least for some of us, discovery coding is where it's at. :link: https://changelog.am/80
Ch | Start | Title | Runs |
---|---|---|---|
01 | 00:00 | Let's talk! | 00:38 |
02 | 00:38 | Sponsor: Temporal | 02:03 |
03 | 02:41 | ISPs & Friends | 07:31 |
04 | 10:12 | Jimmy is back! | 03:29 |
05 | 13:41 | Blinkist (not a sponsor) | 02:41 |
06 | 16:22 | Packaging matters | 01:59 |
07 | 18:21 | Jimmy's bangers | 02:02 |
08 | 20:23 | Discovery Coding | 03:04 |
09 | 23:27 | Sponsor: Augment Code | 03:30 |
10 | 26:57 | The four designs story | 04:01 |
11 | 30:58 | Pantsing | 01:00 |
12 | 31:58 | The rubber hits the road | 03:04 |
13 | 35:02 | Not much tooling | 06:36 |
14 | 41:38 | Stephen King's method | 03:39 |
15 | 45:17 | Applying King's method | 00:50 |
16 | 46:07 | Flow state debate | 05:18 |
17 | 51:25 | Discovery coding != flow | 00:43 |
18 | 52:08 | Discovery coding != bottom up | 03:38 |
19 | 55:47 | Sponsor: Notion | 02:48 |
20 | 58:34 | How to get started | 08:02 |
21 | 1:06:37 | Discovery code every time? | 02:13 |
22 | 1:08:50 | The 2-year debug story | 02:30 |
23 | 1:11:20 | The bad open source story | 02:17 |
24 | 1:13:37 | The group project plagiarism story | 01:12 |
25 | 1:14:49 | Restoring your session | 04:17 |
26 | 1:19:06 | Personal comments | 04:23 |
27 | 1:23:29 | Implementation details | 08:20 |
28 | 1:31:49 | Do you like this idea? | 00:53 |
29 | 1:32:42 | Comment pack rat | 01:45 |
30 | 1:34:27 | Commit message confessions | 01:19 |
31 | 1:35:46 | The Field Notes friend | 00:34 |
32 | 1:36:20 | Dog visitation | 01:20 |
33 | 1:37:39 | Beyond the blog post | 03:48 |
34 | 1:41:28 | Wheel reinvention | 01:26 |
35 | 1:42:54 | Back to personal notes | 02:09 |
36 | 1:45:03 | Does Evernote still exist? | 01:00 |
37 | 1:46:03 | Modern OCR tools | 01:15 |
38 | 1:47:18 | Discovery coding first steps | 04:33 |
39 | 1:51:51 | Bye, friends | 00:49 |
40 | 1:52:40 | Coming up next | 01:15 |
This episode was beautiful :heart: . Many thoughts, but to highlight just a few:
I'd be curious what other annotation / tour tools people use.
The editor discussion reminded me of literate programming Donald Knuth used to write Tex and other software. I remember using an editor to help with this when I experimented with.
You write your "document" and mix in the code as necessary. Then the tool can extract the full source files out of the document and create your software. Since the document is the main thing and code is what makes the document come alive and inserted with the document, you don't worry about being tagged together.
You could document your frustrations, personal notes or whatever you wanted. The only question is what would you do with stuff you don't want to share?
Great episode! This is timely for me because I've been trying to really pay attention to my work style recently. When are things moving along well and I feel good about my work vs when am I getting really hung up on things.
Some things that came to mind as I listened to the episode:
All this to say this was a great episode that got me thinking about my own practices more. Which, inevitably, leads me to enjoying coding more.
@AJ Kerrigan I've never used a "code tour" before, but I'm definitely gonna check this out now! If it's what I'm imagining, I could envision a lot of uses for this (onboarding new devs on a team or in a new codebase, introducing new concepts practices in a codebase, etc).
Yeah @Chris Duzan it's pretty neat. I hope you get some value out of it, and I'm sure there are similar tools for other environments out there. I just don't know them yet :sunglasses: .
Actually the creator (Jonathan Carter) bundles CodeTour and a bunch of related extensions into CodeSwing which he calls an "interactive coding playground". And he created GitDoc separately, which automatically commits/pushes changes as you work. I think all of that guy's work clicks with the same spot in my brain that Jimmy was hitting here - fast feedback and low friction exploration. (Personally I use GitDoc only in my personal notes repo, I don't like using it on actual projects).
45h15h said:
The editor discussion reminded me of literate programming Donald Knuth used to write Tex and other software.
See LeoJS, a vscode extension which is a typescript reimplementation of the Leo Editor, which itself started ~30 years ago inspired by Knuth's work and the More outline editor and has been under continuous development.
Leo exactly addresses how to add and use personal comments in a shared codebase talked about in the Discovery podcast episode (and a whole lot more).
Even if the editors themselves are not to taste - most folks bounce off, it takes willingness to work differently and time to learn - the ideas are solid and battle tested, worth exploring.
Another modern implementation of literate programming is nbdev (introductory blog post) where you basically do your coding in a Jupyter notebook, then mark some cells as exportable and compile it into the final code. I tried it a few years ago and it was a bit clunky to get working, but they've probably streamlined it a lot since.
I also bounced off notebooks/nbdev for most projects, despite seeing their appeal. Been mucking around with marimo lately though, and it's the most I've jived with a notebook tool's philosophy since an old "unnotebook" tool called Cauldron.
I’ve been picking and choosing my way through The Future of Coding podcast since the last time Jimmy was on. Would definitely recommend. Always great discussions about important papers with occasional mindblowing artistic flourishes.
marimo is very interesting. I enjoy the interactivity and near simultaneous coding + visualizations, and am very happy it's uv
and pixi
aware. I've yet to do anything "for real" with it, but am pretty sure that'll happen before long.
Was skeptical reading the description of this episode, then really enjoyed listening through. I think mainly because I’m a cynic that doesn’t like to be put into a bucket.
That said, the entire conversation I was labeling myself as a discovery coder, and toward the end when Jimmy said the crux is coming into the space without any predisposition to a solution I was like, ack! I have had so many self realizations that I often come to the party already to rock what I’ve thought through in my head.
That for me was the most poignant take away, and at least for me one of the hardest things to do.
At first, I thought Discovery Coding was a style of fixing a bug or writing a new feature. That freaked me out because it sounded like it would lead to willy-nilly solutions that would be hard to maintain. Then, Jimmy gave the example of when he drafted a design doc and realized that his designs did not make sense. The entire time I thought, maybe we need to talk about better analysis. Then I realized that Discovery Coding is an analysis tool. It is about better analysis. He's adding code that assists in understanding the system so that his future design ideas are more informed.
Thinking about TDD. I don't see that as a form of analysis. It's an implementation method, writing code to fix a bug or create a new feature. You could design the solution before beginning TDD or as you go, realizing how the thing works as you write acceptance criteria in the form of tests. HOWEVER, writing tests can be done for the sake of analysis. That's not TDD, that's part of the discovery process. It's the same as Jimmy's example of adding debug statements or hacking a REPL so that he can figure things out.
I think Discovery Coding might be a misnomer, only because when someone says, "I'm coding", you imagine that person is fixing a bug or creating a feature. Also, it's important to think about Outlining in the right context. Are we outlining a design or are we outlining the current behavior of the system? If we're comparing Discovery Coding to Design Outlining, then we're comparing apples and oranges.
This was a fun episode. I generally do discovery coding in tandem with writing a basic design document. Basic being a general outline and/or notes on what I'm thinking and running into. Then when discovery coding is done I'll write the serious design document.
Things I've found that help are:
Also love the idea of personal comments in code. I think editors can implement that but it would also be cool to see that implemented at the version control layer. Different users can commit their comments and you can fetch another user's comments in addition to the source code.
I've seen advice that strict types slow us down too much for good prototyping, but I think this is mostly a familiarity thing
And it probably depends on what you're trying to learn from your prototype
If your question is actually about a specific language or technology choice, then of course your prototype should use those
But if your question is about business logic, or product market fit, or feasibility, then you probably don't want to be learning a new technology at the same time as you're trying to explore a problem
Last updated: Apr 03 2025 at 20:18 UTC