├── CS143 Compiler.md ├── CS143 text-srt ├── README.md ├── chinese │ ├── CHSEN_01-01-introduction-redo-correction.srt │ ├── CHSEN_01-02-structure-of-a-compiler-final.srt │ ├── CHSEN_01-03-the-economy-of-programming-languages.srt │ ├── CHSEN_02-01-cool-overview-final.srt │ ├── CHSEN_02-02-cool-example-ii-final.srt │ ├── CHSEN_02-03-cool-example-iii-final-correction.srt │ ├── CHSEN_03-01-A.srt │ ├── CHSEN_03-01-B+Lexical+Analysis.srt │ ├── CHSEN_03-02-lexical-analysis-examples-final.srt │ ├── CHSEN_03-03-A+Regular+Languages.srt │ ├── CHSEN_03-03-B.srt │ ├── CHSEN_03-04-formal-languages.srt │ ├── CHSEN_03-05-lexical-specifications-final-quizupdate.srt │ ├── CHSEN_04+02+finite+automata+part+1.srt │ ├── CHSEN_04+02+finite+automata+part+2.srt │ ├── CHSEN_04-01-lexical-specification.srt │ └── CHSEN_04-05-implementing-finite-automata-correction.srt └── english │ ├── 01-01-introduction-redo-correction.srt │ ├── 01-02-structure-of-a-compiler-final.srt │ ├── 01-03-the-economy-of-programming-languages.srt │ ├── 02-01-cool-overview-final.srt │ ├── 02-02-cool-example-ii-final.srt │ ├── 02-03-cool-example-iii-final-correction.srt │ ├── 03-01-A.srt │ ├── 03-01-B+Lexical+Analysis.srt │ ├── 03-02-lexical-analysis-examples-final.srt │ ├── 03-03-A+Regular+Languages.srt │ ├── 03-03-B.srt │ ├── 03-04-formal-languages.srt │ ├── 03-05-lexical-specifications-final-quizupdate.srt │ ├── 04+02+finite+automata+part+1.srt │ ├── 04+02+finite+automata+part+2.srt │ ├── 04-01-lexical-specification.srt │ ├── 04-03.srt │ ├── 04-04-nfa-to-dfa-quizupdate.srt │ ├── 04-05-implementing-finite-automata-correction.srt │ ├── 05-01-introduction-to-parsing.srt │ ├── 05-02-A+Context+Free+Grammars.srt │ ├── 05-02-B+Context+Free+Grammars.srt │ ├── 05-03-B+Derivations.srt │ ├── 05-03.srt │ ├── 05-04-A+Ambiguity.srt │ ├── 05-04-B.srt │ ├── 05-04-C+Ambiguity.srt │ ├── 06-01-error-handling.srt │ ├── 06-02-abstract-syntax-trees.srt │ ├── 06-03-recursive-descent-parsing.srt │ ├── 06-04-1-recursive-descent-limitations-04-1.srt │ ├── 06-04-recursive-descent-algorithm.srt │ ├── 06-05-A+Left+Recursion.srt │ ├── 06-05-B+Left+Recursion.srt │ ├── 07-01-B+Predictive+Parsing.srt │ ├── 07-01.srt │ ├── 07-02-first-sets.srt │ ├── 07-03-follow-sets.srt │ ├── 07-04-ll1-parsing-tables.srt │ ├── 07-05-B+Bottom-Up+Parsing.srt │ ├── 07-05.srt │ ├── 07-06-B+Shift-Reduce+Parsing.srt │ ├── 07-06.srt │ ├── 08-01-B+Handles.srt │ ├── 08-01.srt │ ├── 08-02-recognizing-handles.srt │ ├── 08-03-recognizing-viable-prefixes.srt │ ├── 08-04-valid-items.srt │ ├── 08-05-slr-parsing.srt │ ├── 08-06-slr-parsing-example.srt │ ├── 08-07-slr-improvements.srt │ ├── 08-08-slr-examples-correction.srt │ ├── 09-01-introduction-to-semantic-analysis.srt │ ├── 09-02-scope.srt │ ├── 09-03-symbol-tables.srt │ ├── 09-04-types.srt │ ├── 09-05-A+Type+Checking.srt │ ├── 09-05-B+Type+Checking.srt │ ├── 09-06-A+Type+Environments.srt │ ├── 09-06-B+Type+Environments.srt │ ├── 09-07-A+Subtyping.srt │ ├── 09-07-B+Subtyping.srt │ ├── 09-08-A+Typing+Methods.srt │ ├── 09-08-B+Typing+Methods.srt │ ├── 09-09-implementing-type-checking.srt │ ├── 10-01-A+Static+vs.+Dynamic+Typing.srt │ ├── 10-01-B+Static+vs.+Dynamic+Typing.srt │ ├── 10-02-self-type.srt │ ├── 10-03-A+Self+Type+Operations.srt │ ├── 10-03-B+Self+Type+Operations.srt │ ├── 10-04-self-type-usage.srt │ ├── 10-05-A+Self+Type+Checking.srt │ ├── 10-05-B+Self+Type+Checking.srt │ ├── 10-06-error-recovery.srt │ ├── 11-01-runtime-organization.srt │ ├── 11-02-A+Activations.srt │ ├── 11-02-B+Activations.srt │ ├── 11-03-activation-records.srt │ ├── 11-04-globals-and-heap.srt │ ├── 11-05-alignment.srt │ ├── 11-06-stack-machines.srt │ ├── 12-01-introduction-to-code-generation.srt │ ├── 12-02-A+Code+Generation+I.srt │ ├── 12-02-B+Code+Generation+I.srt │ ├── 12-03-A+Code+Generation+II.srt │ ├── 12-03-B+Code+Generation+II.srt │ ├── 12-04-code-generation-example.srt │ ├── 12-05-A+Temporaries.srt │ ├── 12-05-B+Temporaries.srt │ ├── 12-06-A+Object+Layout.srt │ ├── 12-06-B+Object+Layout.srt │ ├── 13-01-semantics-overview.srt │ ├── 13-02-operational-semantics.srt │ ├── 13-03-cool-semantics-i.srt │ ├── 13-04-A+Cool+Semantics+II.srt │ ├── 13-04-B+Cool+Semantics+II.srt │ ├── 14-01-intermediate-code.srt │ ├── 14-02-optimization-overview.srt │ ├── 14-03-local-optimization.srt │ ├── 14-04-peephole-optimization.srt │ ├── 15-01.srt │ ├── 15-02-constant-propagation.srt │ ├── 15-03-analysis-of-loops.srt │ ├── 15-04-orderings.srt │ ├── 15-05-A+Liveness+Analysis.srt │ ├── 15-05-B+Liveness+Analysis.srt │ ├── 16-01-register-allocation.srt │ ├── 16-02-A+Graph+Coloring.srt │ ├── 16-02-B+Graph+Coloring.srt │ ├── 16-03-A+Spilling.srt │ ├── 16-03-B+Spilling.srt │ ├── 16-04-managing-caches.srt │ ├── 17-01-automatic-memory-management.srt │ ├── 17-02-A+Mark+and+Sweep.srt │ ├── 17-02-B+Mark+and+Sweep.srt │ ├── 17-03-A+Stop+and+Copy.srt │ ├── 17-03-B+Stop+and+Copy.srt │ ├── 17-04-conservative-collection.srt │ ├── 17-05-A+Reference+Counting.srt │ ├── 17-05-B+Reference+Counting.srt │ ├── 18-01-java.srt │ ├── 18-02-java-arrays.srt │ ├── 18-03-java-exceptions.srt │ ├── 18-04-java-interfaces.srt │ ├── 18-05-java-coercions.srt │ ├── 18-06-java-threads.srt │ ├── 18-07-other-topics.srt │ ├── CHSEN_04-03.srt │ └── README.md ├── README.md ├── SSR-Android.apk ├── SSR-Windows.zip ├── fubabaxianjinliu.apk ├── src ├── c__.ps ├── demo.md └── gdbref.ps ├── student-dist.tar.gz └── v2rayn.zip /CS143 Compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 Compiler.md -------------------------------------------------------------------------------- /CS143 text-srt/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_01-01-introduction-redo-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_01-01-introduction-redo-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_01-02-structure-of-a-compiler-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_01-02-structure-of-a-compiler-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_01-03-the-economy-of-programming-languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_01-03-the-economy-of-programming-languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_02-01-cool-overview-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_02-01-cool-overview-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_02-02-cool-example-ii-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_02-02-cool-example-ii-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_02-03-cool-example-iii-final-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_02-03-cool-example-iii-final-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-01-A.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-01-A.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-01-B+Lexical+Analysis.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-01-B+Lexical+Analysis.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-02-lexical-analysis-examples-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-02-lexical-analysis-examples-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-03-A+Regular+Languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-03-A+Regular+Languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-03-B.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-03-B.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-04-formal-languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-04-formal-languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_03-05-lexical-specifications-final-quizupdate.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_03-05-lexical-specifications-final-quizupdate.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_04+02+finite+automata+part+1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_04+02+finite+automata+part+1.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_04+02+finite+automata+part+2.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_04+02+finite+automata+part+2.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_04-01-lexical-specification.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_04-01-lexical-specification.srt -------------------------------------------------------------------------------- /CS143 text-srt/chinese/CHSEN_04-05-implementing-finite-automata-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/chinese/CHSEN_04-05-implementing-finite-automata-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/01-01-introduction-redo-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/01-01-introduction-redo-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/01-02-structure-of-a-compiler-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/01-02-structure-of-a-compiler-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/01-03-the-economy-of-programming-languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/01-03-the-economy-of-programming-languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/02-01-cool-overview-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/02-01-cool-overview-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/02-02-cool-example-ii-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/02-02-cool-example-ii-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/02-03-cool-example-iii-final-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/02-03-cool-example-iii-final-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-01-A.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-01-A.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-01-B+Lexical+Analysis.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-01-B+Lexical+Analysis.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-02-lexical-analysis-examples-final.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-02-lexical-analysis-examples-final.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-03-A+Regular+Languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-03-A+Regular+Languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-03-B.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-03-B.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-04-formal-languages.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-04-formal-languages.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/03-05-lexical-specifications-final-quizupdate.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/03-05-lexical-specifications-final-quizupdate.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04+02+finite+automata+part+1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04+02+finite+automata+part+1.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04+02+finite+automata+part+2.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04+02+finite+automata+part+2.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04-01-lexical-specification.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04-01-lexical-specification.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04-03.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04-03.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04-04-nfa-to-dfa-quizupdate.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04-04-nfa-to-dfa-quizupdate.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/04-05-implementing-finite-automata-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/04-05-implementing-finite-automata-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-01-introduction-to-parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-01-introduction-to-parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-02-A+Context+Free+Grammars.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-02-A+Context+Free+Grammars.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-02-B+Context+Free+Grammars.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-02-B+Context+Free+Grammars.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-03-B+Derivations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-03-B+Derivations.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-03.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-03.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-04-A+Ambiguity.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-04-A+Ambiguity.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-04-B.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-04-B.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/05-04-C+Ambiguity.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/05-04-C+Ambiguity.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-01-error-handling.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-01-error-handling.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-02-abstract-syntax-trees.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-02-abstract-syntax-trees.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-03-recursive-descent-parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-03-recursive-descent-parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-04-1-recursive-descent-limitations-04-1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-04-1-recursive-descent-limitations-04-1.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-04-recursive-descent-algorithm.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-04-recursive-descent-algorithm.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-05-A+Left+Recursion.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-05-A+Left+Recursion.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/06-05-B+Left+Recursion.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/06-05-B+Left+Recursion.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-01-B+Predictive+Parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-01-B+Predictive+Parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-01.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-01.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-02-first-sets.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-02-first-sets.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-03-follow-sets.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-03-follow-sets.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-04-ll1-parsing-tables.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-04-ll1-parsing-tables.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-05-B+Bottom-Up+Parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-05-B+Bottom-Up+Parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-05.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-05.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-06-B+Shift-Reduce+Parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-06-B+Shift-Reduce+Parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/07-06.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/07-06.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-01-B+Handles.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-01-B+Handles.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-01.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-01.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-02-recognizing-handles.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-02-recognizing-handles.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-03-recognizing-viable-prefixes.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-03-recognizing-viable-prefixes.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-04-valid-items.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-04-valid-items.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-05-slr-parsing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-05-slr-parsing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-06-slr-parsing-example.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-06-slr-parsing-example.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-07-slr-improvements.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-07-slr-improvements.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/08-08-slr-examples-correction.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/08-08-slr-examples-correction.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-01-introduction-to-semantic-analysis.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-01-introduction-to-semantic-analysis.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-02-scope.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-02-scope.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-03-symbol-tables.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-03-symbol-tables.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-04-types.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-04-types.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-05-A+Type+Checking.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-05-A+Type+Checking.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-05-B+Type+Checking.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-05-B+Type+Checking.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-06-A+Type+Environments.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-06-A+Type+Environments.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-06-B+Type+Environments.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-06-B+Type+Environments.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-07-A+Subtyping.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-07-A+Subtyping.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-07-B+Subtyping.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-07-B+Subtyping.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-08-A+Typing+Methods.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-08-A+Typing+Methods.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-08-B+Typing+Methods.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-08-B+Typing+Methods.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/09-09-implementing-type-checking.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/09-09-implementing-type-checking.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-01-A+Static+vs.+Dynamic+Typing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-01-A+Static+vs.+Dynamic+Typing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-01-B+Static+vs.+Dynamic+Typing.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-01-B+Static+vs.+Dynamic+Typing.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-02-self-type.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-02-self-type.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-03-A+Self+Type+Operations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-03-A+Self+Type+Operations.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-03-B+Self+Type+Operations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-03-B+Self+Type+Operations.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-04-self-type-usage.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-04-self-type-usage.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-05-A+Self+Type+Checking.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-05-A+Self+Type+Checking.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-05-B+Self+Type+Checking.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-05-B+Self+Type+Checking.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/10-06-error-recovery.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/10-06-error-recovery.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-01-runtime-organization.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-01-runtime-organization.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-02-A+Activations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-02-A+Activations.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-02-B+Activations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-02-B+Activations.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-03-activation-records.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-03-activation-records.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-04-globals-and-heap.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-04-globals-and-heap.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-05-alignment.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-05-alignment.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/11-06-stack-machines.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/11-06-stack-machines.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-01-introduction-to-code-generation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-01-introduction-to-code-generation.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-02-A+Code+Generation+I.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-02-A+Code+Generation+I.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-02-B+Code+Generation+I.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-02-B+Code+Generation+I.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-03-A+Code+Generation+II.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-03-A+Code+Generation+II.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-03-B+Code+Generation+II.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-03-B+Code+Generation+II.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-04-code-generation-example.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-04-code-generation-example.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-05-A+Temporaries.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-05-A+Temporaries.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-05-B+Temporaries.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-05-B+Temporaries.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-06-A+Object+Layout.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-06-A+Object+Layout.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/12-06-B+Object+Layout.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/12-06-B+Object+Layout.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/13-01-semantics-overview.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/13-01-semantics-overview.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/13-02-operational-semantics.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/13-02-operational-semantics.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/13-03-cool-semantics-i.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/13-03-cool-semantics-i.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/13-04-A+Cool+Semantics+II.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/13-04-A+Cool+Semantics+II.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/13-04-B+Cool+Semantics+II.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/13-04-B+Cool+Semantics+II.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/14-01-intermediate-code.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/14-01-intermediate-code.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/14-02-optimization-overview.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/14-02-optimization-overview.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/14-03-local-optimization.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/14-03-local-optimization.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/14-04-peephole-optimization.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/14-04-peephole-optimization.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-01.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-01.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-02-constant-propagation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-02-constant-propagation.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-03-analysis-of-loops.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-03-analysis-of-loops.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-04-orderings.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-04-orderings.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-05-A+Liveness+Analysis.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-05-A+Liveness+Analysis.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/15-05-B+Liveness+Analysis.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/15-05-B+Liveness+Analysis.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-01-register-allocation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-01-register-allocation.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-02-A+Graph+Coloring.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-02-A+Graph+Coloring.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-02-B+Graph+Coloring.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-02-B+Graph+Coloring.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-03-A+Spilling.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-03-A+Spilling.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-03-B+Spilling.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-03-B+Spilling.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/16-04-managing-caches.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/16-04-managing-caches.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-01-automatic-memory-management.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-01-automatic-memory-management.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-02-A+Mark+and+Sweep.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-02-A+Mark+and+Sweep.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-02-B+Mark+and+Sweep.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-02-B+Mark+and+Sweep.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-03-A+Stop+and+Copy.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-03-A+Stop+and+Copy.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-03-B+Stop+and+Copy.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-03-B+Stop+and+Copy.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-04-conservative-collection.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-04-conservative-collection.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-05-A+Reference+Counting.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-05-A+Reference+Counting.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/17-05-B+Reference+Counting.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/17-05-B+Reference+Counting.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-01-java.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-01-java.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-02-java-arrays.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-02-java-arrays.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-03-java-exceptions.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-03-java-exceptions.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-04-java-interfaces.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-04-java-interfaces.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-05-java-coercions.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-05-java-coercions.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-06-java-threads.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-06-java-threads.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/18-07-other-topics.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/18-07-other-topics.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/CHSEN_04-03.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/CHSEN_04-03.srt -------------------------------------------------------------------------------- /CS143 text-srt/english/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/CS143 text-srt/english/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Self-learning-Record -------------------------------------------------------------------------------- /SSR-Android.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/SSR-Android.apk -------------------------------------------------------------------------------- /SSR-Windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/SSR-Windows.zip -------------------------------------------------------------------------------- /fubabaxianjinliu.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/fubabaxianjinliu.apk -------------------------------------------------------------------------------- /src/c__.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/src/c__.ps -------------------------------------------------------------------------------- /src/demo.md: -------------------------------------------------------------------------------- 1 | de de 2 | -------------------------------------------------------------------------------- /src/gdbref.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/src/gdbref.ps -------------------------------------------------------------------------------- /student-dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/student-dist.tar.gz -------------------------------------------------------------------------------- /v2rayn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenWrong/Self-learning-Record/HEAD/v2rayn.zip --------------------------------------------------------------------------------