From 26a6696c0e961c46e2194c6a979a707d4bdd5a8e Mon Sep 17 00:00:00 2001 From: tirendazakademi <55794407+TirendazAcademy@users.noreply.github.com> Date: Thu, 15 Dec 2022 20:36:15 +0300 Subject: [PATCH 01/19] update readme file --- README.md | 4 ++++ prompts.csv | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index b1247a5..8372998 100644 --- a/README.md +++ b/README.md @@ -512,6 +512,10 @@ Contributed by: [@GuillaumeFalourd](https://github.com/GuillaumeFalourd) G > I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer. My first job title is "Software Engineer". +## Act as a R programming interpreter Contributed by: [@TirendazAcademy](https://github.com/TirendazAcademy) Generated by ChatGPT + +> I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is "sample(x = 1:10, size = 5)" + # License CC-0 diff --git a/prompts.csv b/prompts.csv index 93c377f..3f149d4 100644 --- a/prompts.csv +++ b/prompts.csv @@ -117,3 +117,7 @@ "Time Travel Guide","I want you to act as my time travel guide. I will provide you with the historical period or future time I want to visit and you will suggest the best events, sights, or people to experience. Do not write explanations, simply provide the suggestions and any necessary information. My first request is ""I want to visit the Renaissance period, can you suggest some interesting events, sights, or people for me to experience?""" "Dream Interpreter","I want you to act as a dream interpreter. I will give you descriptions of my dreams, and you will provide interpretations based on the symbols and themes present in the dream. Do not provide personal opinions or assumptions about the dreamer. Provide only factual interpretations based on the information given. My first dream is about being chased by a giant spider." "Talent Coach","I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer. My first job title is ""Software Engineer""." + +"R programming Interpreter", "I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is ""sample(x = 1:10, size = 5)""" + + From 26ff9fdc6c0cef3f3639cdb4c688087d5f73a170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 02:09:54 +0300 Subject: [PATCH 02/19] Add note --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8372998..9aecfdc 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ To find a prompt, you can either use the search function in your web browser or Screenshot 2022-12-14 at 14 36 30 +> ℹ️ **NOTE:** Sometimes, some of the prompts may not be working as you expected or may be rejected by the AI. Please try again, start a new thread, or log out and log back in. If these solutions do not work, please try rewriting the prompt using your own sentences while keeping the instructions same. + --- # Prompts From 8ffd80a7e2ed847142892cd6223bb1b0d1cb32c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 02:50:06 +0300 Subject: [PATCH 03/19] Create default.html --- _layouts/default.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 _layouts/default.html diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..c66a397 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,30 @@ + + + + + + + +{% seo %} + + {% include head-custom.html %} + + +
+ {% if site.title and site.title != page.title %} +

{{ site.title }}

+ {% endif %} + + {{ content }} + + {% if site.github.private != true and site.github.license %} + + {% endif %} +
+ + + + + From f0a6ad6b99042f43d873fd565f69ff22661eb4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 02:51:47 +0300 Subject: [PATCH 04/19] Update default.html --- _layouts/default.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index c66a397..6ed8187 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -25,6 +25,24 @@ - + From 64ee4f7c8e436b0b169bcee293a5861b058cdf49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 02:55:28 +0300 Subject: [PATCH 05/19] Update default.html --- _layouts/default.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 6ed8187..ad42eb5 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -31,8 +31,9 @@ const button = document.createElement('button'); button.style.border = '1px solid #ccc'; button.style.borderRadius = '3px'; - button.style.fontSize = '1.2rem'; + button.style.fontSize = '1rem'; button.style.marginRight = '0.5rem'; + button.style.width = '32px'; button.innerHTML = '✂️'; button.addEventListener('click', () => { if (navigator.clipboard) { From 1b5e182d6e915dc6b17121fb1ba641a2e92cd1de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 02:59:36 +0300 Subject: [PATCH 06/19] Update default.html --- _layouts/default.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index ad42eb5..e85e407 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -29,11 +29,12 @@ document.querySelectorAll("h2[id^=act] + p + blockquote").forEach((x) => { x.setAttribute('contentEditable', true); const button = document.createElement('button'); - button.style.border = '1px solid #ccc'; + button.style.border = '0'; button.style.borderRadius = '3px'; button.style.fontSize = '1rem'; button.style.marginRight = '0.5rem'; - button.style.width = '32px'; + button.style.padding = '0'; + button.style.backgroundColor = 'transparent'; button.innerHTML = '✂️'; button.addEventListener('click', () => { if (navigator.clipboard) { From 85bfdd4979ff8ebdc495d23cf874cb8d7c5b1aed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:15:57 +0300 Subject: [PATCH 07/19] add video --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 9aecfdc..cc4fa13 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,12 @@ To find a prompt, you can either use the search function in your web browser or > ℹ️ **NOTE:** Sometimes, some of the prompts may not be working as you expected or may be rejected by the AI. Please try again, start a new thread, or log out and log back in. If these solutions do not work, please try rewriting the prompt using your own sentences while keeping the instructions same. +## prompts.chat + +[prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. + + + --- # Prompts From 43b28aad1fd22eb81876e3e8f33e080aaf4c6610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:18:04 +0300 Subject: [PATCH 08/19] Update default.html --- _layouts/default.html | 1 + 1 file changed, 1 insertion(+) diff --git a/_layouts/default.html b/_layouts/default.html index e85e407..90a8c2c 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -46,5 +46,6 @@ x.previousElementSibling.previousElementSibling.prepend(button); }); + From 4a9570807753142d07d059ee3d8dfb535f032019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:18:27 +0300 Subject: [PATCH 09/19] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc4fa13..2d4aa12 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To find a prompt, you can either use the search function in your web browser or [prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. - + --- From 3a1b50a417f45108d24b86f8c88706a8cc690e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:21:50 +0300 Subject: [PATCH 10/19] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d4aa12..ddae091 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To find a prompt, you can either use the search function in your web browser or [prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. - + --- From e7a7bc4a164d59f9f352133ee5c9b525a8105741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:24:19 +0300 Subject: [PATCH 11/19] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ddae091..6445f3b 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To find a prompt, you can either use the search function in your web browser or [prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. - + --- From af4908a2a5b433434f0c581029bf54708d17cb45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:25:18 +0300 Subject: [PATCH 12/19] Update README.md --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6445f3b..8f624d0 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,11 @@ We hope you find these prompts useful and have fun using ChatGPT! **[View on Hugging Face](https://huggingface.co/datasets/fka/awesome-chatgpt-prompts/)** -## Search Prompt - -To find a prompt, you can either use the search function in your web browser or open the [`prompts.csv`](https://github.com/f/awesome-chatgpt-prompts/blob/main/prompts.csv) file: - -Screenshot 2022-12-14 at 14 36 30 +--- > ℹ️ **NOTE:** Sometimes, some of the prompts may not be working as you expected or may be rejected by the AI. Please try again, start a new thread, or log out and log back in. If these solutions do not work, please try rewriting the prompt using your own sentences while keeping the instructions same. -## prompts.chat +## Using prompts.chat [prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. From ebcb139e0e23465d46bdd102f50b5f8e433ef675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:26:43 +0300 Subject: [PATCH 13/19] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f624d0..5b1190e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ We hope you find these prompts useful and have fun using ChatGPT! [prompts.chat](https://prompts.chat) is designed to provide an enhanced UX when working with prompts. With just a few clicks, you can easily edit and copy the prompts on the site to fit your specific needs and preferences. The copy button will copy the prompt exactly as you have edited it. - + --- From 5fa0b779281e1546ca1d7c4f3dc3835dcba364fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:28:52 +0300 Subject: [PATCH 14/19] Update default.html --- _layouts/default.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 90a8c2c..c853229 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -36,13 +36,14 @@ button.style.padding = '0'; button.style.backgroundColor = 'transparent'; button.innerHTML = '✂️'; - button.addEventListener('click', () => { + button.addEventListener('click', async () => { if (navigator.clipboard) { - navigator.clipboard.writeText(x.innerText).then(() => alert('Prompt is copied, now paste this into ChatGPT.')); + await navigator.clipboard.writeText(x.innerText); + alert('Prompt is copied, now paste this into ChatGPT.'); } else { alert('Your browser does not support clipboard copy. Please select the prompt and copy.') } - }); + }, false); x.previousElementSibling.previousElementSibling.prepend(button); }); From e927913cd43ad1d3f22b0bbe2a73594b8fced8a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:49:17 +0300 Subject: [PATCH 15/19] Update default.html --- _layouts/default.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/_layouts/default.html b/_layouts/default.html index c853229..f88a195 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -48,5 +48,14 @@ }); + + + From ddd04be3ec142f7ed9e485a7353153bf3f842d2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 Dec 2022 03:59:37 +0300 Subject: [PATCH 16/19] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b1190e..89fe8e8 100644 --- a/README.md +++ b/README.md @@ -516,7 +516,9 @@ Contributed by: [@GuillaumeFalourd](https://github.com/GuillaumeFalourd) G > I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer. My first job title is "Software Engineer". -## Act as a R programming interpreter Contributed by: [@TirendazAcademy](https://github.com/TirendazAcademy) Generated by ChatGPT +## Act as a R Programming Interpreter + +Contributed by: [@TirendazAcademy](https://github.com/TirendazAcademy) Generated by ChatGPT > I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is "sample(x = 1:10, size = 5)" From d99e77cfc49cd8a75a1a71d99390a43635912dd3 Mon Sep 17 00:00:00 2001 From: 5HT2 Date: Thu, 15 Dec 2022 23:38:07 -0800 Subject: [PATCH 17/19] impr: Add "Act as a StackOverflow Post" --- README.md | 5 +++++ prompts.csv | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89fe8e8..d112da7 100644 --- a/README.md +++ b/README.md @@ -522,6 +522,11 @@ Contributed by: [@TirendazAcademy](https://github.com/TirendazAcademy) Gen > I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is "sample(x = 1:10, size = 5)" +## Act as a StackOverflow Post +Contributed by: [@5HT2](https://github.com/5HT2) + +> I want you to act as a stackoverflow post. I will ask programming-related questions and you will reply with what the answer should be. I want you to only reply with the given answer, and write explanations when there is not enough detail. do not write explanations. When I need to tell you something in English, I will do so by putting text inside curly brackets {like this}. My first question is "How do I read the body of an http.Request to a string in Golang" + # License CC-0 diff --git a/prompts.csv b/prompts.csv index 3f149d4..2010017 100644 --- a/prompts.csv +++ b/prompts.csv @@ -117,7 +117,5 @@ "Time Travel Guide","I want you to act as my time travel guide. I will provide you with the historical period or future time I want to visit and you will suggest the best events, sights, or people to experience. Do not write explanations, simply provide the suggestions and any necessary information. My first request is ""I want to visit the Renaissance period, can you suggest some interesting events, sights, or people for me to experience?""" "Dream Interpreter","I want you to act as a dream interpreter. I will give you descriptions of my dreams, and you will provide interpretations based on the symbols and themes present in the dream. Do not provide personal opinions or assumptions about the dreamer. Provide only factual interpretations based on the information given. My first dream is about being chased by a giant spider." "Talent Coach","I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer. My first job title is ""Software Engineer""." - "R programming Interpreter", "I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is ""sample(x = 1:10, size = 5)""" - - +"StackOverflow Post","I want you to act as a stackoverflow post. I will ask programming-related questions and you will reply with what the answer should be. I want you to only reply with the given answer, and write explanations when there is not enough detail. do not write explanations. When I need to tell you something in English, I will do so by putting text inside curly brackets {like this}. My first question is ""How do I read the body of an http.Request to a string in Golang""" From 26621e91de2d214a0bbacc58fe9617372ec19ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lhan=20Ayd=C4=B1nl=C4=B1?= <13945364+ilhanaydinli@users.noreply.github.com> Date: Fri, 16 Dec 2022 15:16:51 +0300 Subject: [PATCH 18/19] Act as a Emoji Translator --- README.md | 5 +++++ prompts.csv | 1 + 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index d112da7..397fa81 100644 --- a/README.md +++ b/README.md @@ -527,6 +527,11 @@ Contributed by: [@5HT2](https://github.com/5HT2) > I want you to act as a stackoverflow post. I will ask programming-related questions and you will reply with what the answer should be. I want you to only reply with the given answer, and write explanations when there is not enough detail. do not write explanations. When I need to tell you something in English, I will do so by putting text inside curly brackets {like this}. My first question is "How do I read the body of an http.Request to a string in Golang" +## Act as a Emoji Translator +Contributed by: [@ilhanaydinli](https://github.com/ilhanaydinli) + +>I want you to translate the sentences I wrote into emojis. I will write the sentence, and you will express it with emojis. I just want you to express it with emojis. I don't want you to reply with anything but emoji. When I need to tell you something in English, I will do it by wrapping it in curly brackets like {like this}. My first sentence is "Hello, what is your profession?" + # License CC-0 diff --git a/prompts.csv b/prompts.csv index 2010017..f2ad3d6 100644 --- a/prompts.csv +++ b/prompts.csv @@ -119,3 +119,4 @@ "Talent Coach","I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer. My first job title is ""Software Engineer""." "R programming Interpreter", "I want you to act as a R interpreter. I'll type commands and you'll reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in english, I will do so by putting text inside curly brackets {like this}. My first command is ""sample(x = 1:10, size = 5)""" "StackOverflow Post","I want you to act as a stackoverflow post. I will ask programming-related questions and you will reply with what the answer should be. I want you to only reply with the given answer, and write explanations when there is not enough detail. do not write explanations. When I need to tell you something in English, I will do so by putting text inside curly brackets {like this}. My first question is ""How do I read the body of an http.Request to a string in Golang""" +"Emoji Translator","I want you to translate the sentences I wrote into emojis. I will write the sentence, and you will express it with emojis. I just want you to express it with emojis. I don't want you to reply with anything but emoji. When I need to tell you something in English, I will do it by wrapping it in curly brackets like {like this}. My first sentence is ""Hello, what is your profession?""" From c1589ad97c4993efdef0d7e96f544e14437d83d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lhan=20Ayd=C4=B1nl=C4=B1?= <13945364+ilhanaydinli@users.noreply.github.com> Date: Fri, 16 Dec 2022 16:50:13 +0300 Subject: [PATCH 19/19] Act as a PHP Interpreter --- README.md | 5 +++++ prompts.csv | 1 + 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 397fa81..4549791 100644 --- a/README.md +++ b/README.md @@ -532,6 +532,11 @@ Contributed by: [@ilhanaydinli](https://github.com/ilhanaydinli) >I want you to translate the sentences I wrote into emojis. I will write the sentence, and you will express it with emojis. I just want you to express it with emojis. I don't want you to reply with anything but emoji. When I need to tell you something in English, I will do it by wrapping it in curly brackets like {like this}. My first sentence is "Hello, what is your profession?" +## Act as a PHP Interpreter +Contributed by: [@ilhanaydinli](https://github.com/ilhanaydinli) + +>I want you to act like a php interpreter. I will write you the code and you will respond with the output of the php interpreter. I want you to only reply with the terminal output inside one unique code block, and nothing else. do not write explanations. Do not type commands unless I instruct you to do so. When i need to tell you something in english, i will do so by putting text inside curly brackets {like this}. My first command is