What static code analysis tools have you used in your experience?
Python
How confident are you working with the command line in Linux?
How to set access rights in Linux using numbers (chmod)?
How do RabbitMQ and Kafka differ in purpose and architecture?
async def check_response(delay: int, message: str) -> None: timeout = httpx.Timeout(timeout=5) client = httpx.AsyncClient( base_url=BASE_URL, timeout=timeout, ) async with client: response = await client.get(url=f"/delay/{delay}") print(response.status_code, message) async def main() -> None: await check_response(delay=2, message="from first line"), await check_response(delay=2, message="from second line"), await check_response(delay=2, message="from third line"), if __name__ == "__main__": print("Total time:", timeit.timeit(lambda: asyncio.run(main()), number=2))
What happens if you apply the += operator to a list inside a tuple?
What is the difference between synchronous and asynchronous inter-service communication? How are they implemented?
Can you explain the concept of weak typing in programming languages?
Share your experience working with PostgreSQL database, including technologies used and scenarios of application.
What is the complexity of inserting at the end of a list (Python list)? Why is it sometimes O(n)?
Explain how to implement transaction management when working with a database using Django ORM.
Which is faster for exact matching — B-tree or Hash index in PostgreSQL?
Why did you decide to change your job, considering it's a large company?
What is asyncio, what is it used for, and how have you applied it in projects?
What approaches and practices help avoid task blocking in asynchronous processing?
What tools or libraries have you used in your projects?
How to implement an automatic resource management mechanism in Python using classes?
Do you follow channels or groups on Telegram to get up-to-date information and news in the field of technology?
Are you ready to learn ClickHouse in more detail if needed?
What motivated you to choose a career in software development?