🏷️ Tag

#devops

Study materials by tag "devops" from expert practitioners. Current articles and useful tips for development.

13 Articles
13 Materials
38 Views

Articles with tag "#devops"

All materials on the topic devops

📝
🔴 Difficult

Event Loop in Python: How asyncio Achieves "Parallelism"

Event loop is the heart of asyncio. It doesn't run code in parallel across multiple threads. Instead, it switches between...

📝 Python
📅 30.06.2026
📝
📖 Article

run_in_executor and anyio: Sync Libraries in Async Code

Sometimes you need to call a synchronous library from async code without blocking the event loop.

📝 Python
📅 30.06.2026
📝
🔴 Difficult

Async Context Managers: async with and @asynccontextmanager

Async context managers manage resources in async code — connections, files, transactions.

📝 Python
📅 30.06.2026
📝
🔴 Difficult

asyncio: Timeouts, Task Cancellation and Graceful Shutdown

Three things you absolutely need in production async code.

📝 Python
📅 30.06.2026
📝
🔴 Difficult

asyncio: Queue, Lock, Semaphore — Synchronization Without Threads

In async code multiple coroutines run concurrently in a single thread. Race conditions can still happen — and asyncio provides...

📝 Python
📅 30.06.2026
📝
🔴 Difficult

Async Generators and Async Iterators in Python

Async generators are a way to lazily produce data in an async context. Perfect for streaming, pagination and processing large...

📝 Python
📅 30.06.2026
📝
🔴 Difficult

asyncio.gather, create_task and TaskGroup: Concurrency in Practice

Three ways to run multiple coroutines concurrently. Each has its own niche.

📝 Python
📅 30.06.2026
📝
🟡 Medium

asyncio in Python: Asynchronous Programming

asyncio is Python's standard library for asynchronous code. It lets you execute multiple tasks "simultaneously" within a single thread.

📝 LLM & AI
📅 30.06.2026
📝
🟡 Medium

Deployment and ReplicaSet in Kubernetes

A Pod is a one-shot unit. A Deployment is the mechanism that guarantees the right number of pods is always...

📝 Kubernetes
📅 30.06.2026
📝
🔴 Difficult

Deploying FastAPI with Docker

Railway will also automatically detect a Dockerfile if one is present.

📝 Fastapi
📅 30.06.2026
📝
🔴 Difficult

Deploying Django to Railway

Railway is a cloud platform with a free tier. Deploy from GitHub in minutes.

📝 Django
📅 30.06.2026
📝
🟡 Medium

DRY: Don't Repeat Yourself 🔄

Imagine you're writing code to hack 10 systems. You copy the hacksystem() function 10 times. Then you find a bug...

📝 Programming
📅 03.04.2026
Page 1 of 2 ▶️ ⏭️

Similar tags

Study related topics

🏷️

#python

Related articles python

📚 8 articles
🏷️

#async

Related articles async

📚 8 articles
🏷️

#programming

Related articles programming

📚 2 articles
🏷️

#loops

Related articles loops

📚 1 article
🏷️

#oop

Related articles oop

📚 1 article
🏷️

#ai

Related articles ai

📚 1 article

Looking for more on the topic?

Study all our materials or subscribe to updates