If you’re a developer, one common mistake is judging a project just by its README or overview and assuming it’s “easy.”
Real learning starts when you:
→ clone the project
→ try to run it
→ and it doesn’t work
Instead of skipping it:
figure out what’s wrong
check configs, env setup, dependencies
fix it step by step
Once it runs:
explore the code
understand the architecture
see how features are actually implemented
In your free time, if you find any useful project with source code, don’t just read it. Download it, run it, and dig into how it works internally.
That’s where real growth happens.