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:20230312T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20231105T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231127T160000
DTEND;TZID=America/Los_Angeles:20231127T170000
DTSTAMP:20260425T221746
CREATED:20231128T112235Z
LAST-MODIFIED:20231128T112654Z
UID:22732-1701100800-1701104400@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nIntroduced Thonny\, how to navigate files\, and use shell\nIntroduced variables and data types in Python\nIntroduced printing\, and math with variables\n\nHomework:\n\nCopy code from pages 20-23 or from the following if u don’t have the book (feel free to zoom in or download the images to see better):\n\n    \n2. Make sure the code runs without error\, and try to understand what the code is            doing. \nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231127T170000
DTEND;TZID=America/Los_Angeles:20231127T180000
DTSTAMP:20260425T221746
CREATED:20231128T021358Z
LAST-MODIFIED:20231128T021358Z
UID:22735-1701104400-1701108000@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Juan
DESCRIPTION:Today We Did\n\nContinued working on the Supermarket System.\nCreated a dictionary menu_items\, with item number keys and GroceryItem instances as the values.\nCreated a function to handle purchasing items.\n\nHomework\n\nName your folder Dec4_Supermarket_HW and do:\n\nFinish the deposit(self\, money) function in the ShoppingCartApplication class.\n\nRetrieve input to allow the user to specify how much to add to the balance attribute\n\n\nAdd at least 3 more menu items\n\nEach menu item should be included in the menu_items dictionary.\n\n\nModify the menu attribute and the application_loop to support the deposit() function and the 3 new menu items.
URL:https://www.ayclogic.com/event/5-pm-python-oop-juan-4/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231127T190000
DTEND;TZID=America/Los_Angeles:20231127T200000
DTSTAMP:20260425T221746
CREATED:20231128T040120Z
LAST-MODIFIED:20231128T040120Z
UID:22741-1701111600-1701115200@www.ayclogic.com
SUMMARY:7 PM – Python Game Development – Sebastian
DESCRIPTION:Today We Did\n\nEncapsulated blitting play button\, logo\, and credit button to their own methods\nCreated logic to check mouse position when clicking on play button\nYou can always find the code we wrote in class in my Gitlab repository here:\nhttps://gitlab.com/gsugiart/MON-7PM-FlappyBird/-/tree/Sebastian?ref_type=heads\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nHomework: Allow the user to switch between game modes by clicking on the play button and crashing on tubes.\n\nInside our draw_play_button method\, add the one remaining line of code that will start the game\nThink about which method is called when the player collides with a tube\, inside this method we need to change the game mode so the user returns to the title screen. Try your best to think about which method this is\, and what (singular) line of code we need to write to change the game mode correctly.
URL:https://www.ayclogic.com/event/7-pm-python-game-development-sebastian-19/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231127T190000
DTEND;TZID=America/Los_Angeles:20231127T200000
DTSTAMP:20260425T221746
CREATED:20231128T040620Z
LAST-MODIFIED:20231205T025119Z
UID:22740-1701111600-1701115200@www.ayclogic.com
SUMMARY:7 PM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe continued with Monster Inheritance project.\nWe added code so it can start the adventure by displaying all monsters.\n\nHomework\n\nContinue with Monster Inheritance.\nAfter 2nd menu\, add codes to check if monster exists in the dictionary\, it is not\, then print Invalid selection\, ‘asdfadsf’ is not in our system. Please try again. This is very similar to LibrarySystem.findBook feature.\nIf the monster exists\, display the attack menu.\nIf you did it properly\, below is the expected behavior\n\nGamas you have 100 health remaining.\nPlease choose your monster: \n- Dragon - 100 health - 50 Max attack\n- Troll - 50 health - 20 Max attack\n- Water Golem - 30 health - 20 Max attack\n- Cyclops - 60 health - 30 Max attack\nEnter your selection (enter 'stop' to quit the game): asdfadsf\nInvalid selection\, 'asdfadsf' is not in our system. Please try again\n\nGamas you have 100 health remaining.\nPlease choose your monster: \n- Dragon - 100 health - 50 Max attack\n- Troll - 50 health - 20 Max attack\n- Water Golem - 30 health - 20 Max attack\n- Cyclops - 60 health - 30 Max attack\nEnter your selection (enter 'stop' to quit the game): dragon\n\nWhat do you want to do with the dragon\n1. Magic attack\n2. Sword attack - 10 to 20 damage\nEnter your selection: 2\nYou attacked dragon with 14 damage and the dragon has 86 health remaining.\ndragon attacked you with 47 damage. Your remaining health is 53.\n\nGamas you have 53 health remaining.\nPlease choose your monster:\n- Dragon - 86 health - 50 Max attack\n- Troll - 50 health - 20 Max attack\n- Water Golem - 30 health - 20 Max attack\n- Cyclops - 60 health - 30 Max attack\nEnter your selection (enter 'stop' to quit the game):\n\n 
URL:https://www.ayclogic.com/event/7-pm-python-oop-gamas-10/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231127T190000
DTEND;TZID=America/Los_Angeles:20231127T200000
DTSTAMP:20260425T221746
CREATED:20231128T041658Z
LAST-MODIFIED:20231128T041658Z
UID:22744-1701111600-1701115200@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed Quiz2Prep.py and Python bugs homework\n\nHomework\nReview for our quiz next week! I recommend focusing on the following topics: \n\nList operations (length\, append\, etc)\nFunctions (return values\, multiple parameters)\nRandom\nInfinite while loops to ask user questions\nFor loops\nDebugging (review Bugs HW)\n\nIf you have any questions\, email me at williamsmith@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-17/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR