What is the difference between the operators == and is in Python?
Python
What are the disadvantages of JWT?
What is an abstract class? Have you used it?
What is __slots__ in Python and what are its features?
What is an index in a database, what types are there, and what are the pros and cons?
def withdraw(user_id, amount): user = User.objects.filter(user_id=user_id).update(balance=F('balance') - amount) if user.balance > amount: # raise InsufficientFundsError() user.balance -= amount user.save()
Have you ever optimized SQL queries or analyzed performance? What tools did you use? What does EXPLAIN show?
How do Kafka and RabbitMQ fundamentally differ?
What are the advantages and disadvantages of ORM?
What has changed in HTTP/3?
Do you use LLM/AI tools in your coding work and how do you interact with them?
What is Dependency Injection and why is it needed?
When might an optimizer not use an existing index?
How does a generator work in Python and how does it differ from a regular function and an iterator?
What is the difference between a RabbitMQ consumer and a Kafka consumer?
What is the difference between DELETE and TRUNCATE in SQL?
How to create a generator in Python? What happens with two consecutive yields in a generator function?
with transaction.atomic(): provider_order = ProviderOrder.objects.select_for_update().get(id=provider_order.id) unblock_provider_order(provider_order.id) notify_contractor(provider_order=provider_order)
How to give an AI agent a constant project context so as not to describe it again in each session?
Describe the lifecycle of an HTTP request in Django from the client to the response.