├── .gitignore ├── LICENSE ├── Notes Manager ├── .gitignore ├── Makefile ├── README.md ├── db.c ├── db.h └── main.c ├── QR Generator ├── .gitignore ├── Makefile ├── README.md ├── anvil.conf ├── display.c ├── main.c ├── png_writer.c └── qr_code.h ├── README.md ├── SHA-512 ├── Makefile ├── README.md └── main.c ├── arithmetic-compiler ├── .gitignore ├── CMakeLists.txt ├── README.md ├── include │ ├── assembly.h │ ├── parser.h │ └── tokenizer.h └── src │ ├── assembly.c │ ├── main.c │ ├── parser.c │ └── tokenizer.c ├── asteroid-game ├── Makefile ├── README.md └── game.c ├── chat-system ├── .gitignore ├── Makefile ├── README.md ├── client.c └── server.c ├── ftp ├── Makefile ├── README.md ├── include │ └── ftp.h └── src │ ├── client.c │ ├── file_ops.c │ ├── protocol.c │ └── server.c ├── http-server ├── Makefile ├── Readme.md ├── index.html └── server.c ├── lexical-analyser ├── Makefile ├── README.md └── lexer.c ├── ping ├── Makefile ├── README.md └── ping.c ├── port-scanner ├── Makefile ├── README.md └── scanner.c ├── tcp-server └── server.c ├── tic-tac-toe ├── CMakeLists.txt ├── README.md ├── include │ ├── client.h │ └── server.h └── src │ ├── client.c │ └── server.c ├── udp-server-client ├── Makefile ├── README.md ├── client.c └── server.c └── url-shortener ├── .gitignore ├── MakeFile └── shortener.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/LICENSE -------------------------------------------------------------------------------- /Notes Manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/.gitignore -------------------------------------------------------------------------------- /Notes Manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/Makefile -------------------------------------------------------------------------------- /Notes Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/README.md -------------------------------------------------------------------------------- /Notes Manager/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/db.c -------------------------------------------------------------------------------- /Notes Manager/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/db.h -------------------------------------------------------------------------------- /Notes Manager/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/Notes Manager/main.c -------------------------------------------------------------------------------- /QR Generator/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | bin/ 3 | obj/ -------------------------------------------------------------------------------- /QR Generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/Makefile -------------------------------------------------------------------------------- /QR Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/README.md -------------------------------------------------------------------------------- /QR Generator/anvil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/anvil.conf -------------------------------------------------------------------------------- /QR Generator/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/display.c -------------------------------------------------------------------------------- /QR Generator/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/main.c -------------------------------------------------------------------------------- /QR Generator/png_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/png_writer.c -------------------------------------------------------------------------------- /QR Generator/qr_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/QR Generator/qr_code.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/README.md -------------------------------------------------------------------------------- /SHA-512/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/SHA-512/Makefile -------------------------------------------------------------------------------- /SHA-512/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/SHA-512/README.md -------------------------------------------------------------------------------- /SHA-512/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/SHA-512/main.c -------------------------------------------------------------------------------- /arithmetic-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /arithmetic-compiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/CMakeLists.txt -------------------------------------------------------------------------------- /arithmetic-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/README.md -------------------------------------------------------------------------------- /arithmetic-compiler/include/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/include/assembly.h -------------------------------------------------------------------------------- /arithmetic-compiler/include/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/include/parser.h -------------------------------------------------------------------------------- /arithmetic-compiler/include/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/include/tokenizer.h -------------------------------------------------------------------------------- /arithmetic-compiler/src/assembly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/src/assembly.c -------------------------------------------------------------------------------- /arithmetic-compiler/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/src/main.c -------------------------------------------------------------------------------- /arithmetic-compiler/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/src/parser.c -------------------------------------------------------------------------------- /arithmetic-compiler/src/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/arithmetic-compiler/src/tokenizer.c -------------------------------------------------------------------------------- /asteroid-game/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/asteroid-game/Makefile -------------------------------------------------------------------------------- /asteroid-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/asteroid-game/README.md -------------------------------------------------------------------------------- /asteroid-game/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/asteroid-game/game.c -------------------------------------------------------------------------------- /chat-system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/chat-system/.gitignore -------------------------------------------------------------------------------- /chat-system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/chat-system/Makefile -------------------------------------------------------------------------------- /chat-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/chat-system/README.md -------------------------------------------------------------------------------- /chat-system/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/chat-system/client.c -------------------------------------------------------------------------------- /chat-system/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/chat-system/server.c -------------------------------------------------------------------------------- /ftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/Makefile -------------------------------------------------------------------------------- /ftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/README.md -------------------------------------------------------------------------------- /ftp/include/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/include/ftp.h -------------------------------------------------------------------------------- /ftp/src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/src/client.c -------------------------------------------------------------------------------- /ftp/src/file_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/src/file_ops.c -------------------------------------------------------------------------------- /ftp/src/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/src/protocol.c -------------------------------------------------------------------------------- /ftp/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ftp/src/server.c -------------------------------------------------------------------------------- /http-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/http-server/Makefile -------------------------------------------------------------------------------- /http-server/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/http-server/Readme.md -------------------------------------------------------------------------------- /http-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/http-server/index.html -------------------------------------------------------------------------------- /http-server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/http-server/server.c -------------------------------------------------------------------------------- /lexical-analyser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/lexical-analyser/Makefile -------------------------------------------------------------------------------- /lexical-analyser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/lexical-analyser/README.md -------------------------------------------------------------------------------- /lexical-analyser/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/lexical-analyser/lexer.c -------------------------------------------------------------------------------- /ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ping/Makefile -------------------------------------------------------------------------------- /ping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ping/README.md -------------------------------------------------------------------------------- /ping/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/ping/ping.c -------------------------------------------------------------------------------- /port-scanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/port-scanner/Makefile -------------------------------------------------------------------------------- /port-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/port-scanner/README.md -------------------------------------------------------------------------------- /port-scanner/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/port-scanner/scanner.c -------------------------------------------------------------------------------- /tcp-server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tcp-server/server.c -------------------------------------------------------------------------------- /tic-tac-toe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/CMakeLists.txt -------------------------------------------------------------------------------- /tic-tac-toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/README.md -------------------------------------------------------------------------------- /tic-tac-toe/include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/include/client.h -------------------------------------------------------------------------------- /tic-tac-toe/include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/include/server.h -------------------------------------------------------------------------------- /tic-tac-toe/src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/src/client.c -------------------------------------------------------------------------------- /tic-tac-toe/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/tic-tac-toe/src/server.c -------------------------------------------------------------------------------- /udp-server-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/udp-server-client/Makefile -------------------------------------------------------------------------------- /udp-server-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/udp-server-client/README.md -------------------------------------------------------------------------------- /udp-server-client/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/udp-server-client/client.c -------------------------------------------------------------------------------- /udp-server-client/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/udp-server-client/server.c -------------------------------------------------------------------------------- /url-shortener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/url-shortener/.gitignore -------------------------------------------------------------------------------- /url-shortener/MakeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/url-shortener/MakeFile -------------------------------------------------------------------------------- /url-shortener/shortener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dexter-xD/project-box/HEAD/url-shortener/shortener.c --------------------------------------------------------------------------------