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:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240903T180000
DTEND;TZID=America/Los_Angeles:20240903T190000
DTSTAMP:20260428T174743
CREATED:20240904T042413Z
LAST-MODIFIED:20240904T042413Z
UID:26663-1725386400-1725390000@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:NEXT WEEK IS YOUR FINAL EXAM FROM 6-8 PM\n\nWhat We Did Today:\n\nReviewed the driver system project for the final exam next week.\n\nHomework:\n\nStudy for your final exam through driver system\, monster inheritance\, OOP concepts in past notes!!\n\nNotes:\n\nIf you have any questions\, you can contact me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240904T180000
DTEND;TZID=America/Los_Angeles:20240904T190000
DTSTAMP:20260428T174743
CREATED:20240905T002241Z
LAST-MODIFIED:20240905T032644Z
UID:26671-1725472800-1725476400@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel
DESCRIPTION:What We Did\n\nReviewed the debugging homework\nPrepared for the quiz next week through the Quiz 2 Review exercise.\n\nHomework\n\nContinue on your Sep4_QuizReview2.py file and finish number 4!!\nIf you have any questions\, email me at dmeng@ayclogic.com or ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-20/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240905T180000
DTEND;TZID=America/Los_Angeles:20240905T190000
DTSTAMP:20260428T174743
CREATED:20240906T021236Z
LAST-MODIFIED:20240906T021236Z
UID:26686-1725559200-1725562800@www.ayclogic.com
SUMMARY:6pm – Intro To Python – Joshua Widjanarko (Darin Sub)
DESCRIPTION:Today We Did:\n\nReviewed the homework\nBrushed up on what functions are with/without return values\nDid examples of functions from the https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/ page\n\nHomework:\nIn one new file\, “Sep5_FunctionsWithRVCopyHW”\, do the following: \n\nCopy pages:\n2nd edition: pg. 138\, 139\n3rd edition: pg. 137-139\n\n\nCreate a new function called “convert_from_kg_to_gram”\nThe function accepts one argument/parameter: kg\nInside the function\, convert from kg to gram by multiplying 1000 to kg\nreturn the result of the conversion \nget input from the user in the shell\, and save that in a variable named “kg”\ncall the function with parameter from user input and save the return value in a variable called “result”.\nprint (for example) “There are 4000 grams in 4 KG” \nEXAMPLE OUTPUT:\nEnter the number of kg: 10\nThere are 10000 grams in 10 KG \nNOTES:\nIf you have any questions feel free to email me jwidjanarko@ayclogic.com or ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6pm-intro-to-python-joshua-widjanarko-darin-sub/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240907T150000
DTEND;TZID=America/Los_Angeles:20240907T160000
DTSTAMP:20260428T174743
CREATED:20240907T231909Z
LAST-MODIFIED:20240907T232038Z
UID:26710-1725721200-1725724800@www.ayclogic.com
SUMMARY:3 PM – Intro To Python – Daniel (Darin Sub)
DESCRIPTION:Your final exam will be on Sep 21. \nWhat We Did:\n\nImplemented a more advanced text based program – Robux System – that tests the knowledge gained in the class so far on loops\, conditionals\, lists\, functions\, code efficiency.\n\nHomework:\n\n Continue on your file called Project.py and continue working on the project.\nThe project is due on 09/21\, by next week (08/24)\, you should have your project 75% completed.\n\nNotes:\nYou can email at ddjapri@ayclogic.com or dmeng@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-daniel-darin-sub/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240909T160000
DTEND;TZID=America/Los_Angeles:20240909T170000
DTSTAMP:20260428T174743
CREATED:20240910T060522Z
LAST-MODIFIED:20240910T060522Z
UID:26728-1725897600-1725901200@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the homework for the grocery system v2 program\, in adding a dictionary to keep track whether an item is meant to be frozen or not.\nIntroduced the concept of object-oriented programming\, highlighting the relationship between classes and objects.\nNext week we will explore how to use more classes and objects with different ideas.\n\nHomework:\n\nIn a new file called Sep9_OOP_HW.py\, copy pages 158 – 161\nCreate a new file called Sep9_RobuxSystem.py and modify your robux system from thonny (you can get the code from the google drive notes if you don’t have the file anymore) to use a dictionary to keep track of the names of the items and the price of the items\, and modify the code inside of the while True loop to be similar to how you did in the grocery system to use the dictionary instead.\nYou do not need to modify the function at all for this assignment.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240909T170000
DTEND;TZID=America/Los_Angeles:20240909T180000
DTSTAMP:20260428T174743
CREATED:20240910T065056Z
LAST-MODIFIED:20240910T065056Z
UID:26731-1725901200-1725904800@www.ayclogic.com
SUMMARY:5 PM – Python Game Dev – Darin
DESCRIPTION:Today We Did:\n\nWe reviewed each individual project.\nWe continued on Shoot Balloon project by implementing the loading page\, as well as cleaning up our code inside of __init__.\n\nHomework:\nIn Shoot Balloon\, make sure you have the game landing page (with blitting the balloon_title.png)\, game win/lose page\, all with the option of being able to replay the game (reset variables\, kill all existing balloons and bugs) \nFor Chris: Try out using group collide by pygame.sprite.groupcollide(self.target_group\, self.bug_group\, False\, False\, self.target_bug_collision)\, and add an extra “and if bug.dizzy = FLYING_MODE” to make the bug go to dizzy mode. \nFor your final projects: \nBrandon: make sure your self.kill() is used properly for all the projectiles \n\n\n\nIMPORTANT NOTES:\nYou can contact me via ddjapri@ayclogic.com for any questions or concerns.
URL:https://www.ayclogic.com/event/5-pm-python-game-dev-darin-5/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240910T180000
DTEND;TZID=America/Los_Angeles:20240910T200000
DTSTAMP:20260428T174743
CREATED:20240911T031009Z
LAST-MODIFIED:20240911T031009Z
UID:26741-1725991200-1725998400@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nDid our final exam.\nYou will get your results soon within the next 3 days.\n\nNotes:\n\nIf you have any questions\, you can contact me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240911T180000
DTEND;TZID=America/Los_Angeles:20240911T190000
DTSTAMP:20260428T174743
CREATED:20240912T005614Z
LAST-MODIFIED:20240912T005614Z
UID:26743-1726077600-1726081200@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel (Darin Sub)
DESCRIPTION:What We Did\n\nDid our second quiz today.\nYou will get your results by email soon.\n\nHomework\n\nNone!\nIf you have any questions\, email me at dmeng@ayclogic.com or ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-darin-sub/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240914T150000
DTEND;TZID=America/Los_Angeles:20240914T170000
DTSTAMP:20260428T174743
CREATED:20240914T222723Z
LAST-MODIFIED:20240914T222723Z
UID:26788-1726326000-1726333200@www.ayclogic.com
SUMMARY:SAT 3 PM - Intro To Python - Daniel (Darin Sub)
DESCRIPTION:What We Did Today:\n\nDid our final exam!\n\nHomework:\n\nNone!\n\nNotes:\nYou can email me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/sat-3-pm-intro-to-python-daniel-darin-sub/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240916T160000
DTEND;TZID=America/Los_Angeles:20240916T170000
DTSTAMP:20260428T174743
CREATED:20240917T031200Z
LAST-MODIFIED:20240917T031200Z
UID:26801-1726502400-1726506000@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the idea of classes and objects (object oriented programming)\, and learnt how to use classes and create objects out of them.\nLearnt more about attributes (variables of the class) and methods (functions of the class) through the Dog class.\n\nHomework:\n(1) IF you haven’t already: \n\nCreate a new file called Sep9_RobuxSystem.py and modify your robux system from thonny (you can get the code from the google drive notes if you don’t have the file anymore) to use a dictionary to keep track of the names of the items and the price of the items\, and modify the code inside of the while True loop to be similar to how you did in the grocery system to use the dictionary instead.\nYou do not need to modify the function at all for this assignment.\n\n(2) MAIN homework\, do the following: \n\nDo Try It Yourself page 162 in a new file called Sep16_ClassesHW.py\nCopy pages 163 to 166 in the same file as the above^\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240916T170000
DTEND;TZID=America/Los_Angeles:20240916T180000
DTSTAMP:20260428T174743
CREATED:20240917T030505Z
LAST-MODIFIED:20240917T030505Z
UID:26804-1726506000-1726509600@www.ayclogic.com
SUMMARY:5 PM – Python Game Dev – Darin
DESCRIPTION:Today We Did:\n\nFinished Shoot Balloon\, implementing multithreading as a concept to make the game optimized.\n\nIMPORTANT NOTES:\nYou can contact me via ddjapri@ayclogic.com for any questions or concerns.
URL:https://www.ayclogic.com/event/5-pm-python-game-dev-darin-6/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240917T180000
DTEND;TZID=America/Los_Angeles:20240917T190000
DTSTAMP:20260428T174743
CREATED:20240918T071640Z
LAST-MODIFIED:20240918T071640Z
UID:26807-1726596000-1726599600@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Darin
DESCRIPTION:What We Did Today:\nReviewed the final exam for the final exam retake! \nNotes:\nIf you have any questions\, you can email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-10/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240918T180000
DTEND;TZID=America/Los_Angeles:20240918T190000
DTSTAMP:20260428T174743
CREATED:20240919T021419Z
LAST-MODIFIED:20240919T021419Z
UID:26816-1726682400-1726686000@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel (Darin Sub)
DESCRIPTION:What We Did Today:\n\nLearnt the basics of turtle drawing.\nLearnt how to shorten code by use of loops and functions.\n\nHomework:\n\nCreate a new file “Sep18_Turtle4ShapesHomework.py”\nDraw the rectangle and square as shown in the image.\nCreate a new function “make_octagon”. You can use one parameter: pen_color. and just use t.goto() inside the function to draw an octagon shape using the turtle module. Call the function and pass any color to the function. Alternatively\, create a whole octagon function similar to make_rectangle that we did in class.\nCreate a new function “make_triangle”. You can use one parameter: pen_color. and just use t.goto() inside the function to draw an triangle shape using the turtle module. Call the function and pass any color to the function. Alternatively\, create a whole triangle function similar to make_rectangle that we did in class.\nLook at this image for your coordinates guidance\n\n\n\n\nIf you have any questions\, email me at dmeng@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-darin-sub-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240919T180000
DTEND;TZID=America/Los_Angeles:20240919T190000
DTSTAMP:20260428T174743
CREATED:20240920T020244Z
LAST-MODIFIED:20240920T020244Z
UID:26821-1726768800-1726772400@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel (Darin Sub)
DESCRIPTION:What We Did Today:\n\nLearnt about functions\, why we use functions.\nLearnt about functions without and with return values\, highlighting a couple examples.\n\nHomework:\nMake a new file called Sep19_FunctionsWithoutRV_HW.py and submit it into the google drive when you are finished. Label your questions with comments for the hw below: \n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/ number 4 to 6.\n130\, 131 (TRY IT YOURSELF)\, 132 : 13th week\nIf you have any questions about the review or quiz\, email me at dmeng@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-darin-sub-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240919T183000
DTEND;TZID=America/Los_Angeles:20240919T193000
DTSTAMP:20260428T174743
CREATED:20240920T023525Z
LAST-MODIFIED:20240920T023525Z
UID:26828-1726770600-1726774200@www.ayclogic.com
SUMMARY:6:30 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nReviewed variables and data types\nReviewed the functions from homework like upper()\, lower()\, and title()\nBegan learning about conditional statements (if\, elif\, else)\nThursday 6:30PM class code:\nhttps://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing\n\nAYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nPlease submit your homework into your Google Drive\nHomework: Create SEP19_string_hw2.py\n\nOn page 25\, complete the following sections:\n TRY IT YOURSELF: 2-3\, 2-4\, 2-5 and 2-6
URL:https://www.ayclogic.com/event/630-pm-intro-to-python-sebastian-25/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240923T160000
DTEND;TZID=America/Los_Angeles:20240923T170000
DTSTAMP:20260428T174743
CREATED:20240923T234208Z
LAST-MODIFIED:20240924T002351Z
UID:26867-1727107200-1727110800@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nChanged the grocery system program to use classes to minimize the number of dictionaries needed for our program.\nReviewed how dictionaries work.\n\nHomework:\n(1) IF you haven’t already: \n\nDo Try It Yourself page 162 in a new file called Sep16_ClassesHW.py\nCopy pages 163 to 166 in the same file as the above^\n\n(2) MAIN homework\, do the following: \n\nDo Try It Yourself page 167 numbers 9-4 and 9-5 in the same file as the above^.\nA default value means something like __init__(self\, name\, price = 10)\, where price is a default value (an optional value)\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240924T190000
DTEND;TZID=America/Los_Angeles:20240924T200000
DTSTAMP:20260428T174743
CREATED:20240925T030231Z
LAST-MODIFIED:20240925T030231Z
UID:26884-1727204400-1727208000@www.ayclogic.com
SUMMARY:7 PM - Python OOP - Darin
DESCRIPTION:What We Did Today:\n\nInstalled and did the setup for PyCharm\, our new IDE to use in this course.\nNavigated the PyCharm environment\, and explained how to submit homework and access PyCharm files.\nWrote some code as a preface for next week.\n\n  \nHomework:\n\nCopy pages 92 – 97 (from “Working with Dictionaries” until just before “using get() to Access Values”) in your file called Sep24_DictionariesHW.py\nUpload it to the google drive when you are finished!\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-2/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240930T160000
DTEND;TZID=America/Los_Angeles:20240930T170000
DTSTAMP:20260428T174743
CREATED:20240930T220637Z
LAST-MODIFIED:20241001T000937Z
UID:26936-1727712000-1727715600@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the homework for TIY pages 162\, 167\nGot started on the School Application project\, further implementing object oriented concepts.\n\nHomework:\n(1) IF you haven’t already: \n\nDo Try It Yourself page 167 numbers 9-4 and 9-5 in the same file as Sep16_ClassesHW.\nA default value means something like __init__(self\, name\, price = 10)\, where price is a default parameter when creating an object of the class (an optional parameter)\n\n(2) MAIN homework\, do the following: \n\nIn your Sep30_SchoolSystem project\, store the newly created s Student object in a list AND a dictionary.\nYou have to create the list and dictionary in the __init__  method. You can do this like:\nself.students_list = []\nself.students_dict = {}\nAdd the s object into the list by use of students_list.append(s) and add the s object into the dictionary by use of students_dict[ {student_name} ] = s\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR