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:20220313T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20221106T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220115T100000
DTEND;TZID=America/Los_Angeles:20220115T110000
DTSTAMP:20260428T140559
CREATED:20220116T030021Z
LAST-MODIFIED:20220116T030021Z
UID:11138-1642240800-1642244400@www.ayclogic.com
SUMMARY:10 AM - Intro To Java - Gamas
DESCRIPTION:Today We Do\n\nWe finished reducing the player’s health when attacking monster.\nWe installed Android Studio.\n\nHomework\n\nIn Monster inheritance. add the monster healing feature. Inside Monster.java\, add a method called “heal(int healingPoint)” . Use this new method when you are healing the monster. When you heal a monster\, make sure the monster does not attack you. Look at below\n\nWhat is your name: Gamas\nHow much health you want: 100\n\nGamas has 100 health remaining.\nPlease select one of the following monsters:\n- troll - health remaining: 50\n- dragon - health remaining: 100\n- water golem - health remaining: 30\nEnter your selection (Enter 'exit' to quit): troll\n\nWhat do you want to do with the troll:\n1. Magic attack\n2. Melee attack\n3. Arrow attack\n4. Heal\nEnter your selection:4\n\nHEAL THE MONSTER troll\nHow much health points you want to heal: 50\nAfter healing\, troll now has 100 health points remaining.\n\nGamas has 100 health remaining.\nPlease select one of the following monsters:\n- troll - health remaining: 100\n- dragon - health remaining: 100\n- water golem - health remaining: 30\nEnter your selection (Enter 'exit' to quit):
URL:https://www.ayclogic.com/event/10-am-intro-to-java-gamas-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220115T120000
DTEND;TZID=America/Los_Angeles:20220115T130000
DTSTAMP:20260428T140559
CREATED:20220115T210231Z
LAST-MODIFIED:20220115T210231Z
UID:11108-1642248000-1642251600@www.ayclogic.com
SUMMARY:12 PM - Intro To Java - Gamas
DESCRIPTION:Today We Do\n\nWe created Restaurant class with 3 attributes: name\, type and capacity.\nWe continued with RestaurantSystem\, added 2 features: add new restaurant and list all restaurants.\n\nHomework\n\nCreate getter and setter of Restaurant.name and Restaurant.capacity.\nFor setCapacity method\, check inside the method if the capacity is less than 1\, then don’t set the capacity\, but print “Invalid capacity\, it has to be 1 or more”.\nIn listAllRestaurant method\, print restaurant info like the following “<restaurant name> – <type> – <capacity> people.” . For example\, “Kang Ho Dong – Korean BBQ – 50 people”
URL:https://www.ayclogic.com/event/12-pm-intro-to-java-gamas-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220115T160000
DTEND;TZID=America/Los_Angeles:20220115T170000
DTSTAMP:20260428T140559
CREATED:20220116T002239Z
LAST-MODIFIED:20220116T002239Z
UID:11123-1642262400-1642266000@www.ayclogic.com
SUMMARY:3 PM - Intro To Java - Gamas
DESCRIPTION:Today We Do:\n\nWe learn about Object Oriented Programming (OOP) where we use classes and methods.\n\nHomework\n\nContinue with the Jan15ObjectOrientedProgramming program. Make sure all of the features below are working\n\nPlease select from one of the menu:\n1. say hello AYCLOGIC\n2. Greeting\n3. Add 4 numbers\n4. Favorite Movie\n5. Tell me your age\n6. Exit\nPlease enter your selection:
URL:https://www.ayclogic.com/event/3-pm-intro-to-java-gamas-2/
CATEGORIES:Introduction To Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220115T170000
DTEND;TZID=America/Los_Angeles:20220115T180000
DTSTAMP:20260428T140559
CREATED:20220116T023631Z
LAST-MODIFIED:20220116T023631Z
UID:11131-1642266000-1642269600@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Gamas
DESCRIPTION:Today We Do\n\nWe continued with SchoolApplication.\nWe added add teacher and add student.\nWe added getter methods for Student’s attributes.\nWe added List All Students feature to list all students that is in the system.\n\nHomework\n\nAdd List All Teachers feature. This should be very similar to List All Students. Look at example below\n\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :2\nWhat is the teacher's first name? John\nWhat is the teacher's last name? Cheng\nWhat is the teacher's age? 101\nWhat is the teacher's subject of expertise? Java\nA new teacher has been created: John\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :2\nWhat is the teacher's first name? Mike\nWhat is the teacher's last name? Fadden\nWhat is the teacher's age? 50\nWhat is the teacher's subject of expertise? Python\nA new teacher has been created: Mike\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :6\nJohn Cheng is 101 years old and taught Java subject.\nMike Fadden is 50 years old and taught Python subject.\n\n\n\nAdd code to do Find Student. In find student\, the program will ask for the first name of the student that the user is trying to find. And then you should use for loop to go through each student in the list and when you find a match of the firstName\, you should print the student info. Look at example below\n\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :1\nWhat is your first name?Gamas\nWhat is your last name?Chang\nWhat is your age?100\nGamas\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :1\nWhat is your first name?Aidan\nWhat is your last name?Chau\nWhat is your age?13\nAidan\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :3\nEnter the first name of the student you are trying to find: Gamas\nWe found Gamas. Gamas Chang is 100 years old.\n\nSchool System:\n1. Add a student\n2. Add a teacher\n3. Find student\n4. Find teacher\n5. List all students\n6. List all teachers\n99. Exit\nEnter your selection :3\nEnter the first name of the student you are trying to find: Aidan\nWe found Aidan. Aidan Chau is 99 years old.
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-gamas-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR