# Task: Writing a Blog Article## TopicHow to use ChatGPT to automate developer tasks## AudienceJunior and Middle-level developers## Volume1000–1200 words## Structure1. Introduction2. Examples of using ChatGPT in daily development3. Integration with VS Code / Postman / n8n4. Potential errors and limitations5. Conclusion and tips## StyleSemi-formal, with code examples, humor, and friendly tone## AdditionalMention ChatGPT-4 capabilities and ChatGPT in the desktop application
2. Example: Generating Python Code
# Task: Generating Python Code for Data Analysis## GoalCreate a Python script that reads a CSV file, analyzes data (mean, median, standard deviation), and builds a distribution plot.## Input Data- CSV file with one column of numeric values.- Filename: `data.csv`- Column name: `value`## Output- Statistical metrics: mean, median, standard deviation- Saved plot: `histogram.png`## Requirements- Use libraries: pandas, matplotlib- Code should be clear and contain comments## Additional- Build a histogram with 20 bins
3. Example: Generate an Image
# Task: Generate an Image## Image TypeFantasy portrait of a girl in cyberpunk style## Description- Young girl with purple hair- Neon lights, night city in the background- Cyber glasses and metallic collar- Emotion: confidence and independence## Size1024x1024 pixels## StyleRealistic + some anime## AdditionalBackground should be slightly blurred, main focus – on the face
4. Example: Specification: Landing Page for IT Company
# Specification: Landing Page for IT Company## Company NameNextGenSoft## GoalAttract clients for software development services## Website Blocks- Header with logo and navigation- Main banner (with slogan and button)- Services (3 cards)- About company (text + photo)- Contact form- Footer with contacts## Design- Colors: blue, white, gray- Style: minimalism, sans-serif fonts## ResponsivenessYes (mobile and desktop versions)## TechnologiesHTML, CSS (Tailwind or Bootstrap), JS (Vanilla)## Deadline1 week
5. Task Template
# 📌 Task Name[INSERT_SHORT_TASK_DESCRIPTION]---## 🎯 Goal[DESCRIBE_WHY_THIS_TASK_IS_NEEDED_AND_EXPECTED_RESULT]---## 🧱 Project Context- Language: [Delphi / Python / Java / other]- IDE / Framework: [RAD Studio / PyCharm / n8n / other]- Main technologies: [Virtual TreeView, SQLLite, REST API, JSON, etc.]- Module name (if any): [FILENAME.pas]---## 📂 Structure/Files to work in- `PATH_TO_FILE_1`- `PATH_TO_FILE_2`---## 🛠️ What should be implemented1. [WHAT_TO_DO_1]2. [WHAT_TO_DO_2]3. [WHAT_TO_DO_3]---## ✅ Requirements- [REQUIREMENT_1]- [REQUIREMENT_2]- [REQUIREMENT_3]---## 📈 Expected Result- [EXPECTED_RESULT_1]- [EXPECTED_RESULT_2]---## 🧪 Test Data (if any)```pascal// Example in DelphiTask := TTaskNode.Create;Task.Typ := 'Document';Task.Status := 'In Progress';```---## ✨ Additional- Suggest alternative: [Yes / No]- Code documentation needed: [Yes / No]- Usage example: [Yes / No]---## 💬 Response Format from ChatGPT- Complete source code- Description of steps and logic- Additionally: generated usage example (if needed)
6. Python Task Template
# 🐍 Python Task## 📌 Task Name[EXAMPLE: CSV Analysis and Data Visualization]## 🎯 Goal[Describe why the script is written and how the result will be used]## 📚 Context- Language: Python- Version: [3.10+]- Used libraries: [pandas, matplotlib, requests, etc.]- Where it will run: [locally / server / Jupyter Notebook]## 🛠 What should be implemented1. [Read CSV file]2. [Build distribution plot]3. [Save result to file]## ✅ Requirements- [Code with comments]- [Error handling]- [Input/output format must be specified]## 🔍 Example Input Data```csvvalue123423...```## 📤 Example Output Data- Mean: 23.1- Plot: `histogram.png`## 💬 Response Format from ChatGPT- Complete code- Explanation of logic
7. Java Task Template
# ☕ Java Task## 📌 Task Name[EXAMPLE: Processing JSON from REST API]## 🎯 Goal[Describe why the program is written and how it will be used]## 📚 Context- Language: Java- Version: [Java 11+]- Used libraries: [Jackson, HttpClient, Spring, etc.]- IDE: [IntelliJ IDEA / Eclipse / VS Code]## 🛠 What should be implemented1. [Make HTTP GET request to API]2. [Parse JSON]3. [Output data to console or GUI]## ✅ Requirements- [Error handling]- [Code should be readable and structured]- [Maven/Gradle support (if required)]## 🔍 Example API Response```json{ "user": "Vitaliy", "active": true}```## 📤 Example Expected Output```User: VitaliyStatus: active```## 💬 Response Format from ChatGPT- Complete source code- Step-by-step explanation