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:20221022T160000
DTEND;TZID=America/Los_Angeles:20221022T170000
DTSTAMP:20260512T183110
CREATED:20221022T235226Z
LAST-MODIFIED:20221022T235226Z
UID:15977-1666454400-1666458000@www.ayclogic.com
SUMMARY:4 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nToday we reviewed the Car Dealer homework\, and also went through how to create a list.\nWe also covered\, how to add and delete things from the list\, along with how to loop through them using a for each loop.\n\nFor Homework:\n\nCreate a new project that is titled Oct22_ListHomework.java\nThe homework is linked here: https://www.ayclogic.com/java-list-forloop/
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex-lee-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221022T130000
DTEND;TZID=America/Los_Angeles:20221022T140000
DTSTAMP:20260512T183110
CREATED:20221027T035813Z
LAST-MODIFIED:20221027T035813Z
UID:16036-1666443600-1666447200@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued with the Monster Inheritance project and added in the magic attack and arrow attack.\nAlso\, we learned how to use inheritance by creating the Dragon.\n\nFor Homework:\n\nCreate two new classes with one being a troll and the other being a golem.\nThey both should extend from the Monster class.\nThe troll will be immune to water and take more damage from fire.\nThe golem will be immune to earth and take more water damage.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-lee-5/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221022T120000
DTEND;TZID=America/Los_Angeles:20221022T130000
DTSTAMP:20260512T183110
CREATED:20221022T201916Z
LAST-MODIFIED:20221022T202101Z
UID:15958-1666440000-1666443600@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Today We Did\n\nWe made Player flaps wing animation.\nWe started creating Bird sprite.\nWe created FlyingCreature class and made this parent of both classes.\n\nHomework\n\nCreate 2 constants in Config.java: BIRD_MIN_SPEED\, BIRD_MAX_SPEED.\nIn Bird.java constructor\, generate a random number between BIRD_MIN_SPEED and BIRD_MAX_SPEED to be used as the bird speed.\nDisplay one bird in the screen starting from the right side of the screen moving left.\nPeriodically create one random bird per second. Hint\, you need to use timer.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-5/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221022T100000
DTEND;TZID=America/Los_Angeles:20221022T110000
DTSTAMP:20260512T183110
CREATED:20221022T202744Z
LAST-MODIFIED:20221022T202744Z
UID:15962-1666432800-1666436400@www.ayclogic.com
SUMMARY:10 AM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nwe continued learning JSON\n\nWe learned how to represent class\, Map and List in JSON.\n\n\nwe added code that will spawn our custom entities in the world.\n\nHomework\n\nInside SchoolApplication project\, continue adding more attributes in school_main_application.json\n\nAdd teachers attribute\nAdd studentMap attribute\nAdd teacherMap attribute.\n\n\nLook at how we did monster_system.json in the MonsterInheritance project.
URL:https://www.ayclogic.com/event/10-am-minecraft-modding-with-java-gamas-12/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221022T090000
DTEND;TZID=America/Los_Angeles:20221022T100000
DTSTAMP:20260512T183110
CREATED:20221022T203450Z
LAST-MODIFIED:20221022T203450Z
UID:15964-1666429200-1666432800@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Today We Did\n\nWe continued discussing Driver System practice test.\n\nHomework\n\nContinue finishing Driver System practice test. Please finish the booking feature.\n\nAfter user answers “Enter what time you want to leave (0 – 24): “. Take the input from shell and convert to Integer. After you convert to Integer\, check if it is rush hour. If it is between 5 to 10 then it is rushHour. If it is then call the driver.getTripTime method and pass distance and true for rushHour parameter. The driver.getTripTime() will return the trip time in float which is distance/driver.getSpeed().
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-21/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221019T193000
DTEND;TZID=America/Los_Angeles:20221019T203000
DTSTAMP:20260512T183110
CREATED:20221020T035034Z
LAST-MODIFIED:20221020T035034Z
UID:15913-1666207800-1666211400@www.ayclogic.com
SUMMARY:7:30 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nToday we reviewed the quiz that we took the week before.\n\nFor Homework:\n\nCreate a new project and title it MonsterInheritance.java\nIn it\, you should have two classes\, MonsterSystem.java and Monster.java\nThe Monster.java class will have 3 attributes: health\, species\, and maxDamage.\nMake sure to create the constructor\, getters\, and setters.\nCreate the menu shown below and be able to infinitely loop it and exit out when you want.\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): 123123\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): exit\nThank you for playing the Monster Inheritance game. \n\n\n\n\n  \n 
URL:https://www.ayclogic.com/event/730-pm-intro-to-java-alex-lee-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221018T180000
DTEND;TZID=America/Los_Angeles:20221018T190000
DTSTAMP:20260512T183110
CREATED:20221019T015449Z
LAST-MODIFIED:20221019T015449Z
UID:15874-1666116000-1666119600@www.ayclogic.com
SUMMARY:6 PM Scratch Level 1 - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued with the Funny Faces project.\nWere able to finish it up by adding in the nose with the animation.\n\nFor Homework: \n\nDo pages 84-85 inside the book\, which is the Birthday Card project and create the button and the “PRESS ONLY ON YOUR BIRTHDAY” backdrop.
URL:https://www.ayclogic.com/event/6-pm-scratch-level-1-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T170000
DTEND;TZID=America/Los_Angeles:20221015T180000
DTSTAMP:20260512T183110
CREATED:20221016T030204Z
LAST-MODIFIED:20221016T030204Z
UID:15811-1665853200-1665856800@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nWe reviewed Minecraft crafting recipes.\nWe learned about JSON\n\nWe learned about String and integer fields.\nWe learned about how to represent Class/object or Dictionary inside a Json file.\nWe learned about how to represent List inside Json file.\n\n\n\nHomework\n\nCreate JSON file (saturn_ore.json). The content of the file has to be according to LootTable.java class. Please go here to find the definition of LootTable java class. Also look at the public static final void main(String args) to see an instance of LootTable class. https://www.ayclogic.com/minecraft-json-practice/
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-6/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T160000
DTEND;TZID=America/Los_Angeles:20221015T170000
DTSTAMP:20260512T183110
CREATED:20221015T235325Z
LAST-MODIFIED:20221015T235325Z
UID:15803-1665849600-1665853200@www.ayclogic.com
SUMMARY:4 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe went over how to create an if statement\, an else if statement\, and an else statement.\nAlso\, we were able to understand better how to get the user’s input.\n\nFor Homework:\n\nCreate a new project called Oct15_IfElseScannerHomework.java\nThe instructions will be at this link: https://www.ayclogic.com/java-exercise-2b-input-from-shell-and-if-else/
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex-lee-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T130000
DTEND;TZID=America/Los_Angeles:20221015T140000
DTSTAMP:20260512T183110
CREATED:20221018T022345Z
LAST-MODIFIED:20221018T022345Z
UID:15839-1665838800-1665842400@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alex
DESCRIPTION:Today We Did:\n\nWe continued with the Monster Inheritance project.\nAdded in the attack menu and created the melee attack and started the magic attack.\n\nFor Homework:\n\nContinue with the magicMenu that we have created\, and it should output the code below.\nWe have already done the fire magic but add in the three other magic attacks\, water\, earth\, and wind.\n\nWhat kind of magic attack you want to do to dragon:\n1. Fire magic - 10 damage\n2. Water magic - 10 damage\n3. Earth magic - 12 damage\n4. Wind magic - 8 damage\nEnter your selection (1-4) :
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-11/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T120000
DTEND;TZID=America/Los_Angeles:20221015T130000
DTSTAMP:20260512T183110
CREATED:20221015T200237Z
LAST-MODIFIED:20221015T200237Z
UID:15795-1665835200-1665838800@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Today We Did\n\nWe continued with our Dragon Birdie Mobile game.\nWe added player sprite.\nWe resized player sprite.\nWe started doing player sprite animation.\n\nHomework\n\nContinue with the player sprite animation so eventually we can see the red dragon flapping its wings. Take a look at our Python Game Development Birdie project to see how we did next_costume() method and copy the logic to your Player.java file.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-4/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T100000
DTEND;TZID=America/Los_Angeles:20221015T110000
DTSTAMP:20260512T183110
CREATED:20221015T180058Z
LAST-MODIFIED:20221015T180255Z
UID:15788-1665828000-1665831600@www.ayclogic.com
SUMMARY:10 AM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe finished adding SATURN_FOX creature along with its animation.\nWe learned about JSON file structure.\n\nHomework\n\nIn MonsterInheritance project create these 3 json files. This should be very similar to monster_griffin.json which we have done in the class today.\n\nmonster_dragon.json\nmonster_troll.json\nmonster_water_golem\,json\n\n\nOpen BlockBench\n\nFile > New > CEM Template Loader\nSelect Dragon\nCheck the checkbox that says “Load Vanilla texture”\nMake dragon skin customization.
URL:https://www.ayclogic.com/event/10-am-minecraft-modding-with-java-gamas-11/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221012T193000
DTEND;TZID=America/Los_Angeles:20221012T203000
DTSTAMP:20260512T183110
CREATED:20221014T224851Z
LAST-MODIFIED:20221014T224851Z
UID:15764-1665603000-1665606600@www.ayclogic.com
SUMMARY:7:30 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe took the first Java quiz today which was to create the BankSystem and BankAccount.\nThe test will be sent to you before the start of the next class.
URL:https://www.ayclogic.com/event/730-pm-intro-to-java-alex-lee-2/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T160000
DTEND;TZID=America/Los_Angeles:20221008T170000
DTSTAMP:20260512T183110
CREATED:20221008T235417Z
LAST-MODIFIED:20221008T235417Z
UID:15621-1665244800-1665248400@www.ayclogic.com
SUMMARY:4 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe started the first project and were able to get through the variable data types.\nWe learned about how to initialize string\, integer\, double\, and floats for variables.\nAlso\, covered how to get the users input by using Scanner.\n\nFor Homework:\n\nCreate a new file which is titled Oct8_VariableDataTypesHomework.java\nThe link to the homework is here https://www.ayclogic.com/java-variables-datatypes/
URL:https://www.ayclogic.com/event/4-pm-intro-to-java-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T130000
DTEND;TZID=America/Los_Angeles:20221008T140000
DTSTAMP:20260512T183110
CREATED:20221008T205707Z
LAST-MODIFIED:20221008T205707Z
UID:15612-1665234000-1665237600@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alexander Lee
DESCRIPTION:Today We Did:\n\nWe started with the Monster Inheritance project.\nWe were able to create the Monster and add it to a map\, along with listing it out.\nAlso\, we started the play method and were able to create the monsterMenu.\n\nFor Homework:\n\nShorten the creation of the monsterMenu by looking at where we have duplicated code that has already been created in the past.\nAlso\, check to see if the user types in stop\, you should leave the while true loop for the monster menu.\nAlso get the monster from the monsterMap by using the user input you received from the printMonsterMenu() method.\n Check to see if it is null\, and if it is make sure to print out “We could not find this monster in our system: monsterName”
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alexander-lee-8/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T120000
DTEND;TZID=America/Los_Angeles:20221008T130000
DTSTAMP:20260512T183110
CREATED:20221008T195531Z
LAST-MODIFIED:20221008T195531Z
UID:15596-1665230400-1665234000@www.ayclogic.com
SUMMARY:12 PM - Android Game Development - Gamas
DESCRIPTION:Homework\n\nCreate a new class Player.java\, this will be Player sprite.\nBasically we want to load player1.png and make it appear on the screen.\nHow to do it\, follow what we did in the Background sprite.\nTalk to your parent about your phone.
URL:https://www.ayclogic.com/event/12-pm-android-game-development-gamas-3/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T090000
DTEND;TZID=America/Los_Angeles:20221008T100000
DTSTAMP:20260512T183110
CREATED:20221008T163729Z
LAST-MODIFIED:20221021T013945Z
UID:15587-1665219600-1665223200@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Homeworks\n\nContinue working on the Practice Test.\n\nMake sure to have the Driver and NewYorkTaxiDriver classes. The difficult part which is the getTripTime can be ignored until we discuss it next week\nMake sure you have “1. Add driver” feature.\nMake sure you have “3. List All drivers” feature.\nMake sure you have “4. exit”\nMake sure you have “2. Book a Trip”. Don’t worry about the rush hour if you do not know how to do it.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-20/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T170000
DTEND;TZID=America/Los_Angeles:20221001T180000
DTSTAMP:20260512T183110
CREATED:20221002T011014Z
LAST-MODIFIED:20221002T011014Z
UID:15398-1664643600-1664647200@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nWe added Saturn item and use it as the AYC Essential mod tab.\nWe added SaturnLightningAxe.java but running out of time to add it completely in the game.\n\nHomework\n\nComplete adding the Saturn Lightning Axe to your minecraft mod.\n\nAdd SATURN_LIGHTNING_AXE into ModItems.java\nAdd an entry in en_us.json\nAdd an saturn_lightning_axe.json inside src/main/resources/assets/aycessentials/models/item directory\n\n\nrun your program\, equip the Saturn Lightning Axe into your hand.\nsummon a couple of enemies around you and do right click. If everything is good\, you should see the lightning striking enemies around you.
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-4/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T130000
DTEND;TZID=America/Los_Angeles:20221001T140000
DTSTAMP:20260512T183110
CREATED:20221001T205735Z
LAST-MODIFIED:20221008T003317Z
UID:15389-1664629200-1664632800@www.ayclogic.com
SUMMARY:1 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe reviewed the quiz that we took the week before.\nAble to finish it up and reviewed how to use HashMaps and deposit and withdraw money from the accounts.\n\nFor Homework:\n\nCreate a new project called MonsterInheritance\, this will be a completely new project.\nThe first class we will create is going to be the MonsterSystem.java and in this\, we will want to have the main method\, run method\, and also create a monsterMap.\nThe monsterMap key will be the monster’s name which is a String\, and the value will be the Monster class that we will also be creating for homework.\nCreate a Monster.java class that will have 3 attributes which are int health\, String species\, and int maxDamage\nMake sure to create a constructor and also the getters and setters.\nAlso create a menu and have it in an infinite loop. The expected menu is below:\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):
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-lee-4/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T090000
DTEND;TZID=America/Los_Angeles:20221001T100000
DTSTAMP:20260512T183110
CREATED:20221001T180925Z
LAST-MODIFIED:20221001T180925Z
UID:15368-1664614800-1664618400@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Today We Did\n\nWe added a custom spinner OnItemSelectedListener\n\nHomework\n\nDo the Driver System practice test that was sent in the class today.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-19/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220924T090000
DTEND;TZID=America/Los_Angeles:20220924T100000
DTSTAMP:20260512T183110
CREATED:20220924T165722Z
LAST-MODIFIED:20220924T165722Z
UID:15151-1664010000-1664013600@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Today We Did\n\nWe continued with Temperature Converter Android app project.\nWe get Fahrenheit from one text field\, converted into Celcius and set it to another text field.\nWe added the spinner for conversion option.\nWe made some text fields bold and bigger.\n\nHomework\n\nNo homework
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-18/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220921T190000
DTEND;TZID=America/Los_Angeles:20220921T200000
DTSTAMP:20260512T183110
CREATED:20220923T061547Z
LAST-MODIFIED:20220923T061547Z
UID:15138-1663786800-1663790400@www.ayclogic.com
SUMMARY:7 PM WED Intro To Java - Alexander Lee
DESCRIPTION:Today We Did:\n\nWe continued with the EmailApplication and were able to finish the project.\nWe were able to figure out the issue of why there was only one email at a time on the list.\n\nFor Homework:\n\nMake sure to take this practice quiz before Friday this week since I will need to grade it.
URL:https://www.ayclogic.com/event/7-pm-wed-intro-to-java-alexander-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T170000
DTEND;TZID=America/Los_Angeles:20220917T180000
DTSTAMP:20260512T183110
CREATED:20220918T020439Z
LAST-MODIFIED:20220918T020439Z
UID:15025-1663434000-1663437600@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe were able to successfully added Saturn Sword.\nWe were able to understand the attributes of Saturn Sword\, attack damage and the attack speed.\nWe started with Saturn Fireball Axe.\n\nHomework\n\nCreate Jupiter Sword by looking at how you created Saturn Sword.\nGo to src/main/resources/assets/aycessentials/textures/items and create a copy of saturn_sword.png into jupiter_sword.png.\nUse an image editor like Fire Alpaca or other that you use to modify the image of jupiter_sword.png to be different than before.\nGo to src/main/resources/assets/aycessentials/lang/en_us.json and add this line at the end. Don’t forget to add comma (\,) at the end of the previous line.\n"item.aycessentials.jupiter_sword": "Jupiter Sword"\n\nGo to src/main/resources/assets/aycessentials/models/item and add a new file jupiter_sword.json and inside the file\, should be very similar to saturn_sword.json. Just copy the content of saturn_sword.json and modify accordingly.\nUnder ModItems.java add one more entry similar to SATURN_SWORD\, but make it JUPITER_SWORD this time. Anywhere you see “saturn_sword” in the JUPITER_SWORD entry\, change to “jupiter_sword”.
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas-2/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T130000
DTEND;TZID=America/Los_Angeles:20220917T140000
DTSTAMP:20260512T183110
CREATED:20220923T061353Z
LAST-MODIFIED:20220923T061353Z
UID:15136-1663419600-1663423200@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alexander Lee
DESCRIPTION:Today We Did:\n\nWe finished up reviewing the practice quiz today\nWent over how to create the animal and also animal system.\nTalked again about how to create a method with a parameter so that we could pass information from the main to the method to be used.\n\nFor Homework:\n\nNext week we will be taking the test so make sure to study before and make sure you are prepared.\nYou have one hour to complete the exam and if you have any issues during the test and I will see if I can help.\nMake sure to have an email prepared to take the test so I can send it to you.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alexander-lee-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T120000
DTEND;TZID=America/Los_Angeles:20220917T130000
DTSTAMP:20260512T183110
CREATED:20220917T200259Z
LAST-MODIFIED:20220917T200259Z
UID:14998-1663416000-1663419600@www.ayclogic.com
SUMMARY:12 PM - Android Game Development With Java - Gamas
DESCRIPTION:Today We Did\n\nWe started GameActivity and GameView. This is the page where we are going to play our game eventually.\nWe were able to add part of the code in the GameView but we are not done. We are missing a dedicated Java Thread responsible to draw canvas.\n\nHomework\n\nRead this tutorial and try running the example codes as well: https://www.w3schools.com/java/java_threads.asp
URL:https://www.ayclogic.com/event/12-pm-android-game-development-with-java-gamas/
CATEGORIES:Android Game Development,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T100000
DTEND;TZID=America/Los_Angeles:20220917T110000
DTSTAMP:20260512T183110
CREATED:20220917T182952Z
LAST-MODIFIED:20220917T182952Z
UID:14996-1663408800-1663412400@www.ayclogic.com
SUMMARY:10 AM - Minecraft Modding With Java - Gamas
DESCRIPTION:Today We Did\n\nWe finished adding a custom animal entity into minecraft.\nWe added animation to this custom animal\nWe added temptation goals.\n\nHomework\n\nGo to src/main/resources/assets/aycessentials/textures/entity/hog.png and modify this texture according to your liking. Maybe change the eye into different color. Change the skin into something else\, etc.
URL:https://www.ayclogic.com/event/10-am-minecraft-modding-with-java-gamas-7/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T090000
DTEND;TZID=America/Los_Angeles:20220917T100000
DTSTAMP:20260512T183110
CREATED:20220917T165745Z
LAST-MODIFIED:20220917T165745Z
UID:14994-1663405200-1663408800@www.ayclogic.com
SUMMARY:9 AM - Intro To Java - Gamas
DESCRIPTION:Homework\n\nHomework convert from Fahrenheit to Celcius.\nConvert sourceTemperature to Integer\nFormula – (F − 32) × 5/9 = Celcius\nDisplay the celcius in the system.out.println
URL:https://www.ayclogic.com/event/9-am-intro-to-java-gamas-17/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220914T193000
DTEND;TZID=America/Los_Angeles:20220914T203000
DTSTAMP:20260512T183110
CREATED:20220916T215507Z
LAST-MODIFIED:20220916T215507Z
UID:14972-1663183800-1663187400@www.ayclogic.com
SUMMARY:WED 7 PM - Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe continued with the Email Application project by adding in how to send an email and also receive it.\nWe were working on how to send multiple emails instead of just one at a time.\n\nFor Homework:\n\nMake sure that it can show the multiple emails since right now it will only show the latest one that is sent.\nHint: fix the code in the check inbox to show multiple messages.
URL:https://www.ayclogic.com/event/wed-7-pm-intro-to-java-alex-lee/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220910T180000
DTEND;TZID=America/Los_Angeles:20220910T190000
DTSTAMP:20260512T183110
CREATED:20220911T021956Z
LAST-MODIFIED:20220911T021956Z
UID:14884-1662832800-1662836400@www.ayclogic.com
SUMMARY:5 PM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe started doing Saturn Sword custom weapon. But we were stuck\, we were not able to display the Saturn Sword in the combat section properly.\n\nHomework\n\nFix the Saturn Sword not displayed properly by doing the following.\n\nGo to this file resources/assets/aycessentials/models/items/saturn_sword.json\nChange from “layers0” to “layer0”.\nChange from “aycessentials:items/saturn_sword.png” into “aycessentials:items/saturn_sword”.\nRerun your minecraft program and see if you can see your custom sword now.\nIf you can see it\, then equip the sword to your player and see if you can kill powerful enemy by summoning let say wither skeleton. Type this to summon whither “/summon minecraft:whither_skeleton.” . Count how many hit it take to kill whither skeleton using Saturn Sword. After this\, get Nether Sword from your inventory\, summon whiter skeleton again and see how many hit it takes you to kill this enemy.
URL:https://www.ayclogic.com/event/5-pm-minecraft-modding-with-java-gamas/
CATEGORIES:Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220910T130000
DTEND;TZID=America/Los_Angeles:20220910T140000
DTSTAMP:20260512T183110
CREATED:20220916T214016Z
LAST-MODIFIED:20220916T214016Z
UID:14970-1662814800-1662818400@www.ayclogic.com
SUMMARY:1 PM Intro To Java - Alex Lee
DESCRIPTION:Today We Did:\n\nWe reviewed the practice test that you guys did over the week for homework.\nGot through half of the questions and the rest will be covered next week.\n\nFor Homework:\n\nThere is no homework unless you were unable to finish the practice quiz\, make sure to go back and try to figure out how to do it yourself.
URL:https://www.ayclogic.com/event/1-pm-intro-to-java-alex-lee-3/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR