├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── root ├── .profile ├── .tmux.conf ├── .tmuxinator │ └── server-example.yml └── src │ ├── server.py │ └── server.rb └── slides ├── assets ├── chart.sketch └── kernelpatch.pxm ├── portsharding.key ├── portsharding.pdf └── preview.png /.gitignore: -------------------------------------------------------------------------------- 1 | docker.built 2 | .viminfo 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/README.md -------------------------------------------------------------------------------- /root/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/root/.profile -------------------------------------------------------------------------------- /root/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/root/.tmux.conf -------------------------------------------------------------------------------- /root/.tmuxinator/server-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/root/.tmuxinator/server-example.yml -------------------------------------------------------------------------------- /root/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/root/src/server.py -------------------------------------------------------------------------------- /root/src/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/root/src/server.rb -------------------------------------------------------------------------------- /slides/assets/chart.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/slides/assets/chart.sketch -------------------------------------------------------------------------------- /slides/assets/kernelpatch.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/slides/assets/kernelpatch.pxm -------------------------------------------------------------------------------- /slides/portsharding.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/slides/portsharding.key -------------------------------------------------------------------------------- /slides/portsharding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/slides/portsharding.pdf -------------------------------------------------------------------------------- /slides/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewalnes/port-sharding/HEAD/slides/preview.png --------------------------------------------------------------------------------