Slide 1

Slide 1 text

Code reading workshop SoCraTes UK - June 1st, 2023 https://maritvandijk.com/

Slide 2

Slide 2 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 3

Slide 3 text

Code reading workshop Introduction • We spend more time reading code than writing code

Slide 4

Slide 4 text

Code reading workshop Introduction • We spend more time reading code than writing code • What if we practice reading code explicitly?

Slide 5

Slide 5 text

Code reading workshop Introduction • We spend more time reading code than writing code • What if we practice reading code explicitly? • Code Reading Club by Felienne Hermans https://codereading.club/

Slide 6

Slide 6 text

Code reading workshop Introduction • We spend more time reading code than writing code • What if we practice reading code explicitly? • Code Reading Club by Felienne Hermans • The Programmer's Brain by Felienne Hermans

Slide 7

Slide 7 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 8

Slide 8 text

Code reading workshop Expectations (1) (2 mins) Independently - Note down one thing about today's code reading club session in a sticky note... ... that you are looking forward to or excited about ... that you are worried or confused about

Slide 9

Slide 9 text

Code reading workshop Expectations (2) (5 mins) Together - Discuss Give everyone a chance to read out their hopes and fears Use the remaining time to discuss collectively what you want to get out of the session

Slide 10

Slide 10 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 11

Slide 11 text

Code reading workshop First glance (1) The goal of this exercise is to practice to get a fi rst impression of code and to act upon that. We all have di ff erent instincts and strategies for where to start when faced with a new piece of code. It doesn't matter how trivial you think the fi rst and second things you noticed are. (1 min) Independently - Glance at the code It's important that this is an immediate reaction. Right away, note down the fi rst thing that catches your eye. Then note down the second thing that catches your eye. Take the remainder of the minute to think about why you noticed those things fi rst.

Slide 12

Slide 12 text

Code reading workshop First glance (2) (5 mins) Together - Discuss the results Talk about why things might have jumped out for di ff erent people. • How do those initial observations help with deciding what to look at next? • What lines or facts or concepts were chosen by everyone versus by only a few people? Re fl ect also on what kind of knowledge you used in this exercise: • Knowledge of the domain, of the programming language? Of a framework? • What knowledge do you think might be needed to better understand this code?

Slide 13

Slide 13 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 14

Slide 14 text

Code reading workshop Code Structure (1) The goal of this exercise is to be a concrete thing to do when looking at new code for the fi rst time. New code can be scary, doing something will help! (12 mins) Independently - Examine structure Variables Go through the code and circle all variables in red Then draw a link between variables and their uses Function / method calls Go through the code and circle all methods in blue Then draw a link between methods and their invocations Instantiation Go through the code and circle all instances of classes in green Then draw a link between classes and their instances

Slide 15

Slide 15 text

Code reading workshop Code Structure (2) (10 mins) Together - Discuss the results • Did anyone have trouble deciding what constituted a variable, function or class? • What patterns are visible from the colors and links only? • How does the data fl ow through the code? • What parts of the code seem to warrant more attention?

Slide 16

Slide 16 text

Code reading workshop Code Structure (alt) • (20 mins) Together - Discuss the roles of variables

Slide 17

Slide 17 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 18

Slide 18 text

Code reading workshop Content (1) The goal of this exercise is to start to think about which lines in the code de fi ne its essence, have the biggest impact or need to be paid close attention to. (8 mins) Independently - Identify most important lines Brie fl y discuss what it means to be important as a group (if you want to) Then, identify the 5 lines you consider most important

Slide 19

Slide 19 text

Code reading workshop Content (2) (10 mins) Together - Discuss Discuss in the group: • Lines covered by many people? • Lines named but not by a lot of people • Discuss why particular lines were chosen • Can we agree on less than 8 of the most important lines? 1 15 5 29 3 2 2 16 3 30 1 3 17 31 4 4 18 9 32 5 19 33 6 20 3 34 7 2 21 35 8 3 22 9 36 9 2 23 3 37 2 10 24 2 38 2 11 25 39 4 12 1 26 7 40 7 13 27 1 41 14 28 2 42

Slide 20

Slide 20 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 21

Slide 21 text

Code reading workshop Summary (1) The goal of this exercise is to think about the core purpose or function of this code. (5 mins) Independently - Summarize Try to write down the essence of the code in a few sentences

Slide 22

Slide 22 text

Code reading workshop Summary (2) (10 mins) Together - Discuss • Topics covered by many vs few • Strategies used to create the summary (e.g. method names, documentation, variable names, prior knowledge of system)

Slide 23

Slide 23 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish

Slide 24

Slide 24 text

Code reading workshop Re fl ect on the session Let's wrap up the session with a little re fl ection (5 mins) Together - note down things about the session • What went well or felt good? • What would you to try to do di ff erently next time because they didn't work or felt bad?

Slide 25

Slide 25 text

Code reading workshop Next steps (1) If we have time, we can optionally discuss the following (5 mins) Together - Discuss Now that you have attended this workshop, would you consider doing this more often? Why / why not? What would you get out of doing code reading sessions?

Slide 26

Slide 26 text

Code reading workshop Links https://maritvandijk.com/presentations/code-reading/

Slide 27

Slide 27 text

Code reading workshop Agenda • 14:30 Introduction (5 min) • 14:35 Expectations (10 min) (hand out copies of sample) • 14:45 First glance (10 min) • 14:55 Code structure (25 min) • 15:20 Content (20 min) • 15:40 Summary (15 min) • 15:55 Re fl ect (5 min) • 16:00 Finish