├── .gitignore ├── LICENSE ├── README.md ├── bus-238-introduction-to-entrepreneurship-and-innovation ├── bus-238.pdf ├── bus-238.tex ├── business-model-canvas.pdf └── tex │ ├── appendices.tex │ ├── business-models.tex │ ├── creativity.tex │ ├── entrepreneurship.tex │ ├── innovation.tex │ ├── interviewing.tex │ ├── introduction.tex │ ├── marketing.tex │ ├── problems.tex │ └── teamwork.tex ├── bus-314-resourcing-new-ventures ├── bus-314.pdf ├── bus-314.tex ├── img │ ├── balance-sheet.png │ ├── cash-flow-statement.jpg │ └── income-statement.png └── tex │ ├── _template.tex │ ├── capitalization-structure.tex │ ├── financials.tex │ ├── introduction.tex │ ├── pitch-frameworks.tex │ └── teams-and-human-resources.tex ├── bus-338-foundations-of-innovation ├── bus-338.pdf ├── bus-338.tex ├── business-model-canvas.pdf ├── img │ ├── jim-davis.jpg │ ├── market-adoption-cycle.png │ ├── phases-of-competition.png │ └── whole-product.jpg └── tex │ ├── _template.tex │ ├── appendices.tex │ ├── competition.tex │ ├── innovation-ecosystem.tex │ ├── introduction.tex │ ├── marketing.tex │ ├── product.tex │ ├── research.tex │ └── user-experience.tex ├── bus-361-project-management ├── bus-361.pdf ├── bus-361.tex └── tex │ ├── closeout.tex │ ├── communications-management.tex │ ├── controlling.tex │ ├── cost-resource-management.tex │ ├── flashcard-questions.tex │ ├── human-resources.tex │ ├── initiation.tex │ ├── introduction.tex │ ├── planning.tex │ ├── quality-management.tex │ └── risk-management.tex ├── cmpt-120-introduction-to-computing-science-and-programming-i ├── README.md ├── cmpt-120.docx └── cmpt-120.pdf ├── cmpt-125-introduction-to-computing-science-and-programming-ii ├── README.md ├── cmpt-125.docx └── cmpt-125.pdf ├── cmpt-150-introduction-to-computer-design_partial ├── cmpt-150.pdf ├── cmpt-150.tex └── tex │ ├── section_1.tex │ ├── section_2.tex │ ├── section_3.tex │ ├── section_4.tex │ └── section_5.tex ├── cmpt-213-object-oriented-design-in-java ├── cmpt-213.pdf ├── cmpt-213.tex └── tex │ ├── code-smells.tex │ ├── defensive-programming.tex │ ├── design-patterns.tex │ ├── interface-quality.tex │ ├── introduction.tex │ ├── java.tex │ ├── object-oriented-design.tex │ ├── rest-apis.tex │ └── unified-markup-language.tex ├── cmpt-276-introduction-to-software-engineering ├── cmpt-276.pdf ├── cmpt-276.tex └── tex │ ├── cpp-rest-sdk.tex │ ├── cpp.tex │ ├── introduction.tex │ ├── unit-testing.tex │ └── version-control.tex ├── cmpt-300-operating-systems-i ├── cmpt-300.pdf ├── cmpt-300.tex ├── img │ ├── ipc-message-passing.png │ ├── page-table-1.png │ ├── page-table-2-tlb.png │ ├── page-table-3-hierarch.png │ ├── page-table-4-hierarch-access.png │ ├── page-table-5-hashed.png │ ├── page-table-6-inverted.png │ ├── process-data.png │ ├── scheduling-queues.png │ ├── structure-hybrid.png │ ├── structure-layered.png │ ├── structure-microkernel.png │ ├── structure-modular.png │ ├── structure-monolithic.png │ └── system-call-interface.png └── tex │ ├── _template.tex │ ├── deadlocks.tex │ ├── filesystems.tex │ ├── interprocess-communication.tex │ ├── introduction.tex │ ├── memory-management.tex │ ├── processes.tex │ ├── scheduling.tex │ ├── synchronization.tex │ └── virtual-memory.tex ├── cmpt-310-artificial-intelligence-survey ├── course-overview │ ├── cmpt-310.pdf │ ├── cmpt-310.tex │ └── tex │ │ ├── constraint-satisfaction-problems.tex │ │ ├── flashcard-questions.tex │ │ ├── game-playing.tex │ │ ├── introduction.tex │ │ ├── logical-inference.tex │ │ ├── machine-learning.tex │ │ ├── probability.tex │ │ ├── problem-solving.tex │ │ └── search-algorithms.tex └── minimax-worksheet │ ├── minimax-worksheet-solutions.pdf │ ├── minimax-worksheet-solutions.tex │ ├── minimax-worksheet.pdf │ └── minimax-worksheet.tex ├── cmpt-320-social-implications-of-a-computerized-society ├── cmpt-320.pdf ├── cmpt-320.tex └── tex │ ├── computer-crime.tex │ ├── computers-in-the-workplace.tex │ ├── economic-impact-of-technology.tex │ ├── ethics.tex │ ├── freedom-of-speech.tex │ ├── intellectual-property.tex │ ├── introduction.tex │ ├── life-with-technology.tex │ └── privacy.tex ├── cmpt-354-database-systems-i_partial ├── Entity-Relationship Diagram Template │ ├── Entity-Relationship Diagram.txt │ └── tikz-er2.sty ├── cmpt-354.pdf ├── cmpt-354.tex ├── tex │ ├── _template.tex │ ├── data-warehousing-and-mining.tex │ ├── database-applications.tex │ ├── design.tex │ ├── entity-relationship-model.tex │ ├── functional-dependencies.tex │ ├── introduction.tex │ ├── nosql.tex │ ├── query-optimization.tex │ ├── relational-model.tex │ └── sql.tex └── tikz-er2.sty ├── cmpt-373-software-development-methods ├── cmpt-373.pdf ├── cmpt-373.tex └── tex │ ├── design-and-architecture.tex │ ├── introduction.tex │ ├── teamwork.tex │ └── the-agile-paradigm.tex ├── cmpt-376w-technical-writing-and-group-dynamics ├── cmpt-376w.pdf ├── cmpt-376w.tex └── tex │ ├── _template.tex │ ├── allegories.tex │ ├── elements-of-text.tex │ ├── introduction.tex │ ├── reviewing-papers.tex │ ├── writing-samples.tex │ └── writing.tex ├── cmpt-379-principles-of-compiler-design ├── brief-ll1-parsing │ ├── ll1-parsing.pdf │ └── ll1-parsing.tex ├── cmpt-379.pdf ├── cmpt-379.tex ├── img │ ├── dominance-frontier.jpg │ ├── lrk-states-diagram.jpg │ ├── lrk-states-epsilon-diagram.jpg │ ├── register-interference-graph.png │ └── slr-1-trace-diagram.jpg ├── tex │ ├── introduction.tex │ ├── lexical-analysis.tex │ ├── optimization.tex │ ├── parsing-algorithms-bottom-up.tex │ ├── parsing-algorithms-top-down.tex │ ├── programming-language-structure.tex │ ├── register-allocation.tex │ ├── semantic-analysis-ssa.tex │ ├── syntax-analysis.tex │ └── syntax-directed-translation.tex └── worksheets │ ├── 1-lexical-analysis │ ├── 1-lexical-analysis-answers.pdf │ ├── 1-lexical-analysis-answers.tex │ ├── 1-lexical-analysis-questions.pdf │ └── 1-lexical-analysis-questions.tex │ └── 2-syntax-analysis │ ├── 2-syntax-analysis-answers.pdf │ ├── 2-syntax-analysis-answers.tex │ ├── 2-syntax-analysis-questions.pdf │ └── 2-syntax-analysis-questions.tex ├── cmpt-383-comparative-programming-languages ├── cmpt-383.tex └── tex │ ├── _template.tex │ └── introduction.tex ├── cmpt-433-embedded-systems ├── cmpt-433.pdf ├── cmpt-433.tex ├── tex │ ├── bare-metal-programming.tex │ ├── bitwise.tex │ ├── communication-and-networking.tex │ ├── debugging.tex │ ├── electronics.tex │ ├── fmea.tex │ ├── introduction.tex │ ├── linux-kernel-programming.tex │ ├── operating-system-components.tex │ ├── signals-and-noise.tex │ ├── software.tex │ ├── synchronization.tex │ └── systemd.tex └── worksheets │ ├── bitwise-operations │ ├── bitwise-operations-worksheet-answers.pdf │ ├── bitwise-operations-worksheet-answers.tex │ ├── bitwise-operations-worksheet.pdf │ └── bitwise-operations-worksheet.tex │ └── timer-calculation │ ├── timer-calculation-worksheet-answers.pdf │ ├── timer-calculation-worksheet-answers.tex │ ├── timer-calculation-worksheet.pdf │ └── timer-calculation-worksheet.tex ├── cmpt-454-database-systems-ii ├── cmpt-454.pdf ├── cmpt-454.tex ├── img │ ├── data-storage-architecture │ │ ├── arm-assembly-diagram.jpg │ │ ├── heap-file-linked-list.png │ │ ├── heap-file-page-directory.png │ │ ├── record-fixed-packed.png │ │ ├── record-fixed-unpacked.png │ │ ├── record-fixed.png │ │ ├── record-variable-fixed.png │ │ ├── record-variable-page.png │ │ └── record-variable-variable.png │ ├── external-sorting │ │ ├── merge-sort.jpg │ │ └── replacement-sort.jpg │ └── indexed-file-structure │ │ ├── bplus-tree.jpg │ │ ├── clustered-index.jpg │ │ ├── extendible-hashing-splitting.jpg │ │ ├── extendible-hashing.jpg │ │ ├── isam-tree.jpg │ │ ├── linear-hashing.jpg │ │ ├── static-hashing.jpg │ │ └── unclustered-index.jpg └── tex │ ├── concurrency-control.tex │ ├── data-storage-architecture.tex │ ├── external-sorting.tex │ ├── fundamentals-of-transactions.tex │ ├── heap-file-structure.tex │ ├── indexed-file-structure.tex │ ├── introduction.tex │ ├── logging-and-recovery.tex │ └── query-optimization.tex ├── cmpt-473-software-testing-reliability-security ├── cmpt-473.pdf ├── cmpt-473.tex ├── img │ ├── flow-diagram-for.jpg │ ├── flow-diagram-if-shortcircuit.jpg │ ├── flow-diagram-switch.jpg │ └── flow-diagram-while.jpg └── tex │ ├── a-b-testing.tex │ ├── automated-test-generation.tex │ ├── debugging.tex │ ├── graph-coverage.tex │ ├── input-space-partitioning.tex │ ├── introduction.tex │ ├── logic-based-coverage.tex │ ├── managing-bugs.tex │ ├── mutation-analysis-and-testing.tex │ ├── performance.tex │ ├── program-analysis.tex │ ├── property-based-testing.tex │ ├── regression-testing.tex │ ├── security.tex │ ├── test-planning.tex │ └── types-of-testing.tex ├── easc-106-earth-through-time ├── README.md ├── easc-106.docx └── easc-106.pdf ├── engl-101w-introduction-to-fiction ├── README.md ├── engl-101w.docx └── engl-101w.pdf ├── iat-210-introduction-to-game-studies ├── iat-210.pdf ├── iat-210.tex └── tex │ ├── business.tex │ ├── designing-games.tex │ ├── history-of-play-and-games.tex │ ├── narrative.tex │ ├── participatory-gaming.tex │ ├── properties-of-games.tex │ ├── reasons-for-game-design.tex │ ├── the-audience.tex │ ├── the-players-perspective.tex │ └── types-of-games.tex ├── iat-267-introduction-to-technological-systems ├── IEEEtrantools.sty ├── iat-267.pdf ├── iat-267.tex ├── img │ ├── arduino-switch.png │ ├── arduino-uno-diagram.png │ ├── force-sensing-resistor.png │ ├── network-direct.png │ ├── network-ring.png │ └── network-star.png └── tex │ ├── actuators.tex │ ├── arduino.tex │ ├── electricity-and-circuit-design.tex │ ├── introduction-to-embedded-and-computing-systems.tex │ ├── networking.tex │ ├── processing.tex │ ├── sensors.tex │ └── technological-systems.tex ├── macm-101-discrete-mathematics-i_partial ├── README.md ├── macm-101.docx └── macm-101.pdf ├── rem-100-global-change ├── README.md ├── rem-100.docx └── rem-100.pdf ├── see-101w-process-form-convention-in-professional-genres ├── see-101w.pdf ├── see-101w.tex └── tex │ ├── drafting.tex │ ├── introduction.tex │ ├── invention.tex │ ├── persuasion.tex │ └── structure.tex └── stat-100-chance-and-data-analysis ├── IEEEtrantools.sty ├── img ├── xkcd-221-random-number.png └── xkcd-552-correlation.png ├── stat-100.pdf ├── stat-100.tex └── tex ├── _template.tex ├── analysis-of-multi-variable-data.tex ├── analysis-of-population-proportions.tex ├── analysis-of-single-variable-data.tex ├── data-collection.tex ├── elements-of-statistics.tex ├── ethics.tex ├── measurement-of-data.tex └── probability.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/README.md -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/bus-238.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/bus-238.pdf -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/bus-238.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/bus-238.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/business-model-canvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/business-model-canvas.pdf -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/appendices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/appendices.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/business-models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/business-models.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/creativity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/creativity.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/entrepreneurship.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/entrepreneurship.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/innovation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/innovation.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/interviewing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/interviewing.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/introduction.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/marketing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/marketing.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/problems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/problems.tex -------------------------------------------------------------------------------- /bus-238-introduction-to-entrepreneurship-and-innovation/tex/teamwork.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-238-introduction-to-entrepreneurship-and-innovation/tex/teamwork.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/bus-314.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/bus-314.pdf -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/bus-314.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/bus-314.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/img/balance-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/img/balance-sheet.png -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/img/cash-flow-statement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/img/cash-flow-statement.jpg -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/img/income-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/img/income-statement.png -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/_template.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/capitalization-structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/capitalization-structure.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/financials.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/financials.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/introduction.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/pitch-frameworks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/pitch-frameworks.tex -------------------------------------------------------------------------------- /bus-314-resourcing-new-ventures/tex/teams-and-human-resources.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-314-resourcing-new-ventures/tex/teams-and-human-resources.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/bus-338.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/bus-338.pdf -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/bus-338.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/bus-338.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/business-model-canvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/business-model-canvas.pdf -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/img/jim-davis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/img/jim-davis.jpg -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/img/market-adoption-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/img/market-adoption-cycle.png -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/img/phases-of-competition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/img/phases-of-competition.png -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/img/whole-product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/img/whole-product.jpg -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/_template.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/appendices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/appendices.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/competition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/competition.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/innovation-ecosystem.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/innovation-ecosystem.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/introduction.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/marketing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/marketing.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/product.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/product.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/research.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/research.tex -------------------------------------------------------------------------------- /bus-338-foundations-of-innovation/tex/user-experience.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-338-foundations-of-innovation/tex/user-experience.tex -------------------------------------------------------------------------------- /bus-361-project-management/bus-361.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/bus-361.pdf -------------------------------------------------------------------------------- /bus-361-project-management/bus-361.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/bus-361.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/closeout.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/closeout.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/communications-management.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/communications-management.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/controlling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/controlling.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/cost-resource-management.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/cost-resource-management.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/flashcard-questions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/flashcard-questions.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/human-resources.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/human-resources.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/initiation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/initiation.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/introduction.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/planning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/planning.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/quality-management.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/quality-management.tex -------------------------------------------------------------------------------- /bus-361-project-management/tex/risk-management.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/bus-361-project-management/tex/risk-management.tex -------------------------------------------------------------------------------- /cmpt-120-introduction-to-computing-science-and-programming-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-120-introduction-to-computing-science-and-programming-i/README.md -------------------------------------------------------------------------------- /cmpt-120-introduction-to-computing-science-and-programming-i/cmpt-120.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-120-introduction-to-computing-science-and-programming-i/cmpt-120.docx -------------------------------------------------------------------------------- /cmpt-120-introduction-to-computing-science-and-programming-i/cmpt-120.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-120-introduction-to-computing-science-and-programming-i/cmpt-120.pdf -------------------------------------------------------------------------------- /cmpt-125-introduction-to-computing-science-and-programming-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-125-introduction-to-computing-science-and-programming-ii/README.md -------------------------------------------------------------------------------- /cmpt-125-introduction-to-computing-science-and-programming-ii/cmpt-125.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-125-introduction-to-computing-science-and-programming-ii/cmpt-125.docx -------------------------------------------------------------------------------- /cmpt-125-introduction-to-computing-science-and-programming-ii/cmpt-125.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-125-introduction-to-computing-science-and-programming-ii/cmpt-125.pdf -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/cmpt-150.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/cmpt-150.pdf -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/cmpt-150.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/cmpt-150.tex -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/tex/section_1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/tex/section_1.tex -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/tex/section_2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/tex/section_2.tex -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/tex/section_3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/tex/section_3.tex -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/tex/section_4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/tex/section_4.tex -------------------------------------------------------------------------------- /cmpt-150-introduction-to-computer-design_partial/tex/section_5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-150-introduction-to-computer-design_partial/tex/section_5.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/cmpt-213.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/cmpt-213.pdf -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/cmpt-213.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/cmpt-213.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/code-smells.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/code-smells.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/defensive-programming.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/defensive-programming.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/design-patterns.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/design-patterns.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/interface-quality.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/interface-quality.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/java.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/java.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/object-oriented-design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/object-oriented-design.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/rest-apis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/rest-apis.tex -------------------------------------------------------------------------------- /cmpt-213-object-oriented-design-in-java/tex/unified-markup-language.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-213-object-oriented-design-in-java/tex/unified-markup-language.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/cmpt-276.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/cmpt-276.pdf -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/cmpt-276.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/cmpt-276.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/tex/cpp-rest-sdk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/tex/cpp-rest-sdk.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/tex/cpp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/tex/cpp.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/tex/unit-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/tex/unit-testing.tex -------------------------------------------------------------------------------- /cmpt-276-introduction-to-software-engineering/tex/version-control.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-276-introduction-to-software-engineering/tex/version-control.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/cmpt-300.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/cmpt-300.pdf -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/cmpt-300.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/cmpt-300.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/ipc-message-passing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/ipc-message-passing.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-1.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-2-tlb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-2-tlb.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-3-hierarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-3-hierarch.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-4-hierarch-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-4-hierarch-access.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-5-hashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-5-hashed.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/page-table-6-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/page-table-6-inverted.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/process-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/process-data.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/scheduling-queues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/scheduling-queues.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/structure-hybrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/structure-hybrid.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/structure-layered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/structure-layered.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/structure-microkernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/structure-microkernel.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/structure-modular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/structure-modular.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/structure-monolithic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/structure-monolithic.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/img/system-call-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/img/system-call-interface.png -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/_template.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/deadlocks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/deadlocks.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/filesystems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/filesystems.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/interprocess-communication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/interprocess-communication.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/memory-management.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/memory-management.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/processes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/processes.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/scheduling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/scheduling.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/synchronization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/synchronization.tex -------------------------------------------------------------------------------- /cmpt-300-operating-systems-i/tex/virtual-memory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-300-operating-systems-i/tex/virtual-memory.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/cmpt-310.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/cmpt-310.pdf -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/cmpt-310.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/cmpt-310.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/constraint-satisfaction-problems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/constraint-satisfaction-problems.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/flashcard-questions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/flashcard-questions.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/game-playing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/game-playing.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/logical-inference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/logical-inference.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/machine-learning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/machine-learning.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/probability.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/probability.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/problem-solving.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/problem-solving.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/course-overview/tex/search-algorithms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/course-overview/tex/search-algorithms.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet-solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet-solutions.pdf -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet-solutions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet-solutions.tex -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet.pdf -------------------------------------------------------------------------------- /cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-310-artificial-intelligence-survey/minimax-worksheet/minimax-worksheet.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/cmpt-320.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/cmpt-320.pdf -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/cmpt-320.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/cmpt-320.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/computer-crime.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/computer-crime.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/computers-in-the-workplace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/computers-in-the-workplace.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/economic-impact-of-technology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/economic-impact-of-technology.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/ethics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/ethics.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/freedom-of-speech.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/freedom-of-speech.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/intellectual-property.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/intellectual-property.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/life-with-technology.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/life-with-technology.tex -------------------------------------------------------------------------------- /cmpt-320-social-implications-of-a-computerized-society/tex/privacy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-320-social-implications-of-a-computerized-society/tex/privacy.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/Entity-Relationship Diagram Template/Entity-Relationship Diagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/Entity-Relationship Diagram Template/Entity-Relationship Diagram.txt -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/Entity-Relationship Diagram Template/tikz-er2.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/Entity-Relationship Diagram Template/tikz-er2.sty -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/cmpt-354.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/cmpt-354.pdf -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/cmpt-354.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/cmpt-354.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/_template.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/data-warehousing-and-mining.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/data-warehousing-and-mining.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/database-applications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/database-applications.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/design.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/entity-relationship-model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/entity-relationship-model.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/functional-dependencies.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/functional-dependencies.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/nosql.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/nosql.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/query-optimization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/query-optimization.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/relational-model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/relational-model.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tex/sql.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tex/sql.tex -------------------------------------------------------------------------------- /cmpt-354-database-systems-i_partial/tikz-er2.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-354-database-systems-i_partial/tikz-er2.sty -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/cmpt-373.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/cmpt-373.pdf -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/cmpt-373.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/cmpt-373.tex -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/tex/design-and-architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/tex/design-and-architecture.tex -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/tex/teamwork.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/tex/teamwork.tex -------------------------------------------------------------------------------- /cmpt-373-software-development-methods/tex/the-agile-paradigm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-373-software-development-methods/tex/the-agile-paradigm.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/cmpt-376w.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/cmpt-376w.pdf -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/cmpt-376w.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/cmpt-376w.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/_template.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/allegories.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/allegories.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/elements-of-text.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/elements-of-text.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/reviewing-papers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/reviewing-papers.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/writing-samples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/writing-samples.tex -------------------------------------------------------------------------------- /cmpt-376w-technical-writing-and-group-dynamics/tex/writing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-376w-technical-writing-and-group-dynamics/tex/writing.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/brief-ll1-parsing/ll1-parsing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/brief-ll1-parsing/ll1-parsing.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/brief-ll1-parsing/ll1-parsing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/brief-ll1-parsing/ll1-parsing.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/cmpt-379.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/cmpt-379.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/cmpt-379.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/cmpt-379.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/img/dominance-frontier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/img/dominance-frontier.jpg -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/img/lrk-states-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/img/lrk-states-diagram.jpg -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/img/lrk-states-epsilon-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/img/lrk-states-epsilon-diagram.jpg -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/img/register-interference-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/img/register-interference-graph.png -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/img/slr-1-trace-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/img/slr-1-trace-diagram.jpg -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/lexical-analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/lexical-analysis.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/optimization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/optimization.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/parsing-algorithms-bottom-up.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/parsing-algorithms-bottom-up.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/parsing-algorithms-top-down.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/parsing-algorithms-top-down.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/programming-language-structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/programming-language-structure.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/register-allocation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/register-allocation.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/semantic-analysis-ssa.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/semantic-analysis-ssa.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/syntax-analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/syntax-analysis.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/tex/syntax-directed-translation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/tex/syntax-directed-translation.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-answers.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-answers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-answers.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-questions.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-questions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/1-lexical-analysis/1-lexical-analysis-questions.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-answers.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-answers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-answers.tex -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-questions.pdf -------------------------------------------------------------------------------- /cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-questions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-379-principles-of-compiler-design/worksheets/2-syntax-analysis/2-syntax-analysis-questions.tex -------------------------------------------------------------------------------- /cmpt-383-comparative-programming-languages/cmpt-383.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-383-comparative-programming-languages/cmpt-383.tex -------------------------------------------------------------------------------- /cmpt-383-comparative-programming-languages/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-383-comparative-programming-languages/tex/_template.tex -------------------------------------------------------------------------------- /cmpt-383-comparative-programming-languages/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-383-comparative-programming-languages/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/cmpt-433.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/cmpt-433.pdf -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/cmpt-433.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/cmpt-433.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/bare-metal-programming.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/bare-metal-programming.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/bitwise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/bitwise.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/communication-and-networking.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/communication-and-networking.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/debugging.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/electronics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/electronics.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/fmea.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/fmea.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/linux-kernel-programming.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/linux-kernel-programming.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/operating-system-components.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/operating-system-components.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/signals-and-noise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/signals-and-noise.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/software.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/software.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/synchronization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/synchronization.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/tex/systemd.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/tex/systemd.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet-answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet-answers.pdf -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet-answers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet-answers.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet.pdf -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/bitwise-operations/bitwise-operations-worksheet.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet-answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet-answers.pdf -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet-answers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet-answers.tex -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet.pdf -------------------------------------------------------------------------------- /cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-433-embedded-systems/worksheets/timer-calculation/timer-calculation-worksheet.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/cmpt-454.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/cmpt-454.pdf -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/cmpt-454.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/cmpt-454.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/arm-assembly-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/arm-assembly-diagram.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/heap-file-linked-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/heap-file-linked-list.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/heap-file-page-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/heap-file-page-directory.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed-packed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed-packed.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed-unpacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed-unpacked.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-fixed.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-fixed.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-page.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/data-storage-architecture/record-variable-variable.png -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/external-sorting/merge-sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/external-sorting/merge-sort.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/external-sorting/replacement-sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/external-sorting/replacement-sort.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/bplus-tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/bplus-tree.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/clustered-index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/clustered-index.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/extendible-hashing-splitting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/extendible-hashing-splitting.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/extendible-hashing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/extendible-hashing.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/isam-tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/isam-tree.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/linear-hashing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/linear-hashing.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/static-hashing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/static-hashing.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/img/indexed-file-structure/unclustered-index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/img/indexed-file-structure/unclustered-index.jpg -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/concurrency-control.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/concurrency-control.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/data-storage-architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/data-storage-architecture.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/external-sorting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/external-sorting.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/fundamentals-of-transactions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/fundamentals-of-transactions.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/heap-file-structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/heap-file-structure.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/indexed-file-structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/indexed-file-structure.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/logging-and-recovery.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/logging-and-recovery.tex -------------------------------------------------------------------------------- /cmpt-454-database-systems-ii/tex/query-optimization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-454-database-systems-ii/tex/query-optimization.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/cmpt-473.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/cmpt-473.pdf -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/cmpt-473.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/cmpt-473.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/img/flow-diagram-for.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/img/flow-diagram-for.jpg -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/img/flow-diagram-if-shortcircuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/img/flow-diagram-if-shortcircuit.jpg -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/img/flow-diagram-switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/img/flow-diagram-switch.jpg -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/img/flow-diagram-while.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/img/flow-diagram-while.jpg -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/a-b-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/a-b-testing.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/automated-test-generation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/automated-test-generation.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/debugging.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/graph-coverage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/graph-coverage.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/input-space-partitioning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/input-space-partitioning.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/introduction.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/logic-based-coverage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/logic-based-coverage.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/managing-bugs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/managing-bugs.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/mutation-analysis-and-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/mutation-analysis-and-testing.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/performance.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/performance.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/program-analysis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/program-analysis.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/property-based-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/property-based-testing.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/regression-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/regression-testing.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/security.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/security.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/test-planning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/test-planning.tex -------------------------------------------------------------------------------- /cmpt-473-software-testing-reliability-security/tex/types-of-testing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/cmpt-473-software-testing-reliability-security/tex/types-of-testing.tex -------------------------------------------------------------------------------- /easc-106-earth-through-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/easc-106-earth-through-time/README.md -------------------------------------------------------------------------------- /easc-106-earth-through-time/easc-106.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/easc-106-earth-through-time/easc-106.docx -------------------------------------------------------------------------------- /easc-106-earth-through-time/easc-106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/easc-106-earth-through-time/easc-106.pdf -------------------------------------------------------------------------------- /engl-101w-introduction-to-fiction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/engl-101w-introduction-to-fiction/README.md -------------------------------------------------------------------------------- /engl-101w-introduction-to-fiction/engl-101w.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/engl-101w-introduction-to-fiction/engl-101w.docx -------------------------------------------------------------------------------- /engl-101w-introduction-to-fiction/engl-101w.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/engl-101w-introduction-to-fiction/engl-101w.pdf -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/iat-210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/iat-210.pdf -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/iat-210.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/iat-210.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/business.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/business.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/designing-games.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/designing-games.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/history-of-play-and-games.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/history-of-play-and-games.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/narrative.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/narrative.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/participatory-gaming.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/participatory-gaming.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/properties-of-games.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/properties-of-games.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/reasons-for-game-design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/reasons-for-game-design.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/the-audience.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/the-audience.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/the-players-perspective.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/the-players-perspective.tex -------------------------------------------------------------------------------- /iat-210-introduction-to-game-studies/tex/types-of-games.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-210-introduction-to-game-studies/tex/types-of-games.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/IEEEtrantools.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/IEEEtrantools.sty -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/iat-267.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/iat-267.pdf -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/iat-267.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/iat-267.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/arduino-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/arduino-switch.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/arduino-uno-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/arduino-uno-diagram.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/force-sensing-resistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/force-sensing-resistor.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/network-direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/network-direct.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/network-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/network-ring.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/img/network-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/img/network-star.png -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/actuators.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/actuators.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/arduino.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/arduino.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/electricity-and-circuit-design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/electricity-and-circuit-design.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/introduction-to-embedded-and-computing-systems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/introduction-to-embedded-and-computing-systems.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/networking.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/networking.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/processing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/processing.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/sensors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/sensors.tex -------------------------------------------------------------------------------- /iat-267-introduction-to-technological-systems/tex/technological-systems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/iat-267-introduction-to-technological-systems/tex/technological-systems.tex -------------------------------------------------------------------------------- /macm-101-discrete-mathematics-i_partial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/macm-101-discrete-mathematics-i_partial/README.md -------------------------------------------------------------------------------- /macm-101-discrete-mathematics-i_partial/macm-101.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/macm-101-discrete-mathematics-i_partial/macm-101.docx -------------------------------------------------------------------------------- /macm-101-discrete-mathematics-i_partial/macm-101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/macm-101-discrete-mathematics-i_partial/macm-101.pdf -------------------------------------------------------------------------------- /rem-100-global-change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/rem-100-global-change/README.md -------------------------------------------------------------------------------- /rem-100-global-change/rem-100.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/rem-100-global-change/rem-100.docx -------------------------------------------------------------------------------- /rem-100-global-change/rem-100.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/rem-100-global-change/rem-100.pdf -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/see-101w.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/see-101w.pdf -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/see-101w.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/see-101w.tex -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/tex/drafting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/tex/drafting.tex -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/tex/introduction.tex -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/tex/invention.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/tex/invention.tex -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/tex/persuasion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/tex/persuasion.tex -------------------------------------------------------------------------------- /see-101w-process-form-convention-in-professional-genres/tex/structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/see-101w-process-form-convention-in-professional-genres/tex/structure.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/IEEEtrantools.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/IEEEtrantools.sty -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/img/xkcd-221-random-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/img/xkcd-221-random-number.png -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/img/xkcd-552-correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/img/xkcd-552-correlation.png -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/stat-100.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/stat-100.pdf -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/stat-100.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/stat-100.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/_template.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/analysis-of-multi-variable-data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/analysis-of-multi-variable-data.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/analysis-of-population-proportions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/analysis-of-population-proportions.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/analysis-of-single-variable-data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/analysis-of-single-variable-data.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/data-collection.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/data-collection.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/elements-of-statistics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/elements-of-statistics.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/ethics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/ethics.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/measurement-of-data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/measurement-of-data.tex -------------------------------------------------------------------------------- /stat-100-chance-and-data-analysis/tex/probability.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleung51-coursework/notes/HEAD/stat-100-chance-and-data-analysis/tex/probability.tex --------------------------------------------------------------------------------