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:20210314T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20211107T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210206T140000
DTEND;TZID=America/Los_Angeles:20210206T150000
DTSTAMP:20260515T073638
CREATED:20210207T033853Z
LAST-MODIFIED:20210207T033853Z
UID:6215-1612620000-1612623600@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding with Java
DESCRIPTION:We went over how to add custom sword to Minecraft “Saturn Sword”.\nWe went over about inheritance in Java.\nThere is no class next week because of President Day weekend and Chinese New Year weekend.\nHomework:\n\nSimilar to “Saturn Sword”\, create “Jupiter Sword”. Look at the following files for examples:\n\nsrc/main/java/com/ayclogic/aycessential/init/ModItems.java\nsrc/main/resources/assets/aycessential/lang/en_us.json\nsrc/main/resources/assets/aycessential/models/item/saturn_sword.json\nCopy saturn_sword.png and do some minor modification in it so it will look a little bit different than saturn_sword.png. And save as jupiter_sword.png.\nPut the new jupiter_sword.png image into sec/main/resources/assets/aycessential/textures/items/
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-with-java-4/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210207T090000
DTEND;TZID=America/Los_Angeles:20210207T100000
DTSTAMP:20260515T073638
CREATED:20210207T182102Z
LAST-MODIFIED:20210207T182102Z
UID:6224-1612688400-1612692000@www.ayclogic.com
SUMMARY:9 AM - Intro To Java
DESCRIPTION:We continued with School Application\n\nWe completed “Add Teacher” (option 2) where we added a new teacher into the school\nWe completed “List Teachers” (option 5) where we list all teachers group by its school.\n\n\nThere is no school next week because of President Day and Chinese New Year weekend.\nHomework:\n\nFor “Add Student” (option 3)\, after you get a new student from shell\, add it to the school.\nAdd code to do “List Students” (option 6). Look at how we did “List Teachers”.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-11/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210220T140000
DTEND;TZID=America/Los_Angeles:20210220T150000
DTSTAMP:20260515T073638
CREATED:20210227T051819Z
LAST-MODIFIED:20210227T051819Z
UID:6431-1613829600-1613833200@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding With Java
DESCRIPTION:We learned about Java inheritance\nWe started making Saturn Fireball Axe\nNo Homework next week
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-with-java-5/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210221T090000
DTEND;TZID=America/Los_Angeles:20210221T100000
DTSTAMP:20260515T073638
CREATED:20210221T180635Z
LAST-MODIFIED:20210221T180635Z
UID:6362-1613898000-1613901600@www.ayclogic.com
SUMMARY:9 AM - Intro To Java
DESCRIPTION:Homework:\n\nFor Account class add the following class attributes\n\nString firstName\nString lastName\nString email\nString ID\nString password\nCreate the getters and setters method.\n\n\nFor Message class add the following class attributes\n\nString senderAccountId\nList<String> recipientAccountIds\nString message\nDate sentDate\nCreate the getters and setters method.\n\n\nIn the EmailMain\, create a menu like below\n\n\nWelcome to AYCLOGIC Email Application\n\nPlease enter your selection\n1. Create an account\n2. Login\nEnter your selection: 1\n\nEnter the account information\nEnter your First Name: Gamas\nEnter your Last Name : Chang\nEnter your email : gamas@ayclogic.com\nEnter your password: abcdefg\n\nEmail gamas@ayclogic.com is created\n\nAfter user enter account information add to the “accounts” list.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-12/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210227T140000
DTEND;TZID=America/Los_Angeles:20210227T150000
DTSTAMP:20260515T073638
CREATED:20210228T002551Z
LAST-MODIFIED:20210228T002745Z
UID:6445-1614434400-1614438000@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding With Java
DESCRIPTION:We made the Saturn Axe spits out fireball.\nHomework:\n\nInside SaturnFireballAxe.java add the following code\n\n\npublic boolean hitEntity(ItemStack stack\, LivingEntity target\, LivingEntity attacker) {\n    target.setFire(5);\n    return super.hitEntity(stack\, target\, attacker);\n}\n\nYou might need to do some import if it is not automatically done by IntelliJ\n\nimport net.minecraft.item.*;\n\n\n\nInside ModItems.java\, reduce the attack damage of your SaturnSword from 10 to 2.\nStart your Minecraft from intelliJ\nSummon any creature. For example\, to summon an enderman\, you can use the following command\n\n/summon minecraft:enderman\n\n\nTry hitting the creature using your Saturn Axe LEFT click (not RIGHT click). If you did it properly\, when you hit the enderman using the Saturn Axe\, the creature should have been burn by the Axe.\nIf it works\, change the code instead of target.setFire(5); do below and see what happen to the creature when you hit using the axe (LEFT click)\ntarget.setNoGravity(true);
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-with-java-6/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210228T090000
DTEND;TZID=America/Los_Angeles:20210228T100000
DTSTAMP:20260515T073638
CREATED:20210228T180435Z
LAST-MODIFIED:20210228T180435Z
UID:6468-1614502800-1614506400@www.ayclogic.com
SUMMARY:9 AM - Intro To Java
DESCRIPTION:Homework:\n\nAfter login is successful\, present this menu to user\n\nLogin successful\n1. Inbox\n2. Create a new email\nPlease enter your selection: 2\n\nCREATE NEW EMAIL\nTo: bill@gmail.com\nSubject: Bill you did not do your homework\nMessage: Bill you failed the class because you did not do your homework\n\nIn the EmailMain.java\n\nAdd List<Message> messages.\nAfter user create a new Email\, create a Message object and add it to the “messages” list.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-13/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR