GCGY Beta v1.0.1
GrowCode / Projects

Practical Skill Demonstration Projects

Demonstrate capability by implementing complete engineering projects. Progress is verified by authoritative test suites.

INTERMEDIATE90 mins

C Custom Memory Allocator & Pool Inspector

Implement a custom dynamic memory chunk allocator in C with explicit boundary tag tracking and free-list coalescing.

Mapped Skills

sk_pointerssk_heap_memorysk_variables
INTERMEDIATE60 mins

Python Abstract Syntax Tree Expression Evaluator

Build an AST evaluator that parses infix mathematical expressions into a binary tree and computes the result.

Mapped Skills

sk_treessk_recursionsk_functions
INTERMEDIATE75 mins

JavaScript Async Event Dispatcher & Middleware Pipeline

Build an asynchronous pub/sub event emitter and middleware chain handling error boundary propagation.

Mapped Skills

sk_functionssk_arrays
ADVANCED90 mins

C++ Thread-Safe LRU Cache & Eviction Controller

Implement a thread-safe Least Recently Used (LRU) Cache in C++ using doubly linked list and hash map with O(1) eviction.

Mapped Skills

sk_pointerssk_linked_listssk_hashing