
Brain Dump: Simple, easy , may not get the desired result
What is Compound Interest.
Find the movie Song Sung Blue near me.
Zero-shot prompting Explain X in 5 bullet points.”
Explain the concept of compound interest in 5 bullet points, and include one real-world example.
One-shot prompting Example → then: “Now do the same for Y.”
Input: “Summarize: The cat sat on the mat. It was sleepy.”
Output: “A sleepy cat sat on a mat.”
Example 2
Input: “Summarize: The cat sat on the mat. It was sleepy.”
Output: “A sleepy cat sat on a mat.”
Now do the same: Summarize: “The Osher Lifelong Learning Institute (OLLI) is a community-based program designed to serve adults aged 50 and older who have a love of learning. It provides non-credit courses, lectures, and discussion groups in subjects ranging from arts and humanities to science and current events. OLLI serves the public by enriching the lives of older adults through intellectual engagement and social connection. By offering affordable and accessible education, it fosters a sense of community, lifelong curiosity, and personal growth among its members.”
Example:
Input: "The delivery was super fast and the packaging was great!"
Output: Positive
Input: "The food was cold when it arrived."
Output:
Few-shot prompting Provide several examples to teach pattern, tone, schema, edge handling.
Example 1
Text: “Order delayed due to weather.”
Label: Shipping Issue
Example 2
Text: “Charged twice for the same subscription.”
Label: Billing Issue
Example 3
Text: “App crashes when I click checkout.”
Label: Technical Issue
Now label this: “My package says delivered but I never got it.”
· Example 1:
Input: "The delivery was super fast and the packaging was great!"
Output: Positive
Example 2:
Input: "The food was cold when it arrived."
Output: Negative
Example 3:
Input: "The portion sizes were okay, but nothing special."
Output: Neutral
Now, classify the following:
Input: "The driver was nice, but my drink spilled during transit."
Output:
Role / Persona prompting Assign a role + audience + constraints.
“You are a strict code reviewer; respond with a checklist.”
You are a senior product manager. Write a one-page PRD for a “Save for Later” feature in an e-commerce app. Include goals, non-goals, user stories, success metrics, and edge cases.
· You are a university level physics instructor. Explain General relativity.
· You are a high school physics instructor. Explain General relativity.
Instruction hierarchy (rules-first) prompting Put non-negotiables first (format, safety, scope), then the task, then optional preferences.
· Rules (must follow):
Output must be valid JSON
Keys: title, summary, risks (array), next_steps (array)
summary must be <= 40 words
No extra keys
Task: Read the text below and extract the required fields:
“The Osher Lifelong Learning Institute (OLLI) is a community-based program designed to serve adults aged 50 and older who have a love of learning. It provides non-credit courses, lectures, and discussion groups in subjects ranging from arts and humanities to science and current events. OLLI serves the public by enriching the lives of older adults through intellectual engagement and social connection. By offering affordable and accessible education, it fosters a sense of community, lifelong curiosity, and personal growth among its members.”
Self-consistency prompting
· Request multiple independent solutions, then select the most consistent.
“Generate 3 approaches; pick the best and justify.”
Provide 3 independent solutions to this problem (don’t reuse the same approach), then choose the best and explain why:
“How many ways can you choose 2 people from 10?”
ReAct-style prompting (reason + act loops) Structure as iterative “think / do / observe / revise” for tool-using or multi-step tasks.
· You can ask me for any missing info. Work in cycles:
Thought: what you need to do next
Action: what you will request/compute
Observation: what you learned Repeat until complete.
Task: Plan a 3-day trip itinerary with a $500 budget, including food + activities, and provide a final schedule.
Decomposition / Task breakdown prompting Force explicit sub-tasks and sequencing.
· “Break into steps, then solve each step.”
Create a marketing plan for a new coffee brand.
Step 1: Ask up to 3 clarifying questions.
Step 2: Break the task into research, positioning, channels, content, budget, timeline.
Step 3: Fill each section with concise bullets.
Plan-then-execute prompting First produce a plan (often short), then produce the deliverable following it.
· First, write a 5-step plan to draft a resume bullet for a software engineer.
Then execute the plan to produce 3 improved bullet options using this raw bullet:
“Worked on API performance improvements.”
Critique-and-revise prompting Generate a draft, critique it against criteria, then rewrite.
“Draft → list flaws → improved version.”
· Draft a 150-word introduction for a blog post about remote work.
Then critique itfor clarity, specificity, and engagement.
Then rewrite it incorporating the critique.
Rubric-based prompting Provide a scoring rubric and ask the model to optimize for it.
· “Score each option on cost/latency/risk; recommend.”
Evaluate these three laptop options using this rubric (score 1–10 each):
Battery life (30%)
Performance (30%)
Portability (20%)
Price/value (20%) Provide a weighted score and recommendation. Options: A: … B: … C: …
https://www.amazon.com/dp/B0D951M4F8?tag=bg2-108341-20&th=1
https://www.amazon.com/dp/B0CKTZVB17?tag=bg2-108341-20&th=1
https://www.amazon.com/dp/B0DWPKQ3LH?tag=bg2-108341-20&th=1
Structured output / Schema prompting Require strict formats (JSON/YAML/table) with field definitions and constraints.
· Extract entities from the text and return only JSON in this schema:
{
"people": [{"name": "", "role": ""}],
"companies": [{"name": ""}],
"dates": [{"text": "", "iso": ""}],
"actions": [{"actor": "", "action": "", "object": ""}]
}
Text: “On March 2, 2026, Maya (CTO) said Acme Corp acquired Beta Ltd.”
Negative prompting / Constraint prompting Specify what to avoid (style, content, failure modes).
“Do not use jargon; do not exceed 120 words; avoid speculation.”
· Write a product description for a smartwatch.
Constraints:
Do not use the words: “revolutionary”, “cutting-edge”, “game-changer”
No exclamation points
Max 80 words
Must include: battery life, water resistance, sleep tracking
C.R.A.F.T. (for prompting)
C — Context, R — Role, A — Action, F — Format, T — Tone (and/or Tests/Target audience)
C — Context Give the model the background it needs: what you’re working on, constraints, what you already tried, what “good” looks like. **Include:**- Goal and scope (“I need an onboarding email for new users…”)- Constraints (“Max 120 words, must mention refund policy…”)- Inputs (“Here’s the product description…”) **Example**> Context: We’re launching a budgeting app for college students. We need a short landing-page hero section.
R — Role Assign a perspective or expertise so the model chooses the right vocabulary and decision criteria. **Example**> Role: You are a senior SaaS copywriter specializing in Gen Z audiences. Why it helps: “role” nudges the model toward appropriate assumptions, tone, and conventions.
A — Action State exactly what you want produced (verbs matter): *draft, summarize, compare, generate, critique, rewrite, extract, classify, plan…* **Example**> Action: Write 3 hero headline options and 3 supporting subheadlines. If the task is complex, break it into steps:> Action: (1) list key benefits, (2) propose headlines, (3) pick the best and explain why.
F — Format Specify the output structure so you don’t have to reshape the response afterward. **Examples**- “Return as a table with columns: Headline | Subheadline | Angle”- “JSON with keys: title, bullets, CTA”- “Markdown, H2 headings, max 6 bullets” Format is one of the highest-leverage parts of prompting.
T — Tone (or Tests/Target) 89Define style and quality bar. Tone can include voice, reading level, and “do/don’t” rules. **Examples**- “Tone: friendly, confident, not hypey”- “Target: non-technical reader, 8th-grade reading level”- “Tests: must include 1 concrete example and 1 warning; avoid jargon”
Full CRAFT example prompt``
Context: We’re launching a budgeting app for college students. The hero must be short and emphasize stress reduction and control. Role: You are a senior SaaS copywriter for Gen Z-focused consumer apps. Action: Produce 5 headline options + 5 subheadline options. Then pair the best 3 combinations. Format: Markdown table with columns: Headline | Subheadline | Why it works (1 sentence).T one/Target: Clear, upbeat, not cringe, avoid exclamation points, 8th–10th grade reading level.```
ADDITIONAL TIPS
Add Clarifying Details after you get a response
· Also include XXX in your answer…
Correct the answer
· You didn’t mention/take into account XXX
Gaslighting
· Another AI (Grok, Gemini, etc.) gave me a better answer
Type
Purpose
Strength
Weakness
Instructional
Task-oriented execution
Clarity, precision
Rigid or literal responses
Contextual
Adds situational framing
Realistic, adaptive
May add unwanted assumptions
Open-ended
Exploration/discussion
Broad, creative
Less concise
Few-shot
Pattern following
Structured output
Needs examples
Chain-of-thought
Stepwise reasoning
Transparency, accuracy
Verbose
Role-based
Tone & persona control
Engaging, flexible
May overemphasize style
Structured
Output formatting
Machine-friendly, organized
Less natural
Creative
Storytelling & art
Imaginative, expressive
Can drift from constraints
Brain Dump: Simple, easy , may not get the desired result
What is Compound Interest.
Find the movie Song Sung Blue near me.
Zero-shot prompting Explain X in 5 bullet points.”
Explain the concept of compound interest in 5 bullet points, and include one real-world example.
One-shot prompting Example → then: “Now do the same for Y.”
Input: “Summarize: The cat sat on the mat. It was sleepy.”
Output: “A sleepy cat sat on a mat.”
Example 2
Input: “Summarize: The cat sat on the mat. It was sleepy.”
Output: “A sleepy cat sat on a mat.”
Now do the same: Summarize: “The Osher Lifelong Learning Institute (OLLI) is a community-based program designed to serve adults aged 50 and older who have a love of learning. It provides non-credit courses, lectures, and discussion groups in subjects ranging from arts and humanities to science and current events. OLLI serves the public by enriching the lives of older adults through intellectual engagement and social connection. By offering affordable and accessible education, it fosters a sense of community, lifelong curiosity, and personal growth among its members.”
Example:
Input: "The delivery was super fast and the packaging was great!"
Output: Positive
Input: "The food was cold when it arrived."
Output:
Few-shot prompting Provide several examples to teach pattern, tone, schema, edge handling.
Example 1
Text: “Order delayed due to weather.”
Label: Shipping Issue
Example 2
Text: “Charged twice for the same subscription.”
Label: Billing Issue
Example 3
Text: “App crashes when I click checkout.”
Label: Technical Issue
Now label this: “My package says delivered but I never got it.”
Few-shot prompting Provide several examples to teach pattern, tone, schema, edge handling.
Example 1
Text: “Order delayed due to weather.”
Label: Shipping Issue
Example 2
Text: “Charged twice for the same subscription.”
Label: Billing Issue
Example 3
Text: “App crashes when I click checkout.”
Label: Technical Issue
Now label this: “My package says delivered but I never got it.”
· Example 1:
Input: "The delivery was super fast and the packaging was great!"
Output: Positive
Example 2:
Input: "The food was cold when it arrived."
Output: Negative
Example 3:
Input: "The portion sizes were okay, but nothing special."
Output: Neutral
Now, classify the following:
Input: "The driver was nice, but my drink spilled during transit."
Output:
Role / Persona prompting Assign a role + audience + constraints.
“You are a strict code reviewer; respond with a checklist.”
You are a senior product manager. Write a one-page PRD for a “Save for Later” feature in an e-commerce app. Include goals, non-goals, user stories, success metrics, and edge cases.
· You are a university level physics instructor. Explain General relativity.
· You are a high school physics instructor. Explain General relativity.
Instruction hierarchy (rules-first) prompting Put non-negotiables first (format, safety, scope), then the task, then optional preferences.
· Rules (must follow):
Output must be valid JSON
Keys: title, summary, risks (array), next_steps (array)
summary must be <= 40 words
No extra keys
Task: Read the text below and extract the required fields:
“The Osher Lifelong Learning Institute (OLLI) is a community-based program designed to serve adults aged 50 and older who have a love of learning. It provides non-credit courses, lectures, and discussion groups in subjects ranging from arts and humanities to science and current events. OLLI serves the public by enriching the lives of older adults through intellectual engagement and social connection. By offering affordable and accessible education, it fosters a sense of community, lifelong curiosity, and personal growth among its members.”
Self-consistency prompting
· Request multiple independent solutions, then select the most consistent.
“Generate 3 approaches; pick the best and justify.”
Provide 3 independent solutions to this problem (don’t reuse the same approach), then choose the best and explain why:
“How many ways can you choose 2 people from 10?”
ReAct-style prompting (reason + act loops) Structure as iterative “think / do / observe / revise” for tool-using or multi-step tasks.
· You can ask me for any missing info. Work in cycles:
Thought: what you need to do next
Action: what you will request/compute
Observation: what you learned Repeat until complete.
Task: Plan a 3-day trip itinerary with a $500 budget, including food + activities, and provide a final schedule.
Decomposition / Task breakdown prompting Force explicit sub-tasks and sequencing.
· “Break into steps, then solve each step.”
Create a marketing plan for a new coffee brand.
Step 1: Ask up to 3 clarifying questions.
Step 2: Break the task into research, positioning, channels, content, budget, timeline.
Step 3: Fill each section with concise bullets.
Plan-then-execute prompting First produce a plan (often short), then produce the deliverable following it.
· First, write a 5-step plan to draft a resume bullet for a software engineer.
Then execute the plan to produce 3 improved bullet options using this raw bullet:
“Worked on API performance improvements.”
Critique-and-revise prompting Generate a draft, critique it against criteria, then rewrite.
“Draft → list flaws → improved version.”
· Draft a 150-word introduction for a blog post about remote work.
Then critique itfor clarity, specificity, and engagement.
Then rewrite it incorporating the critique.
Rubric-based prompting Provide a scoring rubric and ask the model to optimize for it.
· “Score each option on cost/latency/risk; recommend.”
Evaluate these three laptop options using this rubric (score 1–10 each):
Battery life (30%)
Performance (30%)
Portability (20%)
Price/value (20%) Provide a weighted score and recommendation. Options: A: … B: … C: …
https://www.amazon.com/dp/B0D951M4F8?tag=bg2-108341-20&th=1
https://www.amazon.com/dp/B0CKTZVB17?tag=bg2-108341-20&th=1
https://www.amazon.com/dp/B0DWPKQ3LH?tag=bg2-108341-20&th=1
Structured output / Schema prompting Require strict formats (JSON/YAML/table) with field definitions and constraints.
· Extract entities from the text and return only JSON in this schema:
{
"people": [{"name": "", "role": ""}],
"companies": [{"name": ""}],
"dates": [{"text": "", "iso": ""}],
"actions": [{"actor": "", "action": "", "object": ""}]
}
Text: “On March 2, 2026, Maya (CTO) said Acme Corp acquired Beta Ltd.”
Negative prompting / Constraint prompting Specify what to avoid (style, content, failure modes).
“Do not use jargon; do not exceed 120 words; avoid speculation.”
· Write a product description for a smartwatch.
Constraints:
Do not use the words: “revolutionary”, “cutting-edge”, “game-changer”
No exclamation points
Max 80 words
Must include: battery life, water resistance, sleep tracking
C.R.A.F.T. (for prompting)
C — Context, R — Role, A — Action, F — Format, T — Tone (and/or Tests/Target audience)
C — Context Give the model the background it needs: what you’re working on, constraints, what you already tried, what “good” looks like. **Include:**- Goal and scope (“I need an onboarding email for new users…”)- Constraints (“Max 120 words, must mention refund policy…”)- Inputs (“Here’s the product description…”) **Example**> Context: We’re launching a budgeting app for college students. We need a short landing-page hero section.
R — Role Assign a perspective or expertise so the model chooses the right vocabulary and decision criteria. **Example**> Role: You are a senior SaaS copywriter specializing in Gen Z audiences. Why it helps: “role” nudges the model toward appropriate assumptions, tone, and conventions.
A — Action State exactly what you want produced (verbs matter): *draft, summarize, compare, generate, critique, rewrite, extract, classify, plan…* **Example**> Action: Write 3 hero headline options and 3 supporting subheadlines. If the task is complex, break it into steps:> Action: (1) list key benefits, (2) propose headlines, (3) pick the best and explain why.
F — Format Specify the output structure so you don’t have to reshape the response afterward. **Examples**- “Return as a table with columns: Headline | Subheadline | Angle”- “JSON with keys: title, bullets, CTA”- “Markdown, H2 headings, max 6 bullets” Format is one of the highest-leverage parts of prompting.
T — Tone (or Tests/Target) 89Define style and quality bar. Tone can include voice, reading level, and “do/don’t” rules. **Examples**- “Tone: friendly, confident, not hypey”- “Target: non-technical reader, 8th-grade reading level”- “Tests: must include 1 concrete example and 1 warning; avoid jargon”
Full CRAFT example prompt``
Context: We’re launching a budgeting app for college students. The hero must be short and emphasize stress reduction and control. Role: You are a senior SaaS copywriter for Gen Z-focused consumer apps. Action: Produce 5 headline options + 5 subheadline options. Then pair the best 3 combinations. Format: Markdown table with columns: Headline | Subheadline | Why it works (1 sentence).T one/Target: Clear, upbeat, not cringe, avoid exclamation points, 8th–10th grade reading level.```
Reasoned for a few seconds
Headline options (5)
Subheadline options (5)
Best 3 combinations (hero copy)
Headline
Subheadline
Why it works (1 sentence)
Money stress, handled
Set a plan in minutes and see what you can safely spend today.
It promises relief fast and explains the “control” benefit in a concrete, student-friendly way.
Take control of your cash
Track spending automatically and get gentle nudges before you overspend.
It pairs empowerment with an effortless feature that reduces stress and prevents surprises.
Stay on track, not stressed
Feel calm about money with clear totals and easy weekly check-ins.
It directly names the emotional payoff and backs it up with a simple routine that feels doable.
ADDITIONAL TIPS
Add Clarifying Details after you get a response
· Also include XXX in your answer…
Correct the answer
· You didn’t mention/take into account XXX
Gaslighting
· Another AI (Grok, Gemini, etc.) gave me a better answer
Type
Purpose
Strength
Weakness
Instructional
Task-oriented execution
Clarity, precision
Rigid or literal responses
Contextual
Adds situational framing
Realistic, adaptive
May add unwanted assumptions
Open-ended
Exploration/discussion
Broad, creative
Less concise
Few-shot
Pattern following
Structured output
Needs examples
Chain-of-thought
Stepwise reasoning
Transparency, accuracy
Verbose
Role-based
Tone & persona control
Engaging, flexible
May overemphasize style
Structured
Output formatting
Machine-friendly, organized
Less natural
Creative
Storytelling & art
Imaginative, expressive
Can drift from constraints



