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:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T170000
DTEND;TZID=America/Los_Angeles:20251017T180000
DTSTAMP:20260514T234147
CREATED:20251018T014305Z
LAST-MODIFIED:20251018T014305Z
UID:31353-1760720400-1760724000@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Darin
DESCRIPTION:Today We Do\n\nWe continued learning the basics of Python Digital drawing using Turtle.\n\nHomework\n\nCreate a new file “Oct17_Turtle3FunctionsHW.py”\nLook at this image for your coordinates guidance\n\n\n\n\nDraw the Square\, Rectangle\, and Triangle using a shape function. The Square function has been defined in class\, but the other two you will have to create.\n\ndef drawSquare(x\, y\, size\, c):\n   t.penup()\n   t.goto(x\, y)\n   t.pendown()\n\n   t.color(c)\n\n   t.begin_fill()\n   for i in range(4):\n      t.forward(size)\n      t.right(90)\n   t.end_fill()\n\ndrawSquare(-200\, 200\, 10\, "black")\ndrawSquare(50\, 200\, 100\, "green")\n\n# to make a new shape function\, modify only the part that draws\n# modify whatever is in the for loop.\n\nHint: Start by drawing the rectangle and triangle with just t.forward() and t.right()/t.left() and then simplify the code with for loops\, this will be the main meat of your drawing functions\n\n\n  \nNotes:\nYou can reach me at ddjapri@ayclogic.com. \nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-24/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T170000
DTEND;TZID=America/Los_Angeles:20251017T180000
DTSTAMP:20260514T234147
CREATED:20251018T024320Z
LAST-MODIFIED:20251025T012632Z
UID:31355-1760720400-1760724000@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over last week’s HW.\nWe went over lists.\n\nHomework\n(Upload your homework into your Google Drive HW folder a day before the class starts) \n\nMake a new file called “Oct17_List_HW.py”\nDo copy the code from pages 37 – 41.\nYou do NOT need to do the Try It Yourself on page 41. (Sorry for the miscommunication!)\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T173000
DTEND;TZID=America/Los_Angeles:20251017T183000
DTSTAMP:20260514T234147
CREATED:20251018T002754Z
LAST-MODIFIED:20251018T002808Z
UID:31348-1760722200-1760725800@www.ayclogic.com
SUMMARY:4:30 PM – Python Game Development – Bill
DESCRIPTION:Today We:\n\nAdded a loading page to run in parallel with loading assets method\nFinished shoot balloon\nFinished the Python Game Development class\n\nYour HW:\n\nMake sure to update your credit pages to say the full name of the school (American Young Coder Academy)\nMake sure to also have another line with the website (www.ayclogic.com)\nDon’t forget to commit and push once you are done
URL:https://www.ayclogic.com/event/430-pm-python-game-development-bill-29/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T180000
DTEND;TZID=America/Los_Angeles:20251017T190000
DTSTAMP:20260514T234147
CREATED:20251018T025401Z
LAST-MODIFIED:20251018T025401Z
UID:31357-1760724000-1760727600@www.ayclogic.com
SUMMARY:6 PM - Python Game Development - Joel
DESCRIPTION:Your HW:\n\n\n\n#create a timer for the game\n# start at 30 seconds\, count down\n# when it hits zero\, change the game mode to YOU_WIN or YOU_LOSE\n#   (You win if you have score > 100\, lose otherwise)\n\n#make sure to draw the timer on the screen\n# like Time Left: 20 sec\, on the top left like how we did for the score
URL:https://www.ayclogic.com/event/6-pm-python-game-development-joel-17/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T200000
DTEND;TZID=America/Los_Angeles:20251017T210000
DTSTAMP:20260514T234147
CREATED:20251018T044609Z
LAST-MODIFIED:20251018T045008Z
UID:31359-1760731200-1760734800@www.ayclogic.com
SUMMARY:8 PM - AI and Machine Learning - Joel
DESCRIPTION:Gamas Sub \nToday We Did\n\nWe continued with FRI-8-PM-Joel-Single-Digit-Prediction project.\nWe completed creating the “number_label(file_path)” function.\nWe created Fast.ai dataloader using ImageDataLoaders.from_path_func\nWe fine_tuned our model.\n\nHomework\n\nRun your Kaggle project\, and at the end of your kaggle project\, add code to use your “single_digit_model” to predict the 9 images that we uploaded in the class. Look at the codes on how we did prediction in the last two projects (pet breed and cat vs dog).\nAfter that\, export “single_digit_model.pkl” file. Look at how we exported PKL file from Kaggle to your computer for the last 2 projects.\nAdd this project to Pycharm project and push it to your github project.
URL:https://www.ayclogic.com/event/8-pm-ai-and-machine-learning-joel-3/
END:VEVENT
END:VCALENDAR