├── .gitignore ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json ├── bogodownload │ └── v16 │ │ └── .suo └── slnx.sqlite ├── README.md ├── banner.png ├── client.py ├── client_files └── joke.txt ├── demo.png ├── server.py └── server_files ├── joke.txt └── linus.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/bogodownload/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/.vs/bogodownload/v16/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/banner.png -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/client.py -------------------------------------------------------------------------------- /client_files/joke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/client_files/joke.txt -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/demo.png -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/server.py -------------------------------------------------------------------------------- /server_files/joke.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/server_files/joke.txt -------------------------------------------------------------------------------- /server_files/linus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roadcrosser/bogodownload/HEAD/server_files/linus.jpg --------------------------------------------------------------------------------