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:20221208T190000
DTEND;TZID=America/Los_Angeles:20221208T200000
DTSTAMP:20260512T155934
CREATED:20221215T035825Z
LAST-MODIFIED:20221215T035825Z
UID:17082-1670526000-1670529600@www.ayclogic.com
SUMMARY:7 PM Intro To Java - Alex Lee
DESCRIPTION:For Homework:\n\nContinue with the School System code; this time we will be adding in the Find Teacher\, and Edit Teacher.\nIt should be simple when adding it in to adjust it so it similarly follows what the student is doing.\nAlso for the Edit Student\, attempt to shorten the code so that you can use the Find Student as a return method to return a student.\nThe Find Student code needs to be edited in a way so that it will return the object student\, then with that return\, you can set it to a Student variable and use it where you want.
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-alex-lee-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221203T170000
DTEND;TZID=America/Los_Angeles:20221203T180000
DTSTAMP:20260512T155934
CREATED:20221204T034845Z
LAST-MODIFIED:20221210T232036Z
UID:16881-1670086800-1670090400@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Homework\n\nConfigure the saturn_ore drop\, so it can drop either minecraft:diamond\, aycessentials:saturn or minecraft:gold_ingot. If you are confused how to do it\, Take a look at the following documentation. https://learn.microsoft.com/en-us/minecraft/creator/documents/introductiontoloottables\nNathan\, I fixed your saturn_ore texture problem\, you have to fix your src/main/resources/assets/aycessentials/models/block/saturn_ore.json to be like below \nLogan\, I fixed your saturn_ore texture problem\, you have to fix one of the saturn_ore.json like below
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-12/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221203T150000
DTEND;TZID=America/Los_Angeles:20221203T170000
DTSTAMP:20260512T155934
CREATED:20221204T005216Z
LAST-MODIFIED:20221204T005216Z
UID:16874-1670079600-1670086800@www.ayclogic.com
SUMMARY:3 PM - Devan Catchup - Alex
DESCRIPTION:For Homework:\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 the 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. Then print it out in the main class.\nAlong with that create another method that asks for your favorite song\, and if the song is “Shape of You” then say that it is your favorite song\, otherwise say that the song is alright.
URL:https://www.ayclogic.com/event/3-pm-devan-catchup-alex/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221203T130000
DTEND;TZID=America/Los_Angeles:20221203T140000
DTSTAMP:20260512T155934
CREATED:20221209T042116Z
LAST-MODIFIED:20221209T042259Z
UID:16969-1670072400-1670076000@www.ayclogic.com
SUMMARY:1 PM - Intro To Java - Alex
DESCRIPTION:For Homework:\n\nWe have now added the code that will change the header based on which option you clicked inside of the spinner. For example\, if you clicked on Celsius to Fahrenheit\, the headers also change to Celsius and Fahrenheit.\nNow with the code\, right now it will only output the change from Fahrenheit to Celsius since that is the only formula we have.\nWe want to have the formula change based on what the conversionType is (which can be found in setConversionType method)\, and the formulas can be found online if you need them.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-12/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221203T120000
DTEND;TZID=America/Los_Angeles:20221203T130000
DTSTAMP:20260512T155934
CREATED:20221203T210652Z
LAST-MODIFIED:20221203T210652Z
UID:16869-1670068800-1670072400@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Homework\n\nAdd a hitbox in Player and Bird sprites\, but you have to use Java inheritance to avoid code duplication. Once you do this\, you also want to improve the Fireball class to inherits from this new class which contains hitbox.\nImproved your code so you only create Paint object once for every fireball and use it within the draw method.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-8/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221201T190000
DTEND;TZID=America/Los_Angeles:20221201T200000
DTSTAMP:20260512T155934
CREATED:20221202T035445Z
LAST-MODIFIED:20221202T035445Z
UID:16701-1669921200-1669924800@www.ayclogic.com
SUMMARY:7 PM - Intro To Java - Alex
DESCRIPTION:Today We Did:\n\nWe continued with the SchoolSystem project.\nLearned how to create a Student class\, with a constructor along with getters and setters.\nAlso created the listStudents and started the findStudent.\n\nFor Homework:\n\nCreate two new methods for createTeacher() and listTeachers() that will create a teacher and also list out all the teachers you created.\nLook back at the methods we did in class to help you out.
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-alex-12/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221201T180000
DTEND;TZID=America/Los_Angeles:20221201T190000
DTSTAMP:20260512T155934
CREATED:20221202T025442Z
LAST-MODIFIED:20221202T025442Z
UID:16698-1669917600-1669921200@www.ayclogic.com
SUMMARY:6 PM - Devan Catchup - Alex Lee
DESCRIPTION:Homework:\n\nCreate a new project called Dec1_WhileLoopHomework and the instructions are given here https://www.ayclogic.com/java-exercise-while-loop/
URL:https://www.ayclogic.com/event/6-pm-devan-catchup-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221130T193000
DTEND;TZID=America/Los_Angeles:20221130T203000
DTSTAMP:20260512T155934
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
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221119T170000
DTEND;TZID=America/Los_Angeles:20221119T180000
DTSTAMP:20260512T155934
CREATED:20221120T024327Z
LAST-MODIFIED:20221120T024327Z
UID:16505-1668877200-1668880800@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nWe started adding saturn_ore so eventually in the survival mode\, we can actually craft the many custom Saturn items by mining Saturn ore.\nIf you did not come to the class\, you can get the saturn_ore.png from here\n\n\n\n\n\nHomework\n\nthere is no class on Nov 26 because of thanksgiving week. Our class resume on Nov 3.\nFor your homework\, please do the following\n\nInside ModItems.java\, add the following codes\n\n\npublic static final RegistryObject<Item> SATURN_ORE = ITEMS.register("saturn_ore"\n        \, ()-> new BlockItem(ModBlocks.SATURN_ORE.get()\n                \, new Item.Properties().tab(AYCEssentialsMod.AYC_ITEM_GROUP_TAB)));\n\n\n\nInside src/main/resources/assets/aycessentials/model/item/saturn_ore.json\n\n\n{\n  "parent": "aycessentials:block/saturn_ore"\n}\n\n\n\nStart your minecraft and go to inventory\, now you should see your saturn_ore cube like below
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-11/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221119T160000
DTEND;TZID=America/Los_Angeles:20221119T170000
DTSTAMP:20260512T155934
CREATED:20221120T005650Z
LAST-MODIFIED:20221120T005650Z
UID:16497-1668873600-1668877200@www.ayclogic.com
SUMMARY:4 PM - Intro To Java - Alex
DESCRIPTION:Homework:\n\nWe are going to be editing the Magic8Ball one last time\, this time using methods.\nIn the Magic8BallV3 class you will need to have 3 methods and they are run()\, provideResponse()\, and getInputFromUser().\nLook to your previous java files that are using methods if you are stuck at any point.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221119T130000
DTEND;TZID=America/Los_Angeles:20221119T140000
DTSTAMP:20260512T155934
CREATED:20221119T235511Z
LAST-MODIFIED:20221202T235720Z
UID:16838-1668862800-1668866400@www.ayclogic.com
SUMMARY:1 PM - Intro to Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe created the Temperature Spinner Listener which shows the multiple options that we can convert such as Celsius to Fahrenheit or Celsius to Kelvin.\n\nFor Homework:\n\nPick a language for your convertButtonName in a different language than English such as Chinese or Spanish.\nThen use the convertButtonName to change the convertButtons name by selecting the correct attribute.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-lee-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221119T120000
DTEND;TZID=America/Los_Angeles:20221119T130000
DTSTAMP:20260512T155934
CREATED:20221119T211112Z
LAST-MODIFIED:20221119T211112Z
UID:16492-1668859200-1668862800@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Homework\n\nNo class on Thanksgiving week\, the class will resume on December 3rd.\nContinue on Birdie Dragon game. When launch fireball button is clicked\, create a new Fireball Sprite in front of the player. And make the fireball move the the right.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-7/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221116T193000
DTEND;TZID=America/Los_Angeles:20221116T203000
DTSTAMP:20260512T155934
CREATED:20221117T042731Z
LAST-MODIFIED:20221117T042731Z
UID:16461-1668627000-1668630600@www.ayclogic.com
SUMMARY:7:30 - Intro To Java - Alex
DESCRIPTION:Homework\nIn your Temperature Converter android application add the following \n\nOne Celcius header. It has to be TextView UIcomponent and ID has to be “conversionTempHeader“. The constraint top is 32 and the right is 32.\nOne text field under the Celcius header. It has to be a Number Decimal UI component and the ID has to be “conversionTempTextField“. The constraint top is 32 and the right is 32.\nMake the text field under the Fahrenheit header have a smaller width. Adjust the layout width attribute.\nOverall you want to make the components similar to the below\, without the dropdown menu.
URL:https://www.ayclogic.com/event/730-intro-to-java-alex/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221112T170000
DTEND;TZID=America/Los_Angeles:20221112T180000
DTSTAMP:20260512T155934
CREATED:20221113T020700Z
LAST-MODIFIED:20221113T020834Z
UID:16379-1668272400-1668276000@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe went over all the parameters (options) for SaturnArmorMaterial.java\nWe created saturn_helmet\, saturn_boots\, saturn_leggings\, saturn_helmet custom armors.\n\nHomework\n\nCustomize your armor images\n\nsaturn_boots.png\nsaturn_leggings.png\nsaturn_helmet.png\nMatch the customization with your saturn_layer_1.png\n\n\nCreate recipes for all 4 of your saturn armors. Just a reminder you need to create one json file per recipe under src/resources/data/aycessentials/recipes/
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-10/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221112T160000
DTEND;TZID=America/Los_Angeles:20221112T170000
DTSTAMP:20260512T155934
CREATED:20221113T005710Z
LAST-MODIFIED:20221113T005710Z
UID:16367-1668268800-1668272400@www.ayclogic.com
SUMMARY:4 PM - Intro To Java - Alex Lee
DESCRIPTION:Homework:\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 the 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.\nAlong with that create another method that asks for your favorite song\, and if the song is “Shape of You” then say that it is your favorite song\, otherwise say that the song is alright.
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex-lee-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221112T130000
DTEND;TZID=America/Los_Angeles:20221112T140000
DTSTAMP:20260512T155934
CREATED:20221113T011356Z
LAST-MODIFIED:20221113T011429Z
UID:16371-1668258000-1668261600@www.ayclogic.com
SUMMARY:1 PM - Intro To Java - Alex Lee
DESCRIPTION:Homework:\n\nMake the result for Celsius more visible than how it looks right now. An example is given below.
URL:https://www.ayclogic.com/event/1-pm-android-game-development-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221112T120000
DTEND;TZID=America/Los_Angeles:20221112T130000
DTSTAMP:20260512T155934
CREATED:20221112T210431Z
LAST-MODIFIED:20221112T210431Z
UID:16355-1668254400-1668258000@www.ayclogic.com
SUMMARY:12 PM - Python Game Development - Gamas
DESCRIPTION:Today We Did\n\nWe added code to spawn bird every one second.\nWe added the up and down arrow to control the player movement. But we have not added the code to move the player.\n\nHomework\n\nAdd the launch_fireball.xml vector image into the bottom right corner of the screen like below
URL:https://www.ayclogic.com/event/12-pm-python-game-development-gamas/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221112T090000
DTEND;TZID=America/Los_Angeles:20221112T100000
DTSTAMP:20260512T155934
CREATED:20221112T181208Z
LAST-MODIFIED:20221112T181208Z
UID:16347-1668243600-1668247200@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Today We Did\n\nWe finished Driver System.\nWe reviewed what’s going to be in the final test.\n\nHomework\n\nNext week is 2 hours final test. From 9 AM to 11 AM.\nTo prepare for the final\, try to redo the following\n\nBank System from the quiz\nDriver System\nAlso lookup how to use List in Java.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-23/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221109T193000
DTEND;TZID=America/Los_Angeles:20221109T203000
DTSTAMP:20260512T155934
CREATED:20221110T042838Z
LAST-MODIFIED:20221110T042838Z
UID:16324-1668022200-1668025800@www.ayclogic.com
SUMMARY:7:30 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued and were able to finish up most of the MonsterInheritance project.\nLearned about parent and child class\nAlso\, we learned about access modifiers and the differences between them.\n\nFor Homework:\n\nCreate a Troll that is a child class to the monster.\nIt is immune to water damage but takes double damage from fire.\nThe troll will also say “Thank you for the heals” and heal double what the user typed in for the heal.\nAlso\, download Android Studio\, you can find the download here: https://developer.android.com/studio/
URL:https://www.ayclogic.com/event/730-pm-intro-to-java-alex-lee-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221105T170000
DTEND;TZID=America/Los_Angeles:20221105T180000
DTSTAMP:20260512T155934
CREATED:20221106T011544Z
LAST-MODIFIED:20221106T011544Z
UID:16249-1667667600-1667671200@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe created Saturn Chestplate and SaturnArmorMaterial.\n\nHomework\n\ncustomize your saturn_layer_1.png image so it resemblance your armor customization last week. For reference\, this is how I customize mine
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-9/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221105T160000
DTEND;TZID=America/Los_Angeles:20221105T170000
DTSTAMP:20260512T155934
CREATED:20221105T235543Z
LAST-MODIFIED:20221105T235543Z
UID:16245-1667664000-1667667600@www.ayclogic.com
SUMMARY:4 PM - Intro To Java - Gamas
DESCRIPTION:Homework\n\nIn Nov5Magic8Ball.java\, use combination of Random module\, while loop\, if else statements to create Magic 8 Ball game.\nLook at below Python codes for your reference\n\nimport random\n\nwhile True:\nuser_question = input("\nEnter your question? ")\nif user_question.lower() == "quit" or user_question.lower() == "exit":\nprint("Bye bye")\nbreak\nrandom_num = random.randint(1\,8)\n\nif random_num == 1:\nprint("It is certain")\nelif random_num == 2:\nprint("Most likely.")\nelif random_num == 3:\nprint("Signs point to yes.")\nelif random_num == 4:\nprint("I don’t think so.")\nelif random_num == 5:\nprint("Ask again later.")\nelif random_num == 6:\nprint("Concentrate and ask again.")\nelif random_num == 7:\nprint("Outlook not so good.")\nelif random_num == 8:\nprint("My reply is no")
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-gamas/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221105T130000
DTEND;TZID=America/Los_Angeles:20221105T140000
DTSTAMP:20260512T155934
CREATED:20221105T211125Z
LAST-MODIFIED:20221105T211203Z
UID:16234-1667653200-1667656800@www.ayclogic.com
SUMMARY:1 PM - Intro To Java - Gamas
DESCRIPTION:Today We Did\n\nWe downloaded and installed Android Studio software.\nWe started Temperature Converter android application.\n\nWe added the Fahrenheit header (id: sourceTempHeader)\nWe added the a text field under Fahrenheit header (id: sourceTempTextField)\n\n\n\nHomework\nIn your Temperature Converter android application add the following \n\nOne Celcius header. It has to be TextView ui component and id has to be “conversionTempHeader“. Constraint top is 32 and right is 32.\nOne text field under the celcius header. It has to be Number Decimal ui component and id has to be “conversionTempTextField“. Constraint top is 32 and right is 32.\nMake the text field under Fahrenheit header to have smaller width. Adjust layout width attribute.\nOverall you want to make the 4 ui components similar to below.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-gamas/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221105T120000
DTEND;TZID=America/Los_Angeles:20221105T130000
DTSTAMP:20260512T155934
CREATED:20221105T211519Z
LAST-MODIFIED:20221105T211519Z
UID:16237-1667649600-1667653200@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Today We Did\n\nWe added bird sprite to the screen.\nWe flipped the bird image horizontally so it does not move backward.\nWe started adding List<Bird> in GameView.java as to add multiple birds on the screen.\n\nHomework\n\nPeriodically spawn one bird per second on the screen.\nCreate fireball sprite and make it appear on the screen.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-6/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221105T090000
DTEND;TZID=America/Los_Angeles:20221105T100000
DTSTAMP:20260512T155934
CREATED:20221105T171204Z
LAST-MODIFIED:20221105T171204Z
UID:16222-1667638800-1667642400@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Homework\n\nFinish Driver System\n\nAdd codes to handle the 2nd rush hour from 16 to 19.\nAlso in NewYorkTaxiDriver\, override the getTripTime so it will not double the trip time during rush hour.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-22/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221029T170000
DTEND;TZID=America/Los_Angeles:20221029T180000
DTSTAMP:20260512T155934
CREATED:20221030T012651Z
LAST-MODIFIED:20221030T012651Z
UID:16087-1667062800-1667066400@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe learned how to create Json file for SchoolSystem.java\nWe learned how to use IntelliJ debugger and break point.\nWe learned how to enable lightning when LightningArrowItem strike a creature.\n\nHomework\n\nNext week we are going to create a SaturnChestplate. Modify the following image so it can be according to your customization
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-8/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221029T160000
DTEND;TZID=America/Los_Angeles:20221029T170000
DTSTAMP:20260512T155934
CREATED:20221029T235612Z
LAST-MODIFIED:20221029T235612Z
UID:16085-1667059200-1667062800@www.ayclogic.com
SUMMARY:4 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued by covering how to use for loops using the index.\nAlso\, we talked about how to use for loops using index with a list.\nWe also went over how to create and use while loops.\n\nFor Homework:\n\nCreate a new file that is titled Oct29_WhileLoopHomework.java\nThe homework is on this link: https://www.ayclogic.com/java-exercise-while-loop/
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221029T130000
DTEND;TZID=America/Los_Angeles:20221029T140000
DTSTAMP:20260512T155934
CREATED:20221105T183852Z
LAST-MODIFIED:20221105T183852Z
UID:16226-1667048400-1667052000@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n1. We finished up the Monster Inheritance project. \n2. We covered access modifiers and also how to override methods. \nFor Homework:\n1. Download Android Studio for the next class. https://developer.android.com/studio
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-lee-6/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221029T100000
DTEND;TZID=America/Los_Angeles:20221029T110000
DTSTAMP:20260512T155934
CREATED:20221029T202108Z
LAST-MODIFIED:20221029T202108Z
UID:16074-1667037600-1667041200@www.ayclogic.com
SUMMARY:10 AM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe learned more about JSON file structure.\nWe learned how to distribute minecraft forge modding file to other people.\nWe finished our course. Congrats everyone\, I hope you guys enjoyed creating custom armor\, custom weapons\, custom ore and lastly custom mob.
URL:https://www.ayclogic.com/event/10-am-minecraft-modding-with-java-gamas-13/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221026T193000
DTEND;TZID=America/Los_Angeles:20221026T203000
DTSTAMP:20260512T155934
CREATED:20221027T032342Z
LAST-MODIFIED:20221027T032342Z
UID:16034-1666812600-1666816200@www.ayclogic.com
SUMMARY:7:30 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe started with the Monster Inheritance project\nWe added in how to add monsters\, list them out\, and play.\nThe monster menu and the attack menu were also created.\n\nFor Homework:\n\nInside the monster menu method\, look at the for each code that lists out the monsters and try to think how we can shorten that code to one line instead of three.\nAlso\, initialize 3 different monsters\, it is up to you which monsters you want to create.
URL:https://www.ayclogic.com/event/730-pm-intro-to-java-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221022T170000
DTEND;TZID=America/Los_Angeles:20221022T180000
DTSTAMP:20260512T155934
CREATED:20221023T011548Z
LAST-MODIFIED:20221023T011548Z
UID:15979-1666458000-1666461600@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nWe learned more about JSON file.\nWe started doing Saturn Lightning Arrow.\n\nHomework\n\nDo one more JSON file creation exercise.\n\nOpen your SchoolApplication project in IntelliJ. This is project from “Intro To Java” class. In it\, you can find SchoolSystem.java. Create school_system.json and inside this json\, it should have 2 attributes: studentList and teacherList\, which is what SchoolSystem.java has. Regarding which students and teachers data you should have\, use the following:\n\nstudentList:\n\nAidan Chau\, 14\nAusten Yao\, 13\nBrandon Truong\, 15.\n\n\nteacherList\n\nGamas Chang\, 100\, Java\nJohn Cheng\, 40\, Python\n\n\n\n\n\n\nCreate a new entry in ModItems.java for SATURN_LIGHTNING_ARROW. The class you should use is SaturnLightningArrowItem.\nYou need to add/modify a couple of JSONs:\n\nModify en_us.json\nCreate saturn_lightning_arrow.json under src/main/resources/assets/aycessentials/models/item
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-7/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
END:VCALENDAR