Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Hack the CPython
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Lexing - Tokenization
- 3 Parsing - Parser
- 4 AST (where actual hack begins)
- 5 Bytecode Generation
- 6 Evaluation
- 7 Walrus on Python 3.7
- 8 The Strategy For Hacking
- 9 Modifiying the Tokens
- 10 Modifying The Source
- 11 Creating decode function for Encoding
- 12 Adding a search function
- 13 Implementing Peps (Example PEP313)
- 14 Scoping
- 15 Runtime
- 16 Rusty Return
- 17 Transforming AST (2)
- 18 Poophole Optimizer
- 19 Optimize Function
- 20 Optimizers 2 (Example Elem Local Vars)
- 21 Catlizor v1-extended
- 22 Hooking