Skip to content
Student Login

Loops are the hardest

Last updated: February 2018ย ๐Ÿ‘‰ livestreamed every last Sunday of the month. Join live or subscribe by email ๐Ÿ’Œ

There is an old truism in software engineering that 199 out of 200 job applicants can't code. Like, forget fizz buzz, can't even write a loop.

I don't know if that's true. Guess I got lucky. And I don't interview that much anyway.

But I do work with a lot of brilliant engineers in my React + D3 workshops. Go into a company, meet with a team who wants to learn some new tech, show them around for a day or two, and create a better team.

It's great.

My workshops involve a lot of coding. Practice makes perfect, and I find that a little struggle really helps the learning process.

You know, code a bit, give them a challenge, let them solve it for a few minutes, show them how it's done. It engages their brain, lets my voice rest a bit, and makes the workshop more interactive.

People love it.

Wanna know what all these brilliant, gainfully employed engineers struggle with the most?

My hardest example is a color swatch. I show them this:

See the Pen d3 color scale by Swizec Teller (@swizec) on CodePen.

It's a row of colorful rectangles thatโ€™s using D3 to get colors and React to render components in a loop.

The idea is to show workshop participants how React makes code reuse simple, that D3 doesn't have to be scary, and that all the basic JavaScript and programming concepts work great. It's just code, the same kinda code you write all day.

Then I ask them to turn this row into a checkerboard.

See the Pen d3 color checkerboard by Swizec Teller (@swizec) on CodePen.

And I don't think anyone has ever solved it.

We're not talking beginners here. These are hard-working, smart engineers. The kind of people who grok Redux in an afternoon. Learn React in a few hours. Keep massive engineering infrastructure working smoothly every day. The kind of software projects that would make me shit my pants. They do it every day. It's easy.

Systems, processes, really complex fucking things. All easy. Many have forgotten more about software engineering than I ever knew.

Changing a loop into a nested loop? Impossible.

I mean, the simplest solution to my challenge is changing this ๐Ÿ‘‡

render() {
return (
<g>
{d3.range(20).map(i => (
<swatch color={this.colors[i]} width={this.width.step()} x={this.width(i)} y="0">
))}
</swatch></g>
)
}

To this ๐Ÿ‘‡

render() {
return (
<g>
{d3.range(20).map(j => d3.range(20).map(i => (
<swatch color="{this.colors[j%2" ?="" i="" :="" this.colors.length-i-1]}="" width={this.width.step()} x={this.width(i)} y={j*20}>
)))}
</swatch></g>
)
}

Wrap the iteration in another iteration, use that to change the y coordinate. When you're on an even row, take colors from the left, take it from the right on odd rows.

That's all. A nested loop problem.

When we solve it together as a class, I usually create a <Row> component and use that in a loop. Makes nesting easier to see and makes benefits of React more apparent.

Maybe I have to change this example. Maybe loops are hard and I'm just delusional.

Do people get so used to solving huge engineering problems inside massive systems that they forget how to write code?

I know designing systems is super hard and takes a special kind of brain. It's a whole different skill. How do you make this random process talk to that other mostly random process? How do you design your architecture so 50 engineers can work together? 1000 engineers? What about 10,000?

But at the cost of forgetting how loops work? ๐Ÿง

I'm both stumped and intrigued.

About the Author

Hi, Iโ€™m Swizec Teller. I help coders become software engineers.

Story time ๐Ÿ‘‡

React+D3 started as a bet in April 2015. A friend wanted to learn React and challenged me to publish a book. A month later React+D3 launched with 79 pages of hard earned knowledge.

In April 2016 it became React+D3 ES6. 117 pages and growing beyond a single big project it was a huge success. I kept going, started live streaming, and publishing videos on YouTube.

In 2017, after 10 months of work, React + D3v4 became the best book I'd ever written. At 249 pages, many examples, and code to play with it was designed like a step-by-step course. But I felt something was missing.

So in late 2018 I rebuilt the entire thing as React for Data Visualization โ€” a proper video course. Designed for busy people with real lives like you. Over 8 hours of video material, split into chunks no longer than 5 minutes, a bunch of new chapters, and techniques I discovered along the way.

React for Data Visualization is the best way to learn how to build scalable dataviz components your whole team can understand.

Some of my work has been featured in ๐Ÿ‘‡

Created bySwizecwith โค๏ธ