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:20220313T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20221106T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T170000
DTEND;TZID=America/Los_Angeles:20221130T180000
DTSTAMP:20260423T104551
CREATED:20221202T084838Z
LAST-MODIFIED:20221202T084838Z
UID:16708-1669827600-1669831200@www.ayclogic.com
SUMMARY:5 PM – Scratch Level 1 – Allison
DESCRIPTION:Today we:\n\nContinued the Virtual Snow project\nCoded the Snowflake clones to stamp and delete if they touch the bottom edge of the screen\nCoded the Snowflake clones to stamp and delete if they touch a specific color\nRandomized the chances of the Snowflake clones leaving a stamp and deleting\n\nHomework:\n\nAdd a Snowman sprite\nCode the Snowman sprite to be in front of the Snowflakes\nRead and continue the codes from the Scratch book pg. 150 step #15\nContact us if you have any questions or need any help
URL:https://www.ayclogic.com/event/5-pm-scratch-level-1-allison-48/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T170000
DTEND;TZID=America/Los_Angeles:20221130T180000
DTSTAMP:20260423T104551
CREATED:20221205T025247Z
LAST-MODIFIED:20221205T025247Z
UID:16896-1669827600-1669831200@www.ayclogic.com
SUMMARY:5PM - Digital Illustration 3
DESCRIPTION:WEDNESDAY \nToday we continued the Nezuko and Tanjiro project \n\nToday we added more shading and lighting to Nezuko’s hair and her outer jacket.\n\n \nHOMEWORK : Add shading to Nezuko and Tanjiro’s pattern kimonos \nSTEPS \n\nAdd a new layer for shading\n\nPlace this layer above the kimono colors layer and the kimono details layer. Click the “clipped” button for the new layer.\n\n\nSee images below to see where the shading needs to be\, and then shade those areas in the correct colors.\nChange the blending mode of the shading layer from “Normal” to “Multiply” and change the opacity from 100% to 75%\n\n Step 1 \n ->Step 2 \nStep 3
URL:https://www.ayclogic.com/event/5pm-digital-illustration-3-26/
CATEGORIES:Digital Illustration,Intermediate Digital Illustration
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T180000
DTEND;TZID=America/Los_Angeles:20221130T190000
DTSTAMP:20260423T104551
CREATED:20221201T030307Z
LAST-MODIFIED:20221208T030132Z
UID:16644-1669831200-1669834800@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned how to get input from the shell: input()\nReviewed how to append strings to eachother\nReviewed if\, elif\, else with input()\nLearned that input() always becomes a string\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nName your homework DEC7_input1\, and DEC7_input2 (make separate files for homework 1 and homework 2)\nHomework 1: Page 117\, try 7-1\, 7-2 by yourself\nHomework 2: https://www.ayclogic.com/tell-me-your-age/
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-sebastian-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T180000
DTEND;TZID=America/Los_Angeles:20221130T190000
DTSTAMP:20260423T104551
CREATED:20221201T050152Z
LAST-MODIFIED:20221201T050222Z
UID:16651-1669831200-1669834800@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe went over Restaurant class homework\n\nWe reviewed at Restaurant.set_number_served(sefl\, num) method that will change Restaurant.number_served attribute.\nWe reviewed at Restaurant.increment_number_served(self\, num) method that will increase Restaurant.number_served attribute.\n\n\nWe also went over how to use class inside ShoppingCart project.\nI uploaded all the files that we did in the class into google drive if you need to see: https://drive.google.com/drive/folders/1pqzz7Xd0Hf5MVGyQsoMqXdixRIqrZ5AH?usp=sharing\n\nHomework\n\nIf you did not finish last week’s homework\, please finish it by next week.\nInside Nov16_GrocceryShoppingCartUsingClass.py add the following features.\n\nAdd one more attribute to GroceryItem class: frozen_food\nAdd one more parameter in GrocerryItem.__init__ method: frozen_food\nInside items_dictionary variable update the creation of GroceryItem so you would add one more parameter which is the frozen_food parameter. Use “yes” or “false”. For example\, for “frozen pizza”\, you would do GroceryItem(“frozen pizza”\, 10\, “yes”) because “frozen pizza” is a frozen food.\nInside the while loop\, add code that will check if gi.frozen_food is equal to “yes” then add the name to frozen_item list.\nWhen you do all above codes\, then your program should not be able to list all frozen foods that you purchase like below\n\nWhat do you want to purchase:\n0. Frozen Pizza - $10\n1. Milk - $5\n2. Ice Cream - $4\n3. Bread - $6\n4. I am done\, checkout please\nEnter your selection: 0\nYou have purchased frozen pizza for $10\n\nWhat do you want to purchase:\n0. Frozen Pizza - $10\n1. Milk - $5\n2. Ice Cream - $4\n3. Bread - $6\n4. I am done\, checkout please\nEnter your selection: 1\nYou have purchased milk for $5\n\nWhat do you want to purchase:\n0. Frozen Pizza - $10\n1. Milk - $5\n2. Ice Cream - $4\n3. Bread - $6\n4. I am done\, checkout please\nEnter your selection: 2\nYou have purchased ice cream for $4\n\nWhat do you want to purchase:\n0. Frozen Pizza - $10\n1. Milk - $5\n2. Ice Cream - $4\n3. Bread - $6\n4. I am done\, checkout please\nEnter your selection: 4\n\nYou have purchased the following items: \nFROZEN PIZZA\nMILK\nICE CREAM\n\nPlease pay $19\, thank you for your business.\n\nDo not forget to put the following items in FREEZER\nFROZEN PIZZA\nICE CREAM
URL:https://www.ayclogic.com/event/6-pm-python-oop-gamas-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T180000
DTEND;TZID=America/Los_Angeles:20221130T200000
DTSTAMP:20260423T104551
CREATED:20221201T040627Z
LAST-MODIFIED:20221201T040627Z
UID:16649-1669831200-1669838400@www.ayclogic.com
SUMMARY:USACO Bronze
DESCRIPTION:Homework: \nhttp://www.usaco.org/index.php?page=viewproblem2&cpid=1061
URL:https://www.ayclogic.com/event/usaco-bronze/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T190000
DTEND;TZID=America/Los_Angeles:20221130T200000
DTSTAMP:20260423T104551
CREATED:20221206T021656Z
LAST-MODIFIED:20221206T021656Z
UID:16908-1669834800-1669838400@www.ayclogic.com
SUMMARY:7PM - OOP Python - Latisha
DESCRIPTION:Today We Did\n\nWent over Homework\n\nHomework\n\nNone\n\nIf you have any questions\, feel free to email me at latisha@ayclogic.com
URL:https://www.ayclogic.com/event/7pm-oop-python-latisha-17/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T193000
DTEND;TZID=America/Los_Angeles:20221130T203000
DTSTAMP:20260423T104551
CREATED:20221202T234533Z
LAST-MODIFIED:20221202T234533Z
UID:16836-1669836600-1669840200@www.ayclogic.com
SUMMARY:7:30 - Intro To Java- Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued with the Temperature Converter project in Android Studio.\nLearned how to use the convert button to print something in the run tab.\n\nFor Homework:\n\nConvert the Fahrenheit that you get from the user input into Celsius by using this equation.\n(F − 32) × 5/9 = C\n\nThen print it out using the “Convert Button is Clicked” that is printed out into the shell.
URL:https://www.ayclogic.com/event/730-intro-to-java-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR