Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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.

---

Expand Down Expand Up @@ -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.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.