BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:American Young Coder
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:20210109T090000
DTEND;TZID=America/Los_Angeles:20210109T100000
DTSTAMP:20260429T165821
CREATED:20210109T195805Z
LAST-MODIFIED:20210109T195805Z
UID:5834-1610182800-1610186400@www.ayclogic.com
SUMMARY:9 AM - Python Game Development
DESCRIPTION:We continued with Birdie project\nWe detected mouse coordinate so we can check if user click on top of the mouse.\nAssisted a couple of students with their Python and Pycharm settings.\nHomework:\n\nWe did check mouse_x position according to play_button x coordinate when user click on the mouse to start the game.\nCheck mouse_y position according to play_button y coordinate to start the game.
URL:https://www.ayclogic.com/event/9-am-python-game-development-39/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T100000
DTEND;TZID=America/Los_Angeles:20210109T110000
DTSTAMP:20260429T165821
CREATED:20210109T200011Z
LAST-MODIFIED:20210109T200011Z
UID:5836-1610186400-1610190000@www.ayclogic.com
SUMMARY:10 - Python Game Development
DESCRIPTION:We did project planning for both group for their final projects.\nThe final project is due on March 13.\nHomework:\n\nComplete project planning on the proposal document. I want to see what can be accomplished every week from today all the way to March 13.\nMake some progress on your final project according to the project plan.
URL:https://www.ayclogic.com/event/10-python-game-development/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T120000
DTEND;TZID=America/Los_Angeles:20210109T130000
DTSTAMP:20260429T165821
CREATED:20210110T011751Z
LAST-MODIFIED:20210110T011751Z
UID:5848-1610193600-1610197200@www.ayclogic.com
SUMMARY:12 PM - Python Game Development
DESCRIPTION:We continued discussing about the final project.\nWe started with Shoot Balloon project.\nHomework:\n\nComplete your Final Project – project planning. I want to see what you can accomplish every week. The more details and specific you can add\, the better. The final project is due March 13.\nMake progress on your final project according to final project -project planning.
URL:https://www.ayclogic.com/event/12-pm-python-game-development-12/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T130000
DTEND;TZID=America/Los_Angeles:20210109T140000
DTSTAMP:20260429T165821
CREATED:20210109T221606Z
LAST-MODIFIED:20210110T014808Z
UID:5840-1610197200-1610200800@www.ayclogic.com
SUMMARY:1 PM - Python Game Development
DESCRIPTION:Today we finished setting up the Birdie project and configured it to work with python and installed the pygame library.\nWe read through the initial code and modified it to draw the blue background.\nYour homework is to draw a Bird and the blue background.\n\nYou need this line of code to load the bird image:\n\n\nself.bird1 = pygame.image.load('assets/bird01_A.png')\n\n\n\nYou need this line of code to “draw” this image over the blue background:\n\n\nself.screen.blit(self.bird1\, (0\, 0))\n\n\n\n\n\nYou can find the “src” files from today here.
URL:https://www.ayclogic.com/event/1-pm-python-game-development-6/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T160000
DTEND;TZID=America/Los_Angeles:20210109T170000
DTSTAMP:20260429T165821
CREATED:20210110T010958Z
LAST-MODIFIED:20210110T010958Z
UID:5846-1610208000-1610211600@www.ayclogic.com
SUMMARY:4 PM - Intro To Python
DESCRIPTION:We discussed about final project.\nWe started Kaleido Spiral project.\nHomework:\n\ncontinued with your final project\, please email me your python final project file to gamas@ayclogic.com. Final project is due on January 23rd.
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-10/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T170000
DTEND;TZID=America/Los_Angeles:20210109T180000
DTSTAMP:20260429T165821
CREATED:20210110T021454Z
LAST-MODIFIED:20210110T021454Z
UID:5851-1610211600-1610215200@www.ayclogic.com
SUMMARY:5 PM - Introduction to Python
DESCRIPTION:Today we went over:\n\nQuiz 1A\nIntro to functions with and without return values\n\n\nHomework:\n\nPages 130 to 133\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-7/
CATEGORIES:Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210109T180000
DTEND;TZID=America/Los_Angeles:20210109T190000
DTSTAMP:20260429T165821
CREATED:20210110T031407Z
LAST-MODIFIED:20210110T031407Z
UID:5853-1610215200-1610218800@www.ayclogic.com
SUMMARY:6 PM - Python Game Development
DESCRIPTION:We completed bird.py where we created Bird class which inherits from Sprite.\nHomework:\n\nReview the codes as I am going to ask these questions next week.\n\nReview Bird.__init__(…) . Try to understand how and where we use this __init__ function.\nReview the code inside main.py\n\nReview self.bird_group\nReview how to add bird into self.bird_group\nReview self.bird_group.update()
URL:https://www.ayclogic.com/event/6-pm-python-game-development-80/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
END:VCALENDAR