forked from ChatGPT3/chatgpt3.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemoji-website.html
94 lines (80 loc) · 4.46 KB
/
emoji-website.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HS1CLSVM1Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HS1CLSVM1Z');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Chrome extension using ChatGPT</title>
<meta name="keywords"
content="chatgpt explained,chatgpt coding,chatgpt trading bot,chatgpt how to use,chatgpt examples,chatgpt api,OpenAI ChatGPT Tutorial for Beginners,openai chatbot gpt,chatgpt programming,chatGPT,openai chatgpt,ai chatbot,how to use openai,openai playground,openai codex,openai chatbot,openai,GPT-3,openai vs deepmind,openai discord bot,what is open ai,playground openai,chat openai,how to use openai playground,coding with chatgpt,chatgpt tutorial,midjourney ai" />
<meta name="description"
content="This tutorial gives a beginner's demo of how to access and use OpenAI ChatGPT. It's a Tutorial for chatGPT Beginners. how to use chat gpt. and chat gpt tutorial.">
<style>
body {
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
p {
background-color: whitesmoke;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
}
a {
color: blue;
text-decoration: none;
}
h2 {
background-color: lightskyblue;
}
</style>
</head>
<body>
<h1>Build a Website using ChatGPT in 1 minute</h1>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FLoUEzG4ByU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<p>
In this video, we will build a full stack web app using chat gpt. </p>
<p>We are gonna build a random emoji generator website.</p>
<p>Every time you visit this website ,it will show you a different emoji.</p>
<p>Tech stack is HTML, CSS , Python and Flask server.</p>
<p>Then we will deploy this website to the cloud.</p>
<p>Today, we will use 'pythonanywhere'.</p>
<p>At last, this website is live and available to all of you at:</p>
<a href="https://emoji.pythonanywhere.com" style="font-size:20px;">https://emoji.pythonanywhere.com</a>
<p>
Try building something on your own.
</p>
<h2>
What is ChatGPT?
</h2>
<p>
ChatGPT is a new chatbot developed by OpenAI. It is a variant of the GPT-3 model which was specially designed to generate human-like text in response to user inputs. ChatGPT is highly customizable and can be fine-tuned to perform specific tasks or to generate text in a particular style or on a specific topic. Some of its abilities include content creation, writing code, and translating languages instantaneously and with high accuracy, essentially helping us do a large portion of our work.
</p>
<h2>
Can ChatGPT replace the workforce?
</h2>
<p>
Given the huge jump in ability as compared to the previous GPT-2 model and the complexity of problems it can handle, one question begets among everyone – can ChatGPT replace our jobs? We decided to put that to the test using one of the most quantifiable test available – passing a coding assessment. The main objective of this test is to assess the level of programming of ChatGPT against humans.
</p>
<h2>Methodology</h2>
<p>
It is important to note however, that the test was conducted with a LinkedIn skills assessment, and there are many other more elaborated tools out there that can be used to assess one’s programming skill level. Given that it is an MCQ test as well, little to no critical thinking is involved in the test.
</p>
<h2>
Limitations to the Assessment
</h2>
<p>
We put ChatGPT to the test by putting it through a LinkedIn Python skills assessment. The assessment consists of 15 MCQ questions on Python language syntax and concepts, each with a time limit of 90 seconds. The assessment was conducted in real time with ChatGPT processing the prompts. That is to say, the prompts were given to ChatGPT while the assessment was ongoing, and we only proceeded after ChatGPT had provided an answer. Both the questions and the answer options were keyed into the ChatGPT’s chat box in its entirety and without changes, with the occasional prompt of specifying the language to be in Python 3.5.
</p>
</body>
</html>