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:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250816T090000
DTEND;TZID=America/Los_Angeles:20250816T100000
DTSTAMP:20260514T193551
CREATED:20250816T170601Z
LAST-MODIFIED:20250816T170601Z
UID:30146-1755334800-1755338400@www.ayclogic.com
SUMMARY:9 AM - Python OOP - Gamas
DESCRIPTION:Homework\n\nIn Library System do the following\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter 'quit' to exit: 2\n\nLIST ALL BOOKS\nTitle: Lightning Thief - Book Author: Henry - Year Published: 1995 - id: AAA1\nTitle: Harry Potter - Book Author: JK Rowling - Year Published: 2001 - id: AAA2\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter 'quit' to exit: 3\n\nFIND BOOK\nEnter book title that you want to find: Harry potter\nTitle: Harry Potter - Book Author: JK Rowling - Year Published: 2001 - id: AAA2\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter 'quit' to exit: 4\n\nFIND BOOK\nEnter book id that you want to find: AAA1\nTitle: Lightning Thief - Book Author: Henry - Year Published: 1995 - id: AAA1\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter 'quit' to exit: 5\n\nLIST ALL OLD BOOKS\nLightning Thief [AAA1] by Henry published on 1995\nTitle: Lightning Thief - Book Author: Henry - Year Published: 1995 - id: AAA1\n\nPlease look at below options\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter 'quit' to exit:
URL:https://www.ayclogic.com/event/9-am-python-oop-gamas-10/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250816T090000
DTEND;TZID=America/Los_Angeles:20250816T220000
DTSTAMP:20260514T193551
CREATED:20250816T061220Z
LAST-MODIFIED:20250816T061220Z
UID:30139-1755334800-1755381600@www.ayclogic.com
SUMMARY:9 AM - Intro to Java - Joel
DESCRIPTION:Today we did:\n\nWe reviewed the answers and mistakes for the final test.\n\nHomework:\n\nPrepare as best as you can for the final retake\, you can redo this final test.\nMake sure you can run your code.\nRemember\, a parent and child class can use the same Hashmap\, and when you take an object from the hashmap\, you can assume it to be the parent and it will cover the child class too.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-joel-10/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250816T110000
DTEND;TZID=America/Los_Angeles:20250816T120000
DTSTAMP:20260514T193551
CREATED:20250816T185724Z
LAST-MODIFIED:20250816T185724Z
UID:30148-1755342000-1755345600@www.ayclogic.com
SUMMARY:11 AM - Scratch 1 - Gamas
DESCRIPTION:Homework\n\nContinue on your “Birthday Card” project\n\nDo page 86 to 89.
URL:https://www.ayclogic.com/event/11-am-scratch-1-gamas-2/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250816T150000
DTEND;TZID=America/Los_Angeles:20250816T160000
DTSTAMP:20260514T193551
CREATED:20250816T224752Z
LAST-MODIFIED:20250816T230352Z
UID:30151-1755356400-1755360000@www.ayclogic.com
SUMMARY:3 PM - Python OOP - Gamas
DESCRIPTION:Homework\n\nMemorize when you should convert from String to Integer. When you get an input from Shell and you need to do\n\nMathematical operations: addition\, substraction\, division and multiplication\nwhen you need to check if it is greater than or less than\n\n\nFinish aug_16_simple_calculator.py program\n\n\n\n"""\nSIMPLE CALCULATOR\n1. continously ask user for 2 numbers\n2. After user enter 2 numbers\, then add them up and display the result\n   of addition\n   \nExample\nEnter first number: 1\nEnter second number: 2\nResult\, 1 + 2 = 3 \n\nEnter first number: 100\nEnter second number: 1\nResult\, 100 + 1 = 101\n\n\n"""\n\n\n\n\nUnderstand and memorize below code\n\n"""\n1. Create a random number between 1 to 100\n2. Ask user guess a number between 1 to 100.\n3. If user guess a number that less than the number that is generated in step 1\, then print\, "the number is too small."\n4. If user enter a number that is bigger than the number that is generated in step 1\, then print\, "the number is too big."\n5. if user enter a number that is equal to step 1\, then print "congrats you guess the number correctly" And stop the loop\n"""\n\nimport random as r\nrandom_num = r.randint(1\,100)\nwhile True:\n    number = input("Guess a number between 1 to 100: ")\n    number = int(number)\n    if number > 100 or number < 1:\n        print("Invalid")\n    elif number < random_num:\n        print("The number is too small")\n    elif number > random_num:\n        print("The number is too big")\n    else:\n        print("Congrats\, you guess the number correctly")\n        break
URL:https://www.ayclogic.com/event/3-pm-python-oop-gamas-5/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250816T170000
DTEND;TZID=America/Los_Angeles:20250816T180000
DTSTAMP:20260514T193551
CREATED:20250817T012944Z
LAST-MODIFIED:20250817T012944Z
UID:30155-1755363600-1755367200@www.ayclogic.com
SUMMARY:5 PM - Scratch 1 - Elijah
DESCRIPTION:What we did today:\n\nWe went over homework\nWe reviewed the five coordinates (240\,0)\, (-240\,0)\, (0\,180)\, (0\,-180)\, and (0\,0).\nWe added the crab sprite and made it move from the top to the bottom.\nStarted adding the Banner that will appear when all of the animals stop moving.\n\nHomework:\n\nAdd a sprite of your choice to the bottom left corner\nMake the sprite move diagonally towards the top right corner and stop when it reaches (240\,180). (Hint: You will need to use both change x by 10 and change y by 10.)\nWhen that sprite reaches the top right corner make it broadcast Banner. (This was previously in the Bat sprite so just delete it from the Bat.)\nMake the Banner show itself when it receives the broadcast.
URL:https://www.ayclogic.com/event/5-pm-scratch-1-elijah-8/
END:VEVENT
END:VCALENDAR