Một trong những chủ đề trò chuyện thường xuyên nhất của developer với leader hay thành viên nhóm có lẽ là về vấn đề. Giả sử có một vấn đề xảy ra và chúng ta muốn chia sẻ nó với boss.
def share_issue_to_solve() -> str
# issue log path : /home/asdf/logs/error.log
show_issue_log()
# googling results : notion page link
show_googling_result()
if boss_want_to_run_my_code:
success, logs = run_my_code_and_show_error_case()
success = await boss.solve(logs)
if success:
return 'solved'
if boss_has_some_time_to_check:
return 'boss will handle it. we will have another meeting'
return 'not solved. I will handle it'
Sau khi viết xong đoạn mã code trên, hãy chuẩn bị các câu sau đây và trò chuyện với sếp :