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:20220212T100000
DTEND;TZID=America/Los_Angeles:20220212T110000
DTSTAMP:20260424T030850
CREATED:20220212T211037Z
LAST-MODIFIED:20220212T211037Z
UID:11558-1644660000-1644663600@www.ayclogic.com
SUMMARY:10 AM - Intro To Java - Gamas
DESCRIPTION:Homework\n\nWe continued with our Temperature Converter android application.\nMake the “Fahrenheit” and “Celcius” labels in the app bold and bigger and left alligned.
URL:https://www.ayclogic.com/event/10-am-intro-to-java-gamas-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T110000
DTEND;TZID=America/Los_Angeles:20220212T120000
DTSTAMP:20260424T030850
CREATED:20220212T050313Z
LAST-MODIFIED:20220212T050313Z
UID:11549-1644663600-1644667200@www.ayclogic.com
SUMMARY:SAT - 11 AM - Scratch 2 - Indo - Gamas
DESCRIPTION:Homework\n\ncontinue on your “How old are you?” project.\nAdd the code to this project so after the cat say “Hello Gamas welcome to AYCLOGIC!!”\, it will then ask “How old are you?”\nSave the answer to “age” variable.\nAnd then check if age is less than 13\, say “You are a kid”.\nif age is 13 or more than say “You are a teenager”.
URL:https://www.ayclogic.com/event/sat-11-am-scratch-2-indo-gamas-2/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T110000
DTEND;TZID=America/Los_Angeles:20220212T120000
DTSTAMP:20260424T030850
CREATED:20220212T200922Z
LAST-MODIFIED:20220212T200922Z
UID:11552-1644663600-1644667200@www.ayclogic.com
SUMMARY:11 AM - Scratch 1 - Abigail
DESCRIPTION:What we did today\n\nWe added a “best time” and “best player” score in Tunnel of Doom.\nWe continued working on the Birthday Card project.\n\nHomework\n\nDo pages 90-91 on your Pink Scratch Book\nChange the dialogue of the sharks to as if it was your birthday.\n(OPTIONAL) You can change the banner to “Happy Birthday (your name)”.
URL:https://www.ayclogic.com/event/11-am-scratch-1-abigail-10/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T120000
DTEND;TZID=America/Los_Angeles:20220212T130000
DTSTAMP:20260424T030850
CREATED:20220212T210708Z
LAST-MODIFIED:20220212T210708Z
UID:11556-1644667200-1644670800@www.ayclogic.com
SUMMARY:12 PM - Intro To Java - Gamas
DESCRIPTION:Homework\n\nCreate a new Java project in your IntelliJ. Name it SAT-12PM-EmailApplication\nCreate a new class EmailAccount.java with the following attributes: email\, password\, name;\nCreate a new class EmailSystem.java. This is going to be the starting point of your system.\nIn the EmailSystem\, create the run method and other methods necessarily to be able to do the following features below:\n\nWelcome to AYCLOGIC Email System.\n\nPlease select from below\n1. Create an Email Account\n2. Login\n3. List all Email Accounts\n4. Exit\nEnter your selection: 1\n\nCREATE EMAIL ACCOUNT\n1. Enter your name: Crystal\n2. Enter your email: crystal@gmail.com\n3. Enter your password: abcd\nYou have successfully created email account for Crystal.\n\nPlease select from below\n1. Create an Email Account\n2. Login\n3. List all Email Accounts\n4. Exit\nEnter your selection: 3\n\nThere are total of 3 email accounts in the system\n1. Gamas Chang - gamas@ayclogic.com\n2. Crystal - crystal@gmail.com\n3. Jessica Sunjoyo - jessica@ayclogic.com\n\nPlease select from below\n1. Create an Email Account\n2. Login\n3. List all Email Accounts\n4. Exit\nEnter your selection: 4\n\nThank you for using AYCLOGIC Email System.
URL:https://www.ayclogic.com/event/12-pm-intro-to-java-gamas-8/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T130000
DTEND;TZID=America/Los_Angeles:20220212T140000
DTSTAMP:20260424T030850
CREATED:20220212T224156Z
LAST-MODIFIED:20220212T224731Z
UID:11560-1644670800-1644674400@www.ayclogic.com
SUMMARY:1 PM - Python Game Development
DESCRIPTION:Today: \n\nWe went over the homework to rotate the shield.\nWe added animation to the exploding brick.\nWe oriented the bullet so it’s facing the correct direction using the angle passed by the turret.\n\nHomework: \n\nModify the Brick sprite constructor to add an additional parameter type that has value either WALL_FLAG or BORDER_WALL_FLAG.  When WALL_FLAG is passed in the constructor\, use the current logic to load the red brick image\, but when BORDER_WALL_FLAG is passed load a  different image\, “IronWall.png”.  You can find this image here: Or at gitlab here.\nModify the create_map method so that when the cell_type is a BORDER_WALL_FLAG\, then create a Brick is passed with the type parameter BORDER_WALL_FLAG\, but when it’s wall type  is WALL_FLAG\, then the Brick is created with the type parameter WALL_FLAG.  Add the bricks created with the border wall flag to a separate sprite group so that they can’t be destroyed by the bullets.\nModify the MAP variable in config.py so that the top side\, bottom side\, and left and right sides of the map have the BORDER_WALL_FLAG value. Make sure that these get created on the screen using the create_map method:\nBonus: move the bullet in the correct direction based on the direction parameter that gets passed in from the turret.  Also center the bullet so that when it’s created\, the center of the bullet is equal to the center of the turret.
URL:https://www.ayclogic.com/event/1-pm-python-game-development-48/
CATEGORIES:Advanced Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T140000
DTEND;TZID=America/Los_Angeles:20220212T150000
DTSTAMP:20260424T030850
CREATED:20220212T223947Z
LAST-MODIFIED:20220212T224000Z
UID:11561-1644674400-1644678000@www.ayclogic.com
SUMMARY:2 PM - Intro To Python - Gamas
DESCRIPTION:2nd Quiz 1 hour. 10% of the grade.
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-39/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T140000
DTEND;TZID=America/Los_Angeles:20220212T150000
DTSTAMP:20260424T030850
CREATED:20220212T225349Z
LAST-MODIFIED:20220212T225349Z
UID:11569-1644674400-1644678000@www.ayclogic.com
SUMMARY:2 PM Scratch Level 1 Alexander Lee
DESCRIPTION:Today We Did\n\nWe finished up our Fantastic Flowers project\, adding in the stalk and talking about my blocks more.\nWe also started the Cheese Chase project\, adding in the mouse controls.\n\nFor Homework\n\nDraw a sprite for the cheese and also create a sprite for your maze for the game.
URL:https://www.ayclogic.com/event/2-pm-scratch-level-1-alexander-lee-7/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T150000
DTEND;TZID=America/Los_Angeles:20220212T160000
DTSTAMP:20260424T030850
CREATED:20220213T000628Z
LAST-MODIFIED:20220213T000628Z
UID:11571-1644678000-1644681600@www.ayclogic.com
SUMMARY:3 PM - Intro To Java - Gamas
DESCRIPTION:Today We Do\n\nWe continued with SchoolApplication.\nWe added listAllStudents() and listAllTeachers()\nWe check if our list is empty to print “We don’t have any students in our system yet.”\nWe added findStudent()\n\nHomework\n\nChange the code in listAllTeachers() so when the teacherList is empty\, it will print “We don’t have any teachers in our system yet”.\nAdd code to enable “5. Find teacher”. Try to do it without copy and paste.\nInside the findStudent() if the program cannot find the student\, print “<name> does not exist in our system.”
URL:https://www.ayclogic.com/event/3-pm-intro-to-java-gamas-6/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T150000
DTEND;TZID=America/Los_Angeles:20220212T160000
DTSTAMP:20260424T030850
CREATED:20220213T002035Z
LAST-MODIFIED:20220213T002314Z
UID:11573-1644678000-1644681600@www.ayclogic.com
SUMMARY:3 PM - Scratch Level 2 - Allison
DESCRIPTION:Today we:\n\nContinued the Cheese Chase project\nCoded the Cheese sprite to go to a random place when the Green Flag is clicked\nCoded the Cheese sprite to play the sound “pop” when it touches the Mouse sprite\nAdded the Ghost sprite and coded it to follow the mouse while disappearing and appearing\nCreated the Maze sprite\n\nHomework:\n\nFind your pink Scratch book in case we need it in future classes\nCode the Mouse sprite to be 35% of its original size and Ghost sprite to be 50% of their original size\nCode the Maze sprite to go to the center of the screen\nCode the Maze sprite to go to the back layer\nCreate a Game Over Banner sprite and code it to hide when the Green Flag is clicked\nContact us if you have any questions or need any help
URL:https://www.ayclogic.com/event/3-pm-scratch-level-2-allison-10/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T160000
DTEND;TZID=America/Los_Angeles:20220212T170000
DTSTAMP:20260424T030850
CREATED:20220213T005616Z
LAST-MODIFIED:20220213T005616Z
UID:11579-1644681600-1644685200@www.ayclogic.com
SUMMARY:4PM - Object Oriented Python - Latisha
DESCRIPTION:Today We Did:\n\nLearned about Dictionaries\n\nHomework:\n\nDo Page 92 to 97 and Page 99 TRY IT YOURSELF 6-1 and 6-2 from the textbook in a file called Feb12_DictionaryHomework.py\n\nIf you have any questions\, please send an email to latisha@ayclogic.com
URL:https://www.ayclogic.com/event/4pm-object-oriented-python-latisha/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T163000
DTEND;TZID=America/Los_Angeles:20220212T173000
DTSTAMP:20260424T030850
CREATED:20220214T062953Z
LAST-MODIFIED:20220214T063059Z
UID:11588-1644683400-1644687000@www.ayclogic.com
SUMMARY:4:30 PM - Scratch Level 1
DESCRIPTION:Today we:\n\nContinued the Animal Crossing project\nAdded a sprite and coded it to move from the right edge to the left edge. When it reaches the left edge\, it will say “Hello!”\nAdded a sprite and coded it to glide across the screen\nCoded a sprite to say “Hey” when it touches the top edge\nFinished the Animal Crossing project\n\nHomework Pt. 1:\n\nCreate a new project and title it “Birthday Card”\nDelete the Cat sprite\nAdd a Button1 sprite. Code the Button1 sprite to go to the middle of the screen when the Green Flag is clicked. Code the Button1 sprite to forever change colors.\nAdd a Cake sprite. Code the Cake sprite to go to the top of the screen when the Green Flag is clicked. Afterwards\, code the Cake sprite to glide to the bottom of the screen.\n\nHomework Pt. 2:\n\nClick on the link: Labeled Coordinate Plane\nTake a look at the four red coordinates. Write these coordinates on your coordinate plane paper\nIf you want to take a look at the Animal Crossing project we did in class\, here is the link: Animal Crossing\nContact gamas@ayclogic.com or allison.682.lee@gmail.com if you have any questions or need any help
URL:https://www.ayclogic.com/event/430-pm-scratch-level-1-15/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T170000
DTEND;TZID=America/Los_Angeles:20220212T180000
DTSTAMP:20260424T030850
CREATED:20220213T015441Z
LAST-MODIFIED:20220213T015441Z
UID:11581-1644685200-1644688800@www.ayclogic.com
SUMMARY:5 PM - Intro To Java - Gamas
DESCRIPTION:Today We Do\nHomework\n\nContinue with SAT-5PM-EmailApplication\nAdd the code to do “1. Create an Email Account”\nAdd the code to do “3. List all Email Account”\n\nPlease select from below\n1. Create an Email Account\n2. Login\n3. List all Email Accounts\n4. Exit\nEnter your selection:1\n\nCREATE EMAIL ACCOUNT\n1. Enter your name: Aidan\n2. Enter your email: aidan@ayclogic.com\n3. Enter your password: abcd\nYou have successfully created email account for Aidan.
URL:https://www.ayclogic.com/event/5-pm-intro-to-java-gamas-7/
CATEGORIES:Introduction To Java,Java
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T170000
DTEND;TZID=America/Los_Angeles:20220212T180000
DTSTAMP:20260424T030850
CREATED:20220213T031114Z
LAST-MODIFIED:20220213T031114Z
UID:11584-1644685200-1644688800@www.ayclogic.com
SUMMARY:5 PM - Python OOP - David
DESCRIPTION:Topics covered in class today:\n\nWe reviewed classes\, as well as learned how to use class attributes outside of the class.\n\nHomework:\n\nDon’t worry about trying to install PyCharm\, instead\, I will cover how to do this at the beginning of the next class.\nUsing the restaurant class we’ve been working with\, do page 167\, 9-4
URL:https://www.ayclogic.com/event/5-pm-python-oop-david-6/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220212T180000
DTEND;TZID=America/Los_Angeles:20220212T190000
DTSTAMP:20260424T030850
CREATED:20220213T031336Z
LAST-MODIFIED:20220213T031336Z
UID:11586-1644688800-1644692400@www.ayclogic.com
SUMMARY:6 PM - Intro to Python - David
DESCRIPTION:Topics covered in class today: \n\nWe reviewed the homework\, covering random.choice and the rest of the star wars problems\nStarted learning how to create the hangman game and checking if a character is in a word\n\nHomework: \n\nTry to finish the logic in our hangman game for when the user inputs a character that is not in the word. (for example\, if the user selects “e” which is not in “dragon”). If the game ends because the user selected too many incorrect characters\, print a message saying “You have lost the game! The word was {word}”
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-david-18/
END:VEVENT
END:VCALENDAR