├── .DS_Store
├── .gitignore
├── 1-10-2025
├── LabWork
│ └── EX
│ │ ├── .gitignore
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── dataSources.xml
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── libraries
│ │ │ └── mysql_connector_java_8_0_16.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ ├── sqldialects.xml
│ │ └── vcs.xml
│ │ ├── EX.iml
│ │ ├── lib
│ │ └── mysql-connector-java-8.0.16.jar
│ │ ├── out
│ │ └── production
│ │ │ └── EX
│ │ │ └── MainDir
│ │ │ ├── Beans
│ │ │ ├── Module
│ │ │ │ └── Module.class
│ │ │ └── Teacher
│ │ │ │ └── Teacher.class
│ │ │ ├── MessagesBundle.properties
│ │ │ ├── MessagesBundle_de_DE.properties
│ │ │ ├── UI
│ │ │ ├── UIController
│ │ │ │ ├── HomeUIController.class
│ │ │ │ ├── InsertModuleUIController.class
│ │ │ │ ├── InsertTeacherUIController.class
│ │ │ │ ├── ModuleIndexUIController.class
│ │ │ │ ├── TeacherIndexUIController.class
│ │ │ │ ├── UpdateModuleUIController.class
│ │ │ │ └── UpdateTeacherUIController.class
│ │ │ └── fxmlAndMain
│ │ │ │ ├── Home.fxml
│ │ │ │ ├── InsertModuleUI.fxml
│ │ │ │ ├── InsertTeacherUI.fxml
│ │ │ │ ├── ManagementAppUIMain.class
│ │ │ │ ├── ModuleIndexUI.fxml
│ │ │ │ ├── Navigator.class
│ │ │ │ ├── TeacherIndexUI.fxml
│ │ │ │ ├── UpdateModuleUI.fxml
│ │ │ │ └── UpdateTeacherUI.fxml
│ │ │ ├── dbservice
│ │ │ ├── MySQLService.class
│ │ │ └── module.sql
│ │ │ └── i18n_translation_handler
│ │ │ └── Translation.class
│ │ └── src
│ │ └── MainDir
│ │ ├── Beans
│ │ ├── Module
│ │ │ └── Module.java
│ │ └── Teacher
│ │ │ └── Teacher.java
│ │ ├── MessagesBundle.properties
│ │ ├── MessagesBundle_de_DE.properties
│ │ ├── UI
│ │ ├── UIController
│ │ │ ├── HomeUIController.java
│ │ │ ├── InsertModuleUIController.java
│ │ │ ├── InsertTeacherUIController.java
│ │ │ ├── ModuleIndexUIController.java
│ │ │ ├── TeacherIndexUIController.java
│ │ │ ├── UpdateModuleUIController.java
│ │ │ └── UpdateTeacherUIController.java
│ │ └── fxmlAndMain
│ │ │ ├── Home.fxml
│ │ │ ├── InsertModuleUI.fxml
│ │ │ ├── InsertTeacherUI.fxml
│ │ │ ├── ManagementAppUIMain.java
│ │ │ ├── ModuleIndexUI.fxml
│ │ │ ├── Navigator.java
│ │ │ ├── TeacherIndexUI.fxml
│ │ │ ├── UpdateModuleUI.fxml
│ │ │ └── UpdateTeacherUI.fxml
│ │ ├── dbservice
│ │ ├── MySQLService.java
│ │ └── module.sql
│ │ └── i18n_translation_handler
│ │ └── Translation.java
├── class16-20250111T013527Z-001.zip
└── class16
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── 1808g.book.sql
│ ├── class16.iml
│ ├── class16_javafx_i18n_l10n.before.rar
│ ├── class16_javafx_i18n_l10n
│ ├── Book.java
│ ├── DbService.java
│ ├── EditUI.fxml
│ ├── EditUIController.java
│ ├── IndexUI.fxml
│ ├── IndexUIController.java
│ ├── Main.java
│ ├── Navigator.java
│ └── Translator.java
│ ├── class16_javase_i18n_l10n
│ ├── I18N_I10N.java
│ ├── MessagesBundle.properties
│ ├── MessagesBundle_th_TH.properties
│ └── MessagesBundle_vn_VN.properties
│ ├── java16_lab.xlsx
│ ├── java16_lesson_plan.txt
│ └── languages
│ ├── MessagesBundle.properties
│ ├── MessagesBundle_fr_FR.properties
│ └── MessagesBundle_it_IT.properties
├── 1-4-2025
├── LabWork
│ ├── EX1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── EX1.iml
│ │ └── src
│ │ │ └── MainDir
│ │ │ ├── AboutPageUI.fxml
│ │ │ ├── AboutPageUIController.java
│ │ │ ├── BlogPageUI.fxml
│ │ │ ├── BlogPageUIController.java
│ │ │ ├── ContactPageUI.fxml
│ │ │ ├── ContactPageUIController.java
│ │ │ ├── HomePageUI.fxml
│ │ │ ├── HomePageUIController.java
│ │ │ ├── MultisceneMain.java
│ │ │ ├── MultisceneUICss.css
│ │ │ ├── Navigator.java
│ │ │ ├── Screenshot 2025-01-05 at 18.30.31.png
│ │ │ ├── classic-pattern-bg.png
│ │ │ ├── tm-about-img.jpg
│ │ │ ├── tm-blog-img.jpg
│ │ │ ├── tm-contact-img.jpg
│ │ │ ├── tm-home-img.jpg
│ │ │ ├── tm-img-100x100-1.jpg
│ │ │ ├── tm-img-100x100-2.jpg
│ │ │ ├── tm-img-100x100-3.jpg
│ │ │ ├── tm-img-100x100-4.jpg
│ │ │ ├── tm-img-100x100-5.jpg
│ │ │ ├── tm-img-100x100-6.jpg
│ │ │ ├── tm-img-1010x336-1.jpg
│ │ │ ├── tm-img-240x120-1.jpg
│ │ │ ├── tm-img-240x120-2.jpg
│ │ │ ├── tm-img-240x120-3.jpg
│ │ │ ├── tm-img-310x180-1.jpg
│ │ │ ├── tm-img-310x180-2.jpg
│ │ │ ├── tm-img-310x180-3.jpg
│ │ │ ├── tm-img-310x180-4.jpg
│ │ │ └── tm-img-660x330-1.jpg
│ └── EX2
│ │ ├── .gitignore
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── vcs.xml
│ │ ├── EX2.iml
│ │ ├── hs_err_pid25444.log
│ │ ├── hs_err_pid25455.log
│ │ ├── hs_err_pid25511.log
│ │ ├── hs_err_pid25597.log
│ │ └── src
│ │ └── MainDir
│ │ ├── CircleCalculatorUI.fxml
│ │ ├── CircleCalculatorUIController.java
│ │ └── CircleCalculatorUIMain.java
├── class13.zip
└── class13
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── class13.iml
│ ├── class13_javafx_multi_scenes
│ ├── EditUI.fxml
│ ├── EditUIController.java
│ ├── IndexUI.fxml
│ ├── IndexUIController.java
│ ├── Main.java
│ ├── Navigator.java
│ └── desktop.ini
│ ├── class13_javafx_property
│ ├── RectangleArea.css
│ ├── RectangleAreaController.java
│ ├── RectangleAreaMain.java
│ ├── RectangleAreaUI.fxml
│ ├── calculator.png
│ └── desktop.ini
│ ├── desktop.ini
│ ├── java13_lesson_plan.txt
│ ├── lab13_javafx_property.xlsx
│ └── lab13_multi_scene
│ ├── about.html
│ ├── blog.html
│ ├── contact.html
│ ├── css
│ ├── bootstrap.min.css
│ ├── desktop.ini
│ └── templatemo-style.css
│ ├── desktop.ini
│ ├── img
│ ├── classic-pattern-bg.png
│ ├── desktop.ini
│ ├── tm-about-img.jpg
│ ├── tm-blog-img.jpg
│ ├── tm-contact-img.jpg
│ ├── tm-home-img.jpg
│ ├── tm-img-100x100-1.jpg
│ ├── tm-img-100x100-2.jpg
│ ├── tm-img-100x100-3.jpg
│ ├── tm-img-100x100-4.jpg
│ ├── tm-img-100x100-5.jpg
│ ├── tm-img-100x100-6.jpg
│ ├── tm-img-1010x336-1.jpg
│ ├── tm-img-240x120-1.jpg
│ ├── tm-img-240x120-2.jpg
│ ├── tm-img-240x120-3.jpg
│ ├── tm-img-310x180-1.jpg
│ ├── tm-img-310x180-2.jpg
│ ├── tm-img-310x180-3.jpg
│ ├── tm-img-310x180-4.jpg
│ └── tm-img-660x330-1.jpg
│ ├── index.html
│ └── js
│ ├── bootstrap.min.js
│ ├── desktop.ini
│ └── jquery-1.11.3.min.js
├── 1-6-2025
├── LabWorks
│ ├── .idea
│ │ ├── .gitignore
│ │ ├── LabWorks.iml
│ │ ├── dataSources.xml
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ ├── sqldialects.xml
│ │ └── vcs.xml
│ └── Lab
│ │ ├── .gitignore
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── dataSources.xml
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── libraries
│ │ │ └── mysql_connector_java_8_0_16.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ ├── sqldialects.xml
│ │ └── vcs.xml
│ │ ├── Lab.iml
│ │ ├── lib
│ │ └── mysql-connector-java-8.0.16.jar
│ │ └── src
│ │ └── MainDir
│ │ ├── Beans
│ │ ├── Module
│ │ │ └── Module.java
│ │ └── Teacher
│ │ │ └── Teacher.java
│ │ ├── UI
│ │ ├── UIController
│ │ │ ├── HomeUIController.java
│ │ │ ├── InsertModuleUIController.java
│ │ │ ├── InsertTeacherUIController.java
│ │ │ ├── ModuleIndexUIController.java
│ │ │ ├── TeacherIndexUIController.java
│ │ │ ├── UpdateModuleUIController.java
│ │ │ └── UpdateTeacherUIController.java
│ │ └── fxmlAndMain
│ │ │ ├── Home.fxml
│ │ │ ├── InsertModuleUI.fxml
│ │ │ ├── InsertTeacherUI.fxml
│ │ │ ├── ManagementAppUIMain.java
│ │ │ ├── ModuleIndexUI.fxml
│ │ │ ├── Navigator.java
│ │ │ ├── TeacherIndexUI.fxml
│ │ │ ├── UpdateModuleUI.fxml
│ │ │ └── UpdateTeacherUI.fxml
│ │ └── dbservice
│ │ ├── MySQLService.java
│ │ └── module.sql
├── class15.zip
└── class15
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── libraries
│ │ └── mysql_connector_java_8_0_16.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── 1808g.book.sql
│ ├── class15.iml
│ ├── class15_javafx_jdbc_crud
│ ├── Book.java
│ ├── DbService.java
│ ├── EditUI.fxml
│ ├── EditUIController.java
│ ├── IndexUI.fxml
│ ├── IndexUIController.java
│ ├── Main.java
│ ├── Navigator.java
│ └── desktop.ini
│ ├── desktop.ini
│ ├── java15_lesson_plan.txt
│ ├── lab15 (2 sheets).xlsx
│ ├── mysql-connector-java-8.0.16.jar
│ └── out
│ └── production
│ └── class15
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── libraries
│ │ └── mysql_connector_java_8_0_16.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── 1808g.book.sql
│ ├── class15.iml
│ ├── class15_javafx_jdbc_crud
│ ├── Book.class
│ ├── DbService.class
│ ├── EditUI.fxml
│ ├── EditUIController.class
│ ├── IndexUI.fxml
│ ├── IndexUIController.class
│ ├── Main.class
│ ├── Navigator.class
│ └── desktop.ini
│ ├── desktop.ini
│ ├── java15_lesson_plan.txt
│ ├── lab15 (2 sheets).xlsx
│ └── mysql-connector-java-8.0.16.jar
├── 10-19-2024
├── .DS_Store
└── SQL1
│ ├── .idea
│ ├── .gitignore
│ ├── SQL1.iml
│ ├── codeStyles
│ │ └── codeStyleConfig.xml
│ ├── dataSources.local.xml
│ ├── dataSources.xml
│ ├── dataSources
│ │ ├── 0531ec33-32d4-41be-a822-99cc7d52398e.xml
│ │ └── 0531ec33-32d4-41be-a822-99cc7d52398e
│ │ │ └── storage_v2
│ │ │ └── _src_
│ │ │ └── schema
│ │ │ ├── NorthWind.jYLXkQ.meta
│ │ │ ├── SE1.H0ABAA.meta
│ │ │ ├── information_schema.FNRwLQ.meta
│ │ │ ├── information_schema.FNRwLQ.zip
│ │ │ ├── mysql.osA4Bg.meta
│ │ │ ├── performance_schema.kIw0nw.meta
│ │ │ ├── sys.zb4BAA.meta
│ │ │ └── sys.zb4BAA.zip
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── modules.xml
│ ├── sqldialects.xml
│ ├── vcs.xml
│ └── workspace.xml
│ └── northwind_mysql (1).sql
├── 10-2-2024
├── NUS 2007 Works.pdf
├── termtest1_07s1.pdf
└── termtest1_07s1_ans.pdf
├── 10-26-2024
├── .DS_Store
└── SQL2
│ ├── .idea
│ ├── .gitignore
│ ├── SQL2.iml
│ ├── dataSources.local.xml
│ ├── dataSources.xml
│ ├── dataSources
│ │ ├── 53c84228-40cf-4471-9348-1efe2a11abf3.xml
│ │ └── 53c84228-40cf-4471-9348-1efe2a11abf3
│ │ │ └── storage_v2
│ │ │ └── _src_
│ │ │ └── schema
│ │ │ ├── LTN_357_AM.Lx1azg.meta
│ │ │ ├── NorthWind.jYLXkQ.meta
│ │ │ ├── SE1.H0ABAA.meta
│ │ │ ├── information_schema.FNRwLQ.meta
│ │ │ ├── information_schema.FNRwLQ.zip
│ │ │ ├── mysql.osA4Bg.meta
│ │ │ ├── performance_schema.kIw0nw.meta
│ │ │ ├── sys.zb4BAA.meta
│ │ │ └── sys.zb4BAA.zip
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── modules.xml
│ ├── sqldialects.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── Diagram_0.pdf
│ ├── Intro to DB.sql
│ └── lab1.sql
├── 10-27-2024
├── .DS_Store
└── SQL2 (continue)
│ ├── .idea
│ ├── .gitignore
│ ├── SQL2 (continue).iml
│ ├── dataSources.local.xml
│ ├── dataSources.xml
│ ├── dataSources
│ │ ├── 44bfeed7-9984-4d9c-b78a-4dbc03d574ae.xml
│ │ └── 44bfeed7-9984-4d9c-b78a-4dbc03d574ae
│ │ │ └── storage_v2
│ │ │ └── _src_
│ │ │ └── schema
│ │ │ ├── LTN_357_AM.Lx1azg.meta
│ │ │ ├── NorthWind.jYLXkQ.meta
│ │ │ ├── SE1.H0ABAA.meta
│ │ │ ├── information_schema.FNRwLQ.meta
│ │ │ ├── information_schema.FNRwLQ.zip
│ │ │ ├── mysql.osA4Bg.meta
│ │ │ ├── performance_schema.kIw0nw.meta
│ │ │ ├── sys.zb4BAA.meta
│ │ │ └── sys.zb4BAA.zip
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── modules.xml
│ ├── sqldialects.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── lab2.sql
│ ├── lab2_worked_solution.sql
│ └── northwind_mysql.sql
├── 11-2-2024
├── ap07_comp_sci_a_frq.pdf
└── csa temp.docx
├── 11-20-2024
├── Doc1.docx
├── ap08_comp_sci_a_frq.pdf
└── compsci_ab_exam_appendix.pdf
├── 12-30-2024
└── C01 - Intro
│ ├── LabWorks
│ ├── EX1
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── compiler.xml
│ │ │ ├── description.html
│ │ │ ├── encodings.xml
│ │ │ ├── gradle.xml
│ │ │ ├── inspectionProfiles
│ │ │ │ ├── Project_Default.xml
│ │ │ │ └── profiles_settings.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ ├── uiDesigner.xml
│ │ │ └── vcs.xml
│ │ ├── EX1.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── EX1
│ │ │ │ └── MainDir
│ │ │ │ ├── Main.class
│ │ │ │ ├── RegistrationUI.fxml
│ │ │ │ ├── RegistrationUIController.class
│ │ │ │ ├── RegistrationUICss.css
│ │ │ │ ├── email-logo.svg
│ │ │ │ ├── email_logo_transparent_white_29x27.png
│ │ │ │ ├── person_9742864.png
│ │ │ │ ├── sample.fxml
│ │ │ │ └── —Pngtree—vector shield icon_3762822.png
│ │ └── src
│ │ │ └── MainDir
│ │ │ ├── Main.java
│ │ │ ├── RegistrationUI.fxml
│ │ │ ├── RegistrationUIController.java
│ │ │ ├── RegistrationUICss.css
│ │ │ ├── email-logo.svg
│ │ │ ├── email_logo_transparent_white_29x27.png
│ │ │ ├── person_9742864.png
│ │ │ ├── sample.fxml
│ │ │ └── —Pngtree—vector shield icon_3762822.png
│ ├── EX2
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── compiler.xml
│ │ │ ├── description.html
│ │ │ ├── encodings.xml
│ │ │ ├── gradle.xml
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ ├── uiDesigner.xml
│ │ │ └── vcs.xml
│ │ ├── EX2.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── EX2
│ │ │ │ └── MainDir
│ │ │ │ ├── Main.class
│ │ │ │ ├── SignUpFormUI.fxml
│ │ │ │ ├── SignUpFormUIController.class
│ │ │ │ ├── SignUpFormUICss.css
│ │ │ │ ├── email-black-envelope-shape.png
│ │ │ │ ├── email-logo.svg
│ │ │ │ ├── person_9742864.png
│ │ │ │ ├── pngwing.com.png
│ │ │ │ ├── visa-logo.png
│ │ │ │ ├── —Pngtree—vector credit card icon_4184472.png
│ │ │ │ └── —Pngtree—vector shield icon_3762822.png
│ │ └── src
│ │ │ └── MainDir
│ │ │ ├── Main.java
│ │ │ ├── SignUpFormUI.fxml
│ │ │ ├── SignUpFormUIController.java
│ │ │ ├── SignUpFormUICss.css
│ │ │ ├── email-black-envelope-shape.png
│ │ │ ├── email-logo.svg
│ │ │ ├── person_9742864.png
│ │ │ ├── pngwing.com.png
│ │ │ ├── visa-logo.png
│ │ │ ├── —Pngtree—vector credit card icon_4184472.png
│ │ │ └── —Pngtree—vector shield icon_3762822.png
│ ├── EX3
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── EX3.iml
│ │ └── src
│ │ │ └── MainDir
│ │ │ ├── CampsiteRegistrationUI.fxml
│ │ │ ├── CampsiteRegistrationUIController.java
│ │ │ ├── CampsiteRegistrationUICss.css
│ │ │ └── CampsiteRegistrationUIMain.java
│ └── EX4
│ │ ├── .gitignore
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── vcs.xml
│ │ ├── EX4.iml
│ │ └── src
│ │ └── MainDir
│ │ ├── Registration2UI.fxml
│ │ ├── Registration2UIController.java
│ │ ├── Registration2UICss.css
│ │ ├── Registration2UIMain.java
│ │ └── checkbox-152186_640.png
│ ├── class12.zip
│ └── class12
│ ├── class12_javafx_ui
│ ├── RectangleArea.css
│ ├── RectangleAreaController.java
│ ├── RectangleAreaMain.java
│ ├── RectangleAreaUI.fxml
│ ├── calculator.png
│ └── desktop.ini
│ ├── desktop.ini
│ ├── java12_lesson_plan.txt
│ ├── lab-convert-to-javaFX
│ ├── 1 simple-registration-form
│ │ ├── README.txt
│ │ ├── codepen-source.url
│ │ ├── css
│ │ │ ├── desktop.ini
│ │ │ └── style.css
│ │ ├── desktop.ini
│ │ ├── index.html
│ │ ├── license.txt
│ │ └── screenshot.png
│ ├── 2 sign-up-form
│ │ ├── README.txt
│ │ ├── codepen-source.url
│ │ ├── css
│ │ │ ├── desktop.ini
│ │ │ └── style.css
│ │ ├── desktop.ini
│ │ ├── index.html
│ │ ├── index.pug
│ │ ├── js
│ │ │ ├── desktop.ini
│ │ │ └── index.js
│ │ ├── less
│ │ │ ├── desktop.ini
│ │ │ └── style.less
│ │ ├── license.txt
│ │ └── screenshot.PNG
│ ├── 3 campsite-registration
│ │ ├── README.txt
│ │ ├── codepen-source.url
│ │ ├── css
│ │ │ ├── desktop.ini
│ │ │ └── style.css
│ │ ├── desktop.ini
│ │ ├── index.haml
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── desktop.ini
│ │ │ └── index.js
│ │ ├── less
│ │ │ ├── desktop.ini
│ │ │ └── style.less
│ │ ├── license.txt
│ │ └── screenshot.PNG
│ ├── 4 complex-registration
│ │ ├── css
│ │ │ ├── default.css
│ │ │ └── desktop.ini
│ │ ├── desktop.ini
│ │ ├── img
│ │ │ ├── bg_infobox.gif
│ │ │ ├── desktop.ini
│ │ │ ├── h1.png
│ │ │ └── overlay.png
│ │ ├── index.html
│ │ └── screenshot.jpg
│ └── desktop.ini
│ └── pdf
│ ├── RectangleArea.css.pdf
│ ├── RectangleAreaController.java.pdf
│ ├── RectangleAreaMain.java.pdf
│ ├── RectangleAreaUI.fxml.pdf
│ ├── SceneBuilder.pdf
│ └── desktop.ini
├── 4-12-2024
├── .DS_Store
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
├── 12-4-2024.iml
├── c01
│ ├── lab1.1.pdf
│ └── lab1.2.docx
└── homework
│ ├── area_perimeter.java
│ ├── cmi.java
│ ├── int_type.java
│ ├── lab1.java
│ ├── swp.java
│ └── temp.java
├── 4-14-2024
├── AscendingDigits.java
├── bmi.java
├── c02
│ └── lab2.docx
├── dist_int.java
├── flowchart ex1.png
├── flowchart ex2.png
├── flowchart ex4.png
├── flowchart ex5.png
├── flowchart ex6.png
├── leap_year.java
├── suffix.java
└── week_case_sen.java
├── 4-19-2024
├── c03
│ └── lab3.docx
├── factorials.java
├── flowchart ex1.png
├── flowchart ex2.png
├── flowchart ex4.png
├── flowchart ex5.png
├── flowchart ex6.png
├── q1.java
├── q2.java
├── q3.java
├── q4.java
└── validate.java
├── 4-21-2024 (ABSENT)
├── c04
│ └── lab4.docx
├── flowchart ex4.png
├── flowchart ex5.png
├── flowchart ex6.png
├── flowchart ex7.png
├── q01.java
├── q02.java
├── q03.java
├── q04.java
├── q05.java
├── q06.java
├── q07.java
└── q08.java
├── 4-26-2024
├── c05
│ └── lab5.docx
├── flowchart ex2.png
├── flowchart ex3.png
├── flowchart ex4.png
├── flowchart ex6.png
├── q01.java
├── q02.java
├── q03_baigoc.java
├── q03_cach1.java
├── q03_cach2.java
├── q04.java
├── q05.java
├── q06.java
├── q07.java
├── q08_a.java
└── q08_b.java
├── 4-28-2024
├── c06
│ └── lab6.docx
├── countWords_ver1.0.java
├── countWords_ver2.0.java
├── flowchart ex2.png
├── flowchart ex3.PNG
├── q01.java
├── q02.java
├── q02_wtf.java
├── q05.java
├── q05_c2.java
├── q06.java
└── sumDigit.java
├── 5-03-2024
├── .DS_Store
├── .idea
│ ├── .gitignore
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
├── 3-5-2024.iml
├── fundamental review.docx
├── out
│ ├── .DS_Store
│ └── production
│ │ ├── .DS_Store
│ │ └── 3-5-2024
│ │ ├── .DS_Store
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── vcs.xml
│ │ ├── 3-5-2024.iml
│ │ ├── fundamental review.docx
│ │ ├── review1_1.class
│ │ └── review2.class
├── review1.java
└── review2.java
├── 5-05-2024
├── .DS_Store
├── .idea
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
├── 5-5-2024.iml
└── bai chua
│ ├── lab4e8.java
│ ├── lab5e3.java
│ └── rv1e1.java
├── 5-10-2024
├── CEncryption_v3.0.java
├── CaesarEncryption - Final.java
├── CaesarEncryption.java
├── CaesarEncryption_v2.0.java
├── IMG_1809.heic
├── checkerPattern.java
├── ex_review1.java
├── ex_review2.java
├── palindrome.java
├── printArrayInStar.java
├── printStar.java
└── rearrange.java
├── 5-31-2024 and 6-2-2024
├── .DS_Store
├── OOP_LAB7
│ ├── .DS_Store
│ ├── OOP_LAB7.iml
│ ├── build.xml
│ ├── build
│ │ └── classes
│ │ │ ├── .netbeans_automatic_build
│ │ │ ├── .netbeans_update_resources
│ │ │ ├── Author.class
│ │ │ ├── AuthorTest.class
│ │ │ ├── Book1.class
│ │ │ ├── Book2.class
│ │ │ ├── Circle.class
│ │ │ ├── CircleTest.class
│ │ │ ├── Employee.class
│ │ │ ├── EmployeeTest.class
│ │ │ ├── TestBook1.class
│ │ │ └── TestBook2.class
│ ├── c07
│ │ └── lab7.docx
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── private
│ │ │ ├── private.properties
│ │ │ └── private.xml
│ │ ├── project.properties
│ │ └── project.xml
│ └── src
│ │ ├── Author.java
│ │ ├── AuthorTest.java
│ │ ├── Book1.java
│ │ ├── Book2.java
│ │ ├── Circle.java
│ │ ├── CircleTest.java
│ │ ├── Employee.java
│ │ ├── EmployeeTest.java
│ │ ├── TestBook1.java
│ │ └── TestBook2.java
└── Revision3
│ ├── .DS_Store
│ ├── Revision3.iml
│ ├── build.xml
│ ├── build
│ └── classes
│ │ ├── .netbeans_automatic_build
│ │ ├── .netbeans_update_resources
│ │ └── revision3
│ │ ├── Bai6_cach1.class
│ │ └── Bai6_cach1.rs
│ ├── c_programming_trial_pe_questions.pdf
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
│ └── src
│ └── revision3
│ └── Bai6_cach1.java
├── 6-08-2024
├── .DS_Store
├── 8-6-2024.iml
└── OOP_LAB8
│ ├── .DS_Store
│ ├── build.xml
│ ├── build
│ ├── built-jar.properties
│ └── classes
│ │ ├── .netbeans_automatic_build
│ │ ├── .netbeans_update_resources
│ │ ├── Circle.class
│ │ ├── CircleTest.class
│ │ ├── Person.class
│ │ ├── PersonTest.class
│ │ ├── Point2D.class
│ │ ├── Point2DTest.class
│ │ ├── Point3D.class
│ │ ├── Point3DTest.class
│ │ ├── Rectangle.class
│ │ ├── RectangleTest.class
│ │ ├── Shape.class
│ │ ├── ShapeTest.class
│ │ ├── Square.class
│ │ ├── SquareTest.class
│ │ ├── Student.class
│ │ ├── StudentTest.class
│ │ ├── Teacher.class
│ │ └── TeacherTest.class
│ ├── c08
│ └── lab Inheritance.docx
│ ├── dist
│ ├── OOP_LAB8.jar
│ └── README.TXT
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
│ └── src
│ ├── Circle.java
│ ├── CircleTest.java
│ ├── Person.java
│ ├── PersonTest.java
│ ├── Point2D.java
│ ├── Point2DTest.java
│ ├── Point3D.java
│ ├── Point3DTest.java
│ ├── Rectangle.java
│ ├── RectangleTest.java
│ ├── Shape.java
│ ├── ShapeTest.java
│ ├── Square.java
│ ├── SquareTest.java
│ ├── Student.java
│ ├── StudentTest.java
│ ├── Teacher.java
│ └── TeacherTest.java
├── 6-09-2024
├── .DS_Store
├── 9-6-2024.iml
└── OOP_LAB9
│ ├── .DS_Store
│ ├── build.xml
│ ├── build
│ └── classes
│ │ ├── .netbeans_automatic_build
│ │ ├── .netbeans_update_resources
│ │ ├── Circle.class
│ │ ├── CircleCylinderTest.class
│ │ ├── Cylinder.class
│ │ ├── Rectangle.class
│ │ ├── Shape.class
│ │ ├── Test.class
│ │ └── Triangle.class
│ ├── c09
│ └── lab9_Polymorphism.docx
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
│ └── src
│ ├── Circle.java
│ ├── CircleCylinderTest.java
│ ├── Cylinder.java
│ ├── Rectangle.java
│ ├── Shape.java
│ ├── Test.java
│ └── Triangle.java
├── 6-14-2024
├── .DS_Store
├── 14-6-2024.iml
└── OOP_LAB10
│ ├── .DS_Store
│ ├── build.xml
│ ├── build
│ └── classes
│ │ ├── .netbeans_automatic_build
│ │ ├── .netbeans_update_resources
│ │ ├── Animal.class
│ │ ├── Cat.class
│ │ ├── Fish.class
│ │ ├── Movable.class
│ │ ├── MovablePoint.class
│ │ ├── Pet.class
│ │ ├── Rectangle.class
│ │ ├── Shape.class
│ │ ├── Spider.class
│ │ ├── Test.class
│ │ ├── Test2.class
│ │ ├── TestAnimals.class
│ │ └── Triangle.class
│ ├── c10
│ └── java_lab4.docx
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
│ └── src
│ ├── Animal.java
│ ├── Cat.java
│ ├── Fish.java
│ ├── Movable.java
│ ├── MovablePoint.java
│ ├── Pet.java
│ ├── Rectangle.java
│ ├── Shape.java
│ ├── Spider.java
│ ├── Test.java
│ ├── Test2.java
│ ├── TestAnimals.java
│ └── Triangle.java
├── 6-16-2024
├── .DS_Store
├── 16-6-2024.iml copy
└── JavaApplication5 copy
│ ├── .DS_Store
│ ├── .idea
│ ├── .gitignore
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── JavaApplication5.iml
│ ├── build.xml
│ ├── build
│ └── classes
│ │ ├── .netbeans_automatic_build
│ │ ├── .netbeans_update_resources
│ │ └── C11
│ │ └── ex2
│ │ ├── Circle.class
│ │ ├── Cylinder.class
│ │ └── TestDriver.class
│ ├── c11
│ └── java_lab_5.docx
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
│ ├── out
│ └── production
│ │ └── JavaApplication5
│ │ └── C11
│ │ └── ex2
│ │ ├── Circle.class
│ │ ├── Cylinder.class
│ │ └── TestDriver.class
│ └── src
│ └── C11
│ └── ex2
│ ├── Circle.java
│ ├── Cylinder.java
│ └── TestDriver.java
├── 6-21-2024
├── .DS_Store
├── .idea
│ ├── .gitignore
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
├── 21-6-2024.iml
├── OOP_LAB12
│ ├── .DS_Store
│ ├── .idea
│ │ ├── .gitignore
│ │ ├── dictionaries
│ │ │ └── ducksabervn.xml
│ │ ├── inspectionProfiles
│ │ │ ├── Project_Default.xml
│ │ │ └── profiles_settings.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ ├── vcs.xml
│ │ └── workspace.xml
│ ├── OOP_LAB12.iml
│ ├── build.xml
│ ├── build
│ │ └── classes
│ │ │ ├── .netbeans_automatic_build
│ │ │ ├── .netbeans_update_resources
│ │ │ ├── EX1
│ │ │ ├── MathRead1.class
│ │ │ ├── MathRead1_Final.class
│ │ │ ├── MathRead2.class
│ │ │ ├── TestingArea.class
│ │ │ ├── math.txt
│ │ │ └── math_result.txt
│ │ │ └── EX2
│ │ │ ├── Addition.class
│ │ │ ├── Division.class
│ │ │ ├── EX2aDriver.class
│ │ │ ├── EX2bDriver.class
│ │ │ ├── MathExpression.class
│ │ │ ├── Modular.class
│ │ │ ├── Multiplication.class
│ │ │ ├── NonValidExpression.class
│ │ │ ├── Subtraction.class
│ │ │ ├── Unsolved_EX2bDriver.class
│ │ │ ├── math.txt
│ │ │ └── math_result_oop.txt
│ ├── c12
│ │ ├── .DS_Store
│ │ ├── MathExpression_class_diagram (1).pdf
│ │ ├── java_lab_6 (1).docx
│ │ └── math (1).txt
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── private
│ │ │ ├── private.properties
│ │ │ └── private.xml
│ │ ├── project.properties
│ │ └── project.xml
│ ├── out
│ │ └── production
│ │ │ └── OOP_LAB12
│ │ │ ├── EX1
│ │ │ ├── MathRead1.class
│ │ │ ├── MathRead1_Final.class
│ │ │ ├── MathRead2.class
│ │ │ ├── TestingArea.class
│ │ │ ├── math.txt
│ │ │ └── math_result.txt
│ │ │ └── EX2
│ │ │ ├── Addition.class
│ │ │ ├── Division.class
│ │ │ ├── EX2aDriver.class
│ │ │ ├── EX2bDriver.class
│ │ │ ├── MathExpression.class
│ │ │ ├── Modular.class
│ │ │ ├── Multiplication.class
│ │ │ ├── NonValidExpression.class
│ │ │ ├── Subtraction.class
│ │ │ ├── Unsolved_EX2bDriver.class
│ │ │ ├── math.txt
│ │ │ └── math_result_oop.txt
│ └── src
│ │ ├── EX1
│ │ ├── MathRead1.java
│ │ ├── MathRead1_Final.java
│ │ ├── MathRead2.java
│ │ ├── TestingArea.java
│ │ ├── math.txt
│ │ └── math_result.txt
│ │ └── EX2
│ │ ├── Addition.java
│ │ ├── Division.java
│ │ ├── EX2aDriver.java
│ │ ├── EX2bDriver.java
│ │ ├── MathExpression.java
│ │ ├── Modular.java
│ │ ├── Multiplication.java
│ │ ├── NonValidExpression.java
│ │ ├── Subtraction.java
│ │ ├── Unsolved_EX2bDriver.java
│ │ ├── math.txt
│ │ └── math_result_oop.txt
└── out
│ └── production
│ └── 21-6-2024
│ ├── EX1
│ ├── MathRead1.class
│ ├── MathRead1_Final.class
│ ├── MathRead2.class
│ ├── TestingArea.class
│ ├── math.txt
│ └── math_result.txt
│ └── EX2
│ ├── Addition.class
│ ├── Division.class
│ ├── EX2aDriver.class
│ ├── EX2bDriver.class
│ ├── MathExpression.class
│ ├── Modular.class
│ ├── Multiplication.class
│ ├── NonValidExpression.class
│ ├── Subtraction.class
│ ├── Unsolved_EX2bDriver.class
│ └── math.txt
├── 6-23-2024
├── .DS_Store
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
└── OOP_LAB13
│ ├── .DS_Store
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── OOP_LAB13.iml
│ ├── c13
│ ├── java7_lab.docx
│ ├── random_sentences.txt
│ ├── random_words.txt
│ └── source.txt
│ ├── out
│ └── production
│ │ └── OOP_LAB13
│ │ ├── EX1
│ │ ├── longest_word.txt
│ │ ├── random_words.txt
│ │ ├── wording_nio.class
│ │ └── wording_vowel_nio.class
│ │ └── EX2
│ │ ├── largest_word_sentence.class
│ │ ├── random_sentences (1).txt
│ │ └── result.txt
│ └── src
│ ├── .DS_Store
│ ├── EX1
│ ├── longest_word.txt
│ ├── random_words.txt
│ ├── vowel_word.txt
│ ├── wording_nio.java
│ └── wording_vowel_nio.java
│ └── EX2
│ ├── largest_word_sentence.java
│ ├── random_sentences (1).txt
│ └── result.txt
├── 7-05-2024
├── .DS_Store
└── OOP_LAB14
│ ├── .DS_Store
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── dictionaries
│ │ └── ducksabervn.xml
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── OOP_LAB14.iml
│ ├── c14
│ ├── .DS_Store
│ ├── java8_lab.txt
│ ├── word_list.txt
│ ├── word_set_a.txt
│ ├── word_set_b.txt
│ └── word_sub_set.txt
│ ├── out
│ └── production
│ │ └── OOP_LAB14
│ │ ├── EX1_2
│ │ ├── question1.class
│ │ ├── question2.class
│ │ └── word_list.txt
│ │ └── EX3_4_5_6
│ │ ├── question3.class
│ │ ├── question4.class
│ │ ├── question5.class
│ │ ├── question6.class
│ │ ├── test_set_a.txt
│ │ ├── test_set_b.txt
│ │ ├── word_set_a.txt
│ │ ├── word_set_b.txt
│ │ └── word_sub_set.txt
│ └── src
│ ├── .DS_Store
│ ├── EX1_2
│ ├── question1.java
│ ├── question2.java
│ └── word_list.txt
│ └── EX3_4_5_6
│ ├── question3.java
│ ├── question4.java
│ ├── question5.java
│ ├── question6.java
│ ├── test_set_a.txt
│ ├── test_set_b.txt
│ ├── word_set_a.txt
│ ├── word_set_b.txt
│ └── word_sub_set.txt
├── 7-07-2024
├── .DS_Store
└── OOP_LAB15
│ ├── .DS_Store
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── vcs.xml
│ └── workspace.xml
│ ├── OOP_LAB15.iml
│ ├── c15
│ ├── java9_lab.txt
│ └── person_list.txt
│ ├── out
│ └── production
│ │ └── OOP_LAB15
│ │ └── HW
│ │ ├── Person.class
│ │ ├── RunDriver.class
│ │ └── person_list.txt
│ └── src
│ └── HW
│ ├── Person.java
│ ├── RunDriver.java
│ └── person_list.txt
├── 7-19-2024
├── ap revision thing 1.docx
└── ap04_frq_compsci_a_35988.pdf
├── 7-21-2024
├── ap revision thing 1.docx
└── ap04_frq_compsci_a_35988.pdf
├── 8-10-2024
├── _ap05_frq_comp_sci_a_45544.pdf
└── ap revision thing 2 (version 08102024).docx
├── 8-11-2024
├── _ap05_frq_comp_sci_a_45544.pdf
└── ap revision thing 2 (version 08112024).docx
├── 9-29-2024
├── termtest1_06s1.pdf
└── termtest1_06s1_ans.pdf
├── 9-4-2024
├── Adobe Scan 4 Sep 2024_combined.pdf
└── termtest_2008s1.pdf
├── Java.png
├── OCA-eCertificate.png
├── OCFA - OCA Presentations
├── J8SE1
│ ├── C1J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── C1J8SE1.iml
│ │ └── src
│ │ │ └── Main.java
│ ├── C2J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── C2J8SE1.iml
│ │ └── src
│ │ │ ├── Main.class
│ │ │ └── Main.java
│ ├── C3J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── C3J8SE1.iml
│ │ └── src
│ │ │ ├── Main.class
│ │ │ └── Main.java
│ ├── C4J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ ├── vcs.xml
│ │ │ └── workspace.xml
│ │ ├── C4J8SE1.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C4J8SE1
│ │ │ │ ├── Animal.class
│ │ │ │ ├── Bunny.class
│ │ │ │ ├── CallInitializationOrderSimple.class
│ │ │ │ ├── CheckIfHopper.class
│ │ │ │ ├── CheckTrait.class
│ │ │ │ ├── Hamster.class
│ │ │ │ ├── Hamster2.class
│ │ │ │ ├── ImmutableSwan.class
│ │ │ │ ├── InitializationOrder.class
│ │ │ │ ├── InitializationOrderSimple.class
│ │ │ │ ├── Main.class
│ │ │ │ ├── Main15.class
│ │ │ │ ├── Main18.class
│ │ │ │ ├── Main2.class
│ │ │ │ ├── Main3.class
│ │ │ │ ├── Main4.class
│ │ │ │ ├── Main5.class
│ │ │ │ ├── Mouse.class
│ │ │ │ ├── MouseHouse.class
│ │ │ │ ├── NotImmutable.class
│ │ │ │ ├── PredicateSearch.class
│ │ │ │ ├── Q3.class
│ │ │ │ ├── Rabbit1.class
│ │ │ │ ├── Rabbit2.class
│ │ │ │ ├── Rabbit3.class
│ │ │ │ ├── Rabbit4.class
│ │ │ │ ├── RabbitsMultiply.class
│ │ │ │ ├── RunHere1.class
│ │ │ │ ├── Swan1.class
│ │ │ │ ├── Swan2.class
│ │ │ │ ├── Test1.class
│ │ │ │ ├── YetMoreInitializationOrder.class
│ │ │ │ ├── my
│ │ │ │ ├── city
│ │ │ │ │ └── School.class
│ │ │ │ └── school
│ │ │ │ │ └── Classroom.class
│ │ │ │ ├── pond
│ │ │ │ ├── shore
│ │ │ │ │ ├── Bird.class
│ │ │ │ │ └── Swan.class
│ │ │ │ └── swan
│ │ │ │ │ ├── Swan.class
│ │ │ │ │ └── Swan2.class
│ │ │ │ └── test.class
│ │ └── src
│ │ │ ├── Animal.java
│ │ │ ├── Bunny.java
│ │ │ ├── CheckIfHopper.java
│ │ │ ├── CheckTrait.java
│ │ │ ├── Main.java
│ │ │ ├── Main10.java
│ │ │ ├── Main11.java
│ │ │ ├── Main12.java
│ │ │ ├── Main13.java
│ │ │ ├── Main14.java
│ │ │ ├── Main15.java
│ │ │ ├── Main16.java
│ │ │ ├── Main17.java
│ │ │ ├── Main18.java
│ │ │ ├── Main19.java
│ │ │ ├── Main2.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.java
│ │ │ ├── Main5.java
│ │ │ ├── Main6.java
│ │ │ ├── Main7.java
│ │ │ ├── Main8.java
│ │ │ ├── Main9.java
│ │ │ ├── Q3.java
│ │ │ ├── Test1.java
│ │ │ ├── my
│ │ │ ├── city
│ │ │ │ └── School.java
│ │ │ └── school
│ │ │ │ └── Classroom.java
│ │ │ ├── pond
│ │ │ ├── shore
│ │ │ │ └── Bird.java
│ │ │ └── swan
│ │ │ │ └── Swan.java
│ │ │ └── test.java
│ ├── C5J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── C5J8SE1.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C5J8SE1
│ │ │ │ ├── Main.class
│ │ │ │ ├── part1
│ │ │ │ ├── Animal.class
│ │ │ │ ├── Animal2.class
│ │ │ │ ├── Animal3.class
│ │ │ │ ├── Animal4.class
│ │ │ │ ├── Animal5.class
│ │ │ │ ├── Animal6.class
│ │ │ │ ├── Animal7.class
│ │ │ │ ├── Animal8.class
│ │ │ │ ├── Animal9.class
│ │ │ │ ├── Ape.class
│ │ │ │ ├── BactrianCamel.class
│ │ │ │ ├── BactrianCamel2.class
│ │ │ │ ├── Bear.class
│ │ │ │ ├── Bear2.class
│ │ │ │ ├── BigCat.class
│ │ │ │ ├── BigCat2.class
│ │ │ │ ├── Bird.class
│ │ │ │ ├── Camel.class
│ │ │ │ ├── Camel2.class
│ │ │ │ ├── Canine.class
│ │ │ │ ├── Chimpanzee.class
│ │ │ │ ├── Eagle.class
│ │ │ │ ├── Elephant3.class
│ │ │ │ ├── Fish.class
│ │ │ │ ├── Gorilla.class
│ │ │ │ ├── Groundhog.class
│ │ │ │ ├── HumpbackWhale.class
│ │ │ │ ├── InsufficientDataException.class
│ │ │ │ ├── Lion.class
│ │ │ │ ├── Lion2.class
│ │ │ │ ├── Lion3.class
│ │ │ │ ├── Mammal.class
│ │ │ │ ├── Mammal2.class
│ │ │ │ ├── Mammal3.class
│ │ │ │ ├── Panda.class
│ │ │ │ ├── Panda2.class
│ │ │ │ ├── Penguin.class
│ │ │ │ ├── Primate.class
│ │ │ │ ├── Rabbit.class
│ │ │ │ ├── Reptile.class
│ │ │ │ ├── Reptile2.class
│ │ │ │ ├── Rodent.class
│ │ │ │ ├── Shark.class
│ │ │ │ ├── Snake.class
│ │ │ │ ├── Snake2.class
│ │ │ │ ├── Swan.class
│ │ │ │ ├── Whale.class
│ │ │ │ ├── Whale2.class
│ │ │ │ ├── Wolf.class
│ │ │ │ ├── Zebra.class
│ │ │ │ ├── Zoo.class
│ │ │ │ ├── Zoo1.class
│ │ │ │ ├── Zoo2.class
│ │ │ │ ├── overridingVShiding
│ │ │ │ │ ├── Sub.class
│ │ │ │ │ ├── Sub2.class
│ │ │ │ │ ├── Sub3.class
│ │ │ │ │ ├── Super.class
│ │ │ │ │ ├── Super2.class
│ │ │ │ │ └── Super3.class
│ │ │ │ ├── q7
│ │ │ │ │ ├── Q7AbstractClass.class
│ │ │ │ │ └── Q7AbstractInheirtor.class
│ │ │ │ └── variableHiding
│ │ │ │ │ ├── Sub.class
│ │ │ │ │ ├── Sub2.class
│ │ │ │ │ ├── Sub3.class
│ │ │ │ │ ├── Sub4.class
│ │ │ │ │ ├── Super.class
│ │ │ │ │ ├── Super2.class
│ │ │ │ │ ├── Super3.class
│ │ │ │ │ └── Super4.class
│ │ │ │ └── part2
│ │ │ │ ├── Bear.class
│ │ │ │ ├── Bear2.class
│ │ │ │ ├── CanDig.class
│ │ │ │ ├── CanFly.class
│ │ │ │ ├── CanFly2.class
│ │ │ │ ├── CanRun.class
│ │ │ │ ├── CanSwim.class
│ │ │ │ ├── CanSwim2.class
│ │ │ │ ├── Carnivore.class
│ │ │ │ ├── Elephant.class
│ │ │ │ ├── HarborSeal.class
│ │ │ │ ├── HasTail.class
│ │ │ │ ├── HasTail2.class
│ │ │ │ ├── HasTrunk.class
│ │ │ │ ├── HasWhiskers.class
│ │ │ │ ├── HasWhiskers2.class
│ │ │ │ ├── Herbivore.class
│ │ │ │ ├── Herbivore2.class
│ │ │ │ ├── Herbivore3.class
│ │ │ │ ├── Herbivore4.class
│ │ │ │ ├── Herbivore5.class
│ │ │ │ ├── Hyena.class
│ │ │ │ ├── IsWarmBlooded.class
│ │ │ │ ├── Main2.class
│ │ │ │ ├── Omnivore.class
│ │ │ │ ├── Omnivore2.class
│ │ │ │ ├── Omnivore3.class
│ │ │ │ ├── Omnivore4.class
│ │ │ │ ├── Seal.class
│ │ │ │ └── WalksOnFourLegs.class
│ │ └── src
│ │ │ ├── Main.java
│ │ │ ├── part1
│ │ │ ├── Animal.java
│ │ │ ├── Animal2.java
│ │ │ ├── Animal3.java
│ │ │ ├── Animal4.java
│ │ │ ├── Animal5.java
│ │ │ ├── Animal6.java
│ │ │ ├── Animal7.java
│ │ │ ├── Animal8.java
│ │ │ ├── Animal9.java
│ │ │ ├── BactrianCamel.java
│ │ │ ├── BactrianCamel2.java
│ │ │ ├── Bear.java
│ │ │ ├── Bear2.java
│ │ │ ├── BigCat.java
│ │ │ ├── BigCat2.java
│ │ │ ├── Bird.java
│ │ │ ├── Bird2.java
│ │ │ ├── Camel.java
│ │ │ ├── Camel2.java
│ │ │ ├── Canine.java
│ │ │ ├── Chimpanzee.java
│ │ │ ├── Eagle.java
│ │ │ ├── Elephant.java
│ │ │ ├── Elephant2.java
│ │ │ ├── Elephant3.java
│ │ │ ├── Flamingo.java
│ │ │ ├── Gorilla.java
│ │ │ ├── Groundhog.java
│ │ │ ├── HumpbackWhale.java
│ │ │ ├── HumpbackWhale2.java
│ │ │ ├── InsufficientDataException.java
│ │ │ ├── Lion.java
│ │ │ ├── Lion2.java
│ │ │ ├── Lion3.java
│ │ │ ├── Main2.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.java
│ │ │ ├── Mammal.java
│ │ │ ├── Mammal2.java
│ │ │ ├── Mammal3.java
│ │ │ ├── Panda.java
│ │ │ ├── Panda2.java
│ │ │ ├── Penguin.java
│ │ │ ├── Rabbit.java
│ │ │ ├── Reptile.java
│ │ │ ├── Reptile2.java
│ │ │ ├── Shark.java
│ │ │ ├── Snake.java
│ │ │ ├── Snake2.java
│ │ │ ├── Swan.java
│ │ │ ├── Walrus.java
│ │ │ ├── Walrus2.java
│ │ │ ├── Whale.java
│ │ │ ├── Whale2.java
│ │ │ ├── Wolf.java
│ │ │ ├── Zebra.java
│ │ │ ├── Zoo.java
│ │ │ ├── overridingVShiding
│ │ │ │ ├── Sub.java
│ │ │ │ ├── Sub2.java
│ │ │ │ ├── Sub3.java
│ │ │ │ ├── Super.java
│ │ │ │ ├── Super2.java
│ │ │ │ └── Super3.java
│ │ │ ├── q7
│ │ │ │ ├── Q7AbstractClass.java
│ │ │ │ └── Q7AbstractInheirtor.java
│ │ │ └── variableHiding
│ │ │ │ ├── Sub.java
│ │ │ │ ├── Sub2.java
│ │ │ │ ├── Sub3.java
│ │ │ │ ├── Sub4.java
│ │ │ │ ├── Super.java
│ │ │ │ ├── Super2.java
│ │ │ │ ├── Super3.java
│ │ │ │ └── Super4.java
│ │ │ ├── part2
│ │ │ ├── AbstractBear.java
│ │ │ ├── Bear.java
│ │ │ ├── Bear2.java
│ │ │ ├── Bear3.java
│ │ │ ├── CanCrawl.java
│ │ │ ├── CanDig.java
│ │ │ ├── CanFly.java
│ │ │ ├── CanFly2.java
│ │ │ ├── CanRun.java
│ │ │ ├── CanSwim.java
│ │ │ ├── CanSwim2.java
│ │ │ ├── Carnivore.java
│ │ │ ├── Cheetah.java
│ │ │ ├── Elephant.java
│ │ │ ├── HarborSeal.java
│ │ │ ├── HasFur.java
│ │ │ ├── HasTail.java
│ │ │ ├── HasTail2.java
│ │ │ ├── HasTrunk.java
│ │ │ ├── HasWhiskers.java
│ │ │ ├── HasWhiskers2.java
│ │ │ ├── Herbivore.java
│ │ │ ├── Herbivore2.java
│ │ │ ├── Herbivore3.java
│ │ │ ├── Herbivore4.java
│ │ │ ├── Herbivore5.java
│ │ │ ├── Hyena.java
│ │ │ ├── IsWarmBlooded.java
│ │ │ ├── LeopardSeal.java
│ │ │ ├── Main2.java
│ │ │ ├── Omnivore.java
│ │ │ ├── Omnivore2.java
│ │ │ ├── Omnivore3.java
│ │ │ ├── Omnivore4.java
│ │ │ ├── Seal.java
│ │ │ ├── Supervore.java
│ │ │ ├── WalksOnFourLegs.java
│ │ │ └── WalksOnFourLegs2.java
│ │ │ └── part3
│ │ │ ├── Alligator.java
│ │ │ ├── Bird.java
│ │ │ ├── Bird2.java
│ │ │ ├── Bunny.java
│ │ │ ├── Capybara.java
│ │ │ ├── Cat.java
│ │ │ ├── Cat2.java
│ │ │ ├── Cat3.java
│ │ │ ├── Cat4.java
│ │ │ ├── Cat5.java
│ │ │ ├── Cat6.java
│ │ │ ├── Crocodile.java
│ │ │ ├── Fish.java
│ │ │ ├── HasFins.java
│ │ │ ├── HasTail.java
│ │ │ ├── Hop.java
│ │ │ ├── Lemur.java
│ │ │ ├── Peacock.java
│ │ │ ├── Primate.java
│ │ │ ├── Reptile.java
│ │ │ ├── Rodent.java
│ │ │ ├── Run.java
│ │ │ ├── SharkFamily.java
│ │ │ ├── Walk.java
│ │ │ └── ZooWorker.java
│ ├── C6J8SE1
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── vcs.xml
│ │ ├── C6J8SE1.iml
│ │ └── src
│ │ │ ├── Main.java
│ │ │ ├── Main10.java
│ │ │ ├── Main11.java
│ │ │ ├── Main2.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.class
│ │ │ ├── Main4.java
│ │ │ ├── Main5.java
│ │ │ ├── Main6.java
│ │ │ ├── Main7.java
│ │ │ ├── Main8.java
│ │ │ ├── Main9.java
│ │ │ ├── Test1.java
│ │ │ ├── Test2.class
│ │ │ ├── Test2.java
│ │ │ ├── Zoo.class
│ │ │ └── Zoo.java
│ ├── Chapter 1 - Java Building Block.pptx
│ ├── Chapter 2 - Operators and Statements.pptx
│ ├── Chapter 3 - Core Java APIs.pptx
│ ├── Chapter 4 - Methods and Encapsulation.pptx
│ ├── Chapter 5 - Class Design.pptx
│ └── Chapter 6 - Exceptions.pptx
└── JSE8Foundation
│ ├── Chapter 10 - Classes and Constructors
│ ├── C10JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ └── modules.xml
│ │ ├── C10JSEBasic.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ ├── C10JSEBasic
│ │ │ │ ├── Area.class
│ │ │ │ ├── Main.class
│ │ │ │ ├── Main13.class
│ │ │ │ └── Volume.class
│ │ │ │ └── untitled
│ │ │ │ ├── Calculator.class
│ │ │ │ └── Main.class
│ │ └── src
│ │ │ ├── Main.java
│ │ │ ├── Main10.java
│ │ │ ├── Main11.java
│ │ │ ├── Main12.java
│ │ │ ├── Main13.java
│ │ │ ├── Main14.java
│ │ │ ├── Main15.java
│ │ │ ├── Main16.java
│ │ │ ├── Main17.java
│ │ │ ├── Main18.java
│ │ │ ├── Main19.java
│ │ │ ├── Main2.java
│ │ │ ├── Main20.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.java
│ │ │ ├── Main5.java
│ │ │ ├── Main6.java
│ │ │ ├── Main7.java
│ │ │ ├── Main8.java
│ │ │ ├── Main9.java
│ │ │ └── Obscuring
│ │ │ ├── Main.java
│ │ │ └── Test.java
│ └── Chapter 10 - Classes and Constructors.pptx
│ ├── Chapter 11 - Java Methods
│ ├── C11JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C11JSEBasic.iml
│ │ └── src
│ │ │ ├── Main.java
│ │ │ ├── Main10.java
│ │ │ ├── Main11.java
│ │ │ ├── Main12.java
│ │ │ ├── Main13.java
│ │ │ ├── Main14.java
│ │ │ ├── Main15.java
│ │ │ ├── Main16.java
│ │ │ ├── Main2.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.java
│ │ │ ├── Main5.java
│ │ │ ├── Main6.java
│ │ │ ├── Main7.java
│ │ │ ├── Main8.java
│ │ │ ├── Main9.java
│ │ │ └── main17.java
│ └── Chapter 11 - Java Methods.pptx
│ ├── Chapter 12 + 13 Working with Math, Random and String classes
│ ├── C12-13JSEBasic
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── material_theme_project_new.xml
│ │ │ ├── misc.xml
│ │ │ └── modules.xml
│ │ ├── C12-13JSEBasic.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C12-13JSEBasic
│ │ │ │ ├── Account.class
│ │ │ │ ├── Main.class
│ │ │ │ └── TestClass.class
│ │ └── src
│ │ │ ├── Main.java
│ │ │ └── Main2.java
│ └── Chapter 12 + 13 - Working with Math, Random and String classes.pptx
│ ├── Chapter 14 - Debugging and Exception Handling
│ ├── C14JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C14JSEBasic.iml
│ │ └── src
│ │ │ ├── Main.java
│ │ │ ├── Main2.java
│ │ │ ├── Main3.java
│ │ │ ├── Main4.java
│ │ │ ├── Main5.java
│ │ │ ├── Main6.java
│ │ │ ├── Main7.java
│ │ │ └── Main8.java
│ └── Chapter 14 - Debugging and Exception Handling.pptx
│ ├── Chapter 2 - What is Java
│ └── Chapter 2 - What is Java.pptx
│ ├── Chapter 3 - Java Basic
│ ├── C3JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── dictionaries
│ │ │ │ └── vingi.xml
│ │ │ ├── inspectionProfiles
│ │ │ │ └── profiles_settings.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ ├── uiDesigner.xml
│ │ │ └── vcs.xml
│ │ ├── C3JSEBasic.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C3JSEBasic
│ │ │ │ ├── Account.class
│ │ │ │ ├── Car.class
│ │ │ │ ├── Dealership.class
│ │ │ │ ├── Deploy.class
│ │ │ │ ├── Deploy1.class
│ │ │ │ ├── Deploy2.class
│ │ │ │ ├── DifferenceRefVSPrim.class
│ │ │ │ ├── FinancialFunction.class
│ │ │ │ ├── InterfaceExample1.class
│ │ │ │ ├── InterfaceExecutor.class
│ │ │ │ ├── MainTest1.class
│ │ │ │ ├── Person.class
│ │ │ │ ├── Test1.class
│ │ │ │ ├── dup1.class
│ │ │ │ ├── endmain.class
│ │ │ │ └── test3.class
│ │ └── src
│ │ │ ├── ClassExample.java
│ │ │ ├── DifferenceRefVSPrim.java
│ │ │ ├── InterfaceExample1.class
│ │ │ ├── InterfaceExample1.java
│ │ │ ├── InterfaceExecutor.java
│ │ │ ├── MainTest1.java
│ │ │ ├── PackageExample
│ │ │ └── JavaClassStructure.java
│ │ │ ├── Person.java
│ │ │ ├── StaticExample1.java
│ │ │ ├── StaticExample2.java
│ │ │ ├── Test1.java
│ │ │ ├── dup1.java
│ │ │ ├── endmain.java
│ │ │ ├── staticquest1.java
│ │ │ └── test3.java
│ └── Chapter 3 - Java Basic.pptx
│ ├── Chapter 4 - Basic Java Elements
│ ├── C4JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C4JSEBasic.iml
│ │ └── src
│ │ │ ├── Account.java
│ │ │ ├── C1.class
│ │ │ ├── C1.java
│ │ │ ├── InvalidPackageStatement.java
│ │ │ ├── InvalidVariableName.java
│ │ │ ├── MultipleClassExample.java
│ │ │ ├── PackageIllustration
│ │ │ ├── Motorbike.java
│ │ │ └── TestMotorbike.java
│ │ │ ├── PackageIllustration2
│ │ │ ├── InvalidPackageStudentClass.java
│ │ │ └── TestMotorbike3.java
│ │ │ ├── QuizEndOfPackageImportSection.java
│ │ │ ├── StudentClassPathExample.java
│ │ │ ├── SummaryImportantJavaKeywords.java
│ │ │ ├── TestDriver2.java
│ │ │ ├── TestInitializer.java
│ │ │ ├── TestMotorbike2.java
│ │ │ ├── TestNoTypeDef.java
│ │ │ ├── com
│ │ │ └── fpt
│ │ │ │ ├── InvalidStatement.java
│ │ │ │ ├── Student.java
│ │ │ │ └── TestNonEnforcedPackageRule.java
│ │ │ ├── creatingjarfile
│ │ │ ├── Main.jar
│ │ │ ├── Main.java
│ │ │ └── creatingjarfile
│ │ │ │ └── Main.class
│ │ │ ├── manifestcreate
│ │ │ ├── ManifestCreate.java
│ │ │ ├── manifestcreate.jar
│ │ │ ├── mymanifest.txt
│ │ │ └── vn
│ │ │ │ └── edu
│ │ │ │ └── fpt
│ │ │ │ └── ManifestCreate.class
│ │ │ └── packageTest
│ │ │ ├── C2.class
│ │ │ └── C2.java
│ ├── C4JSEBasic_HW
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C4JSEBasic_HW.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C4JSEBasic_HW
│ │ │ │ ├── ex1
│ │ │ │ ├── package1
│ │ │ │ │ ├── CPackage1.class
│ │ │ │ │ └── TestP1AccessField.class
│ │ │ │ └── package2
│ │ │ │ │ ├── CPackage2.class
│ │ │ │ │ ├── CPackage2_test.class
│ │ │ │ │ └── TestAccessField.class
│ │ │ │ └── ex2
│ │ │ │ └── hr
│ │ │ │ ├── Admin.class
│ │ │ │ ├── TestAdmin.class
│ │ │ │ └── reporting
│ │ │ │ └── TimeCard.class
│ │ └── src
│ │ │ ├── ex1
│ │ │ ├── package1
│ │ │ │ ├── CPackage1.java
│ │ │ │ └── TestP1AccessField.java
│ │ │ └── package2
│ │ │ │ ├── CPackage2.java
│ │ │ │ ├── CPackage2_test.java
│ │ │ │ └── TestAccessField.java
│ │ │ ├── ex2
│ │ │ └── hr
│ │ │ │ ├── Admin.java
│ │ │ │ ├── TestAdmin.java
│ │ │ │ └── reporting
│ │ │ │ └── TimeCard.java
│ │ │ ├── ex3
│ │ │ ├── EX3.java
│ │ │ └── ex3
│ │ │ │ └── EX3.class
│ │ │ ├── ex4
│ │ │ └── excercise4.txt
│ │ │ └── ex5
│ │ │ └── Manager.java
│ └── Chapter 4 - Basic Java Elements.pptx
│ ├── Chapter 5 - Working With Java Data Type
│ ├── C5JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C5JSEBasic.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C5JSEBasic
│ │ │ │ ├── section5_2
│ │ │ │ └── section5_2_2
│ │ │ │ │ ├── Student.class
│ │ │ │ │ └── TestStudent.class
│ │ │ │ └── section5_3
│ │ │ │ ├── section5_3_1
│ │ │ │ ├── SomeClass.class
│ │ │ │ └── test.class
│ │ │ │ └── section5_3_2
│ │ │ │ └── AllTypesOfVariableInitAndDeclare.class
│ │ └── src
│ │ │ ├── section5_2
│ │ │ └── section5_2_2
│ │ │ │ ├── Student.java
│ │ │ │ └── TestStudent.java
│ │ │ ├── section5_3
│ │ │ ├── section5_3_1
│ │ │ │ ├── SomeClass.java
│ │ │ │ └── test.java
│ │ │ ├── section5_3_2
│ │ │ │ └── AllTypesOfVariableInitAndDeclare.java
│ │ │ ├── section5_3_3
│ │ │ │ ├── CompileTimeConstant1.java
│ │ │ │ ├── CompileTimeConstant2.java
│ │ │ │ ├── CompileTimeConstant3.java
│ │ │ │ ├── JvmSecondApproach.java
│ │ │ │ ├── TestClass1.java
│ │ │ │ ├── TestClass2.java
│ │ │ │ ├── TestClass3.java
│ │ │ │ ├── UninitInstanceVar.java
│ │ │ │ ├── UninitializedVariableJavaVirtualMachine.java
│ │ │ │ └── section5_3
│ │ │ │ │ └── section5_3_3
│ │ │ │ │ ├── CompileTimeConstant1.class
│ │ │ │ │ └── CompileTimeConstant2.class
│ │ │ ├── section5_3_4
│ │ │ │ ├── ExplicitNarrowing.java
│ │ │ │ ├── InvalidVarAssignment.java
│ │ │ │ ├── PrimitiveAssignment.java
│ │ │ │ └── TwoTypesOfAssignment.java
│ │ │ └── section5_3_5
│ │ │ │ ├── TestClass.java
│ │ │ │ └── section5_3
│ │ │ │ └── section5_3_5
│ │ │ │ └── TestClass.class
│ │ │ ├── section5_4
│ │ │ ├── AssigningObjectToRef.java
│ │ │ ├── DeclareAndInstantiate.java
│ │ │ └── ReferenceVarDeclaration.java
│ │ │ └── section5_6
│ │ │ └── homework
│ │ │ └── hw1
│ │ │ └── Person.java
│ └── Chapter 5 - Working With Java Data Type.pptx
│ ├── Chapter 6 - Working with Java Operators
│ ├── C6JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ └── uiDesigner.xml
│ │ ├── C6JSEBasic.iml
│ │ └── src
│ │ │ ├── HW1.java
│ │ │ ├── Main.java
│ │ │ └── section6_1
│ │ │ ├── section6_1_1
│ │ │ ├── ArithmeticOperators
│ │ │ │ ├── AddSubMulDivi.java
│ │ │ │ ├── ModulusOperators.java
│ │ │ │ ├── UnaryIncrementDecrement.java
│ │ │ │ ├── UnaryMinus.java
│ │ │ │ └── section6_1
│ │ │ │ │ └── section6_1_1
│ │ │ │ │ └── ArithmeticOperators
│ │ │ │ │ └── UnaryIncrementDecrement.class
│ │ │ ├── AssignmentOperators
│ │ │ │ ├── CompoundAssignment.java
│ │ │ │ ├── SimpleAssignment.java
│ │ │ │ └── section6_1
│ │ │ │ │ └── section6_1_1
│ │ │ │ │ └── AssignmentOperators
│ │ │ │ │ └── CompoundAssignment.class
│ │ │ ├── LogicalConditionalOperators
│ │ │ │ ├── AndOrOperators.java
│ │ │ │ ├── Negation.java
│ │ │ │ └── Ternary.java
│ │ │ ├── MiscellaneousOperators
│ │ │ │ ├── ArrayAccessOperator.java
│ │ │ │ ├── CastOperator.java
│ │ │ │ ├── DotOperator.java
│ │ │ │ ├── InstanceOfOperator.java
│ │ │ │ ├── LambdaOperator.java
│ │ │ │ ├── StringConcatenation.java
│ │ │ │ └── section6_1
│ │ │ │ │ └── section6_1_1
│ │ │ │ │ └── MiscellaneousOperators
│ │ │ │ │ └── LambdaOperator.class
│ │ │ ├── OverviewOfOperators.java
│ │ │ └── RelationalOperators
│ │ │ │ ├── RelationalOperator1.java
│ │ │ │ └── RelationalOperator2.java
│ │ │ └── section6_1_2
│ │ │ └── ExpressionVsStatement.java
│ └── Chapter 6 - Working with Java Operators.pptx
│ ├── Chapter 7 - Using Decision Statements
│ ├── C7JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ └── modules.xml
│ │ ├── C7JSEBasic.iml
│ │ ├── out
│ │ │ └── production
│ │ │ │ └── C7JSEBasic
│ │ │ │ ├── HW.class
│ │ │ │ └── Main.class
│ │ └── src
│ │ │ ├── HW.java
│ │ │ └── Main.java
│ └── Chapter 7 - Using Decision Statement.pptx
│ ├── Chapter 8 - Using Looping Statement
│ └── C8JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ ├── .gitignore
│ │ ├── inspectionProfiles
│ │ │ └── Project_Default.xml
│ │ ├── misc.xml
│ │ └── modules.xml
│ │ ├── C8JSEBasic.iml
│ │ └── src
│ │ └── Main.java
│ ├── Chapter 9 - Arrays and ArrayLists
│ ├── C9JSEBasic
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── .gitignore
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ └── modules.xml
│ │ ├── C9JSEBasic.iml
│ │ └── src
│ │ │ ├── Main.class
│ │ │ ├── Main.java
│ │ │ ├── Student.class
│ │ │ └── Test1.java
│ └── Chapter 9 - Arrays and ArrayLists.pptx
│ ├── OCF Mock Test
│ ├── ocf full test 1 - 2nd Attempt.pdf
│ ├── ocf full test 1.pdf
│ ├── ocf full test 2 (final) - 2nd Attempt.pdf
│ ├── ocf full test 2 (final).pdf
│ ├── ocf full test 3 - 2nd Attempt.pdf
│ ├── ocf full test 3.pdf
│ └── ocf full test 4.pdf
│ └── OCF Test Protocol.docx
├── OCFA-eCertificate.png
├── PUBLIC_ARCHIVE
├── BOOKS
│ ├── OCA
│ │ └── Jeanne Boyarsky, Scott Selikoff - OCA_ Oracle Certified Associate Java SE 8 Programmer I Study Guide_ Exam 1Z0-808-Sybex (2014).pdf
│ └── OCFA
│ │ └── OCFA+Java+Foundations+Exam+Fundamentals+ENT240623-4880-65163.pdf
└── FOR_REVISION
│ ├── REVISION_APPS
│ ├── Enthuware
│ │ ├── ETSViewer.jar
│ │ ├── OCA ETS File
│ │ │ └── japv8.ets
│ │ └── OCFA ETS file
│ │ │ └── 1z0-811.ets
│ ├── McGrawHill Interactive
│ │ └── how to run.docx
│ └── README.md
│ └── REVISION_BOOK
│ ├── Mala Gupta - OCA Java SE 8 Programmer I Certification Guide-Manning Publications (2016).pdf
│ ├── OCA Revision Pack 1.pdf
│ ├── OCA Revision Pack 2.pdf
│ └── manning oca java se 8.pdf
├── README.md
├── file lab
├── Database - SQL
│ ├── LAB1
│ │ ├── Intro to DB.sql
│ │ ├── lab1.sql
│ │ └── northwind_mysql.sql
│ ├── LAB2
│ │ ├── SELECT.sql
│ │ ├── lab2 (1).sql
│ │ └── northwind_mysql (2).sql
│ └── LAB3
│ │ ├── Advanced Select.sql
│ │ ├── lab3 (1).sql
│ │ └── northwind_mysql (2).sql
├── Java OCFA-OCA
│ ├── c01
│ │ ├── lab1.1.pdf
│ │ └── lab1.2.docx
│ ├── c02
│ │ └── lab2.docx
│ ├── c03
│ │ └── lab3.docx
│ ├── c04
│ │ └── lab4.docx
│ ├── c05
│ │ └── lab5.docx
│ ├── c06
│ │ └── lab6.docx
│ ├── c07
│ │ └── lab7.docx
│ ├── c08
│ │ └── lab Inheritance.docx
│ ├── c09
│ │ └── lab9_Polymorphism.docx
│ ├── c10
│ │ └── java_lab4.docx
│ ├── c11
│ │ └── java_lab_5.docx
│ ├── c12
│ │ ├── MathExpression_class_diagram (1).pdf
│ │ ├── java_lab_6 (1).docx
│ │ └── math (1).txt
│ ├── c13
│ │ ├── java7_lab.docx
│ │ ├── random_sentences.txt
│ │ ├── random_words.txt
│ │ └── source.txt
│ ├── c14
│ │ ├── java8_lab.txt
│ │ ├── word_list.txt
│ │ ├── word_set_a.txt
│ │ ├── word_set_b.txt
│ │ └── word_sub_set.txt
│ └── c15
│ │ ├── java9_lab.txt
│ │ ├── movie_list.txt
│ │ └── person_list.txt
├── JavaFX - UI
│ ├── C01 - Intro
│ │ ├── class12.zip
│ │ └── class12
│ │ │ ├── class12_javafx_ui
│ │ │ ├── RectangleArea.css
│ │ │ ├── RectangleAreaController.java
│ │ │ ├── RectangleAreaMain.java
│ │ │ ├── RectangleAreaUI.fxml
│ │ │ ├── calculator.png
│ │ │ └── desktop.ini
│ │ │ ├── desktop.ini
│ │ │ ├── java12_lesson_plan.txt
│ │ │ ├── lab-convert-to-javaFX
│ │ │ ├── 1 simple-registration-form
│ │ │ │ ├── README.txt
│ │ │ │ ├── codepen-source.url
│ │ │ │ ├── css
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── style.css
│ │ │ │ ├── desktop.ini
│ │ │ │ ├── index.html
│ │ │ │ ├── license.txt
│ │ │ │ └── screenshot.png
│ │ │ ├── 2 sign-up-form
│ │ │ │ ├── README.txt
│ │ │ │ ├── codepen-source.url
│ │ │ │ ├── css
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── style.css
│ │ │ │ ├── desktop.ini
│ │ │ │ ├── index.html
│ │ │ │ ├── index.pug
│ │ │ │ ├── js
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── index.js
│ │ │ │ ├── less
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── style.less
│ │ │ │ ├── license.txt
│ │ │ │ └── screenshot.PNG
│ │ │ ├── 3 campsite-registration
│ │ │ │ ├── README.txt
│ │ │ │ ├── codepen-source.url
│ │ │ │ ├── css
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── style.css
│ │ │ │ ├── desktop.ini
│ │ │ │ ├── index.haml
│ │ │ │ ├── index.html
│ │ │ │ ├── js
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── index.js
│ │ │ │ ├── less
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ └── style.less
│ │ │ │ ├── license.txt
│ │ │ │ └── screenshot.PNG
│ │ │ ├── 4 complex-registration
│ │ │ │ ├── css
│ │ │ │ │ ├── default.css
│ │ │ │ │ └── desktop.ini
│ │ │ │ ├── desktop.ini
│ │ │ │ ├── img
│ │ │ │ │ ├── bg_infobox.gif
│ │ │ │ │ ├── desktop.ini
│ │ │ │ │ ├── h1.png
│ │ │ │ │ └── overlay.png
│ │ │ │ ├── index.html
│ │ │ │ └── screenshot.jpg
│ │ │ └── desktop.ini
│ │ │ └── pdf
│ │ │ ├── RectangleArea.css.pdf
│ │ │ ├── RectangleAreaController.java.pdf
│ │ │ ├── RectangleAreaMain.java.pdf
│ │ │ ├── RectangleAreaUI.fxml.pdf
│ │ │ ├── SceneBuilder.pdf
│ │ │ └── desktop.ini
│ └── C02 - Multi scene
│ │ ├── class13.zip
│ │ └── class13
│ │ ├── class13_javafx_multi_scenes
│ │ ├── EditUI.fxml
│ │ ├── EditUIController.java
│ │ ├── IndexUI.fxml
│ │ ├── IndexUIController.java
│ │ ├── Main.java
│ │ ├── Navigator.java
│ │ └── desktop.ini
│ │ ├── class13_javafx_property
│ │ ├── RectangleArea.css
│ │ ├── RectangleAreaController.java
│ │ ├── RectangleAreaMain.java
│ │ ├── RectangleAreaUI.fxml
│ │ ├── calculator.png
│ │ └── desktop.ini
│ │ ├── desktop.ini
│ │ ├── java13_lesson_plan.txt
│ │ ├── lab13_javafx_property.xlsx
│ │ └── lab13_multi_scene
│ │ ├── about.html
│ │ ├── blog.html
│ │ ├── contact.html
│ │ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── desktop.ini
│ │ └── templatemo-style.css
│ │ ├── desktop.ini
│ │ ├── img
│ │ ├── classic-pattern-bg.png
│ │ ├── desktop.ini
│ │ ├── tm-about-img.jpg
│ │ ├── tm-blog-img.jpg
│ │ ├── tm-contact-img.jpg
│ │ ├── tm-home-img.jpg
│ │ ├── tm-img-100x100-1.jpg
│ │ ├── tm-img-100x100-2.jpg
│ │ ├── tm-img-100x100-3.jpg
│ │ ├── tm-img-100x100-4.jpg
│ │ ├── tm-img-100x100-5.jpg
│ │ ├── tm-img-100x100-6.jpg
│ │ ├── tm-img-1010x336-1.jpg
│ │ ├── tm-img-240x120-1.jpg
│ │ ├── tm-img-240x120-2.jpg
│ │ ├── tm-img-240x120-3.jpg
│ │ ├── tm-img-310x180-1.jpg
│ │ ├── tm-img-310x180-2.jpg
│ │ ├── tm-img-310x180-3.jpg
│ │ ├── tm-img-310x180-4.jpg
│ │ └── tm-img-660x330-1.jpg
│ │ ├── index.html
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── desktop.ini
│ │ └── jquery-1.11.3.min.js
├── i18n-l10n
│ ├── class16-20250111T013527Z-001.zip
│ └── class16
│ │ ├── 1808g.book.sql
│ │ ├── class16_javafx_i18n_l10n.before.rar
│ │ ├── class16_javafx_i18n_l10n
│ │ ├── Book.java
│ │ ├── DbService.java
│ │ ├── EditUI.fxml
│ │ ├── EditUIController.java
│ │ ├── IndexUI.fxml
│ │ ├── IndexUIController.java
│ │ ├── Main.java
│ │ ├── Navigator.java
│ │ └── Translator.java
│ │ ├── class16_javase_i18n_l10n
│ │ ├── I18N_I10N.java
│ │ ├── MessagesBundle.properties
│ │ ├── MessagesBundle_th_TH.properties
│ │ └── MessagesBundle_vn_VN.properties
│ │ ├── java16_lab.xlsx
│ │ ├── java16_lesson_plan.txt
│ │ └── languages
│ │ ├── MessagesBundle.properties
│ │ ├── MessagesBundle_fr_FR.properties
│ │ └── MessagesBundle_it_IT.properties
└── javafx - curd
│ ├── class15.zip
│ └── class15
│ ├── 1808g.book.sql
│ ├── class15_javafx_jdbc_crud
│ ├── Book.java
│ ├── DbService.java
│ ├── EditUI.fxml
│ ├── EditUIController.java
│ ├── IndexUI.fxml
│ ├── IndexUIController.java
│ ├── Main.java
│ ├── Navigator.java
│ └── desktop.ini
│ ├── desktop.ini
│ ├── java15_lesson_plan.txt
│ ├── lab15 (2 sheets).xlsx
│ └── mysql-connector-java-8.0.16.jar
└── miscellaneous
├── FirstCSTest
└── Main
│ ├── diagnostic test of fundamental programming (1).docx
│ └── universal.py
├── HCM_Coding_Revision_2024
└── HCMJavaReview
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── HCMJavaReview.iml
│ └── src
│ └── EX6.java
├── TEST AREA.txt
├── TinyTensor
└── OrgREADME
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── OrgREADME.iml
│ ├── out
│ └── production
│ │ └── OrgREADME
│ │ ├── Credit.class
│ │ ├── Organization.class
│ │ ├── README.class
│ │ └── memberlist.txt
│ └── src
│ ├── README.java
│ └── memberlist.txt
├── github profile java version
└── READMEJava
│ ├── .gitignore
│ ├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
│ ├── READMEJava.iml
│ ├── out
│ └── production
│ │ └── READMEJava
│ │ ├── README.class
│ │ └── READMEMechanism.class
│ └── src
│ └── DucksaberVN.java
└── redo lab
├── LAB1.2
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── .name
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
├── LAB1.2.iml
└── src
│ ├── EX1.java
│ ├── EX2.java
│ ├── EX3.java
│ ├── EX4.java
│ └── EX5.java
├── LAB15
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ └── vcs.xml
├── LAB15.iml
└── src
│ ├── Person.java
│ ├── java9_lab.txt
│ └── person_list.txt
├── LAB2
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ └── vcs.xml
├── LAB2.iml
└── src
│ ├── AscendingDigits.java
│ ├── BMI.java
│ ├── EX1.java
│ ├── EX2.java
│ ├── EX3.java
│ └── Suffix.java
├── LAB3
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ └── vcs.xml
├── LAB3.iml
└── src
│ ├── EX1.java
│ ├── EX2.java
│ ├── EX3.java
│ ├── EX4.java
│ ├── EX6.java
│ └── Validate.java
├── LAB4
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ └── vcs.xml
├── LAB4.iml
└── src
│ ├── EX2.java
│ ├── EX3.java
│ ├── EX4.java
│ ├── EX5.java
│ ├── EX7.java
│ ├── EX8.java
│ └── MagicNumber.java
├── LAB5
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ └── vcs.xml
├── LAB5.iml
└── src
│ ├── EX1.java
│ ├── EX2.java
│ ├── EX3.java
│ ├── EX4.java
│ ├── EX5.java
│ ├── EX6.java
│ ├── EX7.java
│ ├── EX8_1.java
│ └── EX8_2.java
└── SQL
├── Redo-lab1
├── .idea
│ ├── .gitignore
│ ├── dataSources.xml
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── sqldialects.xml
│ └── vcs.xml
├── Diagram_0.pdf
├── Intro to DB.sql
├── lab1.sql
├── lab1_worked_solution.sql
└── northwind_mysql.sql
├── Redo-lab2
├── .idea
│ ├── .gitignore
│ ├── codeStyles
│ │ └── codeStyleConfig.xml
│ ├── dataSources.xml
│ ├── inspectionProfiles
│ │ └── Project_Default.xml
│ ├── sqldialects.xml
│ └── vcs.xml
├── lab2.sql
├── lab2_worked_solution.sql
└── northwind_mysql (1).sql
└── Redo-lab3
├── .idea
├── .gitignore
├── dataSources.xml
├── inspectionProfiles
│ └── Project_Default.xml
├── sqldialects.xml
└── vcs.xml
├── lab3.sql
└── lab3_worked_solution.sql
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/.gitignore
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/.gitignore
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/lib/mysql-connector-java-8.0.16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/lib/mysql-connector-java-8.0.16.jar
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/out/production/EX/MainDir/Beans/Module/Module.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/out/production/EX/MainDir/Beans/Module/Module.class
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/out/production/EX/MainDir/Beans/Teacher/Teacher.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/out/production/EX/MainDir/Beans/Teacher/Teacher.class
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/out/production/EX/MainDir/MessagesBundle_de_DE.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/out/production/EX/MainDir/MessagesBundle_de_DE.properties
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/out/production/EX/MainDir/UI/fxmlAndMain/Navigator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/out/production/EX/MainDir/UI/fxmlAndMain/Navigator.class
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/out/production/EX/MainDir/dbservice/MySQLService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/out/production/EX/MainDir/dbservice/MySQLService.class
--------------------------------------------------------------------------------
/1-10-2025/LabWork/EX/src/MainDir/MessagesBundle_de_DE.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/LabWork/EX/src/MainDir/MessagesBundle_de_DE.properties
--------------------------------------------------------------------------------
/1-10-2025/class16-20250111T013527Z-001.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/class16-20250111T013527Z-001.zip
--------------------------------------------------------------------------------
/1-10-2025/class16/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-10-2025/class16/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-10-2025/class16/class16_javafx_i18n_l10n.before.rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/class16/class16_javafx_i18n_l10n.before.rar
--------------------------------------------------------------------------------
/1-10-2025/class16/class16_javase_i18n_l10n/MessagesBundle.properties:
--------------------------------------------------------------------------------
1 | ask.name = What's your name?
2 | greet = Hello
3 | ask.birth.year = Which year were you born?
4 | ans.age = Your age is
5 |
--------------------------------------------------------------------------------
/1-10-2025/class16/java16_lab.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-10-2025/class16/java16_lab.xlsx
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/Screenshot 2025-01-05 at 18.30.31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/Screenshot 2025-01-05 at 18.30.31.png
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/classic-pattern-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/classic-pattern-bg.png
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-about-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-about-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-blog-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-blog-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-contact-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-contact-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-home-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-home-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-4.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-5.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-100x100-6.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-1010x336-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-1010x336-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-240x120-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-310x180-4.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX1/src/MainDir/tm-img-660x330-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/LabWork/EX1/src/MainDir/tm-img-660x330-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX2/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-4-2025/LabWork/EX2/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-4-2025/class13.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13.zip
--------------------------------------------------------------------------------
/1-4-2025/class13/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-4-2025/class13/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-4-2025/class13/class13_javafx_property/calculator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/class13_javafx_property/calculator.png
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_javafx_property.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_javafx_property.xlsx
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/classic-pattern-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/classic-pattern-bg.png
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-about-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-about-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-blog-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-blog-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-contact-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-contact-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-home-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-home-img.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-4.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-5.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-100x100-6.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-1010x336-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-1010x336-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-240x120-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-1.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-2.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-3.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-310x180-4.jpg
--------------------------------------------------------------------------------
/1-4-2025/class13/lab13_multi_scene/img/tm-img-660x330-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-4-2025/class13/lab13_multi_scene/img/tm-img-660x330-1.jpg
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/Lab/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/Lab/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-6-2025/LabWorks/Lab/lib/mysql-connector-java-8.0.16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/LabWorks/Lab/lib/mysql-connector-java-8.0.16.jar
--------------------------------------------------------------------------------
/1-6-2025/class15.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15.zip
--------------------------------------------------------------------------------
/1-6-2025/class15/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/1-6-2025/class15/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/1-6-2025/class15/lab15 (2 sheets).xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/lab15 (2 sheets).xlsx
--------------------------------------------------------------------------------
/1-6-2025/class15/mysql-connector-java-8.0.16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/mysql-connector-java-8.0.16.jar
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Book.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Book.class
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/DbService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/DbService.class
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Main.class
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Navigator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/class15_javafx_jdbc_crud/Navigator.class
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/lab15 (2 sheets).xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/lab15 (2 sheets).xlsx
--------------------------------------------------------------------------------
/1-6-2025/class15/out/production/class15/mysql-connector-java-8.0.16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/1-6-2025/class15/out/production/class15/mysql-connector-java-8.0.16.jar
--------------------------------------------------------------------------------
/10-19-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-19-2024/.DS_Store
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/codeStyles/codeStyleConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/NorthWind.jYLXkQ.meta:
--------------------------------------------------------------------------------
1 | #n:NorthWind
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/SE1.H0ABAA.meta:
--------------------------------------------------------------------------------
1 | #n:SE1
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/information_schema.FNRwLQ.meta:
--------------------------------------------------------------------------------
1 | #n:information_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/mysql.osA4Bg.meta:
--------------------------------------------------------------------------------
1 | #n:mysql
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/performance_schema.kIw0nw.meta:
--------------------------------------------------------------------------------
1 | #n:performance_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/dataSources/0531ec33-32d4-41be-a822-99cc7d52398e/storage_v2/_src_/schema/sys.zb4BAA.meta:
--------------------------------------------------------------------------------
1 | #n:sys
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-19-2024/SQL1/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10-2-2024/NUS 2007 Works.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-2-2024/NUS 2007 Works.pdf
--------------------------------------------------------------------------------
/10-2-2024/termtest1_07s1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-2-2024/termtest1_07s1.pdf
--------------------------------------------------------------------------------
/10-2-2024/termtest1_07s1_ans.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-2-2024/termtest1_07s1_ans.pdf
--------------------------------------------------------------------------------
/10-26-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-26-2024/.DS_Store
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/LTN_357_AM.Lx1azg.meta:
--------------------------------------------------------------------------------
1 | #n:LTN_357_AM
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/NorthWind.jYLXkQ.meta:
--------------------------------------------------------------------------------
1 | #n:NorthWind
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/SE1.H0ABAA.meta:
--------------------------------------------------------------------------------
1 | #n:SE1
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta:
--------------------------------------------------------------------------------
1 | #n:information_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/mysql.osA4Bg.meta:
--------------------------------------------------------------------------------
1 | #n:mysql
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta:
--------------------------------------------------------------------------------
1 | #n:performance_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/dataSources/53c84228-40cf-4471-9348-1efe2a11abf3/storage_v2/_src_/schema/sys.zb4BAA.meta:
--------------------------------------------------------------------------------
1 | #n:sys
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/10-26-2024/SQL2/Diagram_0.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-26-2024/SQL2/Diagram_0.pdf
--------------------------------------------------------------------------------
/10-27-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/10-27-2024/.DS_Store
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/LTN_357_AM.Lx1azg.meta:
--------------------------------------------------------------------------------
1 | #n:LTN_357_AM
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/NorthWind.jYLXkQ.meta:
--------------------------------------------------------------------------------
1 | #n:NorthWind
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/SE1.H0ABAA.meta:
--------------------------------------------------------------------------------
1 | #n:SE1
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/information_schema.FNRwLQ.meta:
--------------------------------------------------------------------------------
1 | #n:information_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/mysql.osA4Bg.meta:
--------------------------------------------------------------------------------
1 | #n:mysql
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/performance_schema.kIw0nw.meta:
--------------------------------------------------------------------------------
1 | #n:performance_schema
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/dataSources/44bfeed7-9984-4d9c-b78a-4dbc03d574ae/storage_v2/_src_/schema/sys.zb4BAA.meta:
--------------------------------------------------------------------------------
1 | #n:sys
2 | ! [0, 0, null, null, -2147483648, -2147483648]
3 |
--------------------------------------------------------------------------------
/10-27-2024/SQL2 (continue)/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/11-2-2024/ap07_comp_sci_a_frq.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/11-2-2024/ap07_comp_sci_a_frq.pdf
--------------------------------------------------------------------------------
/11-2-2024/csa temp.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/11-2-2024/csa temp.docx
--------------------------------------------------------------------------------
/11-20-2024/Doc1.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/11-20-2024/Doc1.docx
--------------------------------------------------------------------------------
/11-20-2024/ap08_comp_sci_a_frq.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/11-20-2024/ap08_comp_sci_a_frq.pdf
--------------------------------------------------------------------------------
/11-20-2024/compsci_ab_exam_appendix.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/11-20-2024/compsci_ab_exam_appendix.pdf
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /workspace.xml
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/.idea/description.html:
--------------------------------------------------------------------------------
1 | Simple JavaFX 2.0 application that includes simple .fxml file with attached controller and Main class to quick start. Artifact to build JavaFX application is provided.
2 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/out/production/EX1/MainDir/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX1/out/production/EX1/MainDir/Main.class
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/out/production/EX1/MainDir/person_9742864.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX1/out/production/EX1/MainDir/person_9742864.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX1/src/MainDir/person_9742864.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX1/src/MainDir/person_9742864.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /workspace.xml
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/.idea/description.html:
--------------------------------------------------------------------------------
1 | Simple JavaFX 2.0 application that includes simple .fxml file with attached controller and Main class to quick start. Artifact to build JavaFX application is provided.
2 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/Main.class
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/person_9742864.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/person_9742864.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/pngwing.com.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/pngwing.com.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/visa-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/out/production/EX2/MainDir/visa-logo.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/email-black-envelope-shape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/email-black-envelope-shape.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/person_9742864.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/person_9742864.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/pngwing.com.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/pngwing.com.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/visa-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX2/src/MainDir/visa-logo.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/LabWorks/EX4/src/MainDir/checkbox-152186_640.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/LabWorks/EX4/src/MainDir/checkbox-152186_640.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12.zip
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/class12_javafx_ui/calculator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/class12_javafx_ui/calculator.png
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/1 simple-registration-form/README.txt:
--------------------------------------------------------------------------------
1 | A Pen created at CodePen.io. You can find this one at https://codepen.io/afirulaf/pen/djAen.
2 |
3 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/1 simple-registration-form/codepen-source.url:
--------------------------------------------------------------------------------
1 | [{000214A0-0000-0000-C000-000000000046}]
2 | Prop3=19,11
3 | [InternetShortcut]
4 | URL=https://codepen.io/afirulaf/pen/djAen
5 | IDList=
6 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/2 sign-up-form/codepen-source.url:
--------------------------------------------------------------------------------
1 | [{000214A0-0000-0000-C000-000000000046}]
2 | Prop3=19,11
3 | [InternetShortcut]
4 | URL=https://codepen.io/lvbach88/pen/WWWeep
5 | IDList=
6 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/3 campsite-registration/README.txt:
--------------------------------------------------------------------------------
1 | A Pen created at CodePen.io. You can find this one at https://codepen.io/andy31415/pen/FtKzs.
2 |
3 | Just playing around with dialog design in bootstrap.
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/3 campsite-registration/codepen-source.url:
--------------------------------------------------------------------------------
1 | [{000214A0-0000-0000-C000-000000000046}]
2 | Prop3=19,11
3 | [InternetShortcut]
4 | URL=https://codepen.io/andy31415/pen/FtKzs
5 | IDList=
6 |
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/lab-convert-to-javaFX/3 campsite-registration/js/index.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function() {
2 | $('.multiselect').multiselect();
3 | $('.datepicker').datepicker();
4 | });
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/pdf/RectangleArea.css.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/pdf/RectangleArea.css.pdf
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaController.java.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaController.java.pdf
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaMain.java.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaMain.java.pdf
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaUI.fxml.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/pdf/RectangleAreaUI.fxml.pdf
--------------------------------------------------------------------------------
/12-30-2024/C01 - Intro/class12/pdf/SceneBuilder.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/12-30-2024/C01 - Intro/class12/pdf/SceneBuilder.pdf
--------------------------------------------------------------------------------
/4-12-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-12-2024/.DS_Store
--------------------------------------------------------------------------------
/4-12-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/4-12-2024/c01/lab1.1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-12-2024/c01/lab1.1.pdf
--------------------------------------------------------------------------------
/4-12-2024/c01/lab1.2.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-12-2024/c01/lab1.2.docx
--------------------------------------------------------------------------------
/4-14-2024/c02/lab2.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/c02/lab2.docx
--------------------------------------------------------------------------------
/4-14-2024/flowchart ex1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/flowchart ex1.png
--------------------------------------------------------------------------------
/4-14-2024/flowchart ex2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/flowchart ex2.png
--------------------------------------------------------------------------------
/4-14-2024/flowchart ex4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/flowchart ex4.png
--------------------------------------------------------------------------------
/4-14-2024/flowchart ex5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/flowchart ex5.png
--------------------------------------------------------------------------------
/4-14-2024/flowchart ex6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-14-2024/flowchart ex6.png
--------------------------------------------------------------------------------
/4-19-2024/c03/lab3.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/c03/lab3.docx
--------------------------------------------------------------------------------
/4-19-2024/flowchart ex1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/flowchart ex1.png
--------------------------------------------------------------------------------
/4-19-2024/flowchart ex2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/flowchart ex2.png
--------------------------------------------------------------------------------
/4-19-2024/flowchart ex4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/flowchart ex4.png
--------------------------------------------------------------------------------
/4-19-2024/flowchart ex5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/flowchart ex5.png
--------------------------------------------------------------------------------
/4-19-2024/flowchart ex6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-19-2024/flowchart ex6.png
--------------------------------------------------------------------------------
/4-21-2024 (ABSENT)/c04/lab4.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-21-2024 (ABSENT)/c04/lab4.docx
--------------------------------------------------------------------------------
/4-21-2024 (ABSENT)/flowchart ex4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-21-2024 (ABSENT)/flowchart ex4.png
--------------------------------------------------------------------------------
/4-21-2024 (ABSENT)/flowchart ex5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-21-2024 (ABSENT)/flowchart ex5.png
--------------------------------------------------------------------------------
/4-21-2024 (ABSENT)/flowchart ex6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-21-2024 (ABSENT)/flowchart ex6.png
--------------------------------------------------------------------------------
/4-21-2024 (ABSENT)/flowchart ex7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-21-2024 (ABSENT)/flowchart ex7.png
--------------------------------------------------------------------------------
/4-26-2024/c05/lab5.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-26-2024/c05/lab5.docx
--------------------------------------------------------------------------------
/4-26-2024/flowchart ex2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-26-2024/flowchart ex2.png
--------------------------------------------------------------------------------
/4-26-2024/flowchart ex3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-26-2024/flowchart ex3.png
--------------------------------------------------------------------------------
/4-26-2024/flowchart ex4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-26-2024/flowchart ex4.png
--------------------------------------------------------------------------------
/4-26-2024/flowchart ex6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-26-2024/flowchart ex6.png
--------------------------------------------------------------------------------
/4-28-2024/c06/lab6.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-28-2024/c06/lab6.docx
--------------------------------------------------------------------------------
/4-28-2024/flowchart ex2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-28-2024/flowchart ex2.png
--------------------------------------------------------------------------------
/4-28-2024/flowchart ex3.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/4-28-2024/flowchart ex3.PNG
--------------------------------------------------------------------------------
/5-03-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/.DS_Store
--------------------------------------------------------------------------------
/5-03-2024/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/5-03-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5-03-2024/fundamental review.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/fundamental review.docx
--------------------------------------------------------------------------------
/5-03-2024/out/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/.DS_Store
--------------------------------------------------------------------------------
/5-03-2024/out/production/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/production/.DS_Store
--------------------------------------------------------------------------------
/5-03-2024/out/production/3-5-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/production/3-5-2024/.DS_Store
--------------------------------------------------------------------------------
/5-03-2024/out/production/3-5-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5-03-2024/out/production/3-5-2024/fundamental review.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/production/3-5-2024/fundamental review.docx
--------------------------------------------------------------------------------
/5-03-2024/out/production/3-5-2024/review1_1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/production/3-5-2024/review1_1.class
--------------------------------------------------------------------------------
/5-03-2024/out/production/3-5-2024/review2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-03-2024/out/production/3-5-2024/review2.class
--------------------------------------------------------------------------------
/5-05-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-05-2024/.DS_Store
--------------------------------------------------------------------------------
/5-05-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/5-10-2024/IMG_1809.heic:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-10-2024/IMG_1809.heic
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/.DS_Store
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/.DS_Store
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Author.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Author.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/AuthorTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/AuthorTest.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Book1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Book1.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Book2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Book2.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Circle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Circle.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/CircleTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/CircleTest.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Employee.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/Employee.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/EmployeeTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/EmployeeTest.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/TestBook1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/TestBook1.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/TestBook2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/build/classes/TestBook2.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/c07/lab7.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/OOP_LAB7/c07/lab7.docx
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/OOP_LAB7/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/Revision3/.DS_Store
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/Revision3/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/Revision3/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/build/classes/revision3/Bai6_cach1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/Revision3/build/classes/revision3/Bai6_cach1.class
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/build/classes/revision3/Bai6_cach1.rs:
--------------------------------------------------------------------------------
1 | Bai6_cach1
2 |
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/c_programming_trial_pe_questions.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/5-31-2024 and 6-2-2024/Revision3/c_programming_trial_pe_questions.pdf
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/5-31-2024 and 6-2-2024/Revision3/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-08-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/.DS_Store
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/.DS_Store
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/built-jar.properties:
--------------------------------------------------------------------------------
1 | #Sun, 09 Jun 2024 16:23:19 +0700
2 |
3 |
4 | C\:\\Users\\vingi\\Desktop\\comp\ sci\\CS-Java\\8-6-2024\\OOP_LAB8=
5 |
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Circle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Circle.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/CircleTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/CircleTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Person.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Person.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/PersonTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/PersonTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Point2D.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Point2D.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Point2DTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Point2DTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Point3D.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Point3D.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Point3DTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Point3DTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Rectangle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Rectangle.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/RectangleTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/RectangleTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Shape.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Shape.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/ShapeTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/ShapeTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Square.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Square.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/SquareTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/SquareTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Student.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Student.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/StudentTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/StudentTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/Teacher.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/Teacher.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/build/classes/TeacherTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/build/classes/TeacherTest.class
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/c08/lab Inheritance.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/c08/lab Inheritance.docx
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/dist/OOP_LAB8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-08-2024/OOP_LAB8/dist/OOP_LAB8.jar
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/6-08-2024/OOP_LAB8/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-09-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/.DS_Store
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/.DS_Store
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Circle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Circle.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/CircleCylinderTest.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/CircleCylinderTest.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Cylinder.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Cylinder.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Rectangle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Rectangle.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Shape.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Shape.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Test.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/build/classes/Triangle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/build/classes/Triangle.class
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/c09/lab9_Polymorphism.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-09-2024/OOP_LAB9/c09/lab9_Polymorphism.docx
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/6-09-2024/OOP_LAB9/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-14-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/.DS_Store
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/.DS_Store
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Animal.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Cat.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Cat.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Fish.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Fish.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Movable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Movable.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/MovablePoint.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/MovablePoint.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Pet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Pet.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Rectangle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Rectangle.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Shape.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Shape.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Spider.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Spider.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Test.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Test2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Test2.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/TestAnimals.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/TestAnimals.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/build/classes/Triangle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/build/classes/Triangle.class
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/c10/java_lab4.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-14-2024/OOP_LAB10/c10/java_lab4.docx
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/6-14-2024/OOP_LAB10/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-16-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/.DS_Store
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/.DS_Store
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/Circle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/Circle.class
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/Cylinder.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/Cylinder.class
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/TestDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/build/classes/C11/ex2/TestDriver.class
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/c11/java_lab_5.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-16-2024/JavaApplication5 copy/c11/java_lab_5.docx
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/6-16-2024/JavaApplication5 copy/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-21-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/.DS_Store
--------------------------------------------------------------------------------
/6-21-2024/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/6-21-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/.DS_Store
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/.idea/dictionaries/ducksabervn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/.netbeans_automatic_build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/.netbeans_automatic_build
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/.netbeans_update_resources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/.netbeans_update_resources
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead1.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead1_Final.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead1_Final.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX1/MathRead2.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX1/TestingArea.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX1/TestingArea.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Addition.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Addition.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Division.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Division.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/EX2aDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/EX2aDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/EX2bDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/MathExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/MathExpression.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Modular.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Modular.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Multiplication.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Multiplication.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/NonValidExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/NonValidExpression.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Subtraction.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Subtraction.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/build/classes/EX2/Unsolved_EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/build/classes/EX2/Unsolved_EX2bDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/c12/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/c12/.DS_Store
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/c12/MathExpression_class_diagram (1).pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/c12/MathExpression_class_diagram (1).pdf
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/c12/java_lab_6 (1).docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/c12/java_lab_6 (1).docx
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | X-COMMENT: Main-Class will be added automatically by build
3 |
4 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | compile.on.save=true
2 | user.properties.file=C:\\Users\\vingi\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
3 |
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead1.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead1_Final.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead1_Final.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/MathRead2.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/TestingArea.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX1/TestingArea.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Addition.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Addition.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Division.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Division.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/EX2aDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/EX2aDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/EX2bDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/MathExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/MathExpression.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Modular.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Modular.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Multiplication.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Multiplication.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/NonValidExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/NonValidExpression.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Subtraction.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Subtraction.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Unsolved_EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/Unsolved_EX2bDriver.class
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/math_result_oop.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/out/production/OOP_LAB12/EX2/math_result_oop.txt
--------------------------------------------------------------------------------
/6-21-2024/OOP_LAB12/src/EX2/math_result_oop.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/OOP_LAB12/src/EX2/math_result_oop.txt
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX1/MathRead1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX1/MathRead1.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX1/MathRead1_Final.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX1/MathRead1_Final.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX1/MathRead2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX1/MathRead2.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX1/TestingArea.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX1/TestingArea.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Addition.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Addition.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Division.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Division.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/EX2aDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/EX2aDriver.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/EX2bDriver.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/MathExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/MathExpression.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Modular.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Modular.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Multiplication.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Multiplication.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/NonValidExpression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/NonValidExpression.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Subtraction.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Subtraction.class
--------------------------------------------------------------------------------
/6-21-2024/out/production/21-6-2024/EX2/Unsolved_EX2bDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-21-2024/out/production/21-6-2024/EX2/Unsolved_EX2bDriver.class
--------------------------------------------------------------------------------
/6-23-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/.DS_Store
--------------------------------------------------------------------------------
/6-23-2024/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/6-23-2024/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/.DS_Store
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/c13/java7_lab.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/c13/java7_lab.docx
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX1/wording_nio.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX1/wording_nio.class
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX1/wording_vowel_nio.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX1/wording_vowel_nio.class
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX2/largest_word_sentence.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX2/largest_word_sentence.class
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/out/production/OOP_LAB13/EX2/result.txt:
--------------------------------------------------------------------------------
1 | all.after bad so isn’t life that realise to off it laugh and yourself of ass an make completely is do to need you all Sometimes,
2 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/src/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/6-23-2024/OOP_LAB13/src/.DS_Store
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/src/EX1/longest_word.txt:
--------------------------------------------------------------------------------
1 | Word: tax , length: 3
2 | Word: pat , length: 3
3 | Word: confrontation , length: 13
4 | Word: fog , length: 3
5 | Word: nun , length: 3
6 | Word: fee , length: 3
7 | Word: put , length: 3
8 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/src/EX1/vowel_word.txt:
--------------------------------------------------------------------------------
1 | Word: institution , number of vow: 5
2 |
--------------------------------------------------------------------------------
/6-23-2024/OOP_LAB13/src/EX2/result.txt:
--------------------------------------------------------------------------------
1 | all.after bad so isn’t life that realise to off it laugh and yourself of ass an make completely is do to need you all Sometimes,
2 |
--------------------------------------------------------------------------------
/7-05-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/.DS_Store
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/.DS_Store
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/.idea/dictionaries/ducksabervn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/c14/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/c14/.DS_Store
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/c14/word_sub_set.txt:
--------------------------------------------------------------------------------
1 | functional
2 | secretion
3 | marsh
4 | landscape
5 | scholar
6 | sight
7 | refer
8 | medieval
9 | vegetation
10 | crime
11 | isolation
12 |
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX1_2/question1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX1_2/question1.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX1_2/question2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX1_2/question2.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question3.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question4.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question5.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question6.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/question6.class
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/test_set_a.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2
3 | 3
4 | 4
5 | 5
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/test_set_b.txt:
--------------------------------------------------------------------------------
1 | 5
2 | 2
3 | 3
4 | 1
5 | 4
6 | 0
7 | 123
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/out/production/OOP_LAB14/EX3_4_5_6/word_sub_set.txt:
--------------------------------------------------------------------------------
1 | functional
2 | secretion
3 | marsh
4 | landscape
5 | scholar
6 | sight
7 | refer
8 | medieval
9 | vegetation
10 | crime
11 | isolation
12 |
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/src/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-05-2024/OOP_LAB14/src/.DS_Store
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/src/EX3_4_5_6/test_set_a.txt:
--------------------------------------------------------------------------------
1 | 1
2 | 2
3 | 3
4 | 4
5 | 5
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/src/EX3_4_5_6/test_set_b.txt:
--------------------------------------------------------------------------------
1 | 5
2 | 2
3 | 3
4 | 1
5 | 4
6 | 0
7 | 123
--------------------------------------------------------------------------------
/7-05-2024/OOP_LAB14/src/EX3_4_5_6/word_sub_set.txt:
--------------------------------------------------------------------------------
1 | functional
2 | secretion
3 | marsh
4 | landscape
5 | scholar
6 | sight
7 | refer
8 | medieval
9 | vegetation
10 | crime
11 | isolation
12 |
--------------------------------------------------------------------------------
/7-07-2024/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-07-2024/.DS_Store
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-07-2024/OOP_LAB15/.DS_Store
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-07-2024/OOP_LAB15/.gitignore
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/out/production/OOP_LAB15/HW/Person.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-07-2024/OOP_LAB15/out/production/OOP_LAB15/HW/Person.class
--------------------------------------------------------------------------------
/7-07-2024/OOP_LAB15/out/production/OOP_LAB15/HW/RunDriver.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-07-2024/OOP_LAB15/out/production/OOP_LAB15/HW/RunDriver.class
--------------------------------------------------------------------------------
/7-19-2024/ap revision thing 1.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-19-2024/ap revision thing 1.docx
--------------------------------------------------------------------------------
/7-19-2024/ap04_frq_compsci_a_35988.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-19-2024/ap04_frq_compsci_a_35988.pdf
--------------------------------------------------------------------------------
/7-21-2024/ap revision thing 1.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-21-2024/ap revision thing 1.docx
--------------------------------------------------------------------------------
/7-21-2024/ap04_frq_compsci_a_35988.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/7-21-2024/ap04_frq_compsci_a_35988.pdf
--------------------------------------------------------------------------------
/8-10-2024/_ap05_frq_comp_sci_a_45544.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/8-10-2024/_ap05_frq_comp_sci_a_45544.pdf
--------------------------------------------------------------------------------
/8-10-2024/ap revision thing 2 (version 08102024).docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/8-10-2024/ap revision thing 2 (version 08102024).docx
--------------------------------------------------------------------------------
/8-11-2024/_ap05_frq_comp_sci_a_45544.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/8-11-2024/_ap05_frq_comp_sci_a_45544.pdf
--------------------------------------------------------------------------------
/8-11-2024/ap revision thing 2 (version 08112024).docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/8-11-2024/ap revision thing 2 (version 08112024).docx
--------------------------------------------------------------------------------
/9-29-2024/termtest1_06s1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/9-29-2024/termtest1_06s1.pdf
--------------------------------------------------------------------------------
/9-29-2024/termtest1_06s1_ans.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/9-29-2024/termtest1_06s1_ans.pdf
--------------------------------------------------------------------------------
/9-4-2024/Adobe Scan 4 Sep 2024_combined.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/9-4-2024/Adobe Scan 4 Sep 2024_combined.pdf
--------------------------------------------------------------------------------
/9-4-2024/termtest_2008s1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/9-4-2024/termtest_2008s1.pdf
--------------------------------------------------------------------------------
/Java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/Java.png
--------------------------------------------------------------------------------
/OCA-eCertificate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCA-eCertificate.png
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C2J8SE1/src/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C2J8SE1/src/Main.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C3J8SE1/src/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C3J8SE1/src/Main.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/.gitignore
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/.idea/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/.idea/.gitignore
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Animal.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Bunny.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Bunny.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/CheckIfHopper.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/CheckIfHopper.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/CheckTrait.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/CheckTrait.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Hamster.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Hamster.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Hamster2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Hamster2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/ImmutableSwan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/ImmutableSwan.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main15.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main15.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main18.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main18.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main4.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Main5.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Mouse.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Mouse.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/MouseHouse.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/MouseHouse.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/NotImmutable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/NotImmutable.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Q3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Q3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit1.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Rabbit4.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/RunHere1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/RunHere1.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Swan1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Swan1.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Swan2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Swan2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Test1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/Test1.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C4J8SE1/out/production/C4J8SE1/test.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/CheckIfHopper.java:
--------------------------------------------------------------------------------
1 | public class CheckIfHopper implements CheckTrait {
2 | @Override
3 | public boolean test(Animal a){
4 | return a.canHop();
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/CheckTrait.java:
--------------------------------------------------------------------------------
1 | public interface CheckTrait {
2 | boolean test(Animal a);
3 | }
4 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/Main2.java:
--------------------------------------------------------------------------------
1 | public class Main2 {
2 | public static void main(String[] args) {
3 | System.out.println("hello world from Main 2");
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/Main3.java:
--------------------------------------------------------------------------------
1 | public class Main3 {
2 | public static void main(String[] args) {
3 | String[] input = new String[0];
4 | Main2.main(input);
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/Main4.java:
--------------------------------------------------------------------------------
1 | public class Main4 {
2 | private static final int NUM_BUCKETS = 45;
3 | public static void main(String[] args) {
4 | //NUM_BUCKETS = 5;
5 | }
6 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/Main5.java:
--------------------------------------------------------------------------------
1 | public class Main5 {
2 | public int a;
3 |
4 | public Main5(int a){
5 | a = a;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C4J8SE1/src/test.java:
--------------------------------------------------------------------------------
1 | public class test {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/.gitignore
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/Main.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal4.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal5.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal6.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal6.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal7.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal7.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal8.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal8.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Animal9.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Ape.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Ape.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bear.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bear.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bear2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bear2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/BigCat.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/BigCat.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/BigCat2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/BigCat2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bird.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Bird.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Camel.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Camel.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Camel2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Camel2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Canine.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Canine.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Eagle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Eagle.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Fish.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Fish.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Gorilla.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Gorilla.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Lion3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Mammal3.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Panda.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Panda.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Panda2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Panda2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Penguin.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Penguin.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Primate.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Primate.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Rabbit.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Rabbit.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Reptile.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Reptile.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Rodent.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Rodent.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Shark.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Shark.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Snake.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Snake.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Snake2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Snake2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Swan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Swan.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Whale.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Whale.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Whale2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Whale2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Wolf.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Wolf.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zebra.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zebra.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo1.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part1/Zoo2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Bear.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Bear.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Bear2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Bear2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanDig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanDig.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanFly.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanFly.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanFly2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/CanFly2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Seal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C5J8SE1/out/production/C5J8SE1/part2/Seal.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Animal2 {
4 | private int age;
5 | public Animal2(int age) {
6 | super();
7 | this.age = age;
8 | }
9 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal5.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Animal5{
4 | public abstract String getName();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal6.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Animal6{
4 | public abstract String getName();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal7.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Animal7{
4 | public abstract String getName();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal8.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Animal8{
4 | public abstract String getName();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Animal9.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Animal9{
4 | public abstract String getName();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/BactrianCamel.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class BactrianCamel extends Camel{
4 | /*private int getNumberOfHumps() {
5 | return 2;
6 | }*/
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/BactrianCamel2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class BactrianCamel2 extends Camel2{
4 | private int getNumberOfHumps() {
5 | return 2;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Bear.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Bear {
4 | public static void eat() {
5 | System.out.println("Bear is eating");
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/BigCat.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class BigCat extends Animal8{
4 | public abstract void roar();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/BigCat2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class BigCat2 extends Animal {
4 | public String getName() {
5 | return "BigCat";
6 | }
7 | public abstract void roar();
8 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Bird.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Bird {
4 | public final boolean hasFeathers() {
5 | return true;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Bird2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | /*public class Bird2 extends Animal2 {
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Camel.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Camel {
4 | protected String getNumberOfHumps() {
5 | return "Undefined";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Camel2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Camel2 {
4 | private String getNumberOfHumps() {
5 | return "Undefined";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Canine.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Canine {
4 | public double getAverageWeight() {
5 | return 50;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Eagle.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Eagle extends Animal7{
4 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Elephant.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | /*public class Elephant extends Mammal{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Elephant2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 | /*
3 | public class Elephant2 extends Mammal2{
4 | public Elephant2() {
5 | }
6 | }*/
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Flamingo.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | /*public class Flamingo extends Bird2{
4 | public String getName() {
5 | return "Flamingo";
6 | }
7 | }*/
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Groundhog.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | class Rodent {}
4 | /**
5 | * What happen if I want to make Rodent class "..." ?*/
6 | public class Groundhog extends Rodent {
7 |
8 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/HumpbackWhale.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class HumpbackWhale extends Whale {
4 | private void sing() {
5 | System.out.println("Humpback whale is singing");
6 | }
7 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/InsufficientDataException.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class InsufficientDataException extends Exception{
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Lion3.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Lion3 extends BigCat2{
4 | public void roar() {
5 | System.out.println("The Lion lets out a loud ROAR!");
6 | }
7 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Main2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | class Zoo1{
4 | }
5 | //check what does InteliJ try to warn us
6 | class Zoo2 extends java.lang.Object{
7 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Main4.java:
--------------------------------------------------------------------------------
1 | package part1;
2 | /*final abstract class Tortoise {
3 | }
4 |
5 | abstract class Goat {
6 | public abstract final void chew();
7 | }*/
8 |
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Mammal.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Mammal {
4 | public Mammal(int age) {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Mammal2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Mammal2 {
4 | public Mammal2(int age) {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Penguin.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Penguin extends Bird{
4 | /*public final boolean hasFeathers() {
5 | return false;
6 | }*/
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Swan.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public class Swan extends Animal4{
4 | public String getName() {
5 | return "Swan";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Walrus.java:
--------------------------------------------------------------------------------
1 | package part1;
2 | /*public class Walrus extends Animal5{
3 | }*/
4 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Walrus2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | /*public class Walrus2 extends Animal7{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Whale.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Whale {
4 | // private abstract void sing();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part1/Whale2.java:
--------------------------------------------------------------------------------
1 | package part1;
2 |
3 | public abstract class Whale2{
4 | protected abstract void sing();
5 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/AbstractBear.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public abstract class AbstractBear implements
4 | Herbivore5, Omnivore4{
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/CanFly.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface CanFly {
4 | void fly(int speed);
5 | abstract void takeoff();
6 | public abstract double dive();
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/CanRun.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface CanRun {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Carnivore.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Carnivore {
4 | /*public default void eatMeat();
5 | public int getRequiredFoodAmount() {
6 | return 13;
7 | }*/
8 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Cheetah.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | /*public class Cheetah extends CanRun{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Elephant.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public class Elephant implements
4 | WalksOnFourLegs, HasTrunk, Herbivore {
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HarborSeal.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public abstract class HarborSeal implements HasTail2, HasWhiskers2{
4 | //explain why this code doesn't has any compile error ?
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasFur.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | /*public interface HasFur extends Hyena{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasTail.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface HasTail {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasTail2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface HasTail2 {
4 | public int getTailLength();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasTrunk.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface HasTrunk {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasWhiskers.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface HasWhiskers {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/HasWhiskers2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface HasWhiskers2 {
4 | public int getNumberOfWhiskers();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Herbivore.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Herbivore {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Herbivore2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Herbivore2 {
4 | public void eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Herbivore3.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Herbivore3 {
4 | public int eatPlants(int quantity);
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Herbivore4.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Herbivore4 {
4 | public int eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Herbivore5.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Herbivore5 {
4 | public int eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Hyena.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public class Hyena {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/IsWarmBlooded.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface IsWarmBlooded {
4 | boolean hasScales();
5 | public default double getTemperature() {
6 | return 10.0;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/LeopardSeal.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public class LeopardSeal implements HasTail2, HasWhiskers2{
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Main2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public class Main2 {
4 | public static void main(String[] args) {
5 | // WalksOnFourLegs wrong = new WalksOnFourLegs();
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Omnivore.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Omnivore {
4 | public void eatPlants();
5 | public void eatMeat();
6 | }
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Omnivore2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Omnivore2 {
4 | public void eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Omnivore3.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Omnivore3 {
4 | public void eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Omnivore4.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Omnivore4 {
4 | public void eatPlants();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Seal.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Seal extends HasTail, HasWhiskers{
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/Supervore.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface Supervore extends Herbivore5, Omnivore4{
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/WalksOnFourLegs.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | public interface WalksOnFourLegs {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part2/WalksOnFourLegs2.java:
--------------------------------------------------------------------------------
1 | package part2;
2 |
3 | /*public final interface WalksOnFourLegs2 {
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Alligator.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Alligator extends Reptile{
4 | public String getName() {
5 | return "Alligator";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Bird.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Bird {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Cat.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | /*public class Cat implements Walk, Run{
4 | public static void main(String[] args) {
5 | System.out.println(new Cat().getSpeed());
6 | }
7 | }*/
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Cat2.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | /*public interface Cat2 extends Walk, Run{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Cat3.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | /*public abstract class Cat3 implements Walk, Run{
4 | }*/
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Cat4.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Cat4 implements Walk, Run{
4 | @Override
5 | public int getSpeed(){
6 | return 0;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Cat5.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public abstract class Cat5 implements Walk, Run{
4 | @Override
5 | public int getSpeed(){
6 | return 10000;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Crocodile.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Crocodile extends Reptile{
4 | public String getName() {
5 | return "Crocodile";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Fish.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Fish{
4 | public static void main(String[] args) {
5 | Fish fish = new Fish();
6 | // Bird bird = (Bird)fish;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/HasTail.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public interface HasTail {
4 | public boolean isTailStriped();
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Hop.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public interface Hop {
4 | static int getJumpHeight() {
5 | return 8;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Primate.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Primate {
4 | public boolean hasHair() {
5 | return true;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Reptile.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Reptile {
4 | public String getName() {
5 | return "Reptile";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Rodent.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public class Rodent {
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Run.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public interface Run {
4 | public default int getSpeed() {
5 | return 10;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C5J8SE1/src/part3/Walk.java:
--------------------------------------------------------------------------------
1 | package part3;
2 |
3 | public interface Walk {
4 | public default int getSpeed() {
5 | return 5;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Main10.java:
--------------------------------------------------------------------------------
1 | /*
2 | class Hopper {
3 | public void hop() { }
4 | }
5 | class Bunny2 extends Hopper {
6 | public void hop() throws IllegalStateException { }
7 | }
8 | */
9 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Main3.java:
--------------------------------------------------------------------------------
1 | /**
2 | * run this using {@code javac}*/
3 | public class Main3 {
4 | /*static{
5 | throw new RuntimeException();
6 | }*/
7 | }
8 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Main4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Main4.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Test1.java:
--------------------------------------------------------------------------------
1 | public class Test1 {
2 | public static void printSomeThing(){
3 | System.out.println("hello from test 1");
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Test2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Test2.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Test2.java:
--------------------------------------------------------------------------------
1 | public class Test2 {
2 | public static void main(String[] args) {
3 | Test1.printSomeThing();
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Zoo.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/C6J8SE1/src/Zoo.class
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 1 - Java Building Block.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 1 - Java Building Block.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 2 - Operators and Statements.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 2 - Operators and Statements.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 3 - Core Java APIs.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 3 - Core Java APIs.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 4 - Methods and Encapsulation.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 4 - Methods and Encapsulation.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 5 - Class Design.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 5 - Class Design.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/J8SE1/Chapter 6 - Exceptions.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/J8SE1/Chapter 6 - Exceptions.pptx
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 11 - Java Methods/C11JSEBasic/src/Main13.java:
--------------------------------------------------------------------------------
1 | /*class TestClass{
2 | public static void main(String[] args){
3 | ConnectionHelper c = null;
4 | c.ping();
5 | }
6 | }*/
7 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 3 - Java Basic/C3JSEBasic/.idea/dictionaries/vingi.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 3 - Java Basic/C3JSEBasic/src/InterfaceExample1.java:
--------------------------------------------------------------------------------
1 | public interface InterfaceExample1 {
2 | void off();
3 | void on();
4 | }
5 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 3 - Java Basic/C3JSEBasic/src/dup1.java:
--------------------------------------------------------------------------------
1 | public class dup1 {
2 | private int abc;
3 | }
4 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 3 - Java Basic/C3JSEBasic/src/test3.java:
--------------------------------------------------------------------------------
1 | public class test3 {
2 | private int a;
3 | }
4 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 4 - Basic Java Elements/C4JSEBasic/src/C1.java:
--------------------------------------------------------------------------------
1 | public class C1 {
2 | public static void main(String[] args) {
3 | System.out.println("im in default package");
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 4 - Basic Java Elements/C4JSEBasic/src/TestDriver2.java:
--------------------------------------------------------------------------------
1 | public class TestDriver2 {
2 | public static void main(String[] args) {
3 |
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 4 - Basic Java Elements/C4JSEBasic/src/TestNoTypeDef.java:
--------------------------------------------------------------------------------
1 | import java.util.Scanner;
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 4 - Basic Java Elements/C4JSEBasic/src/manifestcreate/mymanifest.txt:
--------------------------------------------------------------------------------
1 | Main-Class: vn.edu.fpt.ManifestCreate
2 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 5 - Working With Java Data Type/C5JSEBasic/src/section5_2/section5_2_2/Student.java:
--------------------------------------------------------------------------------
1 | package section5_2.section5_2_2;
2 |
3 | public class Student {
4 | int id;
5 | }
6 |
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/Chapter 9 - Arrays and ArrayLists/C9JSEBasic/src/Test1.java:
--------------------------------------------------------------------------------
1 | public interface Test1 {
2 | void hello();
3 | }
4 |
5 | interface test2 extends Test1{
6 | void goodbye();
7 | }
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 1.pdf
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 3.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 3.pdf
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 4.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/JSE8Foundation/OCF Mock Test/ocf full test 4.pdf
--------------------------------------------------------------------------------
/OCFA - OCA Presentations/JSE8Foundation/OCF Test Protocol.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA - OCA Presentations/JSE8Foundation/OCF Test Protocol.docx
--------------------------------------------------------------------------------
/OCFA-eCertificate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/OCFA-eCertificate.png
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/ETSViewer.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/ETSViewer.jar
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/OCA ETS File/japv8.ets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/OCA ETS File/japv8.ets
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/OCFA ETS file/1z0-811.ets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_APPS/Enthuware/OCFA ETS file/1z0-811.ets
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/OCA Revision Pack 1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/OCA Revision Pack 1.pdf
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/OCA Revision Pack 2.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/OCA Revision Pack 2.pdf
--------------------------------------------------------------------------------
/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/manning oca java se 8.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/PUBLIC_ARCHIVE/FOR_REVISION/REVISION_BOOK/manning oca java se 8.pdf
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c01/lab1.1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c01/lab1.1.pdf
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c01/lab1.2.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c01/lab1.2.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c02/lab2.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c02/lab2.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c03/lab3.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c03/lab3.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c04/lab4.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c04/lab4.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c05/lab5.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c05/lab5.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c06/lab6.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c06/lab6.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c07/lab7.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c07/lab7.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c08/lab Inheritance.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c08/lab Inheritance.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c09/lab9_Polymorphism.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c09/lab9_Polymorphism.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c10/java_lab4.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c10/java_lab4.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c11/java_lab_5.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c11/java_lab_5.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c12/MathExpression_class_diagram (1).pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c12/MathExpression_class_diagram (1).pdf
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c12/java_lab_6 (1).docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c12/java_lab_6 (1).docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c13/java7_lab.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/Java OCFA-OCA/c13/java7_lab.docx
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c14/word_sub_set.txt:
--------------------------------------------------------------------------------
1 | functional
2 | secretion
3 | marsh
4 | landscape
5 | scholar
6 | sight
7 | refer
8 | medieval
9 | vegetation
10 | crime
11 | isolation
12 |
--------------------------------------------------------------------------------
/file lab/Java OCFA-OCA/c15/movie_list.txt:
--------------------------------------------------------------------------------
1 | "Force Awakens", 8.3, 2015
2 | "Star Wars", 8.7, 1977
3 | "Empire Strikes Back", 8.8, 1980
4 | "Return of the Jedi", 8.4, 1983
5 |
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12.zip
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/class12_javafx_ui/calculator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/class12_javafx_ui/calculator.png
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/lab-convert-to-javaFX/1 simple-registration-form/README.txt:
--------------------------------------------------------------------------------
1 | A Pen created at CodePen.io. You can find this one at https://codepen.io/afirulaf/pen/djAen.
2 |
3 |
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/lab-convert-to-javaFX/2 sign-up-form/codepen-source.url:
--------------------------------------------------------------------------------
1 | [{000214A0-0000-0000-C000-000000000046}]
2 | Prop3=19,11
3 | [InternetShortcut]
4 | URL=https://codepen.io/lvbach88/pen/WWWeep
5 | IDList=
6 |
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/lab-convert-to-javaFX/3 campsite-registration/js/index.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function() {
2 | $('.multiselect').multiselect();
3 | $('.datepicker').datepicker();
4 | });
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleArea.css.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleArea.css.pdf
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaController.java.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaController.java.pdf
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaMain.java.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaMain.java.pdf
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaUI.fxml.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/pdf/RectangleAreaUI.fxml.pdf
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C01 - Intro/class12/pdf/SceneBuilder.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C01 - Intro/class12/pdf/SceneBuilder.pdf
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C02 - Multi scene/class13.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C02 - Multi scene/class13.zip
--------------------------------------------------------------------------------
/file lab/JavaFX - UI/C02 - Multi scene/class13/lab13_javafx_property.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/JavaFX - UI/C02 - Multi scene/class13/lab13_javafx_property.xlsx
--------------------------------------------------------------------------------
/file lab/i18n-l10n/class16-20250111T013527Z-001.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/i18n-l10n/class16-20250111T013527Z-001.zip
--------------------------------------------------------------------------------
/file lab/i18n-l10n/class16/class16_javafx_i18n_l10n.before.rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/i18n-l10n/class16/class16_javafx_i18n_l10n.before.rar
--------------------------------------------------------------------------------
/file lab/i18n-l10n/class16/class16_javase_i18n_l10n/MessagesBundle.properties:
--------------------------------------------------------------------------------
1 | ask.name = What's your name?
2 | greet = Hello
3 | ask.birth.year = Which year were you born?
4 | ans.age = Your age is
5 |
--------------------------------------------------------------------------------
/file lab/i18n-l10n/class16/java16_lab.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/i18n-l10n/class16/java16_lab.xlsx
--------------------------------------------------------------------------------
/file lab/javafx - curd/class15.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/javafx - curd/class15.zip
--------------------------------------------------------------------------------
/file lab/javafx - curd/class15/lab15 (2 sheets).xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/javafx - curd/class15/lab15 (2 sheets).xlsx
--------------------------------------------------------------------------------
/file lab/javafx - curd/class15/mysql-connector-java-8.0.16.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/file lab/javafx - curd/class15/mysql-connector-java-8.0.16.jar
--------------------------------------------------------------------------------
/miscellaneous/TEST AREA.txt:
--------------------------------------------------------------------------------
1 | testing lmao
2 | test2
3 | test3
4 |
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/TinyTensor/OrgREADME/.gitignore
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/Credit.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/Credit.class
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/Organization.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/Organization.class
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/README.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/README.class
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/out/production/OrgREADME/memberlist.txt:
--------------------------------------------------------------------------------
1 | firstname lastname team position
2 | Thuan Do No Team Founder
3 | Ngan D No Team Coordinator
4 |
--------------------------------------------------------------------------------
/miscellaneous/TinyTensor/OrgREADME/src/memberlist.txt:
--------------------------------------------------------------------------------
1 | firstname lastname team position
2 | Thuan Do No Team Founder
3 | Ngan D No Team Coordinator
4 |
--------------------------------------------------------------------------------
/miscellaneous/github profile java version/READMEJava/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/github profile java version/READMEJava/.gitignore
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB1.2/.idea/.name:
--------------------------------------------------------------------------------
1 | LAB1.2
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB15/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB2/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB3/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB4/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/LAB5/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/SQL/Redo-lab1/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/SQL/Redo-lab1/Diagram_0.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MaiDinhVinh/CS-Java/8be138f918656d95aaa31b044c5d80cf46576c3f/miscellaneous/redo lab/SQL/Redo-lab1/Diagram_0.pdf
--------------------------------------------------------------------------------
/miscellaneous/redo lab/SQL/Redo-lab2/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/SQL/Redo-lab2/.idea/codeStyles/codeStyleConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/miscellaneous/redo lab/SQL/Redo-lab3/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Datasource local storage ignored files
5 | /dataSources/
6 | /dataSources.local.xml
7 |
--------------------------------------------------------------------------------