├── .gitignore ├── codepost ├── c_templates │ ├── build_test.sh │ ├── build_warnings_test.sh │ ├── template_test_001.sh │ └── template_test_suite.sh ├── generic_rubric.json ├── java_templates │ ├── build_test.sh │ ├── build_warnings_test.sh │ ├── junit_test_suite.sh │ └── template_test_001.sh └── readme.md ├── documents ├── TheTaoOfTALC.pdf ├── byod.pdf ├── byod.tex ├── codeUsageGuidelines.pdf ├── codeUsageGuidelines.tex ├── faq.md ├── howToComputer.md ├── instructor.md ├── iticse-7steps.pdf ├── laGuidelines.md ├── misc │ ├── Activating-Huskers-Email.pdf │ └── CanvasForUNO.pdf ├── mrc.jpg ├── rubric.md ├── rubric.pdf ├── rubric.tex ├── syllabus-194.md ├── syllabus.md ├── teOfCSE.pdf ├── teOfCSE.tex ├── tipsForOnline.pdf ├── tipsForOnline.tex ├── troubleShooting.pdf └── troubleShooting.tex ├── hacks ├── hack-dataProject │ └── readme.md ├── hack-debugging │ ├── primesProgram-buggy.c │ ├── primesProgram-fixed.c │ └── readme.md ├── hack-strings │ └── readme.md ├── hack1.0 │ ├── images │ │ ├── change.png │ │ ├── cl-gitcommit.png │ │ ├── cl-gitdiff.png │ │ ├── cl-githubNewRepo.png │ │ ├── cl-githubNewRepoName.png │ │ ├── cl-gitignore.png │ │ ├── cl-gitinit.png │ │ ├── cl-gitpush2.png │ │ ├── cl-gitstatus.png │ │ ├── cl-pwd.png │ │ ├── commit.png │ │ ├── completedRepo01.png │ │ ├── completedRepo02.png │ │ ├── completedRepo03.png │ │ ├── drag.png │ │ ├── postCreation.png │ │ ├── publish.png │ │ ├── pushChange.png │ │ ├── repositorydiagram.png │ │ └── setup.png │ └── readme.md ├── hack10.0 │ ├── examples │ │ ├── dnaSample001.txt │ │ ├── dnaSample002.txt │ │ ├── proteinResult001.txt │ │ └── proteinResult002.txt │ ├── proteinUtilDemo.c │ ├── protein_utils.c │ ├── protein_utils.h │ └── readme.md ├── hack11.0 │ ├── airport.h │ └── readme.md ├── hack12.0 │ └── readme.md ├── hack13.0 │ ├── airport.c │ ├── airport.h │ ├── files │ │ ├── airport_output_001.txt │ │ ├── airport_output_002.txt │ │ ├── airport_output_003.txt │ │ ├── airport_test_001.c │ │ ├── airport_test_001.csv │ │ ├── airport_test_002.c │ │ ├── airport_test_002.csv │ │ ├── airport_test_003.c │ │ └── airport_test_003.csv │ └── readme.md ├── hack14.0 │ └── readme.md ├── hack2.0 │ └── readme.md ├── hack3.0 │ └── readme.md ├── hack4.0 │ └── readme.md ├── hack5.0 │ └── readme.md ├── hack6.0 │ ├── makefile │ ├── readme.md │ └── utilsTester.c ├── hack7.0 │ ├── images │ │ ├── pointers.png │ │ ├── pointersHFlip.jpg │ │ ├── pointersRotated.jpg │ │ └── pointersVFlip.png │ └── readme.md └── readme.md ├── honors ├── documents │ └── syllabus.md ├── hacks │ ├── hack-strings │ │ └── readme.md │ ├── hack1.0 │ │ ├── images │ │ │ ├── cl-githubNewRepo.png │ │ │ ├── cl-githubNewRepoName.png │ │ │ ├── eclipse-githubNewRepo.png │ │ │ ├── eclipse-githubNewRepoName.png │ │ │ ├── eclipseCloneDialogAMarkUp.png │ │ │ ├── eclipseCloneDialogBMarkUp.png │ │ │ ├── eclipseCloneDialogCMarkUp.png │ │ │ ├── eclipseCommitDialogAMarkUp.png │ │ │ ├── eclipseCreateRepoDialogAMarkUp.png │ │ │ ├── eclipseGitPull.png │ │ │ ├── eclipseGitPullResult.png │ │ │ ├── eclipseGitPushDialogBMarkUp.png │ │ │ ├── eclipseGitPushMarkup.png │ │ │ ├── eclipseGitRepoCreateNewMarkUp.png │ │ │ ├── eclipseGitRepoMarkUp.png │ │ │ ├── eclipseGitStagingMarkUp.png │ │ │ ├── eclipseOpenPerspectiveMarkUp.png │ │ │ ├── eclipsePerspectiveDialog.png │ │ │ ├── eclipsePreCommit.png │ │ │ ├── eclipsePush.png │ │ │ ├── eclipsePushDialog.png │ │ │ ├── eclipseRemotePushMarkUp.png │ │ │ ├── eclipseRepoCommitMarkUp.png │ │ │ └── repositorydiagram.png │ │ └── readme.md │ ├── hack10.0 │ │ ├── ProteinTranslator.java │ │ ├── examples │ │ │ ├── dnaSample001.txt │ │ │ ├── dnaSample002.txt │ │ │ ├── proteinResult001.txt │ │ │ └── proteinResult002.txt │ │ └── readme.md │ ├── hack11.0 │ │ ├── Airport.java │ │ └── readme.md │ ├── hack12.0 │ │ ├── Pair.java │ │ └── readme.md │ ├── hack13.0 │ │ ├── AirportUtils.java │ │ └── readme.md │ ├── hack14.0 │ │ └── readme.md │ ├── hack2.0 │ │ └── readme.md │ ├── hack3.0 │ │ └── readme.md │ ├── hack4.0 │ │ └── readme.md │ ├── hack5.0 │ │ └── readme.md │ ├── hack6.0 │ │ ├── CMYK.java │ │ ├── ColorUtilsTests.java │ │ ├── RGB.java │ │ └── readme.md │ ├── hack7.0 │ │ ├── ImageDriver.java │ │ ├── ImageUtils.java │ │ ├── RGB.java │ │ ├── images │ │ │ ├── pointers.png │ │ │ ├── pointersHFlip.jpg │ │ │ ├── pointersRotated.jpg │ │ │ └── pointersVFlip.png │ │ └── readme.md │ └── readme.md └── readme.md ├── license.md ├── notes ├── 1198-Fall2019 │ ├── 01-introduction.pdf │ ├── 02-basics.md │ ├── 03-conditionals.md │ ├── 04-loops.md │ ├── 05-functions.md │ ├── 06-errorHandling.md │ ├── 07-arrays.md │ ├── 08-strings.md │ ├── 09-fileIO.md │ ├── 10-encapsulation.md │ ├── 11-recursion.md │ ├── 14-gui.md │ ├── 15-databases-H.md │ ├── 15-databases.md │ ├── databases │ │ ├── books.csv │ │ ├── books.json │ │ └── books.xml │ ├── debugging.md │ ├── recursionDemo.c │ ├── rootDemo.c │ ├── roots.c │ ├── roots.h │ ├── roundDemo.c │ ├── roundUtils.c │ ├── roundUtils.h │ └── searchingSorting │ │ ├── 12-searchingSorting.md │ │ ├── binarySearchIdea.png │ │ ├── comparator.png │ │ ├── linearSearchPseudocode.png │ │ └── wrapup.md ├── 1208-Fall2020 │ ├── 10-fileIO.md │ ├── 11-encapsulation.md │ ├── 12-recursion.md │ ├── 13-searchingSorting.md │ ├── 2-basics.md │ ├── 3-conditionals.md │ ├── 4-loops.md │ ├── 5-functions.md │ ├── 6-errorHandling.md │ ├── 7-arrays.md │ ├── 8-debugging.md │ ├── 9-strings.md │ ├── bugsus.jpg │ └── honors │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ ├── 2-basics.md │ │ ├── 3-conditionals.md │ │ ├── 4-loops.md │ │ ├── 5-functions.md │ │ ├── 6-errorHandling.md │ │ ├── 7-arrays.md │ │ ├── 8-debugging.md │ │ └── 9-strings.md ├── 1218-Fall2021 │ ├── 1-intro.md │ ├── 10-fileIO.md │ ├── 11-encapsulation.md │ ├── 12-recursion.md │ ├── 13-searchingSorting.md │ ├── 14-gui.md │ ├── 15-databases.md │ ├── 2-basics.md │ ├── 3-conditionals.md │ ├── 4-loops.md │ ├── 5-functions.md │ ├── 6-errorHandling.md │ ├── 7-arrays.md │ ├── 8-strings.md │ ├── 9-debugging.md │ ├── encapsulationDemo │ │ ├── demo.c │ │ ├── film.c │ │ └── film.h │ └── honors │ │ ├── 1-intro.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ ├── 2-basics.md │ │ ├── 3-conditionals.md │ │ ├── 4-loops.md │ │ ├── 5-functions.md │ │ ├── 6-errorHandling.md │ │ ├── 7-arrays.md │ │ ├── 8-strings.md │ │ ├── 9-tooling.md │ │ └── encapsulationDemo │ │ ├── demo.c │ │ ├── student.c │ │ └── student.h ├── 1221-Spring2022 │ ├── 01-intro.md │ ├── 02-basics.md │ ├── 03-conditionals.md │ ├── 04-loops.md │ ├── 05-functions.md │ ├── 06-errorHandling.md │ ├── 07-arrays.md │ ├── 08-Debugging.md │ ├── 09-strings.md │ ├── 10-fileIO.md │ ├── 11-structures.md │ ├── 12-recursion.md │ ├── 13-searchingSorting.md │ └── demoCode │ │ ├── agm.c │ │ ├── fizzbuzz.c │ │ ├── harmonic.c │ │ └── loan.c ├── 1228-Fall2022 │ ├── 194 │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-debugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ ├── code │ │ │ ├── book.c │ │ │ ├── book.h │ │ │ ├── bookDemo.c │ │ │ ├── books.csv │ │ │ ├── demo.c │ │ │ ├── weight.c │ │ │ ├── weight.h │ │ │ └── weightTester.c │ │ └── review.md │ ├── 155E │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-debugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ ├── code │ │ │ ├── book.c │ │ │ ├── book.h │ │ │ ├── books.csv │ │ │ ├── demo.c │ │ │ ├── main.c │ │ │ ├── massUtils.c │ │ │ └── massUtils.h │ │ └── review.md │ ├── 155H │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-debugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ └── code │ │ │ ├── Author.java │ │ │ ├── Book.java │ │ │ ├── Demo.java │ │ │ ├── book.c │ │ │ ├── book.h │ │ │ ├── bookDemo.c │ │ │ ├── books.csv │ │ │ └── sorting │ │ │ ├── Author.java │ │ │ ├── Book.java │ │ │ ├── BookDemo.java │ │ │ ├── book.c │ │ │ ├── book.h │ │ │ └── bookDemo.c │ └── books.csv ├── 1238-Fall2023 │ ├── 155E │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-debugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ └── 13-searchingSorting.md │ └── 155H │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-toolingDebugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ └── 13-searchingSorting.md ├── 1248-Fall2024 │ ├── 155E │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-debuggingTooling.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ └── code │ │ │ ├── book.c │ │ │ ├── book.h │ │ │ ├── bookDemo.c │ │ │ ├── cheer.c │ │ │ ├── compute_roots_clas.c │ │ │ ├── compute_roots_interactive.c │ │ │ ├── corn.c │ │ │ ├── fizzbuzz.c │ │ │ ├── game.c │ │ │ ├── goodreads-abridged.csv │ │ │ ├── loan.c │ │ │ └── wins.c │ └── 155H │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-toolingDebugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ └── code │ │ ├── Agm.java │ │ ├── Book.java │ │ ├── BookDemo.java │ │ ├── Cheer.java │ │ ├── ComputeRoots.java │ │ ├── Loan.java │ │ ├── MilesToKms.java │ │ ├── Wins.java │ │ ├── agm.c │ │ ├── book.c │ │ ├── book.h │ │ ├── bookDemo.c │ │ ├── goodreads-abridged.csv │ │ ├── my_math.c │ │ ├── my_math.h │ │ ├── my_math_tests.c │ │ └── num_primes.c ├── 1258-Fall2025 │ ├── 155E │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-toolingDebugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ └── 13-searchingSorting.md │ └── 155H │ │ ├── 01-intro.md │ │ ├── 02-basics.md │ │ ├── 03-conditionals.md │ │ ├── 04-loops.md │ │ ├── 05-functions.md │ │ ├── 06-errorHandling.md │ │ ├── 07-arrays.md │ │ ├── 08-toolingDebugging.md │ │ ├── 09-strings.md │ │ ├── 10-fileIO.md │ │ ├── 11-encapsulation.md │ │ ├── 12-recursion.md │ │ ├── 13-searchingSorting.md │ │ └── code │ │ ├── book.c │ │ ├── book.h │ │ └── bookDemo.c └── dev │ └── scratch.md ├── readme.md ├── scripts ├── codepost │ ├── assignment.py │ ├── canvas.py │ ├── canvasUtils.py │ ├── codepostGetSubmissions.py │ ├── codepostInitRoster.py │ ├── codepostToCanvas.py │ ├── codepostUtils.py │ ├── codepostValidateCourse.py │ ├── codepost_assign_graders.py │ ├── config.py │ ├── course.py │ ├── group.py │ ├── person.py │ ├── readme.md │ └── update_attendance.py └── php │ ├── assignGraders.php │ ├── mail.list │ └── makeTeams.php └── slides ├── figures ├── figureArrayOfStructurePointers.tex ├── figureArrayOfStructures.tex └── figureArrayOfStructuresHybrid.tex ├── images ├── ascii.png ├── triangleEquilateral.png ├── triangleIsosceles.png └── triangleScalene.png ├── lecture-arrays-HandoutNoNotes.pdf ├── lecture-arrays.pdf ├── lecture-arrays.tex ├── lecture-basics-HandoutNoNotes.pdf ├── lecture-basics.pdf ├── lecture-basics.tex ├── lecture-conditionals-HandoutNoNotes.pdf ├── lecture-conditionals.pdf ├── lecture-conditionals.tex ├── lecture-debugging-HandoutNoNotes.pdf ├── lecture-debugging.pdf ├── lecture-debugging.tex ├── lecture-errorHandling-HandoutNoNotes.pdf ├── lecture-errorHandling.pdf ├── lecture-errorHandling.tex ├── lecture-fileIO-HandoutNoNotes.pdf ├── lecture-fileIO.pdf ├── lecture-fileIO.tex ├── lecture-functions-HandoutNoNotes.pdf ├── lecture-functions.pdf ├── lecture-functions.tex ├── lecture-loops-HandoutNoNotes.pdf ├── lecture-loops.pdf ├── lecture-loops.tex ├── lecture-recursion-HandoutNoNotes.pdf ├── lecture-recursion.pdf ├── lecture-recursion.tex ├── lecture-searchingSorting-HandoutNoNotes.pdf ├── lecture-searchingSorting.pdf ├── lecture-searchingSorting.tex ├── lecture-strings-HandoutNoNotes.pdf ├── lecture-strings.pdf ├── lecture-strings.tex ├── lecture-structures-HandoutNoNotes.pdf ├── lecture-structures.pdf └── lecture-structures.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/.gitignore -------------------------------------------------------------------------------- /codepost/c_templates/build_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/c_templates/build_test.sh -------------------------------------------------------------------------------- /codepost/c_templates/build_warnings_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/c_templates/build_warnings_test.sh -------------------------------------------------------------------------------- /codepost/c_templates/template_test_001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/c_templates/template_test_001.sh -------------------------------------------------------------------------------- /codepost/c_templates/template_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/c_templates/template_test_suite.sh -------------------------------------------------------------------------------- /codepost/generic_rubric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/generic_rubric.json -------------------------------------------------------------------------------- /codepost/java_templates/build_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/java_templates/build_test.sh -------------------------------------------------------------------------------- /codepost/java_templates/build_warnings_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/java_templates/build_warnings_test.sh -------------------------------------------------------------------------------- /codepost/java_templates/junit_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/java_templates/junit_test_suite.sh -------------------------------------------------------------------------------- /codepost/java_templates/template_test_001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/codepost/java_templates/template_test_001.sh -------------------------------------------------------------------------------- /codepost/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Notes 4 | -------------------------------------------------------------------------------- /documents/TheTaoOfTALC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/TheTaoOfTALC.pdf -------------------------------------------------------------------------------- /documents/byod.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/byod.pdf -------------------------------------------------------------------------------- /documents/byod.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/byod.tex -------------------------------------------------------------------------------- /documents/codeUsageGuidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/codeUsageGuidelines.pdf -------------------------------------------------------------------------------- /documents/codeUsageGuidelines.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/codeUsageGuidelines.tex -------------------------------------------------------------------------------- /documents/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/faq.md -------------------------------------------------------------------------------- /documents/howToComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/howToComputer.md -------------------------------------------------------------------------------- /documents/instructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/instructor.md -------------------------------------------------------------------------------- /documents/iticse-7steps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/iticse-7steps.pdf -------------------------------------------------------------------------------- /documents/laGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/laGuidelines.md -------------------------------------------------------------------------------- /documents/misc/Activating-Huskers-Email.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/misc/Activating-Huskers-Email.pdf -------------------------------------------------------------------------------- /documents/misc/CanvasForUNO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/misc/CanvasForUNO.pdf -------------------------------------------------------------------------------- /documents/mrc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/mrc.jpg -------------------------------------------------------------------------------- /documents/rubric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/rubric.md -------------------------------------------------------------------------------- /documents/rubric.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/rubric.pdf -------------------------------------------------------------------------------- /documents/rubric.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/rubric.tex -------------------------------------------------------------------------------- /documents/syllabus-194.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/syllabus-194.md -------------------------------------------------------------------------------- /documents/syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/syllabus.md -------------------------------------------------------------------------------- /documents/teOfCSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/teOfCSE.pdf -------------------------------------------------------------------------------- /documents/teOfCSE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/teOfCSE.tex -------------------------------------------------------------------------------- /documents/tipsForOnline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/tipsForOnline.pdf -------------------------------------------------------------------------------- /documents/tipsForOnline.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/tipsForOnline.tex -------------------------------------------------------------------------------- /documents/troubleShooting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/troubleShooting.pdf -------------------------------------------------------------------------------- /documents/troubleShooting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/documents/troubleShooting.tex -------------------------------------------------------------------------------- /hacks/hack-dataProject/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack-dataProject/readme.md -------------------------------------------------------------------------------- /hacks/hack-debugging/primesProgram-buggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack-debugging/primesProgram-buggy.c -------------------------------------------------------------------------------- /hacks/hack-debugging/primesProgram-fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack-debugging/primesProgram-fixed.c -------------------------------------------------------------------------------- /hacks/hack-debugging/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack-debugging/readme.md -------------------------------------------------------------------------------- /hacks/hack-strings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack-strings/readme.md -------------------------------------------------------------------------------- /hacks/hack1.0/images/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/change.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitcommit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitcommit.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitdiff.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-githubNewRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-githubNewRepo.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-githubNewRepoName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-githubNewRepoName.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitignore.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitinit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitinit.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitpush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitpush2.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-gitstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-gitstatus.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/cl-pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/cl-pwd.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/commit.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/completedRepo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/completedRepo01.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/completedRepo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/completedRepo02.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/completedRepo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/completedRepo03.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/drag.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/postCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/postCreation.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/publish.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/pushChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/pushChange.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/repositorydiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/repositorydiagram.png -------------------------------------------------------------------------------- /hacks/hack1.0/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/images/setup.png -------------------------------------------------------------------------------- /hacks/hack1.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack1.0/readme.md -------------------------------------------------------------------------------- /hacks/hack10.0/examples/dnaSample001.txt: -------------------------------------------------------------------------------- 1 | AAATTCCGCGTACCCTAG 2 | -------------------------------------------------------------------------------- /hacks/hack10.0/examples/dnaSample002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack10.0/examples/dnaSample002.txt -------------------------------------------------------------------------------- /hacks/hack10.0/examples/proteinResult001.txt: -------------------------------------------------------------------------------- 1 | KFRVP 2 | -------------------------------------------------------------------------------- /hacks/hack10.0/examples/proteinResult002.txt: -------------------------------------------------------------------------------- 1 | FLFLDSIFAVAGTAVQSPICSSLSAPRSYTPSR 2 | -------------------------------------------------------------------------------- /hacks/hack10.0/proteinUtilDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack10.0/proteinUtilDemo.c -------------------------------------------------------------------------------- /hacks/hack10.0/protein_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack10.0/protein_utils.c -------------------------------------------------------------------------------- /hacks/hack10.0/protein_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack10.0/protein_utils.h -------------------------------------------------------------------------------- /hacks/hack10.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack10.0/readme.md -------------------------------------------------------------------------------- /hacks/hack11.0/airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack11.0/airport.h -------------------------------------------------------------------------------- /hacks/hack11.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack11.0/readme.md -------------------------------------------------------------------------------- /hacks/hack12.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack12.0/readme.md -------------------------------------------------------------------------------- /hacks/hack13.0/airport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/airport.c -------------------------------------------------------------------------------- /hacks/hack13.0/airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/airport.h -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_output_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_output_001.txt -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_output_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_output_002.txt -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_output_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_output_003.txt -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_001.c -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_001.csv -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_002.c -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_002.csv -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_003.c -------------------------------------------------------------------------------- /hacks/hack13.0/files/airport_test_003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/files/airport_test_003.csv -------------------------------------------------------------------------------- /hacks/hack13.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack13.0/readme.md -------------------------------------------------------------------------------- /hacks/hack14.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack14.0/readme.md -------------------------------------------------------------------------------- /hacks/hack2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack2.0/readme.md -------------------------------------------------------------------------------- /hacks/hack3.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack3.0/readme.md -------------------------------------------------------------------------------- /hacks/hack4.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack4.0/readme.md -------------------------------------------------------------------------------- /hacks/hack5.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack5.0/readme.md -------------------------------------------------------------------------------- /hacks/hack6.0/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack6.0/makefile -------------------------------------------------------------------------------- /hacks/hack6.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack6.0/readme.md -------------------------------------------------------------------------------- /hacks/hack6.0/utilsTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack6.0/utilsTester.c -------------------------------------------------------------------------------- /hacks/hack7.0/images/pointers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack7.0/images/pointers.png -------------------------------------------------------------------------------- /hacks/hack7.0/images/pointersHFlip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack7.0/images/pointersHFlip.jpg -------------------------------------------------------------------------------- /hacks/hack7.0/images/pointersRotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack7.0/images/pointersRotated.jpg -------------------------------------------------------------------------------- /hacks/hack7.0/images/pointersVFlip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack7.0/images/pointersVFlip.png -------------------------------------------------------------------------------- /hacks/hack7.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/hack7.0/readme.md -------------------------------------------------------------------------------- /hacks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/hacks/readme.md -------------------------------------------------------------------------------- /honors/documents/syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/documents/syllabus.md -------------------------------------------------------------------------------- /honors/hacks/hack-strings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack-strings/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/cl-githubNewRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/cl-githubNewRepo.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/cl-githubNewRepoName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/cl-githubNewRepoName.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipse-githubNewRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipse-githubNewRepo.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipse-githubNewRepoName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipse-githubNewRepoName.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseCloneDialogAMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseCloneDialogAMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseCloneDialogBMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseCloneDialogBMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseCloneDialogCMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseCloneDialogCMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseCommitDialogAMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseCommitDialogAMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseCreateRepoDialogAMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseCreateRepoDialogAMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitPull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitPull.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitPullResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitPullResult.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitPushDialogBMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitPushDialogBMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitPushMarkup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitPushMarkup.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitRepoCreateNewMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitRepoCreateNewMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitRepoMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitRepoMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseGitStagingMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseGitStagingMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseOpenPerspectiveMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseOpenPerspectiveMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipsePerspectiveDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipsePerspectiveDialog.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipsePreCommit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipsePreCommit.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipsePush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipsePush.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipsePushDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipsePushDialog.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseRemotePushMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseRemotePushMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/eclipseRepoCommitMarkUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/eclipseRepoCommitMarkUp.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/images/repositorydiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/images/repositorydiagram.png -------------------------------------------------------------------------------- /honors/hacks/hack1.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack1.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack10.0/ProteinTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack10.0/ProteinTranslator.java -------------------------------------------------------------------------------- /honors/hacks/hack10.0/examples/dnaSample001.txt: -------------------------------------------------------------------------------- 1 | AAATTCCGCGTACCCTAG 2 | -------------------------------------------------------------------------------- /honors/hacks/hack10.0/examples/dnaSample002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack10.0/examples/dnaSample002.txt -------------------------------------------------------------------------------- /honors/hacks/hack10.0/examples/proteinResult001.txt: -------------------------------------------------------------------------------- 1 | KFRVP 2 | -------------------------------------------------------------------------------- /honors/hacks/hack10.0/examples/proteinResult002.txt: -------------------------------------------------------------------------------- 1 | FLFLDSIFAVAGTAVQSPICSSLSAPRSYTPSR 2 | -------------------------------------------------------------------------------- /honors/hacks/hack10.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack10.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack11.0/Airport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack11.0/Airport.java -------------------------------------------------------------------------------- /honors/hacks/hack11.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack11.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack12.0/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack12.0/Pair.java -------------------------------------------------------------------------------- /honors/hacks/hack12.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack12.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack13.0/AirportUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack13.0/AirportUtils.java -------------------------------------------------------------------------------- /honors/hacks/hack13.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack13.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack14.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack14.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack2.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack3.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack3.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack4.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack4.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack5.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack5.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack6.0/CMYK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack6.0/CMYK.java -------------------------------------------------------------------------------- /honors/hacks/hack6.0/ColorUtilsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack6.0/ColorUtilsTests.java -------------------------------------------------------------------------------- /honors/hacks/hack6.0/RGB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack6.0/RGB.java -------------------------------------------------------------------------------- /honors/hacks/hack6.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack6.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/hack7.0/ImageDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/ImageDriver.java -------------------------------------------------------------------------------- /honors/hacks/hack7.0/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/ImageUtils.java -------------------------------------------------------------------------------- /honors/hacks/hack7.0/RGB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/RGB.java -------------------------------------------------------------------------------- /honors/hacks/hack7.0/images/pointers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/images/pointers.png -------------------------------------------------------------------------------- /honors/hacks/hack7.0/images/pointersHFlip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/images/pointersHFlip.jpg -------------------------------------------------------------------------------- /honors/hacks/hack7.0/images/pointersRotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/images/pointersRotated.jpg -------------------------------------------------------------------------------- /honors/hacks/hack7.0/images/pointersVFlip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/images/pointersVFlip.png -------------------------------------------------------------------------------- /honors/hacks/hack7.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/hack7.0/readme.md -------------------------------------------------------------------------------- /honors/hacks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/hacks/readme.md -------------------------------------------------------------------------------- /honors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/honors/readme.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/license.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/01-introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/01-introduction.pdf -------------------------------------------------------------------------------- /notes/1198-Fall2019/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/02-basics.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/03-conditionals.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/04-loops.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/05-functions.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/07-arrays.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/08-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/08-strings.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/09-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/09-fileIO.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/10-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/10-encapsulation.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/11-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/11-recursion.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/14-gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/14-gui.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/15-databases-H.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/15-databases-H.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/15-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/15-databases.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/databases/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/databases/books.csv -------------------------------------------------------------------------------- /notes/1198-Fall2019/databases/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/databases/books.json -------------------------------------------------------------------------------- /notes/1198-Fall2019/databases/books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/databases/books.xml -------------------------------------------------------------------------------- /notes/1198-Fall2019/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/debugging.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/recursionDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/recursionDemo.c -------------------------------------------------------------------------------- /notes/1198-Fall2019/rootDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/rootDemo.c -------------------------------------------------------------------------------- /notes/1198-Fall2019/roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/roots.c -------------------------------------------------------------------------------- /notes/1198-Fall2019/roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/roots.h -------------------------------------------------------------------------------- /notes/1198-Fall2019/roundDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/roundDemo.c -------------------------------------------------------------------------------- /notes/1198-Fall2019/roundUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/roundUtils.c -------------------------------------------------------------------------------- /notes/1198-Fall2019/roundUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/roundUtils.h -------------------------------------------------------------------------------- /notes/1198-Fall2019/searchingSorting/12-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/searchingSorting/12-searchingSorting.md -------------------------------------------------------------------------------- /notes/1198-Fall2019/searchingSorting/binarySearchIdea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/searchingSorting/binarySearchIdea.png -------------------------------------------------------------------------------- /notes/1198-Fall2019/searchingSorting/comparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/searchingSorting/comparator.png -------------------------------------------------------------------------------- /notes/1198-Fall2019/searchingSorting/linearSearchPseudocode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/searchingSorting/linearSearchPseudocode.png -------------------------------------------------------------------------------- /notes/1198-Fall2019/searchingSorting/wrapup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1198-Fall2019/searchingSorting/wrapup.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/10-fileIO.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/12-recursion.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/2-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/2-basics.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/3-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/3-conditionals.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/4-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/4-loops.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/5-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/5-functions.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/6-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/6-errorHandling.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/7-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/7-arrays.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/8-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/8-debugging.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/9-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/9-strings.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/bugsus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/bugsus.jpg -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/10-fileIO.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/12-recursion.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/2-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/2-basics.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/3-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/3-conditionals.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/4-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/4-loops.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/5-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/5-functions.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/6-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/6-errorHandling.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/7-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/7-arrays.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/8-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/8-debugging.md -------------------------------------------------------------------------------- /notes/1208-Fall2020/honors/9-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1208-Fall2020/honors/9-strings.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/1-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/1-intro.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/10-fileIO.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/12-recursion.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/14-gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/14-gui.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/15-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/15-databases.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/2-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/2-basics.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/3-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/3-conditionals.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/4-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/4-loops.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/5-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/5-functions.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/6-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/6-errorHandling.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/7-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/7-arrays.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/8-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/8-strings.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/9-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/9-debugging.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/encapsulationDemo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/encapsulationDemo/demo.c -------------------------------------------------------------------------------- /notes/1218-Fall2021/encapsulationDemo/film.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/encapsulationDemo/film.c -------------------------------------------------------------------------------- /notes/1218-Fall2021/encapsulationDemo/film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/encapsulationDemo/film.h -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/1-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/1-intro.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/10-fileIO.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/12-recursion.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/2-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/2-basics.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/3-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/3-conditionals.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/4-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/4-loops.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/5-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/5-functions.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/6-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/6-errorHandling.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/7-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/7-arrays.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/8-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/8-strings.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/9-tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/9-tooling.md -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/encapsulationDemo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/encapsulationDemo/demo.c -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/encapsulationDemo/student.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/encapsulationDemo/student.c -------------------------------------------------------------------------------- /notes/1218-Fall2021/honors/encapsulationDemo/student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1218-Fall2021/honors/encapsulationDemo/student.h -------------------------------------------------------------------------------- /notes/1221-Spring2022/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/01-intro.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/02-basics.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/03-conditionals.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/04-loops.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/05-functions.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/07-arrays.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/08-Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/08-Debugging.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/09-strings.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/10-fileIO.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/11-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/11-structures.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/12-recursion.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1221-Spring2022/demoCode/agm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/demoCode/agm.c -------------------------------------------------------------------------------- /notes/1221-Spring2022/demoCode/fizzbuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/demoCode/fizzbuzz.c -------------------------------------------------------------------------------- /notes/1221-Spring2022/demoCode/harmonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/demoCode/harmonic.c -------------------------------------------------------------------------------- /notes/1221-Spring2022/demoCode/loan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1221-Spring2022/demoCode/loan.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/01-intro.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/02-basics.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/03-conditionals.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/04-loops.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/05-functions.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/07-arrays.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/08-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/08-debugging.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/09-strings.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/10-fileIO.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/12-recursion.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/book.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/book.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/books.csv -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/demo.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/main.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/massUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/massUtils.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/code/massUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/code/massUtils.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/155E/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155E/review.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/01-intro.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/02-basics.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/03-conditionals.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/04-loops.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/05-functions.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/07-arrays.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/08-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/08-debugging.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/09-strings.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/10-fileIO.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/12-recursion.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/Author.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/Book.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/Demo.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/book.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/book.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/bookDemo.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/books.csv -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/Author.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/Book.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/BookDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/BookDemo.java -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/book.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/book.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/155H/code/sorting/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/155H/code/sorting/bookDemo.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/01-intro.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/02-basics.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/03-conditionals.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/04-loops.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/05-functions.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/07-arrays.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/08-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/08-debugging.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/09-strings.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/10-fileIO.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/12-recursion.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/book.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/book.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/bookDemo.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/books.csv -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/demo.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/weight.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/weight.h -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/code/weightTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/code/weightTester.c -------------------------------------------------------------------------------- /notes/1228-Fall2022/194/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/194/review.md -------------------------------------------------------------------------------- /notes/1228-Fall2022/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1228-Fall2022/books.csv -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/01-intro.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/02-basics.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/03-conditionals.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/04-loops.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/05-functions.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/07-arrays.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/08-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/08-debugging.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/09-strings.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/10-fileIO.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/12-recursion.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155E/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155E/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/01-intro.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/02-basics.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/03-conditionals.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/04-loops.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/05-functions.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/07-arrays.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/08-toolingDebugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/08-toolingDebugging.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/09-strings.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/10-fileIO.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/12-recursion.md -------------------------------------------------------------------------------- /notes/1238-Fall2023/155H/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1238-Fall2023/155H/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/01-intro.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/02-basics.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/03-conditionals.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/04-loops.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/05-functions.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/07-arrays.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/08-debuggingTooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/08-debuggingTooling.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/09-strings.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/10-fileIO.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/12-recursion.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/book.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/book.h -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/bookDemo.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/cheer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/cheer.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/compute_roots_clas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/compute_roots_clas.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/compute_roots_interactive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/compute_roots_interactive.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/corn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/corn.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/fizzbuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/fizzbuzz.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/game.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/goodreads-abridged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/goodreads-abridged.csv -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/loan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/loan.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155E/code/wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155E/code/wins.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/01-intro.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/02-basics.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/03-conditionals.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/04-loops.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/05-functions.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/07-arrays.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/08-toolingDebugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/08-toolingDebugging.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/09-strings.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/10-fileIO.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/12-recursion.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/Agm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/Agm.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/Book.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/BookDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/BookDemo.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/Cheer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/Cheer.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/ComputeRoots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/ComputeRoots.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/Loan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/Loan.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/MilesToKms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/MilesToKms.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/Wins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/Wins.java -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/agm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/agm.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/book.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/book.h -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/bookDemo.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/goodreads-abridged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/goodreads-abridged.csv -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/my_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/my_math.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/my_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/my_math.h -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/my_math_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/my_math_tests.c -------------------------------------------------------------------------------- /notes/1248-Fall2024/155H/code/num_primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1248-Fall2024/155H/code/num_primes.c -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/01-intro.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/02-basics.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/03-conditionals.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/04-loops.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/05-functions.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/07-arrays.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/08-toolingDebugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/08-toolingDebugging.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/09-strings.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/10-fileIO.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/12-recursion.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155E/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155E/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/01-intro.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/02-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/02-basics.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/03-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/03-conditionals.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/04-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/04-loops.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/05-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/05-functions.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/06-errorHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/06-errorHandling.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/07-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/07-arrays.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/08-toolingDebugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/08-toolingDebugging.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/09-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/09-strings.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/10-fileIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/10-fileIO.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/11-encapsulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/11-encapsulation.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/12-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/12-recursion.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/13-searchingSorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/13-searchingSorting.md -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/code/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/code/book.c -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/code/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/code/book.h -------------------------------------------------------------------------------- /notes/1258-Fall2025/155H/code/bookDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/1258-Fall2025/155H/code/bookDemo.c -------------------------------------------------------------------------------- /notes/dev/scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/notes/dev/scratch.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/codepost/assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/assignment.py -------------------------------------------------------------------------------- /scripts/codepost/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/canvas.py -------------------------------------------------------------------------------- /scripts/codepost/canvasUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/canvasUtils.py -------------------------------------------------------------------------------- /scripts/codepost/codepostGetSubmissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepostGetSubmissions.py -------------------------------------------------------------------------------- /scripts/codepost/codepostInitRoster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepostInitRoster.py -------------------------------------------------------------------------------- /scripts/codepost/codepostToCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepostToCanvas.py -------------------------------------------------------------------------------- /scripts/codepost/codepostUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepostUtils.py -------------------------------------------------------------------------------- /scripts/codepost/codepostValidateCourse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepostValidateCourse.py -------------------------------------------------------------------------------- /scripts/codepost/codepost_assign_graders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/codepost_assign_graders.py -------------------------------------------------------------------------------- /scripts/codepost/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/config.py -------------------------------------------------------------------------------- /scripts/codepost/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/course.py -------------------------------------------------------------------------------- /scripts/codepost/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/group.py -------------------------------------------------------------------------------- /scripts/codepost/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/person.py -------------------------------------------------------------------------------- /scripts/codepost/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/readme.md -------------------------------------------------------------------------------- /scripts/codepost/update_attendance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/codepost/update_attendance.py -------------------------------------------------------------------------------- /scripts/php/assignGraders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/php/assignGraders.php -------------------------------------------------------------------------------- /scripts/php/mail.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/php/mail.list -------------------------------------------------------------------------------- /scripts/php/makeTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/scripts/php/makeTeams.php -------------------------------------------------------------------------------- /slides/figures/figureArrayOfStructurePointers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/figures/figureArrayOfStructurePointers.tex -------------------------------------------------------------------------------- /slides/figures/figureArrayOfStructures.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/figures/figureArrayOfStructures.tex -------------------------------------------------------------------------------- /slides/figures/figureArrayOfStructuresHybrid.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/figures/figureArrayOfStructuresHybrid.tex -------------------------------------------------------------------------------- /slides/images/ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/images/ascii.png -------------------------------------------------------------------------------- /slides/images/triangleEquilateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/images/triangleEquilateral.png -------------------------------------------------------------------------------- /slides/images/triangleIsosceles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/images/triangleIsosceles.png -------------------------------------------------------------------------------- /slides/images/triangleScalene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/images/triangleScalene.png -------------------------------------------------------------------------------- /slides/lecture-arrays-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-arrays-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-arrays.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-arrays.pdf -------------------------------------------------------------------------------- /slides/lecture-arrays.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-arrays.tex -------------------------------------------------------------------------------- /slides/lecture-basics-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-basics-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-basics.pdf -------------------------------------------------------------------------------- /slides/lecture-basics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-basics.tex -------------------------------------------------------------------------------- /slides/lecture-conditionals-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-conditionals-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-conditionals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-conditionals.pdf -------------------------------------------------------------------------------- /slides/lecture-conditionals.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-conditionals.tex -------------------------------------------------------------------------------- /slides/lecture-debugging-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-debugging-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-debugging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-debugging.pdf -------------------------------------------------------------------------------- /slides/lecture-debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-debugging.tex -------------------------------------------------------------------------------- /slides/lecture-errorHandling-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-errorHandling-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-errorHandling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-errorHandling.pdf -------------------------------------------------------------------------------- /slides/lecture-errorHandling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-errorHandling.tex -------------------------------------------------------------------------------- /slides/lecture-fileIO-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-fileIO-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-fileIO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-fileIO.pdf -------------------------------------------------------------------------------- /slides/lecture-fileIO.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-fileIO.tex -------------------------------------------------------------------------------- /slides/lecture-functions-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-functions-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-functions.pdf -------------------------------------------------------------------------------- /slides/lecture-functions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-functions.tex -------------------------------------------------------------------------------- /slides/lecture-loops-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-loops-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-loops.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-loops.pdf -------------------------------------------------------------------------------- /slides/lecture-loops.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-loops.tex -------------------------------------------------------------------------------- /slides/lecture-recursion-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-recursion-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-recursion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-recursion.pdf -------------------------------------------------------------------------------- /slides/lecture-recursion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-recursion.tex -------------------------------------------------------------------------------- /slides/lecture-searchingSorting-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-searchingSorting-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-searchingSorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-searchingSorting.pdf -------------------------------------------------------------------------------- /slides/lecture-searchingSorting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-searchingSorting.tex -------------------------------------------------------------------------------- /slides/lecture-strings-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-strings-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-strings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-strings.pdf -------------------------------------------------------------------------------- /slides/lecture-strings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-strings.tex -------------------------------------------------------------------------------- /slides/lecture-structures-HandoutNoNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-structures-HandoutNoNotes.pdf -------------------------------------------------------------------------------- /slides/lecture-structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-structures.pdf -------------------------------------------------------------------------------- /slides/lecture-structures.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbourke/ComputerScienceI/HEAD/slides/lecture-structures.tex --------------------------------------------------------------------------------