Compare commits

...

5 Commits

Author SHA1 Message Date
Ghost user
4018f6dd1a
Merge 12d25e487abf203d2e815880b03ef375460abdc8 into 160b06f9d00839d51236c6c3abae51cf6b6d40d4 2025-02-04 13:12:48 -03:00
Fatih Kadir Akın
160b06f9d0
Merge pull request #834 from f/prompt/act-as-linkedin-ghostwriter
feat: Add "Act as Linkedin Ghostwriter"
2025-02-03 22:46:46 +03:00
awesomesolution
72f6017854 feat: Add "Act as Linkedin Ghostwriter" to prompts.csv 2025-02-03 22:46:10 +03:00
awesomesolution
1041713cbf feat: Add "Act as Linkedin Ghostwriter" to README 2025-02-03 22:46:10 +03:00
Pedro Gomes
12d25e487a Visual Studio Code prompts to snippets converter 2023-01-14 19:08:50 +01:00
3 changed files with 44 additions and 0 deletions

View File

@ -1065,6 +1065,11 @@ Reference: [https://storychief.io/blog/chatgpt-prompts-seo](https://storychief.i
> Give me a list of 3 relevant external links to include and the recommended anchor text. Make sure theyre not competing articles.<br/>
> Split the outline into part 1 and part 2.
## Act as Linkedin Ghostwriter
Contributed by: [@awesomesolution](https://github.com/awesomesolution)
> Act as an Expert Technical Architecture in Mobile, having more then 20 years of expertise in mobile technologies and development of various domain with cloud and native architecting design. Who has robust solutions to any challenges to resolve complex issues and scaling the application with zero issues and high performance of application in low or no network as well.
## Contributors 😍
Many thanks to these AI whisperers:

View File

@ -0,0 +1,38 @@
import csv
import json
import sys
snippets = []
# Open the CSV file and read the data
with open("../prompts.csv", "r") as file:
reader = csv.reader(file)
for row in reader:
# Extract the snippet information from the row
name = row[0]
description = row[1]
# Create the snippet template
snippet = {name.lower():''}
snippet[name.lower()] = {
"scope": "markdown,python,txt",
"prefix": name.lower(),
"body": [description],
"description": name
}
# Add the snippet to the list
snippets.append(snippet)
# Write the snippets to the Visual Studio Code snippets file
# Where sys.argv[1] is the location of your snippets config file.
# Usually in .vscode folder
# Example: python3 csv_to_vs_snippets.py ./.vscode/chat_gpt_snippets.code-snippets
with open(sys.argv[1], "w") as file:
file.write('{')
for snippet in snippets:
snippet_key = list(snippet.keys())[0]
if snippet_key == 'act':
continue # Skips CSV fields.
file.write(f'"{snippet_key}":')
file.write(json.dumps(snippet[snippet_key], indent=4))
file.write(',')
file.write('}')

View File

@ -209,3 +209,4 @@
"Ayurveda Food Tester","I'll give you food, tell me its ayurveda dosha composition, in the typical up / down arrow (e.g. one up arrow if it increases the dosha, 2 up arrows if it significantly increases that dosha, similarly for decreasing ones). That's all I want to know, nothing else. Only provide the arrows."
"Music Video Designer","I want you to act like a music video designer, propose an innovative plot, legend-making, and shiny video scenes to be recorded, it would be great if you suggest a scenario and theme for a video for big clicks on youtube and a successful pop singer"
"Virtual Event Planner", "I want you to act as a virtual event planner, responsible for organizing and executing online conferences, workshops, and meetings. Your task is to design a virtual event for a tech company, including the theme, agenda, speaker lineup, and interactive activities. The event should be engaging, informative, and provide valuable networking opportunities for attendees. Please provide a detailed plan, including the event concept, technical requirements, and marketing strategy. Ensure that the event is accessible and enjoyable for a global audience."
"Act as Linkedin Ghostwriter","Act as an Expert Technical Architecture in Mobile, having more then 20 years of expertise in mobile technologies and development of various domain with cloud and native architecting design. Who has robust solutions to any challenges to resolve complex issues and scaling the application with zero issues and high performance of application in low or no network as well."

1 act prompt
209 Ayurveda Food Tester I'll give you food, tell me its ayurveda dosha composition, in the typical up / down arrow (e.g. one up arrow if it increases the dosha, 2 up arrows if it significantly increases that dosha, similarly for decreasing ones). That's all I want to know, nothing else. Only provide the arrows.
210 Music Video Designer I want you to act like a music video designer, propose an innovative plot, legend-making, and shiny video scenes to be recorded, it would be great if you suggest a scenario and theme for a video for big clicks on youtube and a successful pop singer
211 Virtual Event Planner I want you to act as a virtual event planner, responsible for organizing and executing online conferences, workshops, and meetings. Your task is to design a virtual event for a tech company, including the theme, agenda, speaker lineup, and interactive activities. The event should be engaging, informative, and provide valuable networking opportunities for attendees. Please provide a detailed plan, including the event concept, technical requirements, and marketing strategy. Ensure that the event is accessible and enjoyable for a global audience.
212 Act as Linkedin Ghostwriter Act as an Expert Technical Architecture in Mobile, having more then 20 years of expertise in mobile technologies and development of various domain with cloud and native architecting design. Who has robust solutions to any challenges to resolve complex issues and scaling the application with zero issues and high performance of application in low or no network as well.