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:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250128T190000
DTEND;TZID=America/Los_Angeles:20250128T200000
DTSTAMP:20260505T223622
CREATED:20250129T032732Z
LAST-MODIFIED:20250129T040330Z
UID:28003-1738090800-1738094400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued the monster inheritance project\, implementing inheritance for the Dragon class\n\nHomework:\nIn your MonsterInheritance project…. \n\n\n"""\nHomework:\n\nCreate the Hydra and Goblin classes\, and make them inherit from the Monster class. Refer to Dragon to see how this is done.\n\nMake the Hydra immune to water\, but weak to fire (receives double damage)\nnote: you have to override the method from the parent class (replace get_damaged_by_magic)\n\nMake the goblin weak to all magic types (receives double damage)\n\nNote: you have to change the class you use to create these monsters in preadd_monsters inside of main.py\n"""\n\n\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-19/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250128T180000
DTEND;TZID=America/Los_Angeles:20250128T190000
DTSTAMP:20260505T223622
CREATED:20250129T025946Z
LAST-MODIFIED:20250129T025946Z
UID:28001-1738087200-1738090800@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued learning object oriented programming with classes and objects conceptually and with code.\nReviewed HW\nGot started on implementing classes into the Grocery Shopping Cart application\n\nHomework:\nCreate a new file called OOP_hw3.py and do the following: \n\nPage 167 – TRY IT YOURSELF\n\nSubmit into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-18/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250121T190000
DTEND;TZID=America/Los_Angeles:20250121T200000
DTSTAMP:20260505T223622
CREATED:20250122T034519Z
LAST-MODIFIED:20250122T040329Z
UID:27943-1737486000-1737489600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinue the MonsterInheritance project\, implementing attacks against the monster and on the player\nImplemented object oriented design for method placement\n\nHomework:\nContinue in your Monster Inheritance project in main.py and monster.py\, and do the following: \n\n\nget input from the shell after printing the magic menu\ncheck the input with many if statements\, and just use ‘pass‘ in each if statement\nput this all into a new method by extracting\n\nexample print out: \nWhat do you want to do with the dragon\n1. Magic attack\n2. Sword attack – 10 to 20 damage\nEnter your selection: 1 \nWhat kind of magic attack you want to do:\n1. Fire magic – Max damage: 10\n2. Water magic – Max damage: 10\n3. Earth magic – Max damage: 15\n4. Wind magic – Max damage: 8\nEnter your selection: 2 \n\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-18/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250121T180000
DTEND;TZID=America/Los_Angeles:20250121T190000
DTSTAMP:20260505T223622
CREATED:20250122T032310Z
LAST-MODIFIED:20250122T032310Z
UID:27942-1737482400-1737486000@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued learning object oriented programming with classes and objects conceptually and with code.\nReviewed the Dog class homework.\n\nHomework:\nCreate a new file called OOP_hw2.py and do the following: \n\nPage 162 – TRY IT YOURSELF\nPage 163 to Page 166 – copy code to Thonny and run it.\n\nSubmit into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-17/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250114T190000
DTEND;TZID=America/Los_Angeles:20250114T200000
DTSTAMP:20260505T223622
CREATED:20250115T035952Z
LAST-MODIFIED:20250115T035952Z
UID:27877-1736881200-1736884800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinue the MonsterInheritance project\, implementing nested if statements and reviewing object oriented concepts regarding the keyword “self”\n\nHomework:\nContinue in your Monster Inheritance project in main.py and monster.py\, and do the following: \n\nInside of elif attackChoice == “2”: \n# create a method in monster.py called sword_damage\, and inside that method\, reduce\n# the monster's health by a random integer\n# print the following:\n# You attacked dragon with 10 damage and the dragon has 90 health remaining.\n\n# the only thing here (in the elif attackChoice == "2") is calling that method\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-17/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250114T180000
DTEND;TZID=America/Los_Angeles:20250114T190000
DTSTAMP:20260505T223622
CREATED:20250115T040356Z
LAST-MODIFIED:20250115T040356Z
UID:27874-1736877600-1736881200@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed and finished the modified Robux system code.\nIntroduced object oriented programming with classes and objects conceptually and with code.\n\nHomework:\nCreate a new file called OOP_hw1.py and do the following: \n\nFrom your textbook\, copy pages 158 to 161\, read over the text and examples!\n\nSubmit into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-16/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250113T160000
DTEND;TZID=America/Los_Angeles:20250113T170000
DTSTAMP:20260505T223622
CREATED:20250113T235535Z
LAST-MODIFIED:20250114T010315Z
UID:27859-1736784000-1736787600@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:NEXT WEEK IS YOUR FINAL EXAM WHICH WILL LAST 2 HOURS!\nToday We:\n\nReviewed the practice final exam\nReviewed inheritance\, important concepts\, as we prepare for our final exam.\n\nHomework:\n\nGo over the solutions for the practice final sent to you! Review other concepts and make sure you can rebuild the practice final quickly.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-20/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250107T190000
DTEND;TZID=America/Los_Angeles:20250107T200000
DTSTAMP:20260505T223622
CREATED:20250108T040529Z
LAST-MODIFIED:20250108T040529Z
UID:27812-1736276400-1736280000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed how OOP works\, and finished the supermarket application project\nGot started on MonsterInheritance project and learnt a bit about inheritance\n\nHomework:\n"""\nYour homework is to implement option 2\, looping over self.monsters\, such that it prints like this:\n\nPlease select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter 'exit' to quit): 2\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\n\nIf the user enters "3" as a selection\, prompt the user for their name\, and their health\, \nand store these two variables as self variables\n\nin other words\, create two new attributes inside of def __init__ of the MonsterSystem class\n"""\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-16/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250107T180000
DTEND;TZID=America/Los_Angeles:20250107T190000
DTSTAMP:20260505T223622
CREATED:20250108T040119Z
LAST-MODIFIED:20250108T040208Z
UID:27807-1736272800-1736276400@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed and finished the phone book system program\, reviewing how to use dictionaries.\nReplaced our grocery system program to use a dictionary\, making the code more efficient\n\nHomework:\nCreate a new file called robuxSystemV2.py and do the following: \n\nUsing your previous robuxSystem from Thonny\, change it to use a dictionary to store the itemName and itemPrice in two separate dictionaries\, as we did with grocery system!\nMake it so that the if\, elif\, and else structure is the same as GrocerySystem!\n\nSubmit these into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250106T160000
DTEND;TZID=America/Los_Angeles:20250106T170000
DTSTAMP:20260505T223622
CREATED:20250107T015610Z
LAST-MODIFIED:20250107T015610Z
UID:27793-1736179200-1736182800@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nFinished the MonsterSystem project.\nReviewed inheritance\, important concepts\, as we prepare for our final exam.\n\nHomework:\n\nFinish the practice final sent to you! I highly recommend studying before taking the practice final\, since it is worth 10% of you entire grade!\n\nAlso\, make sure your code is up to date with this code: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=drive_link
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-19/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241217T190000
DTEND;TZID=America/Los_Angeles:20241217T200000
DTSTAMP:20260505T223622
CREATED:20241218T041455Z
LAST-MODIFIED:20241218T041455Z
UID:27723-1734462000-1734465600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nFinished the library system project\nStarted on the Supermarket Application project\, going over big OOP + dictionary concepts\n\nHomework:\n\n\n\n# Your homework is to finish the school system application methods for the teacher if you haven't done so already\n\nNow inside of the SupermarketApplication\,\n\n\n# Add the grocery item (the object itself) to self.purchased\n# outside of the while loop\, use a for loop on self.purchased to print out in the following format:\n\n"""\nYou have purchased {number of items purchased} items:\nMilk - remember to store inside a freezer\nEggs - remember to store inside a freezer\nOrange Juice\nEggs - remember to store inside a freezer\nMilk - remember to store inside a freezer\n\nThank you for your business\, please pay $24\n"""\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241217T180000
DTEND;TZID=America/Los_Angeles:20241217T190000
DTSTAMP:20260505T223622
CREATED:20241218T041019Z
LAST-MODIFIED:20241218T041019Z
UID:27721-1734458400-1734462000@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed dictionaries in Python through homework and last week’s material.\nUtilized dictionaries in a phone book system program.\n\nHomework:\nHOMEWORK 1: \nIn a file called Dec17_IntroToDictionariesHW2.py\, do the following from the book: \n\nCopy pages 100 – 101\nPage 105 TRY IT YOURSELF\, all 3 numbers.\n\nHOMEWORK 2: \nIn your phone_book_system.py\, continue to implement option 2 based on this criteria: https://www.ayclogic.com/phone-book-system/ \nRefer to introToDictionaries at the very end for how to find stuff in a dictionary. \nSubmit these into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241216T160000
DTEND;TZID=America/Los_Angeles:20241216T170000
DTSTAMP:20260505T223622
CREATED:20241217T061324Z
LAST-MODIFIED:20241217T061324Z
UID:27704-1734364800-1734368400@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nContinued the MonsterSystem project.\nLearnt and implemented inheritance in our monster system project.\n\nHomework:\n\n\n\n"""\nYour HW:\n1) Finish TIY page 173 number 9-7\n2) Make a troll class that inherits from the monster class\, and make him immune to earth magic\n3) Make the dragon receive DOUBLE the damage\, when you use water magic\n"""\n\n\n\nAlso\, make sure your code is up to date with this code: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=drive_link
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-18/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T190000
DTEND;TZID=America/Los_Angeles:20241210T200000
DTSTAMP:20260505T223622
CREATED:20241211T042352Z
LAST-MODIFIED:20241211T042352Z
UID:27652-1733857200-1733860800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued the Library System project\nReviewed how concepts such as keys/values in dictionaries work together with classes/objects\n\nHomework:\n\nContinue on your Library System application in librarysystem.py\, and complete the following:\n\n\n# Your homework is to finish the school system application methods for the teacher if you haven't done so already\n\n \n\n\n\n# MAIN HW - complete options 6 and 7\n\n\nelif selection == "6":\n    # find book by author\n    # steps to complete outside of elif:\n    # 1. add the selection 6 into the print menu\n    # 2. create a new dictionary using author as key\n    # 3. pre-add items to new dict\n    # 4. update add method to add to new dict\n\n    # steps inside of elif:\n    # 1. print out header like previous selections\n    # 2. get input for the author\n    # 3. check if input exists as part of the dictionary keys\n    # 4. if it exists\, get the book object from dictionary\n    # 5. print out the information using get_info() method\n    # 6. if it doesnt exist\, print the usual "doesnt exist" message\n\n    pass\nelif selection == "7":\n    # list all books with ID greater than 3\n    # change the ID values into integers from pre-adding items into the dictionary and adding new items to the dictionary\n    # refer to selection 5.\n    pass\n\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T180000
DTEND;TZID=America/Los_Angeles:20241210T190000
DTSTAMP:20260505T223622
CREATED:20241211T025950Z
LAST-MODIFIED:20241211T030113Z
UID:27640-1733853600-1733857200@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nLearnt about dictionaries in Python\, how to do basic operations on them.\n\nHomework:\nIn a file called Dec10_IntroToDictionariesHW.py\, do the following from the book: \n\nPage 92 to 97.\nPage 99 TRY IT YOURSELF. 6-1 and 6-2\n\nSubmit into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241209T160000
DTEND;TZID=America/Los_Angeles:20241209T170000
DTSTAMP:20260505T223622
CREATED:20241210T014254Z
LAST-MODIFIED:20241210T014426Z
UID:27623-1733760000-1733763600@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nContinued the MonsterSystem project.\nReviewed some concepts such as dictionaries\, objects\, and using both together.\n\nHomework:\nIn a file called Dec9_InheritanceHW.py\, do the following and upload it to the google drive when you are done: \n\nPage 168 to 170: Copy Codes\nPage 173\, 9-6 and 9-7\n\nAlso\, make sure your code is up to date with this code: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=drive_link \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-17/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241203T190000
DTEND;TZID=America/Los_Angeles:20241203T200000
DTSTAMP:20260505T223622
CREATED:20241204T035331Z
LAST-MODIFIED:20241204T040031Z
UID:27550-1733252400-1733256000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nStarted on the Library System project\nReviewed the homework for the School System application\n\nHomework:\n\nContinue on your Library System application in librarysystem.py\, and complete the following:\n\n# Your homework is to finish the school system application methods for the teacher if you haven't done so already\n\n# Main HW: implement the find method for the book by name (option 3)\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241203T180000
DTEND;TZID=America/Los_Angeles:20241203T190000
DTSTAMP:20260505T223622
CREATED:20241204T040528Z
LAST-MODIFIED:20241204T040528Z
UID:27554-1733248800-1733252400@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nSuccessfully installed Python to use on our computers for PyCharm\nReviewed concepts from Intro To Python\n\nHomework:\nCreate a directory called test\, and add 3 python files inside of the test directory. I will check your hw next week in class. \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-12/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241202T160000
DTEND;TZID=America/Los_Angeles:20241202T170000
DTSTAMP:20260505T223622
CREATED:20241125T235955Z
LAST-MODIFIED:20241203T025851Z
UID:27503-1733155200-1733158800@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nContinued the MonsterSystem project.\nReviewed some concepts such as dictionaries\, objects\, and using both together.\n\nHomework:\nIn a file called Dec2_InheritanceHW.py\, do the following and upload it to the google drive when you are done: \n\nContinue in your main.py file for the MonsterSystem project. If you are missing code or a file\, look for the file in this google drive: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=sharing\nContinue by implementing the sword attack damage.\nUnder the play_adventure method:\n\n# You have to print a statement like this:\n\n# You attacked dragon with 17 damage and the dragon has 69 health remaining.\n# dragon attacked you with 31 damage. Your remaining health is 908.\n\n# Steps:\n# Get a random damage amount from 10 - 20 to attack the monster\n# Get a random damage amount from 0 to max_attack of the monster to attack the player\n# tip: to get the max_attack value\, you need to use 'm'\n\n# reduce player health by the first random damage\n# reduce monster health by the second random damage\n\n# print the information like above.\nHere is a sample output: \nDarin you have 951 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\n– Phoenix – 200 health – 100 Max attack\nEnter your selection (enter ‘stop’ to quit the game): troll \nWhat do you want to do with the troll\n1. Magic attack\n2. Sword attack – 10 to 20 damage\nEnter your selection: 2\nYou attacked troll with 12 damage and the troll has 38 health remaining.\ntroll attacked you with 12 damage. Your remaining health is 939. \nDarin you have 939 health remaining.\nPlease choose your monster:\n– Dragon – 86 health – 50 Max attack\n– Troll – 38 health – 20 Max attack\n– Water Golem – 30 health – 20 Max attack\n– Cyclops – 60 health – 30 Max attack\n– Phoenix – 200 health – 100 Max attack\nEnter your selection (enter ‘stop’ to quit the game): dragon \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 17 damage and the dragon has 69 health remaining.\ndragon attacked you with 31 damage. Your remaining health is 908. \nDarin you have 908 health remaining.\nPlease choose your monster:\n– Dragon – 69 health – 50 Max attack\n– Troll – 38 health – 20 Max attack\n– Water Golem – 30 health – 20 Max attack\n– Cyclops – 60 health – 30 Max attack\n– Phoenix – 200 health – 100 Max attack\nEnter your selection (enter ‘stop’ to quit the game): \n\n\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-16/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241119T190000
DTEND;TZID=America/Los_Angeles:20241119T200000
DTSTAMP:20260505T223622
CREATED:20241127T192814Z
LAST-MODIFIED:20241204T040345Z
UID:27515-1732042800-1732046400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued the School System application\, introducing more OOP.\n\nHomework:\n\nContinue on your School System application in main.py\, and complete the remaining methods for the Teacher.\nThis is the comment we wrote for the homework due in 2 weeks\n\n# your hw is to finish the add\, list\, and find methods for the teacher in your main.py file for the School System application\n\n# Refer to phonebooksystem.py to see how to find things with a dictionary\n\nexample output:\n\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter ‘quit’ to exit: 2 \nLIST ALL BOOKS\nTitle: Lightning Thief – Book Author: Henry – Year Published: 1995 – id: AAA1\nTitle: Harry Potter – Book Author: JK Rowling – Year Published: 2001 – id: AAA2 \nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter ‘quit’ to exit: 3 \nFIND BOOK\nEnter book title that you want to find: Harry Potter\nTitle: Harry Potter – Book Author: JK Rowling – Year Published: 2001 – id: AAA2\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-12/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241118T160000
DTEND;TZID=America/Los_Angeles:20241118T170000
DTSTAMP:20260505T223622
CREATED:20241118T235537Z
LAST-MODIFIED:20241119T024908Z
UID:27431-1731945600-1731949200@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed HW and got inspiration for how we can use OOP in games.\nStarted on the MonsterSystem project.\n\nHomework:\n\nContinue in your main.py file for the MonsterSystem project. If you are missing code or a file\, look for the file in this google drive: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=sharing\nWe added some predefined monsters in our code already inside of the application loop method\, just before we start the while loop.\nYour job is to implement selections 1 and 2.\nSelection 1 is where you an add a new monster object into the dictionary by getting input from the user.\nSelection 2 is where you list all the monsters in the system using a for loop.\nFor both selection 1 and 2\, refer to the past projects on how to add an Object into a dictionary to store\, and how to loop through the dictionary to print out object values.\nSample output:Please select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 2 \nLIST OF ALL MONSTERS\nDragon – Health: 200 – Max Attack: 20\nTroll – Health: 150 – Max Attack: 15 \nPlease select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 1 \nADD MONSTER\nEnter the species of the monster: Unicorn\nEnter the health of the monster: 200\nEnter the max attack of the monster: 20\nSuccessfully added UNICORN into the system. \nPlease select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 2 \nLIST OF ALL MONSTERS\nDragon – Health: 200 – Max Attack: 20\nTroll – Health: 150 – Max Attack: 15\nUnicorn – Health: 200 – Max Attack: 20\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241112T190000
DTEND;TZID=America/Los_Angeles:20241112T200000
DTSTAMP:20260505T223622
CREATED:20241113T040429Z
LAST-MODIFIED:20241113T040429Z
UID:27381-1731438000-1731441600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nFinished Grocery System\, and got started on the School System application\, introducing more OOP.\n\nHomework:\n\nContinue on your School System application in main.py\, and complete the find method for selection == “3”. Refer to phonebooksystem.py from the previous files for how to find stuff from a dictionary.\n\n\nThis is the comment we wrote for the homework due next week\n\n# your hw is to find the student in the dictionary.\n# If you find the student by the name\, print out the details of the student\, if not\, mention the name doesn't exist\n\n# Refer to phonebooksystem.py to see how to find things with a dictionary\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-10/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241111T160000
DTEND;TZID=America/Los_Angeles:20241111T170000
DTSTAMP:20260505T223622
CREATED:20241111T224353Z
LAST-MODIFIED:20241112T015930Z
UID:27359-1731340800-1731344400@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nContinued and finished the supermarket application!\nReviewed some design concepts such as indentation\, placement of functions\, automation of some aspects of the program.\n\nHomework:\n\nCreate the reset() function in your Supermarket Application that restarts what you have purchased and the price you owe.\nRefer to the google notes on how to remove an item from a dictionary.\nUse for loop to erase the items in your dictionary so it becomes empty.\n\n\n# your hw\ndef reset(self):\n    # reset the items_bought dictionary along with the price\n    # use a for loop to clean the dictionary - help\n    # set price = 0\n    pass\n\n\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241105T190000
DTEND;TZID=America/Los_Angeles:20241105T200000
DTSTAMP:20260505T223622
CREATED:20241106T035444Z
LAST-MODIFIED:20241106T035921Z
UID:27310-1730833200-1730836800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nImproved the Grocery System application to use classes and make the code better and shorter\n\nHomework:\n\nIn your Nov5_GrocerySystemV3.py file\, edit your code to check for the days until expiration\, and if it is less than 1\, tell the user “The food will expire soon in 1 day!” or “The food will expire soon in 0 day!”\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241104T160000
DTEND;TZID=America/Los_Angeles:20241104T170000
DTSTAMP:20260505T223622
CREATED:20241105T013406Z
LAST-MODIFIED:20241105T013406Z
UID:27285-1730736000-1730739600@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nStarted on the supermarket application\, going over code structure.\n\nHomework:\n\nIn the same Supermarket Application project\, add the “expired” parameter to the GroceryItem class\, which will be set to either True or False\nIn the main file\, check if the food is expired before buying anything\, and if it is expired\, print a statement saying that the food is expired and therefore you can’t purchase it.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241029T190000
DTEND;TZID=America/Los_Angeles:20241029T200000
DTSTAMP:20260505T223622
CREATED:20241030T030234Z
LAST-MODIFIED:20241030T030234Z
UID:27237-1730228400-1730232000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed the homework\, how OOP works as a concept.\nLearnt about default values in classes for object construction\n\nHomework:\n\nIn a file called Oct29_OOP.py\, do pages 162 TIY 9-3 and page 167 TIY 9-4\, 9-5\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241028T160000
DTEND;TZID=America/Los_Angeles:20241028T170000
DTSTAMP:20260505T223622
CREATED:20241028T223827Z
LAST-MODIFIED:20241029T010604Z
UID:27214-1730131200-1730134800@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nCompleted the library system.\nReviewed some concepts regarding the applications of dictionaries\, such as adding\, listing\, and finding from a dictionary\n\nHomework:\n\nIn the same Library System project\, finish the initialize_books() method\, adding 4 books to your system of your choice\, and calling the method before you enter the while loop.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-12/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241022T190000
DTEND;TZID=America/Los_Angeles:20241022T200000
DTSTAMP:20260505T223622
CREATED:20241023T030547Z
LAST-MODIFIED:20241023T030547Z
UID:27161-1729623600-1729627200@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed how to use dictionaries as we converted the robux_system to use dictionaries.\nIntroduced the concept of object oriented programming! Elaborated on the distinction between classes and objects\, and showed a Human class example.\n\nHomework:\n\nIn a file called Oct22_OOP_hw1.py\, copy pages 158-161\nIn a file called Oct22_OOP_hw2.py\, do page 162 TIY 9-1 and 9-2\n\nSubmit these files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241021T160000
DTEND;TZID=America/Los_Angeles:20241021T170000
DTSTAMP:20260505T223622
CREATED:20241022T001217Z
LAST-MODIFIED:20241022T001217Z
UID:27152-1729526400-1729530000@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the functionality of our class for the School System\, with adding\, listing\, and finding objects.\nStarted the Library System application.\n\nHomework:\n\nIn the same Library System project\, complete the list books\, find book by title\, and find books by id methods. (methods 2-4)\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-11/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241015T190000
DTEND;TZID=America/Los_Angeles:20241015T200000
DTSTAMP:20260505T223622
CREATED:20241016T032104Z
LAST-MODIFIED:20241016T032104Z
UID:27093-1729018800-1729022400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nFurther applied dictionaries\nWe changed Grocery System from intro to python to use a dictionary instead\, making things more efficient.\n\nHomework:\n\nCHANGE robux system so that you use a dictionary to represent the items and prices the same way you did with grocery system.\n(If you havent already) In a file called Oct1_DictionaryHW\, do pages 99 (TIY 6-1 to 6-3) and page 105 (TIY 6-4 to 6-6)\n\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR