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:20230312T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20231105T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230303T170000
DTEND;TZID=America/Los_Angeles:20230303T180000
DTSTAMP:20260425T054743
CREATED:20230308T211853Z
LAST-MODIFIED:20230308T211853Z
UID:18400-1677862800-1677866400@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Alex Lee
DESCRIPTION:Homework\n\nCreate a new project called Mar3Magic8Ball.java\, and use a combination of Random module\, while loop\, if else statements to create Magic8Ball game.\nLook at below Python codes for your reference\n\n\n\n\nimport random\n\nwhile True: \n    user_question = input("\nEnter your question? ")\n    if user_question.lower() == "quit" or user_question.lower() == "exit": \n        print("Bye bye")\n        break\n    random_num = random.randint(1\, 8)\n    if random_num == 1:\n        print("It is certain") \n    elif random_num == 2:\n        print("Most likely.") \n    elif random_num == 3:\n        print("Signs point to yes.") \n    elif random_num == 4:\n        print("I don’t think so.") \n    elif random_num == 5:\n        print("Ask again later.") \n    elif random_num == 6:\n        print("Concentrate and ask again.") \n    elif random_num == 7:\n        print("Outlook not so good.") \n    elif random_num == 8:\n        print("My reply is no")
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230309T190000
DTEND;TZID=America/Los_Angeles:20230309T200000
DTSTAMP:20260425T054743
CREATED:20230315T035906Z
LAST-MODIFIED:20230315T035906Z
UID:18493-1678388400-1678392000@www.ayclogic.com
SUMMARY:7 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nStarted with the Monster Inheritance project\n\nFor Homework:\n\nMake a new method called printMonsterMenu and it should contain all the code that is used to print out the menu for the monster.\nAlso find a way to shorten the code so that you are able to reuse a method that we have created in the past. Hint: it has to do with listing out all the monsters
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-alex-lee-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230310T170000
DTEND;TZID=America/Los_Angeles:20230310T180000
DTSTAMP:20260425T054743
CREATED:20230311T015538Z
LAST-MODIFIED:20230311T015538Z
UID:18419-1678467600-1678471200@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe went over the Magic8Ball homework\nAlso\, learned about methods and how object-oriented programming works.\n\nFor Homework:\n\nConvert your Magic8Ball homework into a much shorter version of it:\n\nPut all of the different answer options into one list.\nThen by using a random number index\, choose one of the options and print it out.\nThe program should still ask “Enter yes or no question” and when the user inputs quit\, the program should end.\n\n\nCreate a new Java class <date>_MethodsHomework.java\nCreate a new method convertFromFahrenheitToCelcius. It has one parameter int fahrenheit. Inside the method\, it will convert fahrenheit parameter into celcius by using this formula (F − 32) × 5/9 = C . You have to return the result. This is very similar to what we did in the class with addFourNumbers method.\nAsk the user: “What temperature would you like to convert: ” and put the user’s input into the method.\nPrint out “The temperature was converted from Fahrenheit: ‘fahrenheitNumber’ into Celsius: ‘celsiusNumber’
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230317T170000
DTEND;TZID=America/Los_Angeles:20230317T180000
DTSTAMP:20260425T054743
CREATED:20230318T005406Z
LAST-MODIFIED:20230318T005406Z
UID:18527-1679072400-1679076000@www.ayclogic.com
SUMMARY:5 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWent over the homework for shortening the Magic8Ball and also going over how to create the method for converting from Fahrenheit to Celsius.\nIn class\, we went over an example of how to create a class using methods such as the run method and getUserAge method.\n\nFor Homework:\n\nWe are going to be converting the Magic8Ball class one more time to be used with multiple methods.\nThe main method should only have two lines of code in it\, the creation of the main class and using the run method.\nThere should be three methods in your code besides the main class and they are run()\, provideResponse()\, and getInputFromUser().
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230320T160000
DTEND;TZID=America/Los_Angeles:20230320T170000
DTSTAMP:20260425T054743
CREATED:20230320T235547Z
LAST-MODIFIED:20230320T235547Z
UID:18582-1679328000-1679331600@www.ayclogic.com
SUMMARY:4 PM - Scratch Level 1 - Alex Lee
DESCRIPTION:Today We Did:\n\nWe finished up the Spiralizer project and reviewed on the creating the clones.\nStarted the Virtual Snow project\nReviewed on how to delete clones when they each the bottom of the screen\n\nFor Homework:\n\nGo to extensions in the project\, and get the pen extension.\nNow inside of where you delete the clone\, grab the stamp block and put it there.\nAlso\, I want you guys to put an if then statement where the condition should be if it is touching the color white.\nInside the if then\, put a stamp and then delete this clone.
URL:https://www.ayclogic.com/event/4-pm-scratch-level-1-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230323T190000
DTEND;TZID=America/Los_Angeles:20230323T200000
DTSTAMP:20260425T054743
CREATED:20230324T025905Z
LAST-MODIFIED:20230324T025905Z
UID:18636-1679598000-1679601600@www.ayclogic.com
SUMMARY:7 PM Intro To Java - Alex
DESCRIPTION:Today We Did:\n\nCreated three new methods\, arrowAttack\, magicAttack\, and takeMonsterDamage.\nWe were able to create takeMonsterDamage because we noticed that the code was duplicating multiple times so it was correct to make it a method.\nAlso\, learned about inheritance and how we can override methods.\n\nFor Homework:\n\nFinish up the options for the magic attack for water\, earth\, and wind.\nCreate a new class called Troll and it should extend the monster class.\nThe troll is immune to earth\, and takes double damage from fire.\n\n 
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-alex-16/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230324T170000
DTEND;TZID=America/Los_Angeles:20230324T180000
DTSTAMP:20260425T054743
CREATED:20230325T005112Z
LAST-MODIFIED:20230325T005112Z
UID:18646-1679677200-1679680800@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWent over the Magic8BallUsingMethods code\nStated the school application project\nCreated the school system and learned about classes.\n\nFor Homework:\n\nCreate another option for adding in the teacher.\nYou should create a teacher list and also the teacher class.\nFollow the similar steps to what we did today in class.
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230330T190000
DTEND;TZID=America/Los_Angeles:20230330T200000
DTSTAMP:20260425T054743
CREATED:20230331T025607Z
LAST-MODIFIED:20230331T025607Z
UID:18726-1680202800-1680206400@www.ayclogic.com
SUMMARY:7 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nFinished up the Monster Inheritance project\nCreated two more classes\, the troll\, and the goblin\nAdded in the option to heal the monster\, and override it in each of the classes.\n\nFor Homework:\n\nDownload Android Studio before the next class since that is where we will be doing the project the next few classes.\nHere is where you can download it\, just scroll down to find the link to it: https://developer.android.com/studio
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230331T170000
DTEND;TZID=America/Los_Angeles:20230331T180000
DTSTAMP:20260425T054743
CREATED:20230402T013256Z
LAST-MODIFIED:20230406T001941Z
UID:18767-1680282000-1680285600@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued with the School System project.\nAdded in listing out all of the students\, teachers\, and started finding the student.\nWe also were able to load in the students so that we could test our code.\n\nFor Homework:\n\nThere is no class this coming week on April 7 due to Easter Weekend.\nJust like how we loaded in 4 students\, for homework load in 3 different teachers.\nIt is up to you what name and other information that you give the teachers\, just make them all different.\nAlso\, attempt to figure out how we can check to see if we are unable to find the student with their first and last name.
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-6/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR