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:20190310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20191103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T090000
DTEND;TZID=America/Los_Angeles:20190126T100000
DTSTAMP:20260621T114906
CREATED:20190126T175130Z
LAST-MODIFIED:20190126T180008Z
UID:678-1548493200-1548496800@www.ayclogic.com
SUMMARY:9AM Scratch Level 2
DESCRIPTION:We continued with Cheese Chase project until page 66.\nHomeworks:\n\nFinish the project until page 66.\nCreate a new sprite name it Maze2. This is the second level maze.\nCreate a new sprite name it Levels. This should have 2 costumes:\n\none costume show be a small banner that says Level1\none costume show be a small banner that says Level2\n\n\nCreate a new Variable name it ghostSpeed.
URL:https://www.ayclogic.com/event/9am-scratch-level-2-7/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T100000
DTEND;TZID=America/Los_Angeles:20190126T110000
DTSTAMP:20260621T114906
CREATED:20190126T185727Z
LAST-MODIFIED:20190126T185727Z
UID:682-1548496800-1548500400@www.ayclogic.com
SUMMARY:10AM Scratch Level 2
DESCRIPTION:We went over the Test Level 1 result.\nWe started Spaceship 2.0 project by adding fireball.\nHomework:\n\nFind a fireball image in the internet\nChange the costume of the “Fireball” sprite into this new image that you found on the Internet.\nAdd some script to the Fireball sprite so when it hits the top of the screen it will delete this clone. Look at Virtual Snow project.\nCreate a new variable called FireballRemaining.
URL:https://www.ayclogic.com/event/10am-scratch-level-2/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T110000
DTEND;TZID=America/Los_Angeles:20190126T120000
DTSTAMP:20260621T114906
CREATED:20190126T200319Z
LAST-MODIFIED:20190126T214904Z
UID:684-1548500400-1548504000@www.ayclogic.com
SUMMARY:11AM Scratch Level 1
DESCRIPTION:We went over the difference between Scratch 2.0 and 3.0.\nWe started Tunnel of Doom project.\nHomeworks:\n\nComplete Tunnel of Doom project in page 130 to 132.
URL:https://www.ayclogic.com/event/11am-scratch-level-1-8/
CATEGORIES:Scratch Class,Scratch Class Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T140000
DTEND;TZID=America/Los_Angeles:20190126T150000
DTSTAMP:20260621T114906
CREATED:20190126T225651Z
LAST-MODIFIED:20190126T225651Z
UID:686-1548511200-1548514800@www.ayclogic.com
SUMMARY:2PM Scratch Level 2
DESCRIPTION:We completed Cheese Chase project with multiple levels.\nWe started Circle Wars project from page 74.\nHomeworks:\n\nContinue the project until page 82
URL:https://www.ayclogic.com/event/2pm-scratch-level-2-10/
CATEGORIES:Scratch Class,Scratch Class Level 2
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T150000
DTEND;TZID=America/Los_Angeles:20190126T160000
DTSTAMP:20260621T114906
CREATED:20190127T001656Z
LAST-MODIFIED:20190127T002424Z
UID:688-1548514800-1548518400@www.ayclogic.com
SUMMARY:3PM Python Level 1
DESCRIPTION:We review variables and their data types.\nWe go over “Making Decisions” chapter learning about conditions\, conditional operators (<\, >\, == and !=).\nWe learn about IF\, IF ELSE and IF ELIF statements.\nHomeworks:\n\nCreate a program (making_decisions_jan_26.py) that will do the following:\n\nAsk user “Give me your age? “\nIf the user enters 0 print “You are a newborn baby”.\nIf the user enters any number smaller than 4 then print “You are a toddler”.\nIf the user enters any number smaller than 13 then print “You are a kid”.\nIf the user enters any number smaller than 20 then print “You are a teenager”.\nIf the user enters any number smaller than 40 then print “You are an adult”.\nIf the user enters any number greater than 40 then print “Dude!! You are old.”.\n\n\nWhen you take input from the shell\, this input is typed String. You cannot compare String with a number. You first have to convert the input into a number by using int(<variable>). This is important to do your homework. For example\,\n\n\nnumber = input('Enter a number')\nif int(number) < 5:\n   print('That is a small number.')
URL:https://www.ayclogic.com/event/3pm-python-level-1-6/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190126T180000
DTEND;TZID=America/Los_Angeles:20190126T190000
DTSTAMP:20260621T114906
CREATED:20190127T030757Z
LAST-MODIFIED:20190127T033413Z
UID:691-1548525600-1548529200@www.ayclogic.com
SUMMARY:6PM Python Level 1
DESCRIPTION:We went over Python Level 1 Quiz.\nHomeworks:\n\nCreate a program (making_decisions_jan_26.py) that will do the following:\n\nAsk user “Give me your age? “\nIf the user enters 0 print “You are a newborn baby”.\nIf the user enters any number smaller than 4 then print “You are a toddler”.\nIf the user enters any number smaller than 13 then print “You are a kid”.\nIf the user enters any number smaller than 20 then print “You are a teenager”.\nIf the user enters any number smaller than 40 then print “You are an adult”.\nIf the user enters any number greater than 40 then print “Dude!! You are old.”.\n\n\nCreate a function that takes 2 numbers and adds them together and returns the result. Print the return result to the screen.\nCreate a function that takes three parameters (param1\, param2\, param3). Combine them into one string and print the combined string inside the function.\nFix below broken code\n\n\n\n\nfirstName = 'John'\nlastName = 'Smith'\nprint(firstName+' '+lastname)\n\n\nif number > 20\n    print('Small number'\nelse\n    print('Big number')
URL:https://www.ayclogic.com/event/6pm-python-level-1-12/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR