├── .gitignore ├── Day1 └── Session2 │ ├── Code_Review │ ├── README.md │ └── classification.pdf │ ├── DataVisibility │ ├── .gitignore │ ├── README.adoc │ ├── pom.xml │ └── src │ │ └── test │ │ └── java │ │ └── pro │ │ └── tremblay │ │ └── concexplained │ │ └── lock │ │ └── DataVisibilityTest.java │ ├── RemoteWorking │ ├── IMG_9212.JPG │ ├── README.md │ └── RemoteWorkingHarvest.JPG │ └── Self_Healing │ ├── README.md │ └── notes.jpg ├── Day2 ├── Session1 │ ├── Coding_Style │ │ └── README.md │ └── TestGeneration_MutationTesting │ │ ├── IMG_5227.JPG │ │ └── README.md ├── Session2 │ ├── DSLs │ │ └── README.md │ └── Staging │ │ ├── README.md │ │ ├── notes1.jpg │ │ └── notes2.jpg └── Session3 │ ├── Annotation │ └── README.md │ ├── Event_Storming │ └── README.md │ ├── Health │ └── README.md │ └── JVMInternals │ └── README.md ├── Day3 ├── Session1 │ ├── EmotionProcessing │ │ └── README.md │ ├── FRP_with_JavaFX │ │ ├── page_1.jpg │ │ ├── page_2.jpg │ │ ├── page_3.jpg │ │ └── page_4.jpg │ ├── Java_9_Jigsaw_Deficiencies.pdf │ ├── MicroProfile │ │ └── README.md │ └── Programming_for_Kids │ │ └── README.md ├── Session2 │ ├── Java-Docker-Alignment │ │ ├── README.md │ │ └── jcrete2017-day3-jvm+docker.jpg │ └── Overview_of _Java_9_Features.pdf └── Session3 │ ├── Exception_handling │ └── README.md │ └── Java_The_Bad │ ├── JDK9 Deprecation.jpg │ └── README.md ├── Day4 ├── Session1 │ ├── FastFileRPi │ │ ├── Notes.jpg │ │ └── README.md │ ├── ORM │ │ └── README.md │ └── PII │ │ └── README.md ├── Session2 │ ├── DevelopingWithPurpose │ │ ├── 1- Project Management Steps.JPG │ │ ├── 2- Vanguard Method Value and Failure Demand.JPG │ │ └── README.md │ ├── EventFlow │ │ ├── README.md │ │ ├── pic1.jpg │ │ └── pic2.jpg │ ├── GPU │ │ └── README.md │ ├── HumanInteractiveProtocol │ │ ├── IMG_20170720_111943.jpg │ │ ├── IMG_20170720_112001.jpg │ │ └── README.md │ └── IntegrationTesting │ │ ├── README.md │ │ └── mutants_real_faults_fse_2014.pdf └── Session3 │ ├── JVMBytecode │ └── README.md │ ├── TestingDistributedSystems │ └── README.md │ └── UITesting │ └── README.md ├── Day5 └── README.md ├── JCrete4Kids ├── LegoMX │ ├── 45544_colorsorter.pdf │ ├── Color Shorter.ev3 │ ├── color-sorter-nxt.ev3 │ └── ev3-program-description-color-sorter.pdf ├── RaspberryPi │ ├── Zombie Kids Workshop (Greek).pdf │ └── Zombie Kids Workshop.pdf └── WeDo │ └── WeDo2.jpg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Day1/Session2/Code_Review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/Code_Review/README.md -------------------------------------------------------------------------------- /Day1/Session2/Code_Review/classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/Code_Review/classification.pdf -------------------------------------------------------------------------------- /Day1/Session2/DataVisibility/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | 4 | target/ 5 | -------------------------------------------------------------------------------- /Day1/Session2/DataVisibility/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/DataVisibility/README.adoc -------------------------------------------------------------------------------- /Day1/Session2/DataVisibility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/DataVisibility/pom.xml -------------------------------------------------------------------------------- /Day1/Session2/DataVisibility/src/test/java/pro/tremblay/concexplained/lock/DataVisibilityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/DataVisibility/src/test/java/pro/tremblay/concexplained/lock/DataVisibilityTest.java -------------------------------------------------------------------------------- /Day1/Session2/RemoteWorking/IMG_9212.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/RemoteWorking/IMG_9212.JPG -------------------------------------------------------------------------------- /Day1/Session2/RemoteWorking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/RemoteWorking/README.md -------------------------------------------------------------------------------- /Day1/Session2/RemoteWorking/RemoteWorkingHarvest.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/RemoteWorking/RemoteWorkingHarvest.JPG -------------------------------------------------------------------------------- /Day1/Session2/Self_Healing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/Self_Healing/README.md -------------------------------------------------------------------------------- /Day1/Session2/Self_Healing/notes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day1/Session2/Self_Healing/notes.jpg -------------------------------------------------------------------------------- /Day2/Session1/Coding_Style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session1/Coding_Style/README.md -------------------------------------------------------------------------------- /Day2/Session1/TestGeneration_MutationTesting/IMG_5227.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session1/TestGeneration_MutationTesting/IMG_5227.JPG -------------------------------------------------------------------------------- /Day2/Session1/TestGeneration_MutationTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session1/TestGeneration_MutationTesting/README.md -------------------------------------------------------------------------------- /Day2/Session2/DSLs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session2/DSLs/README.md -------------------------------------------------------------------------------- /Day2/Session2/Staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session2/Staging/README.md -------------------------------------------------------------------------------- /Day2/Session2/Staging/notes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session2/Staging/notes1.jpg -------------------------------------------------------------------------------- /Day2/Session2/Staging/notes2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session2/Staging/notes2.jpg -------------------------------------------------------------------------------- /Day2/Session3/Annotation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session3/Annotation/README.md -------------------------------------------------------------------------------- /Day2/Session3/Event_Storming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session3/Event_Storming/README.md -------------------------------------------------------------------------------- /Day2/Session3/Health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session3/Health/README.md -------------------------------------------------------------------------------- /Day2/Session3/JVMInternals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day2/Session3/JVMInternals/README.md -------------------------------------------------------------------------------- /Day3/Session1/EmotionProcessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/EmotionProcessing/README.md -------------------------------------------------------------------------------- /Day3/Session1/FRP_with_JavaFX/page_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/FRP_with_JavaFX/page_1.jpg -------------------------------------------------------------------------------- /Day3/Session1/FRP_with_JavaFX/page_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/FRP_with_JavaFX/page_2.jpg -------------------------------------------------------------------------------- /Day3/Session1/FRP_with_JavaFX/page_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/FRP_with_JavaFX/page_3.jpg -------------------------------------------------------------------------------- /Day3/Session1/FRP_with_JavaFX/page_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/FRP_with_JavaFX/page_4.jpg -------------------------------------------------------------------------------- /Day3/Session1/Java_9_Jigsaw_Deficiencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/Java_9_Jigsaw_Deficiencies.pdf -------------------------------------------------------------------------------- /Day3/Session1/MicroProfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/MicroProfile/README.md -------------------------------------------------------------------------------- /Day3/Session1/Programming_for_Kids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session1/Programming_for_Kids/README.md -------------------------------------------------------------------------------- /Day3/Session2/Java-Docker-Alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session2/Java-Docker-Alignment/README.md -------------------------------------------------------------------------------- /Day3/Session2/Java-Docker-Alignment/jcrete2017-day3-jvm+docker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session2/Java-Docker-Alignment/jcrete2017-day3-jvm+docker.jpg -------------------------------------------------------------------------------- /Day3/Session2/Overview_of _Java_9_Features.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session2/Overview_of _Java_9_Features.pdf -------------------------------------------------------------------------------- /Day3/Session3/Exception_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session3/Exception_handling/README.md -------------------------------------------------------------------------------- /Day3/Session3/Java_The_Bad/JDK9 Deprecation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session3/Java_The_Bad/JDK9 Deprecation.jpg -------------------------------------------------------------------------------- /Day3/Session3/Java_The_Bad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day3/Session3/Java_The_Bad/README.md -------------------------------------------------------------------------------- /Day4/Session1/FastFileRPi/Notes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session1/FastFileRPi/Notes.jpg -------------------------------------------------------------------------------- /Day4/Session1/FastFileRPi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session1/FastFileRPi/README.md -------------------------------------------------------------------------------- /Day4/Session1/ORM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session1/ORM/README.md -------------------------------------------------------------------------------- /Day4/Session1/PII/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session1/PII/README.md -------------------------------------------------------------------------------- /Day4/Session2/DevelopingWithPurpose/1- Project Management Steps.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/DevelopingWithPurpose/1- Project Management Steps.JPG -------------------------------------------------------------------------------- /Day4/Session2/DevelopingWithPurpose/2- Vanguard Method Value and Failure Demand.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/DevelopingWithPurpose/2- Vanguard Method Value and Failure Demand.JPG -------------------------------------------------------------------------------- /Day4/Session2/DevelopingWithPurpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/DevelopingWithPurpose/README.md -------------------------------------------------------------------------------- /Day4/Session2/EventFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/EventFlow/README.md -------------------------------------------------------------------------------- /Day4/Session2/EventFlow/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/EventFlow/pic1.jpg -------------------------------------------------------------------------------- /Day4/Session2/EventFlow/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/EventFlow/pic2.jpg -------------------------------------------------------------------------------- /Day4/Session2/GPU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/GPU/README.md -------------------------------------------------------------------------------- /Day4/Session2/HumanInteractiveProtocol/IMG_20170720_111943.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/HumanInteractiveProtocol/IMG_20170720_111943.jpg -------------------------------------------------------------------------------- /Day4/Session2/HumanInteractiveProtocol/IMG_20170720_112001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/HumanInteractiveProtocol/IMG_20170720_112001.jpg -------------------------------------------------------------------------------- /Day4/Session2/HumanInteractiveProtocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/HumanInteractiveProtocol/README.md -------------------------------------------------------------------------------- /Day4/Session2/IntegrationTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/IntegrationTesting/README.md -------------------------------------------------------------------------------- /Day4/Session2/IntegrationTesting/mutants_real_faults_fse_2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session2/IntegrationTesting/mutants_real_faults_fse_2014.pdf -------------------------------------------------------------------------------- /Day4/Session3/JVMBytecode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session3/JVMBytecode/README.md -------------------------------------------------------------------------------- /Day4/Session3/TestingDistributedSystems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session3/TestingDistributedSystems/README.md -------------------------------------------------------------------------------- /Day4/Session3/UITesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day4/Session3/UITesting/README.md -------------------------------------------------------------------------------- /Day5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/Day5/README.md -------------------------------------------------------------------------------- /JCrete4Kids/LegoMX/45544_colorsorter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/LegoMX/45544_colorsorter.pdf -------------------------------------------------------------------------------- /JCrete4Kids/LegoMX/Color Shorter.ev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/LegoMX/Color Shorter.ev3 -------------------------------------------------------------------------------- /JCrete4Kids/LegoMX/color-sorter-nxt.ev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/LegoMX/color-sorter-nxt.ev3 -------------------------------------------------------------------------------- /JCrete4Kids/LegoMX/ev3-program-description-color-sorter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/LegoMX/ev3-program-description-color-sorter.pdf -------------------------------------------------------------------------------- /JCrete4Kids/RaspberryPi/Zombie Kids Workshop (Greek).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/RaspberryPi/Zombie Kids Workshop (Greek).pdf -------------------------------------------------------------------------------- /JCrete4Kids/RaspberryPi/Zombie Kids Workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/RaspberryPi/Zombie Kids Workshop.pdf -------------------------------------------------------------------------------- /JCrete4Kids/WeDo/WeDo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/JCrete4Kids/WeDo/WeDo2.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCrete/jcrete2017/HEAD/README.md --------------------------------------------------------------------------------