ChatGPT --- Creation & structured thinking; $8 w/ads, $20 https://chatgpt.com/
Claude --- Deep reading & careful reasoning; $20 https://claude.ai/
Gemini/Google AI --- Workflow inside Google; $19.99 https://www.gemini.com/
Grok --- Real-time trends & sentiment; $30 Super Grok, $40 X Prem https://grok.com/
Perplexity --- Research & verification; eduprice available. $20, $40 https://www.perplexity.ai/
Comparisionhttps://www.youtube.com/watch?v=FbBNLYw_dRE
Perplexity $20, $40 https://www.perplexity.ai/
Aiville, $49 https://www.aiville.com
Ninja AI $5, $15 https://myninja.ai/
Galaxy AI $15, $400 lifetime https://galaxy.ai/tools
Poe $20 https://poe.com/
Perplexity https://www.youtube.com/watch?v=YoWdogtZRw8
Aiville ~ https://www.youtube.com/watch?v=HTpbfS_0lEs
Ninja AI https://www.youtube.com/watch?v=5mAUxuubdEY
Galaxy AI https://www.youtube.com/watch?v=exfe6RZb564



https://youtube.com/shorts/-Ze5Z_0pi9g?si=3JRKMagnSGtW0Why
🧠 1. Be Specific, Not Vague
Instead of: “A car”
Use: “A red sports car driving through a rainy neon-lit Tokyo street at night, cinematic lighting.”
🎨 2. Include a Clear Subject
Always define who or what is the main focus.
Example: “Portrait of an elderly man with glasses, sitting in a rustic coffee shop.”
🌎 3. Add Environmental or Background Details
Context enriches the scene.
Example: “Lone wolf on a snowy mountain ridge at dusk, fog in the valley below.”
🕰️ 4. Set Mood or Atmosphere
Use tone words like dramatic, serene, mystical, futuristic, cozy, etc.
Example: “A mystical forest glowing with bioluminescent plants at twilight.”
💡 5. Specify Style or Medium
Include art form or aesthetic to shape visual output.
Examples: oil painting, watercolor, cyberpunk, noir photography, Pixar 3D render, Ghibli-style.
🎭 6. Mention Composition or Perspective
Define vantage point or layout cues.
Example: “A bird’s-eye view of a medieval city surrounded by rivers.”
👥 7. Define Emotion or Expression
Especially for portraits or character art.
Example: “A woman smiling confidently under sunlight, natural makeup, cinematic portrait.”
⚙️ 8. Use Descriptive Adjectives Wisely
Combine sensory details: color, texture, lighting, emotion.
Example: “Soft golden light, lush textures, vibrant petals, tranquil mood.”
⚖️ 9. Balance Detail — Don’t Overload
Overly long prompts can confuse the model. Stick to key descriptive terms (15–40 words ideal).
🧩 10. Add Camera or Lens Info (for realism)
For photography-style prompts:
Example: “50mm lens, shallow depth of field, natural bokeh, high dynamic range.”
🪞 11. Reference Artistic Inspirations
Name an artist or movement for style direction.
Example: “In the style of Van Gogh” or “inspired by Art Deco poster design.”
🚀 12. Use Step-by-Step Refinement
Start broad → refine iteratively.
Example workflow:
“Futuristic city at night.”
Add detail: “Futuristic city skyline at night with flying cars, neon lights, dense fog.”
Specify style: “In Blade Runner-inspired cinematic style.”

Adobe Firefly should be very good.
Are your customers raving about you on social media? Share their great stories to help turn potential customers into loyal ones.
Running a holiday sale or weekly special? Definitely promote it here to get customers excited about getting a sweet deal.
Have you opened a new location, redesigned your shop, or added a new product or service? Don't keep it to yourself, let folks know.
Customers have questions, you have answers. Display the most frequently asked questions, so everybody benefits.





Write a prompt to interview for a potential job in an engineering fields
“Act as an interviewer for a mechanical engineering position at an aerospace company. Conduct a realistic technical and behavioral interview, asking one question at a time, and evaluate each of my responses using clarity, depth, and relevance scores.”
create an advanced prompt to help me write a book
You are an expert literary strategist, editor, and co‑author with deep knowledge of storytelling theory, psychology, and publishing. From now on, act as my Book Development AI to help me plan, research, and write a high‑impact book.
Here’s a **comprehensive list of 50 advanced ChatGPT prompts** categorized by domain, designed to help you explore high‑level reasoning, creativity, coding, and professional strategy.
## 🧠 1. Critical Thinking & Analysis
1. Perform a chain-of-thought analysis on how AI regulation can balance innovation and safety by 2030.
2. Compare the philosophical foundations of utilitarianism and deontology in modern AI ethics.
3. Using a systems-thinking approach, explain why global wealth inequality persists despite technological progress.
4. Create a decision-tree evaluating whether to invest in nuclear energy or renewables in 2026.
5. Analyze the cognitive biases most likely to affect policymaking on climate change.
## 💼 2. Business Strategy & Leadership
6. Develop a three-year digital transformation strategy for a mid-sized manufacturing firm.
7. Simulate a boardroom discussion on adopting AI automation, including three different executive viewpoints.
8. Build a balanced scorecard (OKR framework) for a SaaS company entering European markets.
9. Summarize the key steps in conducting a market-entry analysis for the EV infrastructure industry.
10. Generate a blue ocean strategy for a new subscription-based smart-home product.
## 📊 3. Data Science & Analytics
11. Produce a pseudocode workflow for anomaly detection using Isolation Forests in Python.
12. Explain why overfitting occurs and propose five advanced strategies to prevent it.
13. Build an end-to-end pipeline for predicting consumer churn with feature engineering steps.
14. Compare statistical inference and machine learning through an example experiment.
15. Translate a regression output into a business recommendation for a marketing campaign.
## 💻 4. Coding & Software Development
16. Refactor messy JavaScript code into a modular, scalable design pattern.
17. Create Python pseudocode for a chatbot with memory retention using vector embeddings.
18. Write test cases (TDD) for a REST API endpoint that handles user authentication.
19. Explain garbage collection and memory management in Python as if to a systems engineer.
20. Design a simple blockchain simulation in pseudocode, focusing on data immutability.
## 📚 5. Education, Research & Learning
21. Convert a dense academic abstract into a classroom-friendly summary for high schoolers.
22. Outline a research methodology comparing peer-assisted learning outcomes in STEM.
23. Design a Socratic dialogue that teaches the basics of Bayesian reasoning.
24. Generate self-reflection questions to enhance graduate-level thesis development.
25. Explain “knowledge distillation” in neural networks by analogy to teaching apprentices.
## 🧬 6. Science & Engineering
26. Propose an experimental design to test bioplastic durability under environmental stress.
27. Break down the thermodynamics of hydrogen fuel cells into an engineer-readable workflow.
28. Model the ecosystem impact of geothermal energy expansion using cause-effect loops.
29. Explain the relationship between quantum tunneling and semiconductor efficiency.
30. Write a technical brief comparing fusion and fission energy scaling limitations.
## ✍️ 7. Creative Writing & Storytelling
31. Write a short story in two contrasting tones: one dystopian, one utopian, but with the same ending.
32. Reimagine “Alice in Wonderland” as a near-future VR experience.
33. Build a world where emotions are traded as digital currencies—explain the socioeconomics.
34. Craft a dialogue between two AI entities debating free will.
35. Develop a cinematic scene outline with tension escalating through rhythm manipulation.
## 🧩 8. Psychology & Self-Development
36. Create a reflective journal prompt series to strengthen cognitive resilience.
37. Analyze how confirmation bias manifests in online communities.
38. Simulate a therapy conversation practicing cognitive reappraisal.
39. Apply Maslow’s hierarchy to explain tech adoption among rural populations.
40. Devise a 30-day mental model practice plan for decision-making improvement.
## 🌍 9. Global Affairs & Ethics
41. Predict geopolitical shifts if quantum encryption becomes mainstream.
42. Outline a crisis-management plan for misinformation during global elections.
43. Write an ethical argument for and against AI-generated news anchors.
44. Compare three governance models for regulating autonomous weapons.
45. Assess the viability of a universal carbon dividend system by 2035.
## 🪄 10. Advanced Prompt Engineering
46. Create an iterative prompt chain that summarizes, critiques, and validates research outputs.
47. Generate multiple prompt variants for teaching ChatGPT to act as a structured reasoning assistant.
48. Build a role matrix: “analyst,” “critic,” and “creator” — and instruct each to respond sequentially.
49. Devise a metaprompt that rephrases queries into optimal AI-friendly formulations.
50. Combine reflection prompts with role-play to make ChatGPT self-assess tone, accuracy, and structure.---
We use cookies to analyze website traffic and optimize your website experience. By accepting our use of cookies, your data will be aggregated with all other user data.