💻
Tech notes
  • Các nguyên tắc trong kiến trúc phần mềm
  • Vòng đời phát triển phần mềm SDLC
  • 6 nguyên lý thiết kế microservices
  • MLOps Roadmap
  • SBOMs là gì?
  • Thuật thức hơi thở của Review Code
  • Tại sao code lại bốc mùi thối?
  • Corner testcase là gì?
  • So sánh mô hình Scrum và mô hình waterfall, Sprial
  • Quy trình release phiên bản phần mềm
  • 12 tuyên ngôn Agile
  • Conventional Commits
  • Chatgpt Prompt for coder
  • Quản trị dữ liệu
  • Nợ kỹ thuật
  • So sách Data-Centric và Model-Centric
  • Tracking Evaluation Measures
  • Mô hình Kano
  • Clean Code with C++ in cxview.ai
  • Các mức độ rủi ro về technical debt
  • Phiếu tự đánh giá cho hệ thống sản xuất học máy
  • Quản lý chất lượng trong ML
Powered by GitBook
On this page

Chatgpt Prompt for coder

For coding

  • Code Generation:

    • Act as a Python developer. Show me how to ...

    • Act as a Python developer. Write code to ...

  • Code Explanation: explain this python code

  • Code Refactoring:

    • Can you refactor the following code to make it more efficient?

    • Do you see any problems with this implementation?

    • Please further optimize this code

  • Docstrings Generation: write a docstring description for this function

  • Programming Language Conversion: convert this code from Python to Javascript

  • Solution with technology stack:

    Act as: Node.js Developer

    Technology stack: Node.js, Express.js, MongoDB, Mongoose

    Functionality: Newsletter

    Mandatory Fields: Email

    Optional fields: name

    Task: Make an API that takes a name and an email address as inputs and sends back a success flag.

  • Fixing errors and bugs:

    • I am working on the CAGR calculation functionality, but my code is giving the wrong answer. Tell me what the error is. Here is my code.

      function calculateCAGR(startValue, endValue, years)

      {

      const cagr = (Math.pow(endValue / startValue) - 1) * 100;

      return cagr.toFixed(2);

      }

    • Help me find mistakes in the following code

    • Please continue writing this C++ code

  • Testing:

    • Write unitest for c++ code

    • Please generate some testcases for when sid or uid are invalid

    • Testplan for ... Prepare testcase table to enter into jira ticket

PreviousConventional CommitsNextQuản trị dữ liệu

Last updated 2 years ago