BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20210314T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20211107T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T090000
DTEND;TZID=America/Los_Angeles:20210320T100000
DTSTAMP:20260429T110855
CREATED:20210320T165539Z
LAST-MODIFIED:20210320T165539Z
UID:6743-1616230800-1616234400@www.ayclogic.com
SUMMARY:9 AM - Python Game Development
DESCRIPTION:We discussed how to make coins appear on the screen and between the tube.\nWe made the Tube appear both on the top and on the bottom of the screen.\nHomework:\n\nMake the Duck flaps its wing.\nMake the coin switch between coin_1.png and coin_2.png.
URL:https://www.ayclogic.com/event/9-am-python-game-development-48/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T100000
DTEND;TZID=America/Los_Angeles:20210320T110000
DTSTAMP:20260429T110855
CREATED:20210320T175555Z
LAST-MODIFIED:20210320T185933Z
UID:6745-1616234400-1616238000@www.ayclogic.com
SUMMARY:10 AM - Python Game Development
DESCRIPTION:Homework:\n\nIn the shoot balloon project do the following\nIntegrate the target.py into the main.py\nCreate balloon.py and randomly load one of these images: blue_baloon_1.png\, green_baloon_2.png\, orange_baloon_1.png\, red_baloon_2.png\nIntegrate the balloon.py into the main.py and create balloon once every 2 seconds.\nThe balloon should appear from the bottom of the screen and move to the top of the screen.
URL:https://www.ayclogic.com/event/10-am-python-game-development-42/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T120000
DTEND;TZID=America/Los_Angeles:20210320T130000
DTSTAMP:20260429T110855
CREATED:20210320T195736Z
LAST-MODIFIED:20210320T195736Z
UID:6756-1616241600-1616245200@www.ayclogic.com
SUMMARY:12 PM - Python Game Development
DESCRIPTION:We completed Final Project… Yea.\nWe continued with Shoot Balloon project.\nHomework:\n\nWhen balloon go above the screen\, kill the balloon.\nCreate a new sprite\, bug.py. You should use\n\nassets/bird/flying/frame-1.png and frame2.png\nAnimate the bug\n\n\nIntegrate with main.py and periodically spawn a bug.
URL:https://www.ayclogic.com/event/12-pm-python-game-development-19/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T130000
DTEND;TZID=America/Los_Angeles:20210320T140000
DTSTAMP:20260429T110855
CREATED:20210320T210350Z
LAST-MODIFIED:20210326T234346Z
UID:6759-1616245200-1616248800@www.ayclogic.com
SUMMARY:1 PM - Python Game Development
DESCRIPTION:We went over the homework to slow down player flapping wings and spawned clouds from left and right.\nWe made fireball launched with pressing the space key and added a cool-down period before another fireball can be launched.\nI’ve uploaded the source code here.\nHomework:\n\nMake clouds that move the right spawn off the screen. Hint: use an offset. In other words you need to make sure the clouds moving to the right spawn outside the birdie screen. So you want them to be more like Cloud 2 than Cloud 1 below:\n\n\n\n\nDo some reading on “pygame.Rect” and how it is used to handle collisions.  Read pages 247 and 248\, and from pages 268 and 269.  Then think about how we can use these techniques to kill birds that get shot by the fireballs.
URL:https://www.ayclogic.com/event/1-pm-python-game-development-15/
CATEGORIES:Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T160000
DTEND;TZID=America/Los_Angeles:20210320T170000
DTSTAMP:20260429T110855
CREATED:20210321T072038Z
LAST-MODIFIED:20210321T072442Z
UID:6775-1616256000-1616259600@www.ayclogic.com
SUMMARY:4 PM - Introduction to Python - Nathaniel Lee
DESCRIPTION:Today we went over:\n\nFor loop homework\nA brief introduction to While loops\n\n\nHomework:\n\nPage 121\, 123\n\n\n\nIf you have any questions\, please feel free to email me at nathaniel@ayclogic.com!
URL:https://www.ayclogic.com/event/4-pm-introduction-to-python-nathaniel-lee-3/
CATEGORIES:Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T170000
DTEND;TZID=America/Los_Angeles:20210320T180000
DTSTAMP:20260429T110855
CREATED:20210321T074534Z
LAST-MODIFIED:20210321T074534Z
UID:6778-1616259600-1616263200@www.ayclogic.com
SUMMARY:5 PM - Introduction to Python - Nathaniel Lee
DESCRIPTION:Today we went over:\n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\n\n\nHomework:\n\nIn the google drive\, there is a file called “Mar27_QuizReviewHomework.py” that contains the 3 questions to be completed. The homework questions will also be provided below.\n1.) create a while loop that prints the numbers 1\,3\,5\,7\,9\,11\n2.) create a list of fruits with values [“orange”\, “peach”\, “apple”\, banana”]. go through each element in the list with a for loop if the fruit is “banana”. Then print “I love banana”. If the fruit is any other fruit then print “I like that fruit \n3.) create a function called “yards_to_inches” that has one argument/parameter “yard”. There are 3 inches in a yard\, return the number of inches with respect to the yard argument.\nCall the function and print the return value of the function\n\n\n\nIf you have any questions\, please feel free to email me at nathaniel@ayclogic.com!
URL:https://www.ayclogic.com/event/5-pm-introduction-to-python-nathaniel-lee/
CATEGORIES:Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210320T180000
DTEND;TZID=America/Los_Angeles:20210320T190000
DTSTAMP:20260429T110855
CREATED:20210321T021824Z
LAST-MODIFIED:20210321T021824Z
UID:6769-1616263200-1616266800@www.ayclogic.com
SUMMARY:6 PM - Python Game Development
DESCRIPTION:We centered Play Button and Title image\nWe detected mouse click on the Play Button.\nWhen play button is clicked\, we start the game.\nHomework:\n\nWhen the player and the bird collide\, display play button and title images on the screen.
URL:https://www.ayclogic.com/event/6-pm-python-game-development-109/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
END:VCALENDAR