diff --git a/README.md b/README.md index f97eb2e..6ae83c1 100644 --- a/README.md +++ b/README.md @@ -79,12 +79,14 @@ Linux-System-Programming/ │ └── queue_test.c # Producer-consumer benchmark ├── System_Programming_Projects/ # Legacy structure (maintained for compatibility) ├── docs/ # Documentation +│ ├── TECHNICAL_ANALYSIS.md # Technical interview preparation +│ ├── CV_FEEDBACK.md # Technical recruiter analysis +│ └── instructions_systems.txt # System programming instructions ├── .github/workflows/ # CI/CD pipeline │ └── ci.yml # Build and test automation ├── Makefile # Professional build system ├── Dockerfile # Production container ├── TESTING.md # Testing strategy and edge cases -├── INTERVIEW_GUIDE.md # Technical interview preparation └── README.md # This file ``` @@ -235,7 +237,7 @@ valgrind --tool=helgrind ./bin/queue_test 4. **Memory management** (ownership rules, Valgrind verification) 5. **Performance trade-offs** (mutex vs. lock-free, batch operations) -**See [INTERVIEW_GUIDE.md](INTERVIEW_GUIDE.md)** for in-depth Q&A and behavioral interview strategies. +**See [docs/TECHNICAL_ANALYSIS.md](docs/TECHNICAL_ANALYSIS.md)** for in-depth Q&A and behavioral interview strategies. --- @@ -283,8 +285,9 @@ USER sysuser - **[README.md](README.md)** - This file (overview, quick start, architecture) - **[TESTING.md](TESTING.md)** - Edge cases, test strategy, debugging guide -- **[INTERVIEW_GUIDE.md](INTERVIEW_GUIDE.md)** - Technical Q&A, elevator pitch, behavioral prep -- **[CV_FEEDBACK.md](CV_FEEDBACK.md)** - Technical recruiter analysis (language recommendations) +- **[docs/TECHNICAL_ANALYSIS.md](docs/TECHNICAL_ANALYSIS.md)** - Technical Q&A, elevator pitch, behavioral prep +- **[docs/CV_FEEDBACK.md](docs/CV_FEEDBACK.md)** - Technical recruiter analysis (language recommendations) +- **[docs/instructions_systems.txt](docs/instructions_systems.txt)** - System programming instructions and guidelines All source files include Doxygen-style comments with `@brief`, `@param`, and `@return` annotations. diff --git a/CV_FEEDBACK.md b/docs/CV_FEEDBACK.md similarity index 100% rename from CV_FEEDBACK.md rename to docs/CV_FEEDBACK.md diff --git a/INTERVIEW_GUIDE.md b/docs/TECHNICAL_ANALYSIS.md similarity index 100% rename from INTERVIEW_GUIDE.md rename to docs/TECHNICAL_ANALYSIS.md diff --git a/instructions_systems.txt b/docs/instructions_systems.txt similarity index 100% rename from instructions_systems.txt rename to docs/instructions_systems.txt