-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
57 lines (54 loc) · 2.23 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<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>📃 LONEWS</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="container">
<nav class="nav">
<p class="logo">📃 LONEWS</p>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="https://github.com/maqsudcoder">Github</a></li>
</ul>
</nav>
<article class="blog">
<h1 class="heading--primary">Make a Discord Chat Bot That Talks Like Rick Sanchez</h1>
<div class="blog-info">
<img src="img/beau-carnes-gravatar.jpeg" alt="Beau Carnes" />
<h3>Beau Carnes</h3>
<span>Software Engineer at freeCodeCamp</span>
</div>
<figure class="figure">
<img src="img/rick.png" alt="Rick Sanchez is talking" />
<figcaption>Rick Sanchez is talking</figcaption>
</figure>
<blockquote>You can use artificial intelligence to make a Discord chat bot talk like your favorite character. It could be a Rick and Morty character, Harry Potter, Peppa Pig, or someone else.</blockquote>
<br />
<p>We just released a tutorial on the <b>freeCodeCamp.org</b> YouTube channel that will teach you how to create a discord chat bot that talks like a character of your choice. You will learn to create the bot in both Python and JavaScript.</p>
<br />
<p><em>Lynn Zheng</em> created this course. Lynn is a software engineer at Salesforce and a hobbyist game developer. She is also a great teacher!</p>
<ul>
<li>Gather data</li>
<li>Train the model</li>
<li>Deploy the model</li>
<li>Build the Discord bot in Python</li>
<li>Build the Discord bot in JavaScript</li>
<li>Keep the bots online</li>
</ul>
<div class="social-share">
<p>Share this post</p>
<a href="https://twitter.com/" class="share">Twitter</a>
<a href="https://facebook.com" class="share">Facebook</a>
<a href="https://www.linkedin.com/" class="share">LinkedIn</a>
</div>
</article>
</div>
<footer class="footer">Copyright © 2027 by 📃 LONEWS.</footer>
</body>
</html>