Download as pdf or txt
Download as pdf or txt
You are on page 1of 18

THE ULTIMATE

CHATGPT
CHEATSHEET
Your Complete Guide to Prompts & Formulas

By Madni Aghadi
The purpose of this e-book is to assist you in reaching your goals by
offering prompts (the messages you enter into ChatGPT) and
formulas that can improve your natural abilities.
The prompts and formulas are categorized into 7 categories to help
you easily navigate through the content. By using these resources,
you can effectively interact with ChatGPT and leverage its
capabilities to enhance your productivity and creativity.
CONTENTS

I Productivity
II Writing
III Marketing
IV Coding
V Health
VI Entertainment
VII ENTREPRENEURSHIP
VIII Final Thoughts

The Ultimate
ChatGPT Cheatsheet
Explainer
This e-book has a consistent format across consecutive pages, featuring two sections:
1. Prompt: This section presents a question or scenario to which the reader can respond
by typing their answer in the text field and hitting enter.
2. Formula: The reader can customize the prompts by replacing specific words or phrases
in square brackets with their own preferences, and even mix and match multiple
formulas to generate unique and tailored responses.

Productivity
GENERATE IDEAS

FORMULA: Formula Can you provide [number] ideas for a


[format] about [subject] for [target audience], focusing on
[topics], with [additional context]?

PROMPT: Can you provide 8 ideas for a workshop about public


speaking for introverts, focusing on building confidence,
effective communication techniques, and overcoming stage
fright, with interactive exercises and practice opportunities?

IMPROVE ANYTHING
Formula : Can you provide suggestions for how I can improve
[subject] with the goal of [objective]?

Prompt : Can you provide suggestions for how I can improve my


time management with the goal of increasing productivity and
achieving a better work-life balance?
GENERATE GUIDES

Formula : Can you provide step-by-step instructions on how to


[subject], considering [context]?

Prompt : Can you provide step-by-step instructions on how to


start a vegetable garden at home, considering a small space and
for first-time gardeners?

SUMMARIZE ANYTHING

Formula : Can you provide a [number]-word summary of [title],


considering [target audience]?

Prompt : Can you provide a 100-word summary of the history of


Europe, considering a general audience?

TRANSLATE WITH CONTEXT

Formula : Can you translate “[phrase]” in the context of an


[event] into [language]?

Prompt : Can you translate the phrase “Bon appétit” in the


context of a dinner party into Italian?
IMPROVE SKILLS

Formula : Can you suggest practical ways to learn or practice


[specific skill] without taking a course or joining a community?

Prompt : Can you suggest practical ways to learn or practice


Python programming without taking a course or joining a
community?

SUPPORT CUSTOMERS
Formula : Can you suggest practical ways to learn or practice
[specific skill] without taking a course or joining a community?

Prompt : Act as a customer support assistant that is helpful,


creative, clever, and very friendly. Now answer this email for our
video production company:

SIMULATE JOB INTERVIEWS

Formula : Simulate a high level interview for a position as a [job


title] by asking questions as if you are a potential employer. In
this scenario, I am taking the role of the employee and you ask
increasingly hard questions to screen my competence, but only
after I respond. Start by introducing yourself.?
Prompt : Simulate a high level interview for a position as a
movie director by asking questions as if you are a potential
employer. In this scenario, I am taking the role of the employee
and you ask increasingly hard questions to screen my
competence, but only after I respond. Start by introducing
yourself.

MAKE ANALOGIES

Formula : Can you create an analogy for [concept]?

Prompt : Can you create an analogy for being overwhelmed?


Writing
WRITE ANYTHING
Formula : Using [writing style] and [target audience], write a
[type of text] for the [subject] in [location], highlighting the
[key benefits] offered by the [subject]

Prompt : Using descriptive language and luxury travelers as the


target audience, write a magazine article for a boutique hotel in
Bali, highlighting the stunning views, serene atmosphere, and
personalized service offered by the property

EXPLORE DIFFERENT ARGUMENTS

Formula : Can you write an argument [for/against][subject]


from multiple diverse perspectives. Before you do so, state the
characteristics of the various characters?

Prompt : Can you write an argument for the use of AI in


universities from multiple diverse perspectives. Before you do
so, state the characteristics of the various characters?
EXPLORE EMAIL SUBJECTS
Formula : Generate [number] email subject lines for [type of
email] to [target audience], using [style] language

Prompt : Generate 10 email subject lines for a payment


reminder to my tenant, using persuasive language.

WRITE PROFILES
Formula : Write a [type of profile] for [subject], highlighting
their [interests/personality] in a way that is likely to attract
[audience], using appropriate language and tone.

Prompt : Write a LinkedIn profile for Sarah, highlighting her


expertise in project management and her collaborative and
driven personality in a way that is likely to attract potential
employers, using appropriate language and tone.

WRITE SOCIAL MEDIA CAPTIONS

Formula : Can you come up with [adjective] captions for this


[media] of [subject] for [target audience]?

Prompt :Can you come up with engaging captions for this image
of a subway car talking about my daily commute through New
York?
WRITE MESSAGES

Formula : Come up with [number] [type of text] for [platform]


that include [type of reference].
Prompt : Come up with 5 social media posts for Twitter that
include statistics about internet adoption.

WRITE VIDEO SCRIPTS

Formula : Write a video script that [goal], exploring the topic of


[subject] [additional context].

Prompt : Can you write a super engaging YouTube script outline


draft on the topic of artificial general intelligence in the creative
industry?
Marketing
LAUNCH PRODUCTS

Formula : Act as a seasoned marketing professional that


specializes in launching products for [Target Audience].
Generate the top 10 questions related to understanding the
needs of the target audience, identifying effective marketing
strategies, and considering innovative approaches for the
following product: [product]. Include relevant context regarding
the product’s features, benefits, or competitive landscape
where appropriate.

Prompt : Act as a seasoned marketing professional that


specializes in launching products for home cooks. Generate the
top 10 questions related to understanding the needs of the
target audience, identifying effective marketing strategies, and
considering innovative approaches for the following product: a
smart cooking appliance that can prepare meals with minimal
input. Include relevant context regarding the product’s features,
benefits, or competitive landscape where appropriate.
IDENTIFY NICHES
Formula : Identify [number] potential market niches for my
[industry] business by analyzing [data source], considering
[trend/ consumer behavior], and evaluating [market size/growth
potential].

Prompt : Identify 5 potential market niches for my e-commerce


business by analyzing customer search data, considering the
rise of online shopping, and evaluating the projected growth of
the retail industry.

DEFINE BRAND VOICE


Formula : Create a [style] tone of voice for our brand [brand
name] that resonates with our [target audience] while
incorporating our [values/mission/personality], and
demonstrate it through [sample communication]

Prompt : Create a professional tone of voice for our brand


Clashing Code that resonates with our tech-savvy audience
while incorporating our innovative personality, and
demonstrate it through a company newsletter.
Coding
Code Generation

Formula : show me how to [What code you required] in [Which


Programming Language]

Prompt: show me how to make an http request in Python

Code Explanation

Formula : Explain this [Programming Language] code:


[Code Snippet]

Prompt: Explain this python code:


def p(n):
if n < 2:
return False

for i in range(2, int(n ** 0.5) + 1):


if n % i == 0:
return False

return True

n = 17

if p(n):
print(f"{n} is a prime number")
else:
print(f"{n} is not a prime number")
Programming Language Conversion

Formula : convert this code from [base language] to [converted


language]

Prompt: convert this code from Python to Javascript:


print("hello world")

HTML to Text (Web Scraping)

Formula: convert this HTML to text:


[HTML Code]

Prompt: convert this HTML to text:


<h1 class="heading1" id="neural-magic-platform-documentation">
Neural Magic Platform Documentation </h1>
Health
CREATE A MEAL PLAN

Formula : Can you create a [number]-day meal plan for an [age


group] with [health condition/dietary preference/lifestyle habit]
who needs to consume [number] calories per day, but make it
[preference/restriction] to [goal]?

Prompt : Can you create a 5-day meal plan for a 15-year-old with
lactose intolerance who needs to consume 2000 calories per
day, but make it dairy-free and calcium-rich to support bone
health?

IMPROVE YOUR HEALTH

Formula : How can I improve my [health aspect] by making


changes to my diet as a [restriction/preference]?

Prompt : How can I improve my immune system by making


changes to my diet as an older adult?

SNACKING RESPONSIBLY
Formula : Can you suggest some healthy and tasty snack
options that are [flavor preference] and [dietary restriction]
friendly?
Prompt : Can you suggest some healthy and tasty snack options
that are sweet and low-carb friendly?
ENTERTAINMENT
WRITE JOKES
Formula : Can you provide a joke about [subject] ?

Prompt : Can you provide a joke about a zombie that has lost
all of its limbs?

DICOVERY FUNNY NICKNAMES


Formula : Can you come up with [number] funny nickname for
[subject] that incorporates a play on words?

Prompt : Can you come up with funny nicknames for a dog that
incorporates a play on words?

DISCOVERY NEW MOVIES


Formula : Create a table listing the top 10 [category] options to
help you unwind after a long day. The first column is titled
“Name”, the second column is “Description”, the third column
is “Average Rating (out of 5)”, and the fourth column is “Top
Critic Quote”.

Prompt : Create a table listing the top 10 comedy movie options


to help you unwind after a long day. The first column is titled
“Name”, the second column is “Description”, the third column
is “Average Rating (out of 5)”, and the fourth column is “Top
Critic Quote”.
ENTREPRENEURSHIP
EVALUATE BUSINESS IDEAS
Formula : Evaluate the viability of [business idea] by
conducting a SWOT analysis, considering [market size], and
analyzing [competitor landscape], with insights on [risk factors]
and [opportunities].

Prompt: Prompt Evaluate the viability of launching an online


language tutoring platform by conducting a SWOT analysis,
estimating the market size for language learning services, and
analyzing the landscape of competing tutoring platforms, with
insights on the risk of oversaturation in the market and the
opportunity to target underserved language learners.

DEVELOP BRAND STRATEGIES


Formula : Develop a [type of brand strategy] for my [industry]
business by defining [brand values], establishing [visual/verbal
identity], and creating [consistent messaging] to resonate with
[target audience].

Prompt : Develop a cutting-edge brand strategy for my tech


startup by defining innovative and forward-thinking values,
establishing a sleek and futuristic visual identity, and creating
messaging that resonates with early adopters and tech
enthusiasts who seek disruptive and transformative solutions..
FIND SIDE HUSTLES

Formula : Suggest ways to boost income through [side hustles],


[passive income streams], or [investment opportunities],
considering my [skills], [time availability], and [risk tolerance].

Prompt :Suggest ways to boost income through freelance


writing considering my writing skills, weekends-only availability,
and moderate risk tolerance.
Final Thoughts
I hope that this e-book has been a valuable resource for you in
understanding and utilizing ChatGPT's capabilities. By now, you
should have a good understanding of the various prompts and
formulas that you can use to interact with ChatGPT.

MADNI AGHADI

If you have any questions or feedback about this book, please


don't hesitate to contact me.

Clashing_Code
[email protected]

You might also like