shlogg · Early preview
Kiolk @kiolk

Solving Problems Improves Coding Skills And Knowledge.

Problem-solving is key to growth in software engineering. Author tackles API calls, error handling, and project management with a clear timeline and seeking collaboration.

Any problem that you struggle with is an opportunity for growth. If you write code as fluent as you speak, it means you have reached a stable level of knowledge. Only by solving problems do we improve.
What I did:
I decided to start preparing to fetch data for the article screen. After a short investigation, I found that I need at least two API calls to get data: loading the article by ID and loading the comments for this article. The comments are received in a threaded structure. In other words, any comment can include child comments. I created a simple use case for fetching the article and c...