Sobes.tech

How does Position Keeping differ from a trading system (e.g., QUIK) and from a back-office system?

Middle
205

Optimizing PostgreSQL for high write load (500+ records/sec)

Middle+
205

Have you applied an asynchronous approach in implementing functions or modules in your project?

205

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))

205

Have you ever used YAML to describe configurations or manifests?

Junior — Middle
205

What are hallucinations in LLMs and how to deal with them?

205

Do you have questions about employee development in the company?

Middle
205

What prompted you to leave your previous job?

Junior — Middle
205

Применяешь ли ты Generic из модуля typing для объявления обобщенных типов в Python?

Junior — Middle
205

Have you had experience working with the Channels mechanism in your projects?

Junior — Middle
205

How do you approach resolving conflicts between colleagues in a team?.

Junior — Middle
205

Explain the concept of cohesion between components in a system and why it is important for application architecture.

Junior — Middle
205

Can you explain the differences between React hooks useMemo and useCallback, and in which cases each of them should be used?

Junior — Middle
205

Can you name and describe the patterns from the GoF book that you have used in your work projects?

Junior — Middle
205

How can you ensure that certain code executes after a block without using a context manager?

Junior — Middle
205

Can you explain how the set (set) is implemented in Python and how it works internally?

Junior — Middle
205

What methods and tools can you use to perform software testing?

Junior — Middle
205

What motivated you to choose a career in software development?

Intern — Junior
205
/559