├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── analysis └── main.py ├── flame-graphs ├── after_dogshit_removed_from_game.heapprofile ├── before_dog_shit_removed_from_game.heapsnapshot ├── before_dogshit_removed_from_game.heapprofile └── rxjs.before-opt.svg ├── game_player.Dockerfile ├── go.Dockerfile ├── go ├── cmd │ ├── generics │ │ └── main.go │ └── server │ │ └── main.go ├── go.mod ├── go.sum └── pkg │ ├── game_loop │ ├── export_test.go │ ├── game.go │ ├── game_clock.go │ ├── game_queue.go │ ├── game_queue_test.go │ ├── game_stats.go │ ├── game_test.go │ ├── geometry.go │ ├── geometry_test.go │ ├── objects.go │ ├── objects_test.go │ ├── physics.go │ ├── physics_test.go │ ├── utils_test.go │ └── wait_for_ready.go │ ├── server │ ├── message.go │ ├── server.go │ └── socket.go │ └── stats │ └── stats.go ├── images-typescript ├── Selection_187.png ├── Selection_188.png ├── Selection_189.png └── Selection_190.png ├── measure ├── prepare ├── process-game-memory ├── process-game-server-results ├── requirements.txt ├── run-client ├── run-server ├── run-ts-server ├── rust-client.Dockerfile ├── rust.Dockerfile ├── rust ├── Cargo.lock ├── Cargo.toml ├── correct ├── src │ ├── bin │ │ ├── game_player.rs │ │ ├── oops.rs │ │ ├── reduce_data.rs │ │ ├── server.rs │ │ └── test_client.rs │ ├── error.rs │ ├── game │ │ ├── bullet.rs │ │ ├── game.rs │ │ ├── game_queue.rs │ │ ├── game_setup.rs │ │ ├── geometry.rs │ │ ├── mod.rs │ │ ├── player.rs │ │ ├── stats.rs │ │ └── test_utils.rs │ ├── kill.rs │ ├── lib.rs │ ├── lock.rs │ ├── macros.rs │ └── server │ │ ├── message.rs │ │ ├── mod.rs │ │ ├── server.rs │ │ └── socket.rs └── test ├── sum-game-ticks ├── typescript-results ├── c.1200 ├── c.1200.csv ├── c.1200.tick.csv ├── c.400 ├── c.400.csv ├── c.400.tick.csv ├── c.800 ├── c.800.csv ├── c.800.tick.csv ├── c.pool.1200 ├── c.pool.1200.csv ├── c.pool.1200.tick.csv ├── c.pool.400 ├── c.pool.400.csv ├── c.pool.400.tick.csv ├── c.pool.800 ├── c.pool.800.csv ├── c.pool.800.tick.csv ├── r.1200 ├── r.1200.csv ├── r.1200.tick.csv ├── r.400 ├── r.400.csv ├── r.400.tick.csv ├── r.800 ├── r.800.csv ├── r.800.tick.csv ├── r.pool.1200 ├── r.pool.1200.csv ├── r.pool.1200.tick.csv ├── r.pool.400 ├── r.pool.400.csv ├── r.pool.400.tick.csv ├── r.pool.800 ├── r.pool.800.csv └── r.pool.800.tick.csv ├── typescript.Dockerfile ├── typescript ├── jest.config.js ├── package.json ├── src │ ├── browser-index.ts │ ├── game_loop │ │ ├── config.ts │ │ ├── game-callback.ts │ │ ├── game-loop-timer.ts │ │ ├── game-queue.ts │ │ ├── game-rxjs.ts │ │ ├── game-setup.ts │ │ ├── game-world.ts │ │ ├── geometry.ts │ │ ├── index.ts │ │ ├── objects.ts │ │ ├── physics.ts │ │ └── pool.ts │ ├── index.html │ ├── index.ts │ ├── message.ts │ ├── mocks │ │ └── socket.ts │ ├── promise-helpers.ts │ ├── server │ │ ├── callback-server.ts │ │ ├── index.ts │ │ ├── rxjs-server.ts │ │ ├── rxjs-socket.ts │ │ ├── socket.ts │ │ └── universal-types.ts │ ├── stats │ │ └── index.ts │ └── test │ │ ├── __integration__ │ │ ├── disconnect.ts │ │ └── successful-game.ts │ │ ├── createServer.ts │ │ ├── game_player.ts │ │ └── simple_connect.ts ├── tsconfig.json ├── webpack.config.js ├── yarn-error.log └── yarn.lock ├── video-2-data ├── c.base.1200 ├── c.base.1200.results ├── c.base.1600 ├── c.base.1600.results ├── c.base.400 ├── c.base.400.results ├── c.base.800 ├── c.base.800.results ├── c.final.1200 ├── c.final.1200.results ├── c.final.1600 ├── c.final.1600.results ├── c.final.400 ├── c.final.400.results ├── c.final.800 ├── c.final.800.results ├── c.hotspot.1200 ├── c.hotspot.1200.results ├── c.hotspot.400 ├── c.hotspot.400.results ├── c.hotspot.800 ├── c.hotspot.800.results ├── c.mempool.1200 ├── c.mempool.1200.results ├── c.mempool.1600 ├── c.mempool.1600.results ├── c.mempool.400 ├── c.mempool.400.results ├── c.mempool.800 ├── c.mempool.800.results ├── callback.before-opt.svg └── callback.hot-path-only.svg └── video-3 ├── c...res ├── c.go.10000 ├── c.go.10000.res ├── c.go.1200 ├── c.go.1200.res ├── c.go.1337 ├── c.go.1337.res ├── c.go.1600 ├── c.go.1600.res ├── c.go.2500 ├── c.go.2500.res ├── c.go.400 ├── c.go.400.res ├── c.go.5000.res ├── c.go.800 ├── c.go.800.res ├── c.rust.10000 ├── c.rust.10000.res ├── c.rust.100000.res ├── c.rust.1200 ├── c.rust.1200.res ├── c.rust.1337 ├── c.rust.1337.res ├── c.rust.1600 ├── c.rust.1600.res ├── c.rust.17500.res ├── c.rust.400 ├── c.rust.400.res ├── c.rust.800 ├── c.rust.800.res ├── c.ts.10000 ├── c.ts.10000.res ├── go.10000.res.csv ├── rust.10000.res.csv └── ts.10000.res.csv /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/README.md -------------------------------------------------------------------------------- /analysis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/analysis/main.py -------------------------------------------------------------------------------- /flame-graphs/after_dogshit_removed_from_game.heapprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/flame-graphs/after_dogshit_removed_from_game.heapprofile -------------------------------------------------------------------------------- /flame-graphs/before_dog_shit_removed_from_game.heapsnapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/flame-graphs/before_dog_shit_removed_from_game.heapsnapshot -------------------------------------------------------------------------------- /flame-graphs/before_dogshit_removed_from_game.heapprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/flame-graphs/before_dogshit_removed_from_game.heapprofile -------------------------------------------------------------------------------- /flame-graphs/rxjs.before-opt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/flame-graphs/rxjs.before-opt.svg -------------------------------------------------------------------------------- /game_player.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/game_player.Dockerfile -------------------------------------------------------------------------------- /go.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go.Dockerfile -------------------------------------------------------------------------------- /go/cmd/generics/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/cmd/generics/main.go -------------------------------------------------------------------------------- /go/cmd/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/cmd/server/main.go -------------------------------------------------------------------------------- /go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/go.mod -------------------------------------------------------------------------------- /go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/go.sum -------------------------------------------------------------------------------- /go/pkg/game_loop/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/export_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game_clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game_clock.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game_queue.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game_queue_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game_stats.go -------------------------------------------------------------------------------- /go/pkg/game_loop/game_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/game_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/geometry.go -------------------------------------------------------------------------------- /go/pkg/game_loop/geometry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/geometry_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/objects.go -------------------------------------------------------------------------------- /go/pkg/game_loop/objects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/objects_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/physics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/physics.go -------------------------------------------------------------------------------- /go/pkg/game_loop/physics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/physics_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/utils_test.go -------------------------------------------------------------------------------- /go/pkg/game_loop/wait_for_ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/game_loop/wait_for_ready.go -------------------------------------------------------------------------------- /go/pkg/server/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/server/message.go -------------------------------------------------------------------------------- /go/pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/server/server.go -------------------------------------------------------------------------------- /go/pkg/server/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/server/socket.go -------------------------------------------------------------------------------- /go/pkg/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/go/pkg/stats/stats.go -------------------------------------------------------------------------------- /images-typescript/Selection_187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/images-typescript/Selection_187.png -------------------------------------------------------------------------------- /images-typescript/Selection_188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/images-typescript/Selection_188.png -------------------------------------------------------------------------------- /images-typescript/Selection_189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/images-typescript/Selection_189.png -------------------------------------------------------------------------------- /images-typescript/Selection_190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/images-typescript/Selection_190.png -------------------------------------------------------------------------------- /measure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/measure -------------------------------------------------------------------------------- /prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/prepare -------------------------------------------------------------------------------- /process-game-memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/process-game-memory -------------------------------------------------------------------------------- /process-game-server-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/process-game-server-results -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | matplotlib 4 | -------------------------------------------------------------------------------- /run-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/run-client -------------------------------------------------------------------------------- /run-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/run-server -------------------------------------------------------------------------------- /run-ts-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/run-ts-server -------------------------------------------------------------------------------- /rust-client.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust-client.Dockerfile -------------------------------------------------------------------------------- /rust.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust.Dockerfile -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/correct -------------------------------------------------------------------------------- /rust/src/bin/game_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/bin/game_player.rs -------------------------------------------------------------------------------- /rust/src/bin/oops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/bin/oops.rs -------------------------------------------------------------------------------- /rust/src/bin/reduce_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/bin/reduce_data.rs -------------------------------------------------------------------------------- /rust/src/bin/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/bin/server.rs -------------------------------------------------------------------------------- /rust/src/bin/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/bin/test_client.rs -------------------------------------------------------------------------------- /rust/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/error.rs -------------------------------------------------------------------------------- /rust/src/game/bullet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/bullet.rs -------------------------------------------------------------------------------- /rust/src/game/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/game.rs -------------------------------------------------------------------------------- /rust/src/game/game_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/game_queue.rs -------------------------------------------------------------------------------- /rust/src/game/game_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/game_setup.rs -------------------------------------------------------------------------------- /rust/src/game/geometry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/geometry.rs -------------------------------------------------------------------------------- /rust/src/game/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/mod.rs -------------------------------------------------------------------------------- /rust/src/game/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/player.rs -------------------------------------------------------------------------------- /rust/src/game/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/stats.rs -------------------------------------------------------------------------------- /rust/src/game/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/game/test_utils.rs -------------------------------------------------------------------------------- /rust/src/kill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/kill.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /rust/src/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/lock.rs -------------------------------------------------------------------------------- /rust/src/macros.rs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /rust/src/server/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/server/message.rs -------------------------------------------------------------------------------- /rust/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/server/mod.rs -------------------------------------------------------------------------------- /rust/src/server/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/server/server.rs -------------------------------------------------------------------------------- /rust/src/server/socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/src/server/socket.rs -------------------------------------------------------------------------------- /rust/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/rust/test -------------------------------------------------------------------------------- /sum-game-ticks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/sum-game-ticks -------------------------------------------------------------------------------- /typescript-results/c.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.1200 -------------------------------------------------------------------------------- /typescript-results/c.1200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.1200.csv -------------------------------------------------------------------------------- /typescript-results/c.1200.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.1200.tick.csv -------------------------------------------------------------------------------- /typescript-results/c.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.400 -------------------------------------------------------------------------------- /typescript-results/c.400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.400.csv -------------------------------------------------------------------------------- /typescript-results/c.400.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.400.tick.csv -------------------------------------------------------------------------------- /typescript-results/c.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.800 -------------------------------------------------------------------------------- /typescript-results/c.800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.800.csv -------------------------------------------------------------------------------- /typescript-results/c.800.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.800.tick.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.1200 -------------------------------------------------------------------------------- /typescript-results/c.pool.1200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.1200.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.1200.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.1200.tick.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.400 -------------------------------------------------------------------------------- /typescript-results/c.pool.400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.400.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.400.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.400.tick.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.800 -------------------------------------------------------------------------------- /typescript-results/c.pool.800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.800.csv -------------------------------------------------------------------------------- /typescript-results/c.pool.800.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/c.pool.800.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.1200 -------------------------------------------------------------------------------- /typescript-results/r.1200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.1200.csv -------------------------------------------------------------------------------- /typescript-results/r.1200.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.1200.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.400 -------------------------------------------------------------------------------- /typescript-results/r.400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.400.csv -------------------------------------------------------------------------------- /typescript-results/r.400.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.400.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.800 -------------------------------------------------------------------------------- /typescript-results/r.800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.800.csv -------------------------------------------------------------------------------- /typescript-results/r.800.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.800.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.1200 -------------------------------------------------------------------------------- /typescript-results/r.pool.1200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.1200.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.1200.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.1200.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.400 -------------------------------------------------------------------------------- /typescript-results/r.pool.400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.400.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.400.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.400.tick.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.800 -------------------------------------------------------------------------------- /typescript-results/r.pool.800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.800.csv -------------------------------------------------------------------------------- /typescript-results/r.pool.800.tick.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript-results/r.pool.800.tick.csv -------------------------------------------------------------------------------- /typescript.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript.Dockerfile -------------------------------------------------------------------------------- /typescript/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/jest.config.js -------------------------------------------------------------------------------- /typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/package.json -------------------------------------------------------------------------------- /typescript/src/browser-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/browser-index.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/config.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-callback.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-loop-timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-loop-timer.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-queue.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-rxjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-rxjs.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-setup.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/game-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/game-world.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/geometry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/geometry.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/index.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/objects.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/physics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/physics.ts -------------------------------------------------------------------------------- /typescript/src/game_loop/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/game_loop/pool.ts -------------------------------------------------------------------------------- /typescript/src/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/index.ts -------------------------------------------------------------------------------- /typescript/src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/message.ts -------------------------------------------------------------------------------- /typescript/src/mocks/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/mocks/socket.ts -------------------------------------------------------------------------------- /typescript/src/promise-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/promise-helpers.ts -------------------------------------------------------------------------------- /typescript/src/server/callback-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/callback-server.ts -------------------------------------------------------------------------------- /typescript/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/index.ts -------------------------------------------------------------------------------- /typescript/src/server/rxjs-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/rxjs-server.ts -------------------------------------------------------------------------------- /typescript/src/server/rxjs-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/rxjs-socket.ts -------------------------------------------------------------------------------- /typescript/src/server/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/socket.ts -------------------------------------------------------------------------------- /typescript/src/server/universal-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/server/universal-types.ts -------------------------------------------------------------------------------- /typescript/src/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/stats/index.ts -------------------------------------------------------------------------------- /typescript/src/test/__integration__/disconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/test/__integration__/disconnect.ts -------------------------------------------------------------------------------- /typescript/src/test/__integration__/successful-game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/test/__integration__/successful-game.ts -------------------------------------------------------------------------------- /typescript/src/test/createServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/test/createServer.ts -------------------------------------------------------------------------------- /typescript/src/test/game_player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/test/game_player.ts -------------------------------------------------------------------------------- /typescript/src/test/simple_connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/src/test/simple_connect.ts -------------------------------------------------------------------------------- /typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/tsconfig.json -------------------------------------------------------------------------------- /typescript/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/webpack.config.js -------------------------------------------------------------------------------- /typescript/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/yarn-error.log -------------------------------------------------------------------------------- /typescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/typescript/yarn.lock -------------------------------------------------------------------------------- /video-2-data/c.base.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.1200 -------------------------------------------------------------------------------- /video-2-data/c.base.1200.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.1200.results -------------------------------------------------------------------------------- /video-2-data/c.base.1600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.1600 -------------------------------------------------------------------------------- /video-2-data/c.base.1600.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.1600.results -------------------------------------------------------------------------------- /video-2-data/c.base.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.400 -------------------------------------------------------------------------------- /video-2-data/c.base.400.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.400.results -------------------------------------------------------------------------------- /video-2-data/c.base.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.800 -------------------------------------------------------------------------------- /video-2-data/c.base.800.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.base.800.results -------------------------------------------------------------------------------- /video-2-data/c.final.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.1200 -------------------------------------------------------------------------------- /video-2-data/c.final.1200.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.1200.results -------------------------------------------------------------------------------- /video-2-data/c.final.1600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.1600 -------------------------------------------------------------------------------- /video-2-data/c.final.1600.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.1600.results -------------------------------------------------------------------------------- /video-2-data/c.final.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.400 -------------------------------------------------------------------------------- /video-2-data/c.final.400.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.400.results -------------------------------------------------------------------------------- /video-2-data/c.final.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.800 -------------------------------------------------------------------------------- /video-2-data/c.final.800.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.final.800.results -------------------------------------------------------------------------------- /video-2-data/c.hotspot.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.1200 -------------------------------------------------------------------------------- /video-2-data/c.hotspot.1200.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.1200.results -------------------------------------------------------------------------------- /video-2-data/c.hotspot.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.400 -------------------------------------------------------------------------------- /video-2-data/c.hotspot.400.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.400.results -------------------------------------------------------------------------------- /video-2-data/c.hotspot.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.800 -------------------------------------------------------------------------------- /video-2-data/c.hotspot.800.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.hotspot.800.results -------------------------------------------------------------------------------- /video-2-data/c.mempool.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.1200 -------------------------------------------------------------------------------- /video-2-data/c.mempool.1200.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.1200.results -------------------------------------------------------------------------------- /video-2-data/c.mempool.1600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.1600 -------------------------------------------------------------------------------- /video-2-data/c.mempool.1600.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.1600.results -------------------------------------------------------------------------------- /video-2-data/c.mempool.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.400 -------------------------------------------------------------------------------- /video-2-data/c.mempool.400.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.400.results -------------------------------------------------------------------------------- /video-2-data/c.mempool.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.800 -------------------------------------------------------------------------------- /video-2-data/c.mempool.800.results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/c.mempool.800.results -------------------------------------------------------------------------------- /video-2-data/callback.before-opt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/callback.before-opt.svg -------------------------------------------------------------------------------- /video-2-data/callback.hot-path-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-2-data/callback.hot-path-only.svg -------------------------------------------------------------------------------- /video-3/c...res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video-3/c.go.10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.10000 -------------------------------------------------------------------------------- /video-3/c.go.10000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.10000.res -------------------------------------------------------------------------------- /video-3/c.go.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1200 -------------------------------------------------------------------------------- /video-3/c.go.1200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1200.res -------------------------------------------------------------------------------- /video-3/c.go.1337: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1337 -------------------------------------------------------------------------------- /video-3/c.go.1337.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1337.res -------------------------------------------------------------------------------- /video-3/c.go.1600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1600 -------------------------------------------------------------------------------- /video-3/c.go.1600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.1600.res -------------------------------------------------------------------------------- /video-3/c.go.2500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.2500 -------------------------------------------------------------------------------- /video-3/c.go.2500.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.2500.res -------------------------------------------------------------------------------- /video-3/c.go.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.400 -------------------------------------------------------------------------------- /video-3/c.go.400.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.400.res -------------------------------------------------------------------------------- /video-3/c.go.5000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.5000.res -------------------------------------------------------------------------------- /video-3/c.go.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.800 -------------------------------------------------------------------------------- /video-3/c.go.800.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.go.800.res -------------------------------------------------------------------------------- /video-3/c.rust.10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.10000 -------------------------------------------------------------------------------- /video-3/c.rust.10000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.10000.res -------------------------------------------------------------------------------- /video-3/c.rust.100000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.100000.res -------------------------------------------------------------------------------- /video-3/c.rust.1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1200 -------------------------------------------------------------------------------- /video-3/c.rust.1200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1200.res -------------------------------------------------------------------------------- /video-3/c.rust.1337: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1337 -------------------------------------------------------------------------------- /video-3/c.rust.1337.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1337.res -------------------------------------------------------------------------------- /video-3/c.rust.1600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1600 -------------------------------------------------------------------------------- /video-3/c.rust.1600.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.1600.res -------------------------------------------------------------------------------- /video-3/c.rust.17500.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.17500.res -------------------------------------------------------------------------------- /video-3/c.rust.400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.400 -------------------------------------------------------------------------------- /video-3/c.rust.400.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.400.res -------------------------------------------------------------------------------- /video-3/c.rust.800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.800 -------------------------------------------------------------------------------- /video-3/c.rust.800.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.rust.800.res -------------------------------------------------------------------------------- /video-3/c.ts.10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.ts.10000 -------------------------------------------------------------------------------- /video-3/c.ts.10000.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/c.ts.10000.res -------------------------------------------------------------------------------- /video-3/go.10000.res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/go.10000.res.csv -------------------------------------------------------------------------------- /video-3/rust.10000.res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/rust.10000.res.csv -------------------------------------------------------------------------------- /video-3/ts.10000.res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/tyrone-biggums/HEAD/video-3/ts.10000.res.csv --------------------------------------------------------------------------------