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:20230312T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20231105T090000
END:STANDARD
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:20240422T190000
DTEND;TZID=America/Los_Angeles:20240422T200000
DTSTAMP:20260424T151632
CREATED:20240423T174809Z
LAST-MODIFIED:20240423T174809Z
UID:24857-1713812400-1713816000@www.ayclogic.com
SUMMARY:7 PM – Intro to Java – Sebastian
DESCRIPTION:Today We Did \n\nLearned about different variables and data types in Java.\nClass code: https://drive.google.com/drive/folders/1CtwIu3EczMxWU83o5ECJylqtfCmTKvb9\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\nPlease submit your homework into your Google Drive\nHomework: https://www.ayclogic.com/java-variables-datatypes/
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-sebastian/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240420T160000
DTEND;TZID=America/Los_Angeles:20240420T170000
DTSTAMP:20260424T151632
CREATED:20240421T021047Z
LAST-MODIFIED:20240421T021328Z
UID:24824-1713628800-1713632400@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\nContinued working on Temperature Converter: \n\nFinished swapping all unit labels according to conversion\nChanged conversion formula based on conversion using conversionType attribute\n\nCode for today’s lesson can be found here: https://drive.google.com/drive/folders/1Ftsx-CYnRf3_zP2ypCEGCDhjrX3PCWrY?usp=drive_link \nHomework\nCreate a new project in IntelliJ called TaxiDriverSystem: \n\nComplete up to #4 in the following practice test (no need to submit): https://forms.gle/5YTRJ848rAjMR1Rd7\nWe will be reviewing this next lesson in preparation for the final in a few weeks!\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-20/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240417T190000
DTEND;TZID=America/Los_Angeles:20240417T200000
DTSTAMP:20260424T151632
CREATED:20240418T031136Z
LAST-MODIFIED:20240418T031136Z
UID:24801-1713380400-1713384000@www.ayclogic.com
SUMMARY:7 PM - Intro To Java - Gamas
DESCRIPTION:Gamas Sub \nToday We Did\n\nWe reviewed Magic 8 Ball homework and created 2nd version of Magic 8 Ball.\nWe introduced the concept of methods in Java.\n\nHomework\n\nCreate April17MethodHomework.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 addNumbers method.\nCreate another new method convertFromCelciusToFahrenheit. It has one parameter int celcius. Inside the method\, it will convert celcius parameter into fahrenheit by using this formula (C × 9/5) + 32 = F . You have to return the result. This is very similar to what we did in the class with addNumbers method.
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-gamas-24/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240413T160000
DTEND;TZID=America/Los_Angeles:20240413T170000
DTSTAMP:20260424T151632
CREATED:20240415T110257Z
LAST-MODIFIED:20240415T115603Z
UID:24765-1713024000-1713027600@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nContinued working on Temperature Converter\n\nSwapped unit labels to match temperature conversion type (C –> F)\n\n\n\nHomework\nContinue working on TemperatureConverter: \n\nChange the unit labels according to the other conversion options:\n\nCelsius –> Kelvin\nFahrenheit –> Celsius (this is needed in case the user switches back)\n\n\nWhen switching between conversion types\, we want to clear the values for the previous conversion:\n\nAfter changing the labels\, create 2 TextView objects to represent toTextField and fromTextField (use findViewById())\nUse the setText() method to set the text of the fromTextField and toTextField to an empty string\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-19/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240406T160000
DTEND;TZID=America/Los_Angeles:20240406T170000
DTSTAMP:20260424T151632
CREATED:20240407T234729Z
LAST-MODIFIED:20240407T234822Z
UID:24682-1712419200-1712422800@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nAdded 3 conversion types to the application\nCreated ConversionTypeListener.java to listen to changes in the Spinner\n\nHomework\nContinue working on TemperatureConverter: \n\nCatch up if you haven’t already!! Our code can be found here: https://drive.google.com/drive/folders/1Ftsx-CYnRf3_zP2ypCEGCDhjrX3PCWrY?usp=drive_link\nStart working on code to switch labels when selecting a new conversion:\n\nCreate a new attribute in MainActivity.java called selectedConversion and initialize it to NULL\nCreate a new method called setConversion() inside MainActivity.java that has one String parameter called selectedConversion\nInside setConversion()\, get the 2 labels representing the two temperature units (hint: use findViewById)\nUpdate the values of the labels using {label}.setText({text}) based on the conversionType\nInside ConversionTypeListener.java\, call the setConversion() method with selected conversion type inside the onItemSelected() method.\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-18/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240323T160000
DTEND;TZID=America/Los_Angeles:20240323T170000
DTSTAMP:20260424T151632
CREATED:20240324T020619Z
LAST-MODIFIED:20240324T020619Z
UID:24501-1711209600-1711213200@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nFixed Android Studio issues\nReviewed last week’s homework\n\nHomework\nContinue working on TemperatureConverter: \n\nFinish last week’s homework if you haven’t already: https://www.ayclogic.com/event/4-pm-intro-to-java-william-16/\nAdd additional temperature conversion options to the Spinner\n\nNavigate to app > res > values > strings.xml\nBeneath the app_name string\, create an array in the format:\n\n<array name="conversionTypeOptions">\n    <item>...</item>\n    ...\n    <item>...</item>\n</array>\n\n\n\n\nAdd the following options as items:\n\nFahrenheit to Celcius\nCelcius to Fahrenheit\nCelcius to Kelvin\n\n\nTo add these options to the spinner\, navigate to the entries attribute under Common Attributes\nSet entries as @array/conversionTypeOptions\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-17/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240316T160000
DTEND;TZID=America/Los_Angeles:20240316T170000
DTSTAMP:20260424T151632
CREATED:20240317T005121Z
LAST-MODIFIED:20240317T005924Z
UID:24405-1710604800-1710608400@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nAdded a fromTextField and toText field to show temperature values\nStarted the onClickConvert() method to convert F to C\n\nHomework\nThe code for today’s lesson is uploaded here: https://drive.google.com/drive/folders/1Ftsx-CYnRf3_zP2ypCEGCDhjrX3PCWrY?usp=drive_link \n\nFinish the onClickConvert() method:\n\nConvert Fahrenheit into degrees Celcius (you can google the conversion if you don’t know!)\nChange TextView text as necessary\nDouble-check that the onClick attribute for the button is set to the current method\n\n\nAdd a Spinner to our User Interface (UI)\n\nLocated in “Containers”\nIt should have the following attributes:\n\nConstrained 64sp below the fromTextField\nConstrained 48sp to the left/right\n\n\n\n\nConstrain the button to the left/right\, and 48sp below the spinner\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-16/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240309T160000
DTEND;TZID=America/Los_Angeles:20240309T170000
DTSTAMP:20260424T151632
CREATED:20240310T030100Z
LAST-MODIFIED:20240310T030100Z
UID:24248-1710000000-1710003600@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nSet up Android Studio and started TemperatureConverter project\nBegan customizing the UI with textViews and a button\n\nHomework\nFinish creating the UI for TemperatureConverter: \n\nInsert an EditText view beneath the Fahrenheit Label\n\nGive it an ID of fromTextField\nConstrain it 32sp to the left and top\n\n\nInsert a TextView view below the Celsius label to represent our converted temperature\n\nGive it an ID of toTextField\nConstrain it 32sp to the left and 40sp to the top\n\n\nCreate a button as shown below\n\nConstrain it 32sp to the left/right and 40sp to the top\nSet the layout_width to 0dp so the button fills the screen (find this in the attributes on the right -> layout -> constraints -> layout_width)\n\n\n\nThe final result should look something like this: \n \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-15/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240302T160000
DTEND;TZID=America/Los_Angeles:20240302T170000
DTSTAMP:20260424T151632
CREATED:20240303T053920Z
LAST-MODIFIED:20240310T002956Z
UID:24150-1709395200-1709398800@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\n\n\n\nFinished implementing takeMagicDamage()\nUsed proper constructors when adding new monsters\nImplemented monster healing\n\nHomework\nDownload and Install Android Studio! Link here: https://developer.android.com/studio \n\nFollow the default installation instructions. Once installation is complete\, create an Empty Views Activity called TemperatureConverter using Java.\nYou can find a more detailed guide here. Make sure to make an Empty Views Activity\, not Empty Activity. We won’t be using the Studio Bot\, but feel free to play around 🙂\n\nIf you have any issues\, please reach out or I can help during our next lesson! \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-14/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240224T160000
DTEND;TZID=America/Los_Angeles:20240224T170000
DTSTAMP:20260424T151632
CREATED:20240225T022153Z
LAST-MODIFIED:20240225T022153Z
UID:24042-1708790400-1708794000@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\n\n\n\nChecked player death\nImplemented arrow attack\nStarted implementing magic attack\nAdded fire immunity to Dragon using an overridden method\n\nHomework\nContinue working on MonsterInheritance: \n\nImplement the magic attacks in the main class using takeMagicDamage()\nCreate a new Troll class that is a subclass of Dragon. Trolls are immune to earth magic:\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Sword attack\n3. Arrow attack\n4. Heal Monster\nEnter your selection: 1\n\nMAGIC ATTACK MONSTER\n\nSelect your magic attack for Troll:\n1. Fire magic - 10 damage\n2. Water magic - 10 damage\n3. Earth magic - 12 damage\n4. Wind magic - 8 damage\nEnter your selection: 3\n\nTroll is immune to earth magic! No damage dealt.\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-13/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240217T160000
DTEND;TZID=America/Los_Angeles:20240217T170000
DTSTAMP:20260424T151632
CREATED:20240218T060033Z
LAST-MODIFIED:20240218T060528Z
UID:23937-1708185600-1708189200@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\n\n\n\nFinished implementing Sword attack\n\nAttack menu\nswordAttack()\ntakeDamage()\n\n\nExplained inheritance (superclass\, subclass):\n\nCreated Monster.java\n\n\n\nHomework\nContinue working on MonsterInheritance: \n\nCheck if the player has died. If so\, return to the main menu:\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Sword attack\n3. Arrow attack\n4. Heal Monster\nEnter your selection: 2\nYou attacked the Troll for 50 damage. It has 30 health remaining.\nThe Troll attacked the player for 38 damage.\n\nGame Over! You were killed by Troll.\n\nPlease select from one of the following\n1. Add new monster\n2. List all monsters\n3. Play the game\nEnter your selection (enter "exit" to quit):\n\nAdd the menu for magic attack:\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Sword attack\n3. Arrow attack\n4. Heal Monster\nEnter your selection: 1\n\nMAGIC ATTACK MONSTER\n\nSelect your magic attack for Troll:\n1. Fire magic - 10 damage\n2. Water magic - 10 damage\n3. Earth magic - 12 damage\n4. Wind magic - 8 damage\nEnter your selection:\n\nArrow attacks damage monsters from a distance! They deal 10 base damage\, with a 20% critical hit chance to do 2x damage. Monsters are unable to fight back 🙂\n\nNormal attack:\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Sword attack\n3. Arrow attack\n4. Heal Monster\nEnter your selection: 3\n\nARROW ATTACK MONSTER\nYou shot Troll for 10 damage.\n\n\n\n\n\n\n\nCritical hit:\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Sword attack\n3. Arrow attack\n4. Heal Monster\nEnter your selection: 3\n\nARROW ATTACK MONSTER\nCritical hit! You shot Troll for 20 damage.\n\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-12/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240203T160000
DTEND;TZID=America/Los_Angeles:20240203T170000
DTSTAMP:20260424T151632
CREATED:20240204T021750Z
LAST-MODIFIED:20240204T021750Z
UID:23744-1706976000-1706979600@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nReviewed Java Quiz\nStarted MonsterInheritance project\n\nExplained final strings\nExplained nextInt() vs nextLine() + parseInt()\nSet up run() method\nStarted addNewMonster() and Monster class\n\n\n\nHomework\nContinue working on MonsterInheritance: \n\nFinish the Monster class:\n\nCreate getter and setter methods\nCreate a public method called heal with one integer parameter hp that heals the monster by the specified health points. Doesn’t return any value.\n\n\nFinish addNewMonster():\n\nCreate a new Monster and store it in a HashMap\n\n\nCreate listAllMonsters() (selection 2):\n\nPrint out all monsters in the following format:\n\n– {Monster species}: {Monster health} HP\n\n\n\n\n\n\n\n\n\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-10/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240127T160000
DTEND;TZID=America/Los_Angeles:20240127T170000
DTSTAMP:20260424T151632
CREATED:20240128T010035Z
LAST-MODIFIED:20240128T001056Z
UID:23650-1706371200-1706374800@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nJava Quiz\n\nHomework\nWe will be starting a MonsterInheritance program next class! Do the following to prepare: \n\nCreate a new project called MonsterInheritance\nCreate a Monster class:\n\nMonsters should have 3 attributes:\n\nString species\nint health\nint maxAttack\n\n\nCreate getter and setter methods\nCreate a constructor\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-9/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240120T160000
DTEND;TZID=America/Los_Angeles:20240120T170000
DTSTAMP:20260424T151632
CREATED:20240121T022909Z
LAST-MODIFIED:20240121T022909Z
UID:23553-1705766400-1705770000@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nReviewed PetSystem errors\nReviewed Practice Quiz\n\nHomework\n\nStudy for the quiz next week! It will last the entire class period and be open-note. If you haven’t done the practice yet\, I recommend completing it and emailing me once you’re done. I recommend studying the following:\n\nSchoolApplication\n\nConstructor\nGetter/Setter methods\nWorking with attributes\n\n\nLists/Maps\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com. Good luck!
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-8/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240113T160000
DTEND;TZID=America/Los_Angeles:20240113T170000
DTSTAMP:20260424T151632
CREATED:20240114T021613Z
LAST-MODIFIED:20240114T021613Z
UID:23443-1705161600-1705165200@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nFinished SchoolApplication2\n\nfindStudentByID()\ninitializeMaps()\nConverted teacher list to hashmap\n\n\nStarted debugging PetSystem.java\n\nHomework\n\nFinish debugging PetSystem.java\n\nhttps://www.ayclogic.com/fix-java-error/\n\n\nComplete this practice quiz. We will review it next lesson!\n\nhttps://forms.gle/9ujNwnnBiZGjXmL88\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240106T160000
DTEND;TZID=America/Los_Angeles:20240106T170000
DTSTAMP:20260424T151632
CREATED:20240107T005535Z
LAST-MODIFIED:20240107T005535Z
UID:23302-1704556800-1704560400@www.ayclogic.com
SUMMARY:4 PM - Intro To Java - William
DESCRIPTION:Gamas sub \nToday We Did\n\nWe created SchoolApplication2 project.\nWe copied all codes from SchoolApplication to this new project.\nWe replaced studentList into studentMap and used firstName as the key.\nWe added studentMapById and used studentId as the key.\n\nHomework\n\nAdd code to make the “8. Find student by studentId”.\nReplace teacherList with teacherMap and fix all the errors. Use teacher.firstName as the key.\nI want when the program starts\, immediately add 3 students\n\nGamas Chang\, 12th grade\, 18 years old.\nVincent Chang\, 7th grade\, 12 years old.\nLeon Chen\, 9th grade\, 14 years old.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-6/
CATEGORIES:Introduction To Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231223T154000
DTEND;TZID=America/Los_Angeles:20231223T170000
DTSTAMP:20260424T151632
CREATED:20231224T021448Z
LAST-MODIFIED:20231224T021752Z
UID:23205-1703346000-1703350800@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nFinished learning about HashMaps\n\ncontainsKey()\nReplace values\nremove()\nsize()\nkeySet()\nvalues()\n\n\nStarted EmailApplication\n\ncreateEmailAccount()\nCreated EmailAccount class\n\n\n\nHomework\nWork on EmailApplication: \n\nCreate getter methods for EmailAccount (refer to Student in SchoolApplication as reference)\nImplement listAllEmailAccounts():\n\nPrint the message: “We have a total of __ email accounts in our system!”\nList all accounts in the system in the format: “#. (name) – (email)”\nThe output should look something like:\n\n\n\nPlease select an item below:\n1. Create an email account\n2. Login\n3. List all email accounts\n4. Exit\nPlease make your selection (1-4): 3\n\nWe have a total of 3 email accounts in our system!\n\n1. Elijah Tshing - iamverycool@gmail.com\n\n2. Jayden Chong - tomato@outlook.com\n\n3. Shawn Zhuang - szhuang@ayclogic.com\nREMINDER: NO CLASS NEXT WEEK. Happy Holidays! \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231216T162000
DTEND;TZID=America/Los_Angeles:20231216T170000
DTSTAMP:20260424T151632
CREATED:20231217T024702Z
LAST-MODIFIED:20231217T024738Z
UID:23079-1702743600-1702746000@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nReviewed listTeenageStudents() in SchoolSystem\nStarted learning about HashMaps\n\nput()\nget()\n\n\n\nHomework\n\nCreate a new HashMap called studentMap that maps from a student’s first name to their grade (Integer).\n\nAdd 2 students of your choice with different grade levels and names\, and print out their grade levels.\n\nE.g. (William Smith is in grade 13)\n\n\n\n\n\nNOTE: We will be starting class 20 minutes early next week to make up for lost time 🙂 \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231209T160000
DTEND;TZID=America/Los_Angeles:20231209T170000
DTSTAMP:20260424T151632
CREATED:20231210T011655Z
LAST-MODIFIED:20231210T011655Z
UID:22938-1702137600-1702141200@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nFinished findStudent() and findTeacher()\nImplemented listTeenageStudents()\nLearned about switch statements\n\nHomework\n\nAdd a message that displays when attempting to list when there are no users/teachers\n\nEdit listAllTeachers()\, listAllStudents()\, listTeenageStudents() to print: “There are no ___ in our system yet”\nUse the .size() method on the list\n\n\nAdd a message in listTeenageStudents() to display when there are no teenage students\n\nUpload your SchoolApplication files to your assigned Google Drive folders by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231202T160000
DTEND;TZID=America/Los_Angeles:20231202T170000
DTSTAMP:20260424T151632
CREATED:20231203T021117Z
LAST-MODIFIED:20231203T021117Z
UID:22825-1701532800-1701536400@www.ayclogic.com
SUMMARY:4 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nReviewed:\n\nAdd a teacher\nList all teachers\nList all students.\n\n\nExplained overriding toString() method\nStarted findStudent()\n\nHomework\n\nFinish findStudent()\n\nAdd a last name attribute to Student\n\nMake sure to modify addStudent()\n\n\nCheck if first and last name that user inputs matches a student\nPrint out the student’s information (name\, age\, grade)\n\n\nCreate findTeacher()\n\nMatch first and last name (similar to findStudent())\n\n\n\n\n\nMake sure to add both methods to your run() method\n\nUpload your SchoolApplication files to your assigned Google Drive folders by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231118T160000
DTEND;TZID=America/Los_Angeles:20231118T170000
DTSTAMP:20260424T151632
CREATED:20231119T030538Z
LAST-MODIFIED:20231119T031205Z
UID:22684-1700323200-1700326800@www.ayclogic.com
SUMMARY:4 PM - Intro To Java - William
DESCRIPTION:Gamas Sub \nToday We Did\n\nWe continue with School Application\n\nWe added add new Student feature.\n\n\n\nHomework\n\nNo class on Nov 25 because of Thanksgiving holiday.\nAll the latest codes can be found in here.\nContinue on School Application\, add codes to enable the following\n\nAdd a teacher\nList all teachers\nList all students.\n\n\nFor those who have taken Python OOP with me\, look at Python OOP School System project because it is very similar.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-william/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231111T153000
DTEND;TZID=America/Los_Angeles:20231111T163000
DTSTAMP:20260424T151632
CREATED:20231112T004652Z
LAST-MODIFIED:20231112T004652Z
UID:22557-1699716600-1699720200@www.ayclogic.com
SUMMARY:3:30 PM – Intro to Java – William
DESCRIPTION:Today We Did\n\nFinished TellMeYour\nStarted SchoolApplication\n\nCreated Student.java\n\nExplained attributes\, constructor\, getter methods\n\n\nStarted SchoolSystem\n\n\n\nHomework\n\nCreate Teacher.java\n\nCreate the following attributes:\n\nfirstName\nlastName\nsubject\n\n\nCreate a constructor\nCreate getter methods\n\n\nModify SchoolSystem.java\n\nAfter printing the menu\, prompt the user: “Enter your selection: “\nGet the user’s input\nCreate If-Else statements to perform tasks based on user’s input\n\n(should be empty for now but we will fill them in as we go)\n\n\n\n\n\nMake a new folder and upload your SchoolApplication files to your assigned Google Drive folders by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-8/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231104T153000
DTEND;TZID=America/Los_Angeles:20231104T163000
DTSTAMP:20260424T151632
CREATED:20231104T235401Z
LAST-MODIFIED:20231104T235401Z
UID:22465-1699111800-1699115400@www.ayclogic.com
SUMMARY:3:30 PM – Intro to Java – William
DESCRIPTION:Today We Did\n\nReviewed Methods HW\nStarted TellMeYourAge using methods\n\nHomework\n\nFinish Nov4_TellMeYourAgeMethods (locate code in the “Files” Google Drive folder)\n\n Remaining cases in provideResponse\nRun method\n\nPrint out user age based on input\nIf user types “quit\,” program prints a message and exits\n\n\nMain() method\n\nCall run method\n\n\n\n\n\nUpload homework to your assigned Google Drive folders by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231028T153000
DTEND;TZID=America/Los_Angeles:20231028T163000
DTSTAMP:20260424T151632
CREATED:20231028T234740Z
LAST-MODIFIED:20231028T234758Z
UID:22369-1698507000-1698510600@www.ayclogic.com
SUMMARY:3:30 PM – Intro to Java – William
DESCRIPTION:Today We Did\n\nLearned about Java methods\n\nMethod overloading\nFunctions with/without return values\n\n\n\nHomework\n\nCreate Oct28_MethodsHW.java\n\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 . Return the result and print a statement regarding the conversion.\nCreate another method addThreeNumbers() that accepts 3 numbers as arguments and returns their sum. Call the method in the main() class and print a statement in the form of an equation (e.g. 1 + 2 + 3 = 6).\n\n\n\nUpload homework to your assigned Google Drive folders by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-6/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231021T153000
DTEND;TZID=America/Los_Angeles:20231021T163000
DTSTAMP:20260424T151632
CREATED:20231021T233641Z
LAST-MODIFIED:20231021T233641Z
UID:22246-1697902200-1697905800@www.ayclogic.com
SUMMARY:3:30 PM - Intro to Java - William
DESCRIPTION:Today We Did\n\nContinued with the Random module\nCreated a mini adventure game\n\nHomework\n\nCreate Oct21_Magic8Ball.java\n\nCreate the Java program at https://www.ayclogic.com/intro-to-python/magic-8-ball/\n\n\n\nUpload your homework to your assigned google drive by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231014T153000
DTEND;TZID=America/Los_Angeles:20231014T163000
DTSTAMP:20260424T151632
CREATED:20231014T233735Z
LAST-MODIFIED:20231014T233735Z
UID:22146-1697297400-1697301000@www.ayclogic.com
SUMMARY:3:30 PM – Intro To Java – William
DESCRIPTION:Today We Did\n\nFinished for loop with indexes\nLearned about while loops\nStarted learning about the Random module\n\nHomework\n\nCreate Oct14_WhileLoopHW.java\n\nFinish the exercises at https://www.ayclogic.com/java-exercise-while-loop/\n\n\n\nUpload your homework to your assigned google drive by Friday night. \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230930T153000
DTEND;TZID=America/Los_Angeles:20230930T163000
DTSTAMP:20260424T151632
CREATED:20231001T023810Z
LAST-MODIFIED:20231001T023902Z
UID:21882-1696087800-1696091400@www.ayclogic.com
SUMMARY:3:30 PM - Intro To Java - William
DESCRIPTION:Today We Did\n\nWe learned about List\nWe learned about for loop.\nWe learned how to compare String using .equals method.\n\nHomework\n\nCreate Sep30_ForLoopListHW.java and do problem number 1 and 2 only from here: https://www.ayclogic.com/java-list-forloop/
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230923T153000
DTEND;TZID=America/Los_Angeles:20230923T163000
DTSTAMP:20260424T151632
CREATED:20230923T235338Z
LAST-MODIFIED:20230923T235338Z
UID:21742-1695483000-1695486600@www.ayclogic.com
SUMMARY:3:30 PM - Intro To Java - William
DESCRIPTION:Today We Did\n\nWe learned how to get input from shell\nWe learned how to do if else if and else statements.\n\nHomework\n\nCreate Sep23_CarDealerHomework.py and do the following questions https://www.ayclogic.com/java-exercise-2b-input-from-shell-and-if-else/
URL:https://www.ayclogic.com/event/330-pm-intro-to-java-william/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230829T160000
DTEND;TZID=America/Los_Angeles:20230829T170000
DTSTAMP:20260424T151632
CREATED:20230830T010454Z
LAST-MODIFIED:20230830T010454Z
UID:21376-1693324800-1693328400@www.ayclogic.com
SUMMARY:5 PM – Intro to Java – William
DESCRIPTION:What we did\n\nReviewed Final Exams
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-william-14/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230825T170000
DTEND;TZID=America/Los_Angeles:20230825T180000
DTSTAMP:20260424T151632
CREATED:20230830T191417Z
LAST-MODIFIED:20230830T191417Z
UID:21395-1692982800-1692986400@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nReviewed the Practice exam and was able to cover everything on it without any issues.\n\nFor Homework:\n\nBe prepared for the exam next week and review all your past material.\nMake sure to have an email ready for the exam and it will be for two hours.
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-alex-lee-11/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR