American Young Coder

AYC logo

9 AM – Python Game Development

We went over how to increase the score when the Fireball hit the bird.  Homework: When the cloud goes off the screen, kill the cloud. Look at how we did it inRead More...

10 AM – Python Game Development

Homework: Add "assets/audio/Happy Baby.wav" To do your final project properly, you need to be able to share your code project with your team members and me. In order to do that, weRead More...

10AM – Intro to Python

Today we did: Started Hangman game How to make unicode characters How to multiply strings Homework: In the hangman while loop (replace pass): Print the 9 lives symbol Ask the user "GuessRead More...

11 am Scratch Level 1

Today We: Added a present that comes in from the right side of the screen We used our face as a sprite We duplicated to make two faces We made the facesRead More...

12 PM – Python Game Development

We went over how to add platforms into the game. We learned how to push codes into gitlab Homework: inside main.py, enhance create_platform() method to have all the platforms needed for theRead More...

1 PM – Python Game Development

We went over the classes homework. We learned about inheritance and created a Student and Doctor class inheriting from Human. Homework: Read and do the examples and exercises from page 167 toRead More...

3 PM Scratch Level 2

Today we were mostly able to complete the Christmas Project. For Homework: Please add in your faces if you haven't already for homework. Also add in a few more phrases for theRead More...

3 PM – Scratch Level 1

Today we finished coding the dinosaurs in Dino Dance Homework: Follow the codes from pg. 43-45 from the book Do the "Might as Well Jump" section in pg. 47

4 PM – Intro To Python

We completed Robot Builder project. We started Drawing complex shapes. Homework: Create a final project proposal in a piece of paper It needs to have color. It needs to combination of rectangle,Read More...

4 PM Scratch Level 2

Today we continued with the Christmas Card project. For Homework: Please add in the new variable index, I will explain it more next week. Add in more of the phrases that IRead More...

5 PM – Introduction to Python

Today we went over: The While Loop homework (pgs. 121, 123) Announced a quiz that will take place during class on 12/19 An overview of everything we've learned so far (can beRead More...

6 PM – Python Game Development

We started Birdie project We learned how to load an image into the memory self.bird = pygame.image.load("assets/bird01_A.png") We learned how to draw an loaded image into the screen self.screen.blit(self.bird, (0,0)) We learnedRead More...