├── .gitignore ├── ELF-loader ├── README.md ├── eld └── elfload.c ├── FileHandling ├── README.md ├── fhand.c └── hello.txt ├── LRUcache └── lrucache.c ├── README.md ├── SIMD-addition ├── Makefile ├── README.md ├── add.c ├── add_values.asm ├── add_values.o └── test ├── TCP-chat-server ├── README.md ├── client ├── client.c ├── server └── server.c ├── baby_malloc ├── README.md ├── bby_malloc.c └── bm ├── contributing.md ├── custom-printf ├── README.md └── sysout.c ├── dynamic-array ├── Makefile ├── README.md ├── program ├── usage.c ├── vector.c └── vector.h ├── hexdump-II ├── README.md ├── binary.bin ├── hd ├── hexditch.c └── some-binary-stuff.bin ├── json-parser ├── README.md ├── jp ├── jparse.c └── temp.json ├── key-value-store ├── README.md ├── kv ├── kvs ├── spkvs.c └── store.txt ├── mlfq-implementation └── mlfq.c ├── signal-logger ├── README.md ├── logger.c └── slg ├── slumber ├── README.md └── slumber.c ├── stack-growth ├── README.md └── stack_growth.c ├── steal ├── README.md ├── steal.c └── threaded_steal.c └── toy-shell ├── README.md ├── tiny-shell.c └── ts /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | .vscode/ 3 | test.c -------------------------------------------------------------------------------- /ELF-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/ELF-loader/README.md -------------------------------------------------------------------------------- /ELF-loader/eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/ELF-loader/eld -------------------------------------------------------------------------------- /ELF-loader/elfload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/ELF-loader/elfload.c -------------------------------------------------------------------------------- /FileHandling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/FileHandling/README.md -------------------------------------------------------------------------------- /FileHandling/fhand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/FileHandling/fhand.c -------------------------------------------------------------------------------- /FileHandling/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/FileHandling/hello.txt -------------------------------------------------------------------------------- /LRUcache/lrucache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/LRUcache/lrucache.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/README.md -------------------------------------------------------------------------------- /SIMD-addition/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/Makefile -------------------------------------------------------------------------------- /SIMD-addition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/README.md -------------------------------------------------------------------------------- /SIMD-addition/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/add.c -------------------------------------------------------------------------------- /SIMD-addition/add_values.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/add_values.asm -------------------------------------------------------------------------------- /SIMD-addition/add_values.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/add_values.o -------------------------------------------------------------------------------- /SIMD-addition/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/SIMD-addition/test -------------------------------------------------------------------------------- /TCP-chat-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/TCP-chat-server/README.md -------------------------------------------------------------------------------- /TCP-chat-server/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/TCP-chat-server/client -------------------------------------------------------------------------------- /TCP-chat-server/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/TCP-chat-server/client.c -------------------------------------------------------------------------------- /TCP-chat-server/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/TCP-chat-server/server -------------------------------------------------------------------------------- /TCP-chat-server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/TCP-chat-server/server.c -------------------------------------------------------------------------------- /baby_malloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/baby_malloc/README.md -------------------------------------------------------------------------------- /baby_malloc/bby_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/baby_malloc/bby_malloc.c -------------------------------------------------------------------------------- /baby_malloc/bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/baby_malloc/bm -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/contributing.md -------------------------------------------------------------------------------- /custom-printf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/custom-printf/README.md -------------------------------------------------------------------------------- /custom-printf/sysout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/custom-printf/sysout.c -------------------------------------------------------------------------------- /dynamic-array/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/Makefile -------------------------------------------------------------------------------- /dynamic-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/README.md -------------------------------------------------------------------------------- /dynamic-array/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/program -------------------------------------------------------------------------------- /dynamic-array/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/usage.c -------------------------------------------------------------------------------- /dynamic-array/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/vector.c -------------------------------------------------------------------------------- /dynamic-array/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/dynamic-array/vector.h -------------------------------------------------------------------------------- /hexdump-II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/hexdump-II/README.md -------------------------------------------------------------------------------- /hexdump-II/binary.bin: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /hexdump-II/hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/hexdump-II/hd -------------------------------------------------------------------------------- /hexdump-II/hexditch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/hexdump-II/hexditch.c -------------------------------------------------------------------------------- /hexdump-II/some-binary-stuff.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /json-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/json-parser/README.md -------------------------------------------------------------------------------- /json-parser/jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/json-parser/jp -------------------------------------------------------------------------------- /json-parser/jparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/json-parser/jparse.c -------------------------------------------------------------------------------- /json-parser/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/json-parser/temp.json -------------------------------------------------------------------------------- /key-value-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/key-value-store/README.md -------------------------------------------------------------------------------- /key-value-store/kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/key-value-store/kv -------------------------------------------------------------------------------- /key-value-store/kvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/key-value-store/kvs -------------------------------------------------------------------------------- /key-value-store/spkvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/key-value-store/spkvs.c -------------------------------------------------------------------------------- /key-value-store/store.txt: -------------------------------------------------------------------------------- 1 | one=three 2 | -------------------------------------------------------------------------------- /mlfq-implementation/mlfq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/mlfq-implementation/mlfq.c -------------------------------------------------------------------------------- /signal-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/signal-logger/README.md -------------------------------------------------------------------------------- /signal-logger/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/signal-logger/logger.c -------------------------------------------------------------------------------- /signal-logger/slg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/signal-logger/slg -------------------------------------------------------------------------------- /slumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/slumber/README.md -------------------------------------------------------------------------------- /slumber/slumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/slumber/slumber.c -------------------------------------------------------------------------------- /stack-growth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/stack-growth/README.md -------------------------------------------------------------------------------- /stack-growth/stack_growth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/stack-growth/stack_growth.c -------------------------------------------------------------------------------- /steal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/steal/README.md -------------------------------------------------------------------------------- /steal/steal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/steal/steal.c -------------------------------------------------------------------------------- /steal/threaded_steal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/steal/threaded_steal.c -------------------------------------------------------------------------------- /toy-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/toy-shell/README.md -------------------------------------------------------------------------------- /toy-shell/tiny-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/toy-shell/tiny-shell.c -------------------------------------------------------------------------------- /toy-shell/ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segfaultscribe/systems-repository/HEAD/toy-shell/ts --------------------------------------------------------------------------------