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:20210123T090000
DTEND;TZID=America/Los_Angeles:20210123T100000
DTSTAMP:20260429T152206
CREATED:20210123T210011Z
LAST-MODIFIED:20210123T210011Z
UID:6020-1611392400-1611396000@www.ayclogic.com
SUMMARY:9 AM - Python Game Development
DESCRIPTION:Make the giant fireball appear on the screen on the right position.\nFixed the problem where the giant fireball appear on top of the player when it is facing left.\nMake the giant fireball able to kill multiple enemies instead of just disappear after hitting one enemy.\nAdded “Giant Fireball Cooldown” indicator on the top right corner of the screen.\nHomework:\n\nWhen the Giant Fireball Cooldown goes to 0 or lower\, display “Giant Fireball Ready” instead of the countdown.
URL:https://www.ayclogic.com/event/9-am-python-game-development-41/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T100000
DTEND;TZID=America/Los_Angeles:20210123T110000
DTSTAMP:20260429T152206
CREATED:20210123T210244Z
LAST-MODIFIED:20210123T210244Z
UID:6025-1611396000-1611399600@www.ayclogic.com
SUMMARY:10 AM - Python Game Development
DESCRIPTION:We went over the final project planning.\nWe went over the platform runner game progress.\nWe went over the Wack-a-mole game progress.\nHomework:\n\ncontinue making progress with your final project.
URL:https://www.ayclogic.com/event/10-am-python-game-development-36/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T120000
DTEND;TZID=America/Los_Angeles:20210123T130000
DTSTAMP:20260429T152206
CREATED:20210123T210410Z
LAST-MODIFIED:20210123T210410Z
UID:6027-1611403200-1611406800@www.ayclogic.com
SUMMARY:12 PM - Python Game Development
DESCRIPTION:We completed project planning.\nWe made the door appear on the screen.\nHomework:\n\nContinue with final project.
URL:https://www.ayclogic.com/event/12-pm-python-game-development-14/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T130000
DTEND;TZID=America/Los_Angeles:20210123T140000
DTSTAMP:20260429T152206
CREATED:20210123T221507Z
LAST-MODIFIED:20210123T221826Z
UID:6029-1611406800-1611410400@www.ayclogic.com
SUMMARY:1 PM - Python Game Development
DESCRIPTION:We went over the homework to add bird3 which moves diagonally to the bottom right corner.\nWe added a new “bird.py” file for the Bird sprite\, and created a bird4 using this class.  We learned about how to import Bird and configure PyCharm to know the location of the “Sources Root”.\nWe add a “bird_group” using the pygame.sprite “Group” class to keep track and update all our birds.\nI’ve uploaded the source code here.\nHomework:\n\nCreate another method “create_bird” inside the “Birdie” (not “Bird”) class.  In this method\, create another “Bird” object and add it to the “bird_group” sprite Group object.  Make sure that you’re creating the “bird_group” sprite Group object inside the Birdie.__init__ method\, and calling the “bird_group.update()” inside the game loop.
URL:https://www.ayclogic.com/event/1-pm-python-game-development-8/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T160000
DTEND;TZID=America/Los_Angeles:20210123T170000
DTSTAMP:20260429T152206
CREATED:20210124T031529Z
LAST-MODIFIED:20210124T031529Z
UID:6040-1611417600-1611421200@www.ayclogic.com
SUMMARY:4 PM - Intro To Python
DESCRIPTION:We started with Supermarket program\n\nWe printed the menu\n\n\nHomework:\n\nInside the forever loop\, add condition to handle purchasing Milk\, Eggs and Orange Juice. Keep track of the total price.\nWhen user enters “4”\, print out the total_price that he has to pay.
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-12/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T170000
DTEND;TZID=America/Los_Angeles:20210123T180000
DTSTAMP:20260429T152206
CREATED:20210124T020659Z
LAST-MODIFIED:20210124T020659Z
UID:6035-1611421200-1611424800@www.ayclogic.com
SUMMARY:5 PM - Introduction to Python
DESCRIPTION:Today we went over:\n\nFunctions with return values\nRandom module\, Magic8Ball\nStar Wars project\n\n\nHomework:\n\nConvert Magic8Ball.py by using lists and random.chioce()\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-9/
CATEGORIES:Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210123T180000
DTEND;TZID=America/Los_Angeles:20210123T190000
DTSTAMP:20260429T152206
CREATED:20210124T031236Z
LAST-MODIFIED:20210124T031236Z
UID:6038-1611424800-1611428400@www.ayclogic.com
SUMMARY:6 PM - Python Game Development
DESCRIPTION:We went over how to display cloud to the screen\nWe made birds move left and right. When it moved to the left\, we made the bird appear from the right side of the screen.\nHomework:\n\nMake the cloud move left or right directions.\nWhen the cloud move to the left\, make it appear from the right side of the screen.
URL:https://www.ayclogic.com/event/6-pm-python-game-development-86/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
END:VCALENDAR