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:20260308T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20261101T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260415T170000
DTEND;TZID=America/Los_Angeles:20260415T180000
DTSTAMP:20260421T014051
CREATED:20260416T011003Z
LAST-MODIFIED:20260416T011003Z
UID:33180-1776272400-1776276000@www.ayclogic.com
SUMMARY:5 PM - Scratch 1 - Julian (Abigail Sub)
DESCRIPTION:What We Did:\n\nWe continued working on the Animal Crossing project.\n\nHomework:\n\nMake a new sprite\, have that sprite glide from the bottom left corner to the top right corner.\nWhen the bear sprite touches the left edge of the screen\, make it say “bananas!”\n\nIf you have any questions feel free to email me at jsaroufim@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-scratch-1-julian-abigail-sub-2/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260415T170000
DTEND;TZID=America/Los_Angeles:20260415T180000
DTSTAMP:20260421T014051
CREATED:20260416T033136Z
LAST-MODIFIED:20260416T033136Z
UID:33189-1776272400-1776276000@www.ayclogic.com
SUMMARY:5 PM - Intro to Java - Joel
DESCRIPTION:Today we did:\n\nWe continued with if statements and learned how to compare strings\, as well as the ! operator.\n\nHomework\n\nCreate a new file called April15_BooleanHomework\nMake an integer variable called height.\nIf the height is between 150 and 200\, print “You are the perfect height to ride this ride!”\nMake String variable called weather\, and make a traffic_jam. traffic_jame will contain a string either “true” or “false”.\nIf either the weather is “rainy” or traffic_jam is “true”\, print “I don’t feel like going out today.”\nMake a new String variable called sport. Set it to any sport you want.\nIf the sport is “basketball” (Ignore the case)\, then print “Basketball is my favorite sport!” Else\, print “<sport> is alright too.”\nMake a new String variable called game_day. It will contain a day of the week.\nMake a new int variable called game_time. If will contain any integer that can be a time (for example\, 6 PM)\nIf game_day is not Thursday and the game_time is not 7 PM\, print “It’s not time to watch the basketball game\, you’re free to do what you want!”
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-joel-2/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260415T180000
DTEND;TZID=America/Los_Angeles:20260415T190000
DTSTAMP:20260421T014051
CREATED:20260416T020857Z
LAST-MODIFIED:20260416T021205Z
UID:33185-1776276000-1776279600@www.ayclogic.com
SUMMARY:6 PM - Scratch 1 - Julian (Gamas Sub)
DESCRIPTION:Today We Did\n\nWe went over the 1st problem from the practice test.\nWe will discuss the solution for the 2nd problem next week.\n\nHomework\n\nOn April 29\, we will have final test. Please review the following projects and if you have questions\, list them and bring them up next week.\n\nVirtual Snow\nBirthday Cake\nAnimal Crossing
URL:https://www.ayclogic.com/event/6-pm-scratch-1-julian-gamas-sub-2/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260415T190000
DTEND;TZID=America/Los_Angeles:20260415T200000
DTSTAMP:20260421T014051
CREATED:20260416T032535Z
LAST-MODIFIED:20260416T032535Z
UID:33183-1776279600-1776283200@www.ayclogic.com
SUMMARY:7 PM – AI/ML – Darin
DESCRIPTION:Today’s Activities:\n\nContinued the new project on Multi-class Classification\nWent over deployment code using streamlit\n\nHomework:\n# Part 1\n# Make sure the streamlit deployment on the web works\n# Ensure the version match between kaggle and pycharm.\n# In the streamlit website\, set the python version to 3.12 \n# Part 2\n# Use the same code as in CatVSDog\, and train your model for multiclass classification \n# After training\, write down the “error rate” in a comment. \n# Also test your model on the custom dog dataset. \nNotes:\nYou can reach me at ddjapri@ayclogic.com. \nAll class notes can be found here.
URL:https://www.ayclogic.com/event/7-pm-ai-ml-darin-21/
CATEGORIES:AI/ML,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260415T190000
DTEND;TZID=America/Los_Angeles:20260415T200000
DTSTAMP:20260421T014051
CREATED:20260416T033739Z
LAST-MODIFIED:20260416T033739Z
UID:33192-1776279600-1776283200@www.ayclogic.com
SUMMARY:7 PM - Python OOP - Joel
DESCRIPTION:Today we did:\n\nWe reviewed classes and applied methods.\n\nHomework:\n\n9-1. Restaurant: Make a class called Restaurant. The __init__() method for\nRestaurant should store two attributes: a restaurant_name and a cuisine_type.\nMake a method called describe_restaurant() that prints these two pieces of\ninformation\, and a method called open_restaurant() that prints a message indi\ncating that the restaurant is open.\nMake an instance called restaurant from your class. Print the two attributes individually\, and then call both methods.\n9-2. Three Restaurants: Start with your class from Exercise 9-1. Create three\ndifferent instances from the class\, and call describe_restaurant() for each\ninstance.\n9-3. Users: Make a class called User. Create two attributes called first_name\nand last_name\, and then create several other attributes that are typically stored\nin a user profile. Make a method called describe_user() that prints a summary\nof the user’s information. Make another method called greet_user() that prints\na personalized greeting to the user.\nCreate several instances representing different users\, and call both methods\nfor each user.\n9-4. Number Served: Start with your program from Exercise 9-1 (page 162).\nAdd an attribute called number_served with a default value of 0. Create an\ninstance called restaurant from this class. Print the number of customers the\nrestaurant has served\, and then change this value and print it again.\nAdd a method called set_number_served() that lets you set the number\nof customers that have been served. Call this method with a new number and\nprint the value again.\nAdd a method called increment_number_served() that lets you increment\nthe number of customers who’ve been served. Call this method with any num\nber you like that could represent how many customers were served in\, say\, a\nday of business.\n9-5. Login Attempts: Add an attribute called login_attempts to your User\nclass from Exercise 9-3 (page 162). Write a method called increment_login\n_attempts() that increments the value of login_attempts by 1. Write another\nmethod called reset_login_attempts() that resets the value of login_attempts\nto 0.\nMake an instance of the User class and call increment_login_attempts()\nseveral times. Print the value of login_attempts to make sure it was incremented\nproperly\, and then call reset_login_attempts(). Print login_attempts again to\nmake sure it was reset to 0.\n\n 
URL:https://www.ayclogic.com/event/7-pm-python-oop-joel-6/
END:VEVENT
END:VCALENDAR