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:20240423T180000
DTEND;TZID=America/Los_Angeles:20240423T190000
DTSTAMP:20260426T120359
CREATED:20240424T020225Z
LAST-MODIFIED:20240424T020225Z
UID:24865-1713895200-1713898800@www.ayclogic.com
SUMMARY:6 PM – Scratch 2 – Yitong
DESCRIPTION:Today we:\n\nFinished the Spaceship project.\n\nHomework:\n\nDo pages 52-53\, steps #1-5.\n\nSend me your project here: yitong@ayclogic.com \n\nHomework is due MONDAY NIGHT. You can submit it earlier\, I will check it as soon as I can.\nMake sure to SHARE your project. Otherwise\, I cannot see it.\n\nHow to submit homework:\n\nGo to your email and compose a new message.\n\n\n\n\nGo to the coding homework calendar to copy my email address and paste it into the email message.\n\n\n\n\n\nGo to your project and make sure it is SHARED. Copy the link and paste it into the email message.\n\n\n\n\n\n\nThis is what your email message should look like when you’re done.
URL:https://www.ayclogic.com/event/6-pm-scratch-2-yitong-28/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240423T180000
DTEND;TZID=America/Los_Angeles:20240423T190000
DTSTAMP:20260426T120359
CREATED:20240425T150319Z
LAST-MODIFIED:20240425T150319Z
UID:24875-1713895200-1713898800@www.ayclogic.com
SUMMARY:6 PM – Advanced Python Game Development – Sebastian
DESCRIPTION:Today We Did \n\nBegan working on tower of defense project\nCreated title screen\, logo\, and play buttons\nYou can always find the code we wrote in class in my Gitlab repository here:\nhttps://gitlab.com/gsugiart/tue-6-pm-sebastian-apr-2024\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\nNo homework for the first week.
URL:https://www.ayclogic.com/event/6-pm-advanced-python-game-development-sebastian/
CATEGORIES:Advanced Python Game Development,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240423T180000
DTEND;TZID=America/Los_Angeles:20240423T190000
DTSTAMP:20260426T120359
CREATED:20240426T005232Z
LAST-MODIFIED:20240426T011629Z
UID:24882-1713895200-1713898800@www.ayclogic.com
SUMMARY:6PM - Digital Illustration 2
DESCRIPTION:Today we finished the Belle project! \n\nAdded shading to the white parts of clothes.\nAdded the background by:\n\nImporting a picture of the background we want\nAdd a filter and extra details to match the drawing\nAdd a shadow for the character.
URL:https://www.ayclogic.com/event/6pm-digital-illustration-2-56/
CATEGORIES:Digital Illustration,Intermediate Digital Illustration
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240423T180000
DTEND;TZID=America/Los_Angeles:20240423T190000
DTSTAMP:20260426T120359
CREATED:20240426T030934Z
LAST-MODIFIED:20240501T005806Z
UID:24891-1713895200-1713898800@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Shawn
DESCRIPTION:Today We Did\n\nIf statements and input from shell\n\nHomework\n\nMake a file named Apr25_IfElse2HW.py\nPage 84\, 5-3\, 5-4\nNumber 3 only from https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\nUpload it to the Google Drive under the folder that’s your nameIf you have any questions\, email me at szhuang@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-shawn-39/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240423T183000
DTEND;TZID=America/Los_Angeles:20240423T193000
DTSTAMP:20260426T120359
CREATED:20240424T023527Z
LAST-MODIFIED:20240424T023527Z
UID:24868-1713897000-1713900600@www.ayclogic.com
SUMMARY:6:30pm - Intro to Python - Roland
DESCRIPTION:Today We Did \n\nReviewed Function with Return Value HW\n\nOverloading functions\n\n\nDid more review of Functions with Return Values\n\nConversion problems\nSearching for items in lists (returns True or False)\n\nIs item in list?\nIs even number in list?\n\n\n\n\n\nHomework: \nSubmit the following file into your Google Drive Homework Folder \n\n“Apr23_FunctionHW.py” do the following problems below:\n\n\nCreate a function\, “hello_world”\, with no parameter and inside the function\, it will print “Hello World”. Call the function.\nCreate a function\, “greeting”\, with one parameter\, “name”. Inside the function\, print to the shell the combination of the word “Greeting ” and the name parameter. Call the function like this “greeting(‘Gamas’)” . The result should be “Greeting Gamas” in the shell.\nCreate a function\, “combine_words”\, with 3 parameters. Inside the function\, print the combination of all three parameters. Call the function like this: “combine_words(‘Hello ‘\, ‘Mr. ‘\, ‘Gamas.’)” . This will print ‘Hello Mr. Gamas’ to the shell.\nCreate a function with return value\, “convert_miles_to_km”\, with 1 parameter: miles.\n\nInside the function\, convert the parameter “miles” into the “km” value. There are 1.6 km in one mile. Return the conversion result or the km value.\nOutside the function:\n\nAsk user in the shell “Enter number of miles: “\nGet the user input and call the function and pass the user input as the parameter.\nPrint “There are {result of the function} kms in {user_input} miles”.\n\n\n\n\n\nIf you have any questions\, feel free to email me at rolandyang@ayclogic.com
URL:https://www.ayclogic.com/event/630pm-intro-to-python-roland-6/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240423T190000
DTEND;TZID=America/Los_Angeles:20240423T200000
DTSTAMP:20260426T120359
CREATED:20240424T193640Z
LAST-MODIFIED:20240424T193640Z
UID:24870-1713898800-1713902400@www.ayclogic.com
SUMMARY:7 PM - Intro To Python - Bill
DESCRIPTION:Today We:\n\nContinued to learn about functions without return value\n\nYour HW:\n\nDo the try it yourself on page 131\n8-2 to 8-5
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-bill-16/
END:VEVENT
END:VCALENDAR