Tommy's reflection on the class so far

by

22 Sep 2022

Then, under the hyphens, put the content of your post, and format it so that your interactive code and static code blocks will show up.

Reflection Text

Include your pre-composed reflection on the class so far in the post. You can paste the text into github and click on the Preview pane to see what it will look like. From there, you’ll need to do a little bit of reformatting.

Interactive Code

To include embedded interactive trinkets in your post, go to your Trinket program(s) and follow the instructions here to get the embed code.

Then, paste the code into the text of your post. At this point your post will look something like this:

Here’s the draw_circle function:

def draw_star(turtle, color, size, x, y):
  turtle.penup()
  turtle.color(color)
  turtle.fillcolor(color)
  turtle.goto(x,y)
  turtle.pendown()
  turtle.begin_fill()
  turtle.right(144)
  for i in range(5):
    turtle.forward(size*2)
    turtle.right(144)
    turtle.forward(size*2)
  turtle.end_fill()
  turtle.setheading(0)

I edited this post after the fact. Sweet!

Find on Twitter, Github, and on the web.