Advanced
materials
Explore advanced programming techniques and concepts with detailed breakdowns and complex projects.
Advanced materials
Carefully selected articles for your level
REST API Design Principles
Covered topics: Resources and URLs, HTTP methods, Nested resources, Response codes.
Streaming LLM Responses: Getting the Answer Piece by Piece
By default, messages.create() waits until the model has fully generated its response before returning anything. For long responses this means...
Generators in Python: Lazy Evaluation and Streaming
When an API returns a large response β text spanning thousands of tokens β waiting for the full response is...
Pull Requests: the complete guide π
A Pull Request (PR) is a formal proposal to merge changes from one branch into another. It is the cornerstone...
Setting Up Two-Factor Authentication on GitHub π
2FA (Two-Factor Authentication) adds an extra layer of protection to your account.
Syncing a fork with the upstream repository π
When you fork a project, your copy is frozen at the moment of forking. The original project keeps moving β...
GitHub Fork: Contributing to Someone Else's Project π΄
A fork is your personal copy of someone else's repository on GitHub. It's the key tool in open source development...
How to Do Code Review: A Team Guide π
Code review is the process of checking another developer's changes before they land in the main branch. One of the...
Git Conflicts: Step-by-Step Breakdown βοΈ
A merge conflict is a situation where Git cannot automatically combine changes from two branches because both developers modified the...
Pure Functions
A pure function depends only on its arguments, does not modify external state, and returns the same result for the...
Function Composition
Function composition connects small functions so that one function's result becomes the next function's argument.
Data Pipelines β The Processing Conveyor
A data pipeline splits a complex transformation into small stages and passes each stage's output to the next one.
Other difficulty levels
Choose the level that suits you
For beginners
Simple and clear materials for programming beginners
Medium level
In-depth materials for developing practical skills
Expert level
Advanced technologies and architectural solutions
Keep developing
Study materials of different levels and gradually improve your skills