├── .gitignore ├── 00-one-off ├── build └── scenes.py ├── 00-template-long ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── audio │ ├── music │ ├── normalized │ │ └── .gitkeep │ └── raw │ │ ├── get_noise_profile │ │ └── record ├── build ├── export │ └── encode ├── manim.cfg ├── normalize └── scenes.py ├── 00-template-short ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── audio │ ├── music │ ├── normalized │ │ └── .gitkeep │ └── raw │ │ ├── get_noise_profile │ │ └── record ├── build ├── export │ └── encode ├── manim.cfg ├── normalize └── scenes.py ├── 01-lopt ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── chromaticNumber.out ├── chromaticNumber.py ├── knapsack.out ├── knapsack.py ├── manim.cfg ├── music ├── scenes.py ├── utilities.py ├── visualize.out └── visualize.py ├── 02-voronoi ├── .gitignore ├── 1.png ├── 1.svg ├── 2.png ├── 2.svg ├── 2blank.png ├── 3.svg ├── 4.svg ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── music ├── scenes.py ├── utilities.py └── video.kdenlive ├── 03-vizing ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── coloring.py ├── manim.cfg ├── music ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 04-perfect-graphs ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── laszlo.svg ├── manim.cfg ├── music ├── notes.xopp ├── proof1.png ├── proof2.png ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 05-sorting-networks ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── music ├── notes.xopp ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 06-edmonds-blossom ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── edmonds.svg ├── flower.svg ├── kids │ ├── 1.svg │ ├── 2.svg │ ├── 3.svg │ ├── 4.svg │ ├── 5.svg │ ├── 6.svg │ └── me.svg ├── manim.cfg ├── mm │ ├── mm.py │ ├── mm_blossom.py │ └── mm_test.py ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 07-cayley ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 08-tutte ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 09-bathroom-tiles ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── bolt.svg │ ├── infinity.png │ ├── languages │ │ ├── .gitignore │ │ ├── haskell.svg │ │ ├── java.svg │ │ └── python.svg │ ├── laptop.svg │ ├── pillar.svg │ ├── thumbnail-better.png │ ├── thumbnail-frame.png │ ├── thumbnail-idkman.svg │ ├── thumbnail.png │ └── water.svg ├── build ├── manim.cfg ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 10-sat ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── black.jpg │ ├── factories.png │ ├── factory.svg │ ├── lp-max-sat-relax.png │ ├── lp-max-sat-relax.svg │ ├── lp-max-sat.png │ ├── lp-max-sat.svg │ ├── lp-sat.png │ ├── lp-sat.svg │ ├── rabbit.png │ ├── rabbit.svg │ ├── thumbnail-best.png │ ├── thumbnail-pretty.png │ ├── thumbnail.png │ ├── thumbnail.svg │ ├── turtle.png │ └── turtle.svg ├── build ├── manim.cfg ├── programs │ ├── 0-lp-sat-np.py │ ├── 1-rand-sat.py │ ├── 2-lp.py │ ├── 3-lp-sat.py │ ├── 4-lp-sat-fixed-noprogram.py │ └── 5-lp-sat-fixed.py ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 11-catalan ├── DESCRIPTION.md ├── SCRIPT.txt ├── build ├── manim.cfg ├── scenes.py └── utilities.py ├── 12-state-space ├── .gitignore ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── normalize ├── programs │ ├── .fly.py │ ├── .minotaur-vizualize.py │ ├── .minotaur.py │ ├── bfs-full.py │ ├── bfs.py │ ├── dijkstra-full.py │ ├── dijkstra.py │ ├── graphs │ │ ├── aoc.py │ │ ├── results │ │ │ ├── astar-best.txt │ │ │ ├── astar-shit.txt │ │ │ ├── bfs-wtb-max-prune.txt │ │ │ ├── bfs-wtb.txt │ │ │ └── bfs.txt │ │ ├── utilities-astar-best.py │ │ ├── utilities-astar-by-minerals.py │ │ ├── utilities-want-to-build-prune-max.py │ │ ├── utilities-want-to-build.py │ │ └── utilities.py │ ├── minotaur-full.py │ └── minotaur.py ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 13-primes-dots ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── cisla.txt ├── manim.cfg ├── normalize ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 14-funf ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── funf ├── funf.c ├── funf.out ├── manim.cfg ├── normalize ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 15-people ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── normalize ├── resources │ └── house.svg └── scenes.py ├── 16-tutte-short ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── handbook.png │ ├── index-cropped.jpg │ ├── index.jpg │ ├── index.png │ └── index.xcf ├── build ├── manim.cfg ├── normalize ├── scenes.py ├── video.kdenlive └── video.kdenlive.srt ├── 17-ab ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── bee-creation.svg │ ├── bee.svg │ ├── black.png │ ├── cache_line.svg │ ├── cpu.svg │ ├── fire.png │ ├── green.png │ ├── pause.png │ ├── pause.svg │ ├── performance.png │ ├── thumbnail.png │ ├── thumbnail.svg │ └── thumbnail2.png ├── benchmark │ ├── .gitignore │ ├── benchmark-pc-10000.txt │ ├── benchmark-pc.txt │ ├── benchmark.py │ └── benchmark.txt ├── build ├── manim.cfg ├── normalize ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 18-lopt ├── .gitignore ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── 1-simplex.png │ ├── 2-duality.png │ ├── 3-ilp.png │ ├── black.png │ ├── dantzig-border.png │ ├── dantzig.jpg │ ├── eq.svg │ ├── g.txt │ ├── green.png │ ├── iff.svg │ ├── kantorovich.jpg │ ├── koopmans.jpg │ ├── l_char.svg │ ├── leq.svg │ ├── midjourney │ │ ├── carrot-cropped-flopped.png │ │ ├── carrot-cropped.png │ │ ├── carrot.png │ │ ├── carrot.xcf │ │ ├── farm-12-16-out.png │ │ ├── farm-12-16-rect-large.png │ │ ├── farm-12-16-rect-small.png │ │ ├── farm-12-16-rect.png │ │ ├── farm-12-16.png │ │ ├── farm-12-16.svg │ │ ├── farm-16-9.png │ │ ├── farm-8-9-out.png │ │ ├── farm-8-9.png │ │ ├── farm-9-16.png │ │ ├── farmer-black.png │ │ ├── farmer-cropped.png │ │ ├── farmer-outline.png │ │ ├── farmer.png │ │ ├── farmer.xcf │ │ ├── fertilizer-cropped-flopped.png │ │ ├── fertilizer-cropped.png │ │ ├── fertilizer.png │ │ ├── fertilizer.xcf │ │ ├── knapsack-out.png │ │ ├── knapsack.png │ │ ├── knapsack.xcf │ │ ├── pesticide-cropped.png │ │ ├── pesticide.png │ │ ├── pesticide.xcf │ │ ├── potato-cropped.png │ │ ├── potato.png │ │ └── potato.xcf │ ├── pause-hint-wip.svg │ ├── pause-hint.svg │ ├── pause.png │ ├── pause.svg │ ├── pause_v2.svg │ ├── pengling │ │ ├── pengling.png │ │ ├── pengling.svg │ │ └── pengling2.svg │ ├── r_char.svg │ ├── silhouettes │ │ ├── looking-up-cropped.png │ │ ├── looking-up-cropped.svg │ │ ├── looking-up.svg │ │ ├── professor-cropped.png │ │ ├── professor-cropped.svg │ │ ├── professor.png │ │ ├── professor.svg │ │ ├── returning-cropped.png │ │ ├── returning-cropped.svg │ │ ├── returning.svg │ │ ├── sitting-cropped.png │ │ ├── sitting-cropped.svg │ │ ├── sitting.png │ │ ├── sitting.svg │ │ ├── student-cropped.png │ │ ├── student-cropped.svg │ │ ├── student.png │ │ └── student.svg │ ├── slama.png │ ├── thingy.png │ ├── thingy.xcf │ ├── thumbnail │ │ ├── drawing.png │ │ └── drawing.svg │ ├── transcendence.png │ └── transcendence2.png ├── build ├── code │ ├── farmer.out │ ├── farmer.py │ ├── knapsack.out │ └── knapsack.py ├── manim.cfg ├── normalize ├── preview.kdenlive ├── scenes.py ├── utilities.py ├── video.kdenlive └── video.kdenlive.srt ├── 20-dfs-vs-bfs ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── assets │ ├── 12-thumbnail.png │ ├── ssp.png │ └── ssp.svg ├── build ├── manim.cfg ├── maze │ └── mask.txt ├── normalize ├── scenes.py ├── utilities.py └── video.kdenlive ├── 21-photogrammetry ├── .gitignore ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── bts-1.kdenlive ├── build ├── manim.cfg ├── normalize ├── scenes.py └── utilities.py ├── 22-delaunay ├── README.md ├── build └── scenes.py ├── 99-miscellaneous ├── logo-s.svg ├── logo-t.svg ├── manim.cfg └── scenes.py ├── IDEAS.md ├── LICENSE ├── MUSIC.md ├── OBS ├── Code Recording └── basic.ini ├── README.md ├── WORKFLOW.md ├── encode ├── extend ├── get_noise_profile ├── ksp-29-1-5 ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── manim.cfg ├── normalize ├── scenes.py └── utilities.py ├── ksp-intro ├── .short ├── DESCRIPTION.md ├── SCRIPT.md ├── build ├── ksp-all.svg ├── ksp-hand-l.svg ├── ksp-hand-r.svg ├── ksp-head-eyes.svg ├── ksp-head.svg ├── ksp-text-fade.svg ├── ksp-text.svg ├── manim.cfg └── scenes.py ├── manim.cfg ├── music ├── normalize ├── record └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/.gitignore -------------------------------------------------------------------------------- /00-one-off/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /00-one-off/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-one-off/scenes.py -------------------------------------------------------------------------------- /00-template-long/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-template-long/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-long/DESCRIPTION.md -------------------------------------------------------------------------------- /00-template-long/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-long/SCRIPT.md -------------------------------------------------------------------------------- /00-template-long/audio/music: -------------------------------------------------------------------------------- 1 | ../../music -------------------------------------------------------------------------------- /00-template-long/audio/normalized/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-template-long/audio/raw/get_noise_profile: -------------------------------------------------------------------------------- 1 | ../../../get_noise_profile -------------------------------------------------------------------------------- /00-template-long/audio/raw/record: -------------------------------------------------------------------------------- 1 | ../../../record -------------------------------------------------------------------------------- /00-template-long/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /00-template-long/export/encode: -------------------------------------------------------------------------------- 1 | ../../encode -------------------------------------------------------------------------------- /00-template-long/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /00-template-long/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /00-template-long/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-long/scenes.py -------------------------------------------------------------------------------- /00-template-short/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-template-short/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-short/DESCRIPTION.md -------------------------------------------------------------------------------- /00-template-short/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-short/SCRIPT.md -------------------------------------------------------------------------------- /00-template-short/audio/music: -------------------------------------------------------------------------------- 1 | ../../music -------------------------------------------------------------------------------- /00-template-short/audio/normalized/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-template-short/audio/raw/get_noise_profile: -------------------------------------------------------------------------------- 1 | ../../../get_noise_profile -------------------------------------------------------------------------------- /00-template-short/audio/raw/record: -------------------------------------------------------------------------------- 1 | ../../../record -------------------------------------------------------------------------------- /00-template-short/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /00-template-short/export/encode: -------------------------------------------------------------------------------- 1 | ../../encode -------------------------------------------------------------------------------- /00-template-short/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /00-template-short/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /00-template-short/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/00-template-short/scenes.py -------------------------------------------------------------------------------- /01-lopt/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/DESCRIPTION.md -------------------------------------------------------------------------------- /01-lopt/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/SCRIPT.md -------------------------------------------------------------------------------- /01-lopt/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /01-lopt/chromaticNumber.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/chromaticNumber.out -------------------------------------------------------------------------------- /01-lopt/chromaticNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/chromaticNumber.py -------------------------------------------------------------------------------- /01-lopt/knapsack.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/knapsack.out -------------------------------------------------------------------------------- /01-lopt/knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/knapsack.py -------------------------------------------------------------------------------- /01-lopt/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /01-lopt/music: -------------------------------------------------------------------------------- 1 | ../music -------------------------------------------------------------------------------- /01-lopt/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/scenes.py -------------------------------------------------------------------------------- /01-lopt/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/utilities.py -------------------------------------------------------------------------------- /01-lopt/visualize.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/visualize.out -------------------------------------------------------------------------------- /01-lopt/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/01-lopt/visualize.py -------------------------------------------------------------------------------- /02-voronoi/.gitignore: -------------------------------------------------------------------------------- 1 | 1/ 2 | 2/ 3 | -------------------------------------------------------------------------------- /02-voronoi/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/1.png -------------------------------------------------------------------------------- /02-voronoi/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/1.svg -------------------------------------------------------------------------------- /02-voronoi/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/2.png -------------------------------------------------------------------------------- /02-voronoi/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/2.svg -------------------------------------------------------------------------------- /02-voronoi/2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/2blank.png -------------------------------------------------------------------------------- /02-voronoi/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/3.svg -------------------------------------------------------------------------------- /02-voronoi/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/4.svg -------------------------------------------------------------------------------- /02-voronoi/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/DESCRIPTION.md -------------------------------------------------------------------------------- /02-voronoi/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/SCRIPT.md -------------------------------------------------------------------------------- /02-voronoi/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /02-voronoi/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /02-voronoi/music: -------------------------------------------------------------------------------- 1 | ../music -------------------------------------------------------------------------------- /02-voronoi/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/scenes.py -------------------------------------------------------------------------------- /02-voronoi/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/utilities.py -------------------------------------------------------------------------------- /02-voronoi/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/02-voronoi/video.kdenlive -------------------------------------------------------------------------------- /03-vizing/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/DESCRIPTION.md -------------------------------------------------------------------------------- /03-vizing/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/SCRIPT.md -------------------------------------------------------------------------------- /03-vizing/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /03-vizing/coloring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/coloring.py -------------------------------------------------------------------------------- /03-vizing/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /03-vizing/music: -------------------------------------------------------------------------------- 1 | ../music -------------------------------------------------------------------------------- /03-vizing/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/scenes.py -------------------------------------------------------------------------------- /03-vizing/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/utilities.py -------------------------------------------------------------------------------- /03-vizing/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/video.kdenlive -------------------------------------------------------------------------------- /03-vizing/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/03-vizing/video.kdenlive.srt -------------------------------------------------------------------------------- /04-perfect-graphs/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/DESCRIPTION.md -------------------------------------------------------------------------------- /04-perfect-graphs/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/SCRIPT.md -------------------------------------------------------------------------------- /04-perfect-graphs/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /04-perfect-graphs/laszlo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/laszlo.svg -------------------------------------------------------------------------------- /04-perfect-graphs/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /04-perfect-graphs/music: -------------------------------------------------------------------------------- 1 | ../music -------------------------------------------------------------------------------- /04-perfect-graphs/notes.xopp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/notes.xopp -------------------------------------------------------------------------------- /04-perfect-graphs/proof1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/proof1.png -------------------------------------------------------------------------------- /04-perfect-graphs/proof2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/proof2.png -------------------------------------------------------------------------------- /04-perfect-graphs/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/scenes.py -------------------------------------------------------------------------------- /04-perfect-graphs/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/utilities.py -------------------------------------------------------------------------------- /04-perfect-graphs/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/video.kdenlive -------------------------------------------------------------------------------- /04-perfect-graphs/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/04-perfect-graphs/video.kdenlive.srt -------------------------------------------------------------------------------- /05-sorting-networks/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/DESCRIPTION.md -------------------------------------------------------------------------------- /05-sorting-networks/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/SCRIPT.md -------------------------------------------------------------------------------- /05-sorting-networks/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /05-sorting-networks/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /05-sorting-networks/music: -------------------------------------------------------------------------------- 1 | ../music -------------------------------------------------------------------------------- /05-sorting-networks/notes.xopp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/notes.xopp -------------------------------------------------------------------------------- /05-sorting-networks/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/scenes.py -------------------------------------------------------------------------------- /05-sorting-networks/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/utilities.py -------------------------------------------------------------------------------- /05-sorting-networks/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/video.kdenlive -------------------------------------------------------------------------------- /05-sorting-networks/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/05-sorting-networks/video.kdenlive.srt -------------------------------------------------------------------------------- /06-edmonds-blossom/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/DESCRIPTION.md -------------------------------------------------------------------------------- /06-edmonds-blossom/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/SCRIPT.md -------------------------------------------------------------------------------- /06-edmonds-blossom/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /06-edmonds-blossom/edmonds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/edmonds.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/flower.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/1.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/2.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/3.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/4.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/5.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/6.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/kids/me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/kids/me.svg -------------------------------------------------------------------------------- /06-edmonds-blossom/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /06-edmonds-blossom/mm/mm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/mm/mm.py -------------------------------------------------------------------------------- /06-edmonds-blossom/mm/mm_blossom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/mm/mm_blossom.py -------------------------------------------------------------------------------- /06-edmonds-blossom/mm/mm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/mm/mm_test.py -------------------------------------------------------------------------------- /06-edmonds-blossom/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/scenes.py -------------------------------------------------------------------------------- /06-edmonds-blossom/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/utilities.py -------------------------------------------------------------------------------- /06-edmonds-blossom/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/video.kdenlive -------------------------------------------------------------------------------- /06-edmonds-blossom/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/06-edmonds-blossom/video.kdenlive.srt -------------------------------------------------------------------------------- /07-cayley/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/DESCRIPTION.md -------------------------------------------------------------------------------- /07-cayley/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/SCRIPT.md -------------------------------------------------------------------------------- /07-cayley/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /07-cayley/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /07-cayley/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/scenes.py -------------------------------------------------------------------------------- /07-cayley/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/utilities.py -------------------------------------------------------------------------------- /07-cayley/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/video.kdenlive -------------------------------------------------------------------------------- /07-cayley/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/07-cayley/video.kdenlive.srt -------------------------------------------------------------------------------- /08-tutte/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/DESCRIPTION.md -------------------------------------------------------------------------------- /08-tutte/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/SCRIPT.md -------------------------------------------------------------------------------- /08-tutte/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /08-tutte/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /08-tutte/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/scenes.py -------------------------------------------------------------------------------- /08-tutte/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/utilities.py -------------------------------------------------------------------------------- /08-tutte/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/video.kdenlive -------------------------------------------------------------------------------- /08-tutte/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/08-tutte/video.kdenlive.srt -------------------------------------------------------------------------------- /09-bathroom-tiles/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/DESCRIPTION.md -------------------------------------------------------------------------------- /09-bathroom-tiles/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/SCRIPT.md -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/bolt.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/infinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/infinity.png -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/languages/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/languages/haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/languages/haskell.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/languages/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/languages/java.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/languages/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/languages/python.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/laptop.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/pillar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/pillar.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/thumbnail-better.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/thumbnail-better.png -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/thumbnail-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/thumbnail-frame.png -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/thumbnail-idkman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/thumbnail-idkman.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/thumbnail.png -------------------------------------------------------------------------------- /09-bathroom-tiles/assets/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/assets/water.svg -------------------------------------------------------------------------------- /09-bathroom-tiles/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /09-bathroom-tiles/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /09-bathroom-tiles/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/scenes.py -------------------------------------------------------------------------------- /09-bathroom-tiles/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/utilities.py -------------------------------------------------------------------------------- /09-bathroom-tiles/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/video.kdenlive -------------------------------------------------------------------------------- /09-bathroom-tiles/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/09-bathroom-tiles/video.kdenlive.srt -------------------------------------------------------------------------------- /10-sat/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/DESCRIPTION.md -------------------------------------------------------------------------------- /10-sat/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/SCRIPT.md -------------------------------------------------------------------------------- /10-sat/assets/black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/black.jpg -------------------------------------------------------------------------------- /10-sat/assets/factories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/factories.png -------------------------------------------------------------------------------- /10-sat/assets/factory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/factory.svg -------------------------------------------------------------------------------- /10-sat/assets/lp-max-sat-relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-max-sat-relax.png -------------------------------------------------------------------------------- /10-sat/assets/lp-max-sat-relax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-max-sat-relax.svg -------------------------------------------------------------------------------- /10-sat/assets/lp-max-sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-max-sat.png -------------------------------------------------------------------------------- /10-sat/assets/lp-max-sat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-max-sat.svg -------------------------------------------------------------------------------- /10-sat/assets/lp-sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-sat.png -------------------------------------------------------------------------------- /10-sat/assets/lp-sat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/lp-sat.svg -------------------------------------------------------------------------------- /10-sat/assets/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/rabbit.png -------------------------------------------------------------------------------- /10-sat/assets/rabbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/rabbit.svg -------------------------------------------------------------------------------- /10-sat/assets/thumbnail-best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/thumbnail-best.png -------------------------------------------------------------------------------- /10-sat/assets/thumbnail-pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/thumbnail-pretty.png -------------------------------------------------------------------------------- /10-sat/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/thumbnail.png -------------------------------------------------------------------------------- /10-sat/assets/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/thumbnail.svg -------------------------------------------------------------------------------- /10-sat/assets/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/turtle.png -------------------------------------------------------------------------------- /10-sat/assets/turtle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/assets/turtle.svg -------------------------------------------------------------------------------- /10-sat/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /10-sat/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /10-sat/programs/0-lp-sat-np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/0-lp-sat-np.py -------------------------------------------------------------------------------- /10-sat/programs/1-rand-sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/1-rand-sat.py -------------------------------------------------------------------------------- /10-sat/programs/2-lp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/2-lp.py -------------------------------------------------------------------------------- /10-sat/programs/3-lp-sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/3-lp-sat.py -------------------------------------------------------------------------------- /10-sat/programs/4-lp-sat-fixed-noprogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/4-lp-sat-fixed-noprogram.py -------------------------------------------------------------------------------- /10-sat/programs/5-lp-sat-fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/programs/5-lp-sat-fixed.py -------------------------------------------------------------------------------- /10-sat/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/scenes.py -------------------------------------------------------------------------------- /10-sat/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/utilities.py -------------------------------------------------------------------------------- /10-sat/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/video.kdenlive -------------------------------------------------------------------------------- /10-sat/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/10-sat/video.kdenlive.srt -------------------------------------------------------------------------------- /11-catalan/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/11-catalan/DESCRIPTION.md -------------------------------------------------------------------------------- /11-catalan/SCRIPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/11-catalan/SCRIPT.txt -------------------------------------------------------------------------------- /11-catalan/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /11-catalan/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /11-catalan/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/11-catalan/scenes.py -------------------------------------------------------------------------------- /11-catalan/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/11-catalan/utilities.py -------------------------------------------------------------------------------- /12-state-space/.gitignore: -------------------------------------------------------------------------------- 1 | maze 2 | midas 3 | assets 4 | -------------------------------------------------------------------------------- /12-state-space/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/DESCRIPTION.md -------------------------------------------------------------------------------- /12-state-space/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/SCRIPT.md -------------------------------------------------------------------------------- /12-state-space/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /12-state-space/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /12-state-space/normalize: -------------------------------------------------------------------------------- 1 | ../normalize -------------------------------------------------------------------------------- /12-state-space/programs/.fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/.fly.py -------------------------------------------------------------------------------- /12-state-space/programs/.minotaur-vizualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/.minotaur-vizualize.py -------------------------------------------------------------------------------- /12-state-space/programs/.minotaur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/.minotaur.py -------------------------------------------------------------------------------- /12-state-space/programs/bfs-full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/bfs-full.py -------------------------------------------------------------------------------- /12-state-space/programs/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/bfs.py -------------------------------------------------------------------------------- /12-state-space/programs/dijkstra-full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/dijkstra-full.py -------------------------------------------------------------------------------- /12-state-space/programs/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/dijkstra.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/aoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/aoc.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/results/astar-best.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/results/astar-best.txt -------------------------------------------------------------------------------- /12-state-space/programs/graphs/results/astar-shit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/results/astar-shit.txt -------------------------------------------------------------------------------- /12-state-space/programs/graphs/results/bfs-wtb-max-prune.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/results/bfs-wtb-max-prune.txt -------------------------------------------------------------------------------- /12-state-space/programs/graphs/results/bfs-wtb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/results/bfs-wtb.txt -------------------------------------------------------------------------------- /12-state-space/programs/graphs/results/bfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/results/bfs.txt -------------------------------------------------------------------------------- /12-state-space/programs/graphs/utilities-astar-best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/utilities-astar-best.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/utilities-astar-by-minerals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/utilities-astar-by-minerals.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/utilities-want-to-build-prune-max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/utilities-want-to-build-prune-max.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/utilities-want-to-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/utilities-want-to-build.py -------------------------------------------------------------------------------- /12-state-space/programs/graphs/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/graphs/utilities.py -------------------------------------------------------------------------------- /12-state-space/programs/minotaur-full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/minotaur-full.py -------------------------------------------------------------------------------- /12-state-space/programs/minotaur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/programs/minotaur.py -------------------------------------------------------------------------------- /12-state-space/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/scenes.py -------------------------------------------------------------------------------- /12-state-space/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/utilities.py -------------------------------------------------------------------------------- /12-state-space/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/video.kdenlive -------------------------------------------------------------------------------- /12-state-space/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/12-state-space/video.kdenlive.srt -------------------------------------------------------------------------------- /13-primes-dots/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13-primes-dots/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/DESCRIPTION.md -------------------------------------------------------------------------------- /13-primes-dots/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/SCRIPT.md -------------------------------------------------------------------------------- /13-primes-dots/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /13-primes-dots/cisla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/cisla.txt -------------------------------------------------------------------------------- /13-primes-dots/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /13-primes-dots/normalize: -------------------------------------------------------------------------------- 1 | ../normalize -------------------------------------------------------------------------------- /13-primes-dots/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/scenes.py -------------------------------------------------------------------------------- /13-primes-dots/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/utilities.py -------------------------------------------------------------------------------- /13-primes-dots/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/video.kdenlive -------------------------------------------------------------------------------- /13-primes-dots/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/13-primes-dots/video.kdenlive.srt -------------------------------------------------------------------------------- /14-funf/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14-funf/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/DESCRIPTION.md -------------------------------------------------------------------------------- /14-funf/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/SCRIPT.md -------------------------------------------------------------------------------- /14-funf/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /14-funf/funf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/funf -------------------------------------------------------------------------------- /14-funf/funf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/funf.c -------------------------------------------------------------------------------- /14-funf/funf.out: -------------------------------------------------------------------------------- 1 | 86 2 | -------------------------------------------------------------------------------- /14-funf/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /14-funf/normalize: -------------------------------------------------------------------------------- 1 | ../13-primes-dots/normalize -------------------------------------------------------------------------------- /14-funf/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/scenes.py -------------------------------------------------------------------------------- /14-funf/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/utilities.py -------------------------------------------------------------------------------- /14-funf/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/video.kdenlive -------------------------------------------------------------------------------- /14-funf/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/14-funf/video.kdenlive.srt -------------------------------------------------------------------------------- /15-people/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/15-people/DESCRIPTION.md -------------------------------------------------------------------------------- /15-people/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/15-people/SCRIPT.md -------------------------------------------------------------------------------- /15-people/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /15-people/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /15-people/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /15-people/resources/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/15-people/resources/house.svg -------------------------------------------------------------------------------- /15-people/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/15-people/scenes.py -------------------------------------------------------------------------------- /16-tutte-short/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16-tutte-short/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/DESCRIPTION.md -------------------------------------------------------------------------------- /16-tutte-short/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/SCRIPT.md -------------------------------------------------------------------------------- /16-tutte-short/assets/handbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/assets/handbook.png -------------------------------------------------------------------------------- /16-tutte-short/assets/index-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/assets/index-cropped.jpg -------------------------------------------------------------------------------- /16-tutte-short/assets/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/assets/index.jpg -------------------------------------------------------------------------------- /16-tutte-short/assets/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/assets/index.png -------------------------------------------------------------------------------- /16-tutte-short/assets/index.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/assets/index.xcf -------------------------------------------------------------------------------- /16-tutte-short/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /16-tutte-short/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /16-tutte-short/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /16-tutte-short/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/scenes.py -------------------------------------------------------------------------------- /16-tutte-short/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/video.kdenlive -------------------------------------------------------------------------------- /16-tutte-short/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/16-tutte-short/video.kdenlive.srt -------------------------------------------------------------------------------- /17-ab/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/DESCRIPTION.md -------------------------------------------------------------------------------- /17-ab/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/SCRIPT.md -------------------------------------------------------------------------------- /17-ab/assets/bee-creation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/bee-creation.svg -------------------------------------------------------------------------------- /17-ab/assets/bee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/bee.svg -------------------------------------------------------------------------------- /17-ab/assets/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/black.png -------------------------------------------------------------------------------- /17-ab/assets/cache_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/cache_line.svg -------------------------------------------------------------------------------- /17-ab/assets/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/cpu.svg -------------------------------------------------------------------------------- /17-ab/assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/fire.png -------------------------------------------------------------------------------- /17-ab/assets/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/green.png -------------------------------------------------------------------------------- /17-ab/assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/pause.png -------------------------------------------------------------------------------- /17-ab/assets/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/pause.svg -------------------------------------------------------------------------------- /17-ab/assets/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/performance.png -------------------------------------------------------------------------------- /17-ab/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/thumbnail.png -------------------------------------------------------------------------------- /17-ab/assets/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/thumbnail.svg -------------------------------------------------------------------------------- /17-ab/assets/thumbnail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/assets/thumbnail2.png -------------------------------------------------------------------------------- /17-ab/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | BTree/ 2 | -------------------------------------------------------------------------------- /17-ab/benchmark/benchmark-pc-10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/benchmark/benchmark-pc-10000.txt -------------------------------------------------------------------------------- /17-ab/benchmark/benchmark-pc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/benchmark/benchmark-pc.txt -------------------------------------------------------------------------------- /17-ab/benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/benchmark/benchmark.py -------------------------------------------------------------------------------- /17-ab/benchmark/benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/benchmark/benchmark.txt -------------------------------------------------------------------------------- /17-ab/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /17-ab/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /17-ab/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /17-ab/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/scenes.py -------------------------------------------------------------------------------- /17-ab/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/utilities.py -------------------------------------------------------------------------------- /17-ab/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/video.kdenlive -------------------------------------------------------------------------------- /17-ab/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/17-ab/video.kdenlive.srt -------------------------------------------------------------------------------- /18-lopt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/.gitignore -------------------------------------------------------------------------------- /18-lopt/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/DESCRIPTION.md -------------------------------------------------------------------------------- /18-lopt/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/SCRIPT.md -------------------------------------------------------------------------------- /18-lopt/assets/1-simplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/1-simplex.png -------------------------------------------------------------------------------- /18-lopt/assets/2-duality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/2-duality.png -------------------------------------------------------------------------------- /18-lopt/assets/3-ilp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/3-ilp.png -------------------------------------------------------------------------------- /18-lopt/assets/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/black.png -------------------------------------------------------------------------------- /18-lopt/assets/dantzig-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/dantzig-border.png -------------------------------------------------------------------------------- /18-lopt/assets/dantzig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/dantzig.jpg -------------------------------------------------------------------------------- /18-lopt/assets/eq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/eq.svg -------------------------------------------------------------------------------- /18-lopt/assets/g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/g.txt -------------------------------------------------------------------------------- /18-lopt/assets/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/green.png -------------------------------------------------------------------------------- /18-lopt/assets/iff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/iff.svg -------------------------------------------------------------------------------- /18-lopt/assets/kantorovich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/kantorovich.jpg -------------------------------------------------------------------------------- /18-lopt/assets/koopmans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/koopmans.jpg -------------------------------------------------------------------------------- /18-lopt/assets/l_char.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/l_char.svg -------------------------------------------------------------------------------- /18-lopt/assets/leq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/leq.svg -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/carrot-cropped-flopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/carrot-cropped-flopped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/carrot-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/carrot-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/carrot.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/carrot.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/carrot.xcf -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16-out.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16-rect-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16-rect-large.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16-rect-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16-rect-small.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16-rect.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-12-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-12-16.svg -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-16-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-16-9.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-8-9-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-8-9-out.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-8-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-8-9.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farm-9-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farm-9-16.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farmer-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farmer-black.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farmer-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farmer-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farmer-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farmer-outline.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farmer.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/farmer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/farmer.xcf -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/fertilizer-cropped-flopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/fertilizer-cropped-flopped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/fertilizer-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/fertilizer-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/fertilizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/fertilizer.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/fertilizer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/fertilizer.xcf -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/knapsack-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/knapsack-out.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/knapsack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/knapsack.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/knapsack.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/knapsack.xcf -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/pesticide-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/pesticide-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/pesticide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/pesticide.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/pesticide.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/pesticide.xcf -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/potato-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/potato-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/potato.png -------------------------------------------------------------------------------- /18-lopt/assets/midjourney/potato.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/midjourney/potato.xcf -------------------------------------------------------------------------------- /18-lopt/assets/pause-hint-wip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pause-hint-wip.svg -------------------------------------------------------------------------------- /18-lopt/assets/pause-hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pause-hint.svg -------------------------------------------------------------------------------- /18-lopt/assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pause.png -------------------------------------------------------------------------------- /18-lopt/assets/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pause.svg -------------------------------------------------------------------------------- /18-lopt/assets/pause_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pause_v2.svg -------------------------------------------------------------------------------- /18-lopt/assets/pengling/pengling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pengling/pengling.png -------------------------------------------------------------------------------- /18-lopt/assets/pengling/pengling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pengling/pengling.svg -------------------------------------------------------------------------------- /18-lopt/assets/pengling/pengling2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/pengling/pengling2.svg -------------------------------------------------------------------------------- /18-lopt/assets/r_char.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/r_char.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/looking-up-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/looking-up-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/looking-up-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/looking-up-cropped.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/looking-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/looking-up.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/professor-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/professor-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/professor-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/professor-cropped.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/professor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/professor.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/professor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/professor.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/returning-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/returning-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/returning-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/returning-cropped.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/returning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/returning.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/sitting-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/sitting-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/sitting-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/sitting-cropped.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/sitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/sitting.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/sitting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/sitting.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/student-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/student-cropped.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/student-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/student-cropped.svg -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/student.png -------------------------------------------------------------------------------- /18-lopt/assets/silhouettes/student.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/silhouettes/student.svg -------------------------------------------------------------------------------- /18-lopt/assets/slama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/slama.png -------------------------------------------------------------------------------- /18-lopt/assets/thingy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/thingy.png -------------------------------------------------------------------------------- /18-lopt/assets/thingy.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/thingy.xcf -------------------------------------------------------------------------------- /18-lopt/assets/thumbnail/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/thumbnail/drawing.png -------------------------------------------------------------------------------- /18-lopt/assets/thumbnail/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/thumbnail/drawing.svg -------------------------------------------------------------------------------- /18-lopt/assets/transcendence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/transcendence.png -------------------------------------------------------------------------------- /18-lopt/assets/transcendence2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/assets/transcendence2.png -------------------------------------------------------------------------------- /18-lopt/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /18-lopt/code/farmer.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/code/farmer.out -------------------------------------------------------------------------------- /18-lopt/code/farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/code/farmer.py -------------------------------------------------------------------------------- /18-lopt/code/knapsack.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/code/knapsack.out -------------------------------------------------------------------------------- /18-lopt/code/knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/code/knapsack.py -------------------------------------------------------------------------------- /18-lopt/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /18-lopt/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /18-lopt/preview.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/preview.kdenlive -------------------------------------------------------------------------------- /18-lopt/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/scenes.py -------------------------------------------------------------------------------- /18-lopt/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/utilities.py -------------------------------------------------------------------------------- /18-lopt/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/video.kdenlive -------------------------------------------------------------------------------- /18-lopt/video.kdenlive.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/18-lopt/video.kdenlive.srt -------------------------------------------------------------------------------- /20-dfs-vs-bfs/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20-dfs-vs-bfs/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/DESCRIPTION.md -------------------------------------------------------------------------------- /20-dfs-vs-bfs/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/SCRIPT.md -------------------------------------------------------------------------------- /20-dfs-vs-bfs/assets/12-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/assets/12-thumbnail.png -------------------------------------------------------------------------------- /20-dfs-vs-bfs/assets/ssp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/assets/ssp.png -------------------------------------------------------------------------------- /20-dfs-vs-bfs/assets/ssp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/assets/ssp.svg -------------------------------------------------------------------------------- /20-dfs-vs-bfs/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /20-dfs-vs-bfs/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /20-dfs-vs-bfs/maze/mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/maze/mask.txt -------------------------------------------------------------------------------- /20-dfs-vs-bfs/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /20-dfs-vs-bfs/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/scenes.py -------------------------------------------------------------------------------- /20-dfs-vs-bfs/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/utilities.py -------------------------------------------------------------------------------- /20-dfs-vs-bfs/video.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/20-dfs-vs-bfs/video.kdenlive -------------------------------------------------------------------------------- /21-photogrammetry/.gitignore: -------------------------------------------------------------------------------- 1 | # for now 2 | assets 3 | -------------------------------------------------------------------------------- /21-photogrammetry/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21-photogrammetry/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/21-photogrammetry/DESCRIPTION.md -------------------------------------------------------------------------------- /21-photogrammetry/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/21-photogrammetry/SCRIPT.md -------------------------------------------------------------------------------- /21-photogrammetry/bts-1.kdenlive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/21-photogrammetry/bts-1.kdenlive -------------------------------------------------------------------------------- /21-photogrammetry/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /21-photogrammetry/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /21-photogrammetry/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /21-photogrammetry/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/21-photogrammetry/scenes.py -------------------------------------------------------------------------------- /21-photogrammetry/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/21-photogrammetry/utilities.py -------------------------------------------------------------------------------- /22-delaunay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/22-delaunay/README.md -------------------------------------------------------------------------------- /22-delaunay/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /22-delaunay/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/22-delaunay/scenes.py -------------------------------------------------------------------------------- /99-miscellaneous/logo-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/99-miscellaneous/logo-s.svg -------------------------------------------------------------------------------- /99-miscellaneous/logo-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/99-miscellaneous/logo-t.svg -------------------------------------------------------------------------------- /99-miscellaneous/manim.cfg: -------------------------------------------------------------------------------- 1 | /home/xiaoxiae/Documents/Education/Programming/Manim/manim.cfg -------------------------------------------------------------------------------- /99-miscellaneous/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/99-miscellaneous/scenes.py -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/IDEAS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/LICENSE -------------------------------------------------------------------------------- /MUSIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/MUSIC.md -------------------------------------------------------------------------------- /OBS/Code Recording: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/OBS/Code Recording -------------------------------------------------------------------------------- /OBS/basic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/OBS/basic.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/README.md -------------------------------------------------------------------------------- /WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/WORKFLOW.md -------------------------------------------------------------------------------- /encode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/encode -------------------------------------------------------------------------------- /extend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/extend -------------------------------------------------------------------------------- /get_noise_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/get_noise_profile -------------------------------------------------------------------------------- /ksp-29-1-5/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ksp-29-1-5/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-29-1-5/DESCRIPTION.md -------------------------------------------------------------------------------- /ksp-29-1-5/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-29-1-5/SCRIPT.md -------------------------------------------------------------------------------- /ksp-29-1-5/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /ksp-29-1-5/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /ksp-29-1-5/normalize: -------------------------------------------------------------------------------- 1 | ../14-funf/normalize -------------------------------------------------------------------------------- /ksp-29-1-5/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-29-1-5/scenes.py -------------------------------------------------------------------------------- /ksp-29-1-5/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-29-1-5/utilities.py -------------------------------------------------------------------------------- /ksp-intro/.short: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ksp-intro/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/DESCRIPTION.md -------------------------------------------------------------------------------- /ksp-intro/SCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/SCRIPT.md -------------------------------------------------------------------------------- /ksp-intro/build: -------------------------------------------------------------------------------- 1 | ../build -------------------------------------------------------------------------------- /ksp-intro/ksp-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-all.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-hand-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-hand-l.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-hand-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-hand-r.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-head-eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-head-eyes.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-head.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-head.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-text-fade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-text-fade.svg -------------------------------------------------------------------------------- /ksp-intro/ksp-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/ksp-text.svg -------------------------------------------------------------------------------- /ksp-intro/manim.cfg: -------------------------------------------------------------------------------- 1 | ../manim.cfg -------------------------------------------------------------------------------- /ksp-intro/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/ksp-intro/scenes.py -------------------------------------------------------------------------------- /manim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/manim.cfg -------------------------------------------------------------------------------- /music: -------------------------------------------------------------------------------- 1 | /aux/Music/Blue Dot Sessions -------------------------------------------------------------------------------- /normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/normalize -------------------------------------------------------------------------------- /record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/record -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxiae/videos/HEAD/requirements.txt --------------------------------------------------------------------------------