Python
How to set access rights in Linux using numbers (chmod)?
In which scenario will the change history structure be more branched: when using git rebase or git merge?
[name] asked: On which other programming languages have you written, and what key features of Python can be highlighted when comparing with other languages (e.g., interpretability)?
import copy a = [[1],[2],[3]] b = copy.copy(a) a.append([4]) a[0][0] = 100 print(b)
At what stage of your career did you start considering yourself an experienced programmer?
What are hallucinations in LLMs and how to deal with them?
Have you ever created custom descriptors for objects or classes?
We found a service that performs an INSERT into this table. After adding a unique constraint, the service started failing with an error. Can we modify the SQL query so that it does not fail when the unique constraint is triggered, without changing the application logic?
What is the purpose of the reduce function in programming languages?
What tools and methods should be used to deploy a Python project on the internet?
What technologies are you interested in besides Python?
How do you react when almost completed projects receive edits that override the work results?
Does modifying an interface in a subclass violate the principle of open-closed principle?
def make_order(): order = Order.objects.create(...) print(order.id) notify_order_created.delay(order.id)
How is multiprocessing and management of multiple processes implemented in Python?
Tell me about the product/project you worked on and your main tasks.
Can you explain how Django accepts and processes incoming HTTP requests?
What data structure would you use if you need to efficiently add and remove elements from the beginning and end?
Can you explain what is meant by a transaction in PostgreSQL and how it works?
How was logging and error handling implemented? What embedding models were used?