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:20210314T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20211107T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210410T140000
DTEND;TZID=America/Los_Angeles:20210410T150000
DTSTAMP:20260515T061041
CREATED:20210411T022249Z
LAST-MODIFIED:20210411T022249Z
UID:7035-1618063200-1618066800@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding with Java
DESCRIPTION:We went over how to generate your custom saturn ore in the minecraft world.
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-with-java-10/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210417T140000
DTEND;TZID=America/Los_Angeles:20210417T150000
DTSTAMP:20260515T061041
CREATED:20210418T022808Z
LAST-MODIFIED:20210418T022808Z
UID:7163-1618668000-1618671600@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding With Java
DESCRIPTION:We created Saturn Armor.\nWe based Saturn Armor using Netherite armor.\nHomework:\n\nchange saturn_layer_1.png in your favorite image editor so it will look more like saturn_breastplate.png.
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-with-java-11/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210418T090000
DTEND;TZID=America/Los_Angeles:20210418T100000
DTSTAMP:20260515T061041
CREATED:20210418T171621Z
LAST-MODIFIED:20210418T172318Z
UID:7168-1618736400-1618740000@www.ayclogic.com
SUMMARY:9 AM - Intro To Java
DESCRIPTION:We reviewed the quiz result.\nWe started Monster System until displaying the first menu.\nHomework:\n\ncontinue with Monster System program according to https://www.ayclogic.com/java-exercise-monster-system/\nAlso soon we will be doing Android development (mobile app). Please go here and download Android Studio: https://developer.android.com/studio
URL:https://www.ayclogic.com/event/9-am-intro-to-java-17/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210423T180000
DTEND;TZID=America/Los_Angeles:20210423T190000
DTSTAMP:20260515T061041
CREATED:20210424T042757Z
LAST-MODIFIED:20210424T042757Z
UID:7263-1619200800-1619204400@www.ayclogic.com
SUMMARY:6 PM - Python Game Development
DESCRIPTION:We continued with Shoot Balloon project.\n\nWe added collision detection between Target and Balloon.\nWe added explode.py sprite.\n\n\nHomework:\n\nWhen balloon pop\, we need to display Explode sprite.\nAdd another sprite buy.py and use the assets/bug/flying/frame-1.png for the image. Make it move to the left or right according to self.direction parameter and make it appear on the screen
URL:https://www.ayclogic.com/event/6-pm-python-game-development-126/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210424T140000
DTEND;TZID=America/Los_Angeles:20210424T150000
DTSTAMP:20260515T061041
CREATED:20210425T022718Z
LAST-MODIFIED:20210425T022718Z
UID:7281-1619272800-1619276400@www.ayclogic.com
SUMMARY:2 PM - Minecraft Modding using Java
DESCRIPTION:We added custom saturn breastplate\, helmet\, legging and boots.\nHomework:\n\nMake recipes for all of 4 of these new items. So we can make these items via crafting table. The Recipes shape can be up to you\, but it needs to use at least 1 Saturn item.
URL:https://www.ayclogic.com/event/2-pm-minecraft-modding-using-java/
CATEGORIES:Java,Minecraft Modding With Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20210425T090000
DTEND;TZID=America/Los_Angeles:20210425T100000
DTSTAMP:20260515T061041
CREATED:20210425T173940Z
LAST-MODIFIED:20210425T173940Z
UID:7294-1619341200-1619344800@www.ayclogic.com
SUMMARY:9 AM - Intro To Java
DESCRIPTION:We continued with MonsterSystem program. We added the heal\, damage and exit feature.\nWe installed Android Studio.\nHomework:\n\nContinue with MonsterSystem program. Inside Monster.java do the following: create 3 methods:\n\nrangeDamage(int damage)\nmelleDamage(int damage)\nmagicDamage(int damage\, String magicAttackType)\n\n\nFor now in all of these 3 new methods\, just do the same thing as we did with the damage(int damage) method\, which is just to reduce the monster’s health by the damage point. Next week we will learn on how to improve this using inheritance.\nChange MonsterSystem second menu to be like this\n\n\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Melle attack\n3. Range attack\n4. Heal\nEnter your selection: 2\n\nHow much melle damage you want to do to Troll: 30\nYou damaged the Troll and it has 10 healths remaining.\n\nFor each of the attacks above\, call the appropriate method in Monster. For example\, if the user selected “2” for melle attack\, you need to call melleDamage(int damage).\nFor Magic attack\, you need to ask the user 2 question\, the damage and magic type. Look at below for example:\n\n\nWhat do you want to do with the Troll:\n1. Magic attack\n2. Melle attack\n3. Range attack\n4. Heal\nEnter your selection: 2\n\nWhat kind of magic attack you want to do:\n1. Fire magic - 10 damage\n2. Water magic - 10 damage\n3. Earth magic - 12 damage\n4. Wind magic - 8 damage\nEnter your selection: 1\nYou damaged the Troll and it has 10 healths remaining.
URL:https://www.ayclogic.com/event/9-am-intro-to-java-18/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR