<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.paulbui.net/wiki/index.php?action=history&amp;feed=atom&amp;title=IBCS2_-_1920_-_September</id>
	<title>IBCS2 - 1920 - September - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.paulbui.net/wiki/index.php?action=history&amp;feed=atom&amp;title=IBCS2_-_1920_-_September"/>
	<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1920_-_September&amp;action=history"/>
	<updated>2026-06-13T01:51:30Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.31.8</generator>
	<entry>
		<id>https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1920_-_September&amp;diff=15836&amp;oldid=prev</id>
		<title>Admin: Protected &quot;IBCS2 - 1920 - September&quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading]</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1920_-_September&amp;diff=15836&amp;oldid=prev"/>
		<updated>2019-10-04T14:34:24Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wl/IBCS2_-_1920_-_September&quot; title=&quot;IBCS2 - 1920 - September&quot;&gt;IBCS2 - 1920 - September&lt;/a&gt;&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading]&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 14:34, 4 October 2019&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
	<entry>
		<id>https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1920_-_September&amp;diff=15835&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;== Friday (9/27/19) == &#039;&#039;&#039;Agenda:&#039;&#039;&#039; * Poker Hands HW reminder * Stacks Quiz on &#039;&#039;&#039;Tuesday (10/1/19)&#039;&#039;&#039; ** Be able to describe the characteristics of a stack ** Be able to exp...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.paulbui.net/wiki/index.php?title=IBCS2_-_1920_-_September&amp;diff=15835&amp;oldid=prev"/>
		<updated>2019-10-04T14:32:25Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Friday (9/27/19) == &amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039; * Poker Hands HW reminder * Stacks Quiz on &amp;#039;&amp;#039;&amp;#039;Tuesday (10/1/19)&amp;#039;&amp;#039;&amp;#039; ** Be able to describe the characteristics of a stack ** Be able to exp...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Friday (9/27/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Poker Hands HW reminder&lt;br /&gt;
* Stacks Quiz on &amp;#039;&amp;#039;&amp;#039;Tuesday (10/1/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Be able to describe the characteristics of a stack&lt;br /&gt;
** Be able to explain the operations of a stack&lt;br /&gt;
** Be able to describe different stack applications&lt;br /&gt;
** If given a list or an array, be able to explain their use as stacks&lt;br /&gt;
** Be able to implement the programming code for a stack that uses an array&lt;br /&gt;
* Stacks quiz practice assignment - study the static stack code prior to attempting this assignment.  Try *not* to look at the old code. Try *not* to look at the visualization tool either&lt;br /&gt;
*# Create a new stack project&lt;br /&gt;
*# Create two files: StringStack.java and StackMain.java&lt;br /&gt;
*# Implement a static stack that stores String objects&lt;br /&gt;
*# You must implement and test the following methods:&lt;br /&gt;
*#* StringStack() constructors&lt;br /&gt;
*#* void push(String s) - pushes s onto the stack if it is not full&lt;br /&gt;
*#* String pop() - pops the top from the stack and returns it, return null if stack is empty&lt;br /&gt;
*#* String top() - returns the current top, return null if stack is empty&lt;br /&gt;
*#* isEmpty() - returns true if the stack is empty, false otherwise&lt;br /&gt;
*#* isFull() - returns true if the stack is full, false otherwise&lt;br /&gt;
*#* toString() - returns a String that contains all elements of the stack (top down with newlines)&lt;br /&gt;
** Write a main() that tests everything in your stack&lt;br /&gt;
&lt;br /&gt;
== [https://docs.google.com/presentation/d/1PoA335gHnDCoWpGEpgHLDDaVzxjZ7fdE-oDaQaiENaQ/edit?usp=sharing Back to School Night] ==&lt;br /&gt;
&lt;br /&gt;
== Wednesday (9/25/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Here is a [https://docs.google.com/document/d/13zszogl61lWLjLoY8z_UPkiWlpvUgtUHd2eNCRf9sbI/edit?usp=sharing list of cards] and the integer values to create them&lt;br /&gt;
* Here are several [https://docs.google.com/document/d/11dQ7uXnSP1EWElcm5T57-2-ntDHSXsbo2bG61lEuj74/edit?usp=sharing test cases] and the integer values to create them. Note, I&amp;#039;m only give you test cases for the first few poker hands, you should be able to create your own for the rest&lt;br /&gt;
* Complete Poker Hands: Part 1&lt;br /&gt;
* Complete Poker Hands: Part 2&lt;br /&gt;
* Introduction to Stacks - [https://docs.google.com/presentation/d/1MQGdYjEFwKBwT9WJcb7ITlPRcgCOC2Py-Lk31QGEzb0/edit?usp=sharing Stacks slides]&lt;br /&gt;
** Be able to describe the characteristics of a stack&lt;br /&gt;
** Be able to explain the operations of a stack&lt;br /&gt;
** Be able to describe different stack applications&lt;br /&gt;
** If given a list or an array, be able to explain their use as stacks&lt;br /&gt;
** Be able to implement the programming code for a stack that uses an array&lt;br /&gt;
* [https://www.cs.usfca.edu/~galles/visualization/StackArray.html Stack array implementation]&lt;br /&gt;
* Study the code in [[Media:Stack.java]] and [[Media:StackMain.java]]&lt;br /&gt;
** Stack code walk-through.  We&amp;#039;ll make a couple edits so it matches this [https://www.cs.usfca.edu/~galles/visualization/StackArray.html Stack array implementation]&lt;br /&gt;
* Stack quiz in your future...&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homework:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete Poker Hands: Part 1&lt;br /&gt;
* Complete Poker Hands: Part 2&lt;br /&gt;
&lt;br /&gt;
== Monday (9/23/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Basic Card[] methods - implement the following, test, and demo for credit&lt;br /&gt;
** void printCards(Card[] cards)&lt;br /&gt;
*** Use a for loop to iterate through all the cards, and print them to the screen&lt;br /&gt;
** void shuffle(Card[] cards)&lt;br /&gt;
**# Write a for loop that runs a bunch of times (e.g. 10000)&lt;br /&gt;
**# Generate two random numbers from 0 to the length of cards&lt;br /&gt;
**# Swap the cards at the locations of the two random numbers&lt;br /&gt;
** void sort(Card[] cards)&lt;br /&gt;
*** Implement either selection sort or bubble sort to sort your Card[] array.  You can literally copy and paste your sorting code from before, and then tweak it to use the value of the cards (i.e. getValue())&lt;br /&gt;
*** You should be able to test your code by generating a bunch of cards, sorting it, and then printing it out.  They should display in order of value.&lt;br /&gt;
* Work on Poker Hands: Part 1&lt;br /&gt;
* Work on Poker Hands: Part 2&lt;br /&gt;
&lt;br /&gt;
== Thursday (9/19/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Class Construction Quiz&lt;br /&gt;
* Intro Poker Hand Methods&lt;br /&gt;
** int getHighCardValue(Card c0, Card c1, Card c2, Card c3, Card c4)&lt;br /&gt;
*** returns the value of the highest Card&lt;br /&gt;
** Do not continue with the other poker hand methods like above b/c we will be making new versions using arrays!&lt;br /&gt;
* Introduction to Arrays of Objects&lt;br /&gt;
** Walkthrough -- take notes!  Pay attention!&lt;br /&gt;
* String[] arrays&lt;br /&gt;
** String comparison methods review&lt;br /&gt;
** Sort a String[]&lt;br /&gt;
* Basic Card[] methods - implement the following, test, and demo for credit&lt;br /&gt;
** void printCards(Card[] cards)&lt;br /&gt;
*** Use a for loop to iterate through all the cards, and print them to the screen&lt;br /&gt;
** void shuffle(Card[] cards)&lt;br /&gt;
**# Write a for loop that runs a bunch of times (e.g. 10000)&lt;br /&gt;
**# Generate two random numbers from 0 to the length of cards&lt;br /&gt;
**# Swap the cards at the locations of the two random numbers&lt;br /&gt;
** void sort(Card[] cards)&lt;br /&gt;
*** Implement either selection sort or bubble sort to sort your Card[] array.  You can literally copy and paste your sorting code from before, and then tweak it to use the value of the cards (i.e. getValue())&lt;br /&gt;
*** You should be able to test your code by generating a bunch of cards, sorting it, and then printing it out.  They should display in order of value.&lt;br /&gt;
&lt;br /&gt;
== Tuesday (9/17/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Algorithm Identification Quiz 1&lt;br /&gt;
* Sorting Identification Quiz 1&lt;br /&gt;
* Class Construction Quiz on &amp;#039;&amp;#039;&amp;#039;Thursday (9/19/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Repl.it class construction assignments progress check&lt;br /&gt;
* Intro Poker Hand Methods&lt;br /&gt;
** int getHighCardValue(Card c0, Card c1, Card c2, Card, c3, Card c4)&lt;br /&gt;
*** returns the value of the highest Card&lt;br /&gt;
** Do not continue with the other poker hand methods like above b/c we will be making new versions using arrays!&lt;br /&gt;
* Introduction to Arrays of Objects&lt;br /&gt;
** Walkthrough -- take notes!  Pay attention!&lt;br /&gt;
* Basic Card[] methods - implement the following, test, and demo for credit&lt;br /&gt;
** void printCards(Card[] cards) - we will do this one together&lt;br /&gt;
*** Use a for loop to iterate through all the cards, and print them to the screen&lt;br /&gt;
** void shuffle(Card[] cards)&lt;br /&gt;
**# Write a for loop that runs a bunch of times (e.g. 10000)&lt;br /&gt;
**# Generate two random numbers from 0 to the length of cards&lt;br /&gt;
**# Swap the cards at the locations of the two random numbers&lt;br /&gt;
** void sort(Card[] cards)&lt;br /&gt;
*** Implement either selection sort or bubble sort to sort your Card[] array.  You can literally copy and paste your sorting code from before, and then tweak it to use the value of the cards (i.e. getValue())&lt;br /&gt;
*** You should be able to test your code by generating a bunch of cards, sorting it, and then printing it out.  They should display in order of value.&lt;br /&gt;
&lt;br /&gt;
== Friday (9/13/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Search &amp;amp; Sorting Algorithms Quiz on &amp;#039;&amp;#039;&amp;#039;Tuesday (9/17/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** You should be able to identify the algorithm visually&lt;br /&gt;
** You should be able to identify the algorithm if given code&lt;br /&gt;
** You should be able to fill in missing lines of code for any algorithms&lt;br /&gt;
* Java Objects Slides&lt;br /&gt;
** [https://docs.google.com/presentation/d/1hb_8wMUlQQl7W-JF2f3gax021yDHLkLENJYy0fUMGy8/edit?usp=sharing Classes (Java) slides]&lt;br /&gt;
** [https://docs.google.com/presentation/d/1ks5B3fsnGCX_utk_Adxt1cQtPtUsNtNVENb9swCaHpo/edit?usp=sharing Object Usage (Java) slides]&lt;br /&gt;
** [https://docs.google.com/presentation/d/1Vq2mTZRJIBkwpsHqFmKRICpUOoqOOSKSyRKWMGKZovY/edit?usp=sharing Object-Oriented Programming (Java) slides]&lt;br /&gt;
* Point class assignment - complete in NetBeans or repl.it (*must* submit to repl.it for auto-testing)&lt;br /&gt;
*# You will create two java files: &amp;#039;&amp;#039;&amp;#039;Point.java&amp;#039;&amp;#039;&amp;#039; and &amp;#039;&amp;#039;&amp;#039;Main.java&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*#* &amp;#039;&amp;#039;&amp;#039;Point.java&amp;#039;&amp;#039;&amp;#039; - the Point class definition will be here&lt;br /&gt;
*#* &amp;#039;&amp;#039;&amp;#039;Main.java&amp;#039;&amp;#039;&amp;#039; - only the main() method will be located here&lt;br /&gt;
*# Declare and initialize the following &amp;#039;&amp;#039;&amp;#039;private&amp;#039;&amp;#039;&amp;#039; attributes in the Point class&lt;br /&gt;
*#* double x = 0.0&lt;br /&gt;
*#* double y = 0.0&lt;br /&gt;
*# Define two Point() constructors:&lt;br /&gt;
*#* default constructor: Point()&lt;br /&gt;
*#* specific constructor Point(double newX, double newY)&lt;br /&gt;
*# Define the following &amp;#039;&amp;#039;&amp;#039;public&amp;#039;&amp;#039;&amp;#039; methods in the Point class&lt;br /&gt;
*#* double getX() - returns the x-coordinate&lt;br /&gt;
*#* double getY() - returns the y-coordinate&lt;br /&gt;
*#* void setX(double newX) - sets the x-coordinate to the new x-coordinate parameter&lt;br /&gt;
*#* void setY(double newY) - sets the y-coordinate to the new y-coordinate parameter&lt;br /&gt;
*#* String toString() - returns a String representation of the Point object&lt;br /&gt;
*# Go to your Main.java file to test out your Point class&lt;br /&gt;
*# In the main method, create several new instances of Point objects&lt;br /&gt;
*# Print out each of your Point objects&lt;br /&gt;
*# Define a static method in Main.java named &amp;#039;&amp;#039;&amp;#039;double slope(Point p1, Point p2)&amp;#039;&amp;#039;&amp;#039; - returns the slope between p1 and p2&lt;br /&gt;
*# Test and print out your slope method when you use it with your instantiated Point objects in the main() method&lt;br /&gt;
* Complete the other repl.it assignments:&lt;br /&gt;
** Car class&lt;br /&gt;
** Vector class&lt;br /&gt;
** Card class&lt;br /&gt;
&lt;br /&gt;
== Wednesday (9/11/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Group sorting activity&lt;br /&gt;
*# Form 3-4 person groups&lt;br /&gt;
*# Receive playing cards&lt;br /&gt;
*# With your group, document an algorithm (steps) of how you sort the cards out&lt;br /&gt;
*# Paste your numbered steps in the appropriate document:&lt;br /&gt;
*#* [https://docs.google.com/document/d/1ydtes6Vppf66Xk1z2yC2N_kom2OnjdrAfmeWh9_4t70/edit?usp=sharing Period 4]&lt;br /&gt;
*#* [https://docs.google.com/document/d/1RFuWUM8vp-U3B3bdzEz8XI1f7-fWK1eTuFKdMjQ7Vro/edit?usp=sharing Period 6]&lt;br /&gt;
* Introduction to Sorting&lt;br /&gt;
** [https://docs.google.com/presentation/d/1Y5JOINM2w744nqimZf2iVuFpi6N6gM2B7GM4ArGjChQ/edit?usp=sharing Sorting slides]&lt;br /&gt;
* Selection sort assignment in repl.it&lt;br /&gt;
* Bubble sort assignment in repl.it&lt;br /&gt;
* Internal Assessment meetings&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Challenge:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Implement quick sort yourself&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homework:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete both Selection Sort and Bubble Sort&lt;br /&gt;
&lt;br /&gt;
== Monday (9/9/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete the Find Min/Max repl.it&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Submit Guessing Game to repl.it&lt;br /&gt;
* [http://introcs.cs.princeton.edu/java/11cheatsheet/ Java Cheatsheet]&lt;br /&gt;
* [https://docs.google.com/presentation/d/1L-tbBp51YuUoTWldXFBr6JGcyHF5sBy_flfPGiqlVAQ/edit?usp=sharing Java Methods]&lt;br /&gt;
* [https://docs.google.com/a/apsva.us/presentation/d/1Ayzvd1q-6RwZKplUtLHDCCLyO5XIR5kyeKUi8-htErY/edit?usp=sharing Java Arrays]&lt;br /&gt;
** Additional review material: [[Media:IntroArrays.ppt]]&lt;br /&gt;
* [https://docs.google.com/presentation/d/1GLpwZbqLcyix2WHqS9lLJT3qCeIeWGQ9UDwr6f9VgoE/edit?usp=sharing Searching slides]&lt;br /&gt;
** Linear (Sequential) Search&lt;br /&gt;
** Binary Search&lt;br /&gt;
** Complete the LS and BS repl.it assignments&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homework:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* 1-2 sentence description of your Internal Assessment idea in Canvas&lt;br /&gt;
&lt;br /&gt;
== Thursday (9/5/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warmup:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete the Student Survey in Canvas&lt;br /&gt;
* Complete the Abstract Data Structures Pre-assessment in Canvas&lt;br /&gt;
** Do not guess if you do not know the answer&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[IBCS2 Summer Assignment]] reminder - &amp;#039;&amp;#039;&amp;#039;due Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Misc Logistics:&lt;br /&gt;
** Mr. Bui has C Lunch&lt;br /&gt;
* [[IB Computer Science II Syllabus]]&lt;br /&gt;
** Complete online syllabus agreement form by &amp;#039;&amp;#039;&amp;#039;Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Extra credit demonstrations?&lt;br /&gt;
** Why did Mr. Bui give this task?&lt;br /&gt;
* App Catalog (AirWatch) installers&lt;br /&gt;
** Java installer(s)&lt;br /&gt;
* Java Review - [http://introcs.cs.princeton.edu/java/11cheatsheet/ Java Cheatsheet]&lt;br /&gt;
* Recreate the [[Guessing Game Assignment]] in Java&lt;br /&gt;
** You can always refer to the [http://introcs.cs.princeton.edu/java/11cheatsheet/ Java Programming Cheatsheet]&lt;br /&gt;
** This exercises should take you no more than 10-15 minutes&lt;br /&gt;
* [[Internal Assessment]]&lt;br /&gt;
** Read the [[Media:IBCS_InternalAssessmentGuidelines.pdf]]&lt;br /&gt;
** Begin thinking/working on Criterion A&lt;br /&gt;
* Repl.it classroom&lt;br /&gt;
* Join our class: https://repl.it/classroom/invite/d4LbLcD&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homework:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[IBCS2 Summer Assignment]] due &amp;#039;&amp;#039;&amp;#039;Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[IB Computer Science II Syllabus]] agreement form by &amp;#039;&amp;#039;&amp;#039;Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Complete the Java guessing game assignment&lt;br /&gt;
&lt;br /&gt;
== Tuesday (9/3/19) ==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Agenda:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [[IBCS2 Summer Assignment]] reminder - &amp;#039;&amp;#039;&amp;#039;due Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Update your profile&amp;#039;s last name so that it follows the following naming convention: # - Last Name (please note the spacing)&lt;br /&gt;
* Re-introductions &amp;amp; attendance&lt;br /&gt;
** [https://docs.google.com/presentation/d/1Nzo-2anihJvunXw6plSr3pdw9mS26Mv0CZLT-inhGoc/edit?usp=sharing About Me]&lt;br /&gt;
* [[IB Computer Science II Syllabus]]&lt;br /&gt;
* Complete syllabus agreement assignment in Canvas by &amp;#039;&amp;#039;&amp;#039;Monday (9/9/19)&amp;#039;&amp;#039;&amp;#039;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>