-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (69 loc) · 3.15 KB
/
index.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
<!DOCTYPE html>
<html lang="EN" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Shark Tank Pitch Maker</title>
<meta name="generator" content="pitchmaker" />
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#3badca" />
<meta charset="utf-8" />
<link rel="shortcut icon" type="image/png" href="shark.ico"/>
<link rel="apple-touch-icon" href="shark.ico">
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" type="text/css" href="bullshit.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Nova+Mono&family=Orbitron&display=swap" rel="stylesheet">
<script type="text/javascript">
function registerServiceWorker() {
// register sw script in supporting browsers
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js', { scope: '/bullshit/' }).then(() => {
console.log('Service Worker registered successfully.');
}).catch(error => {
console.log('Service Worker registration failed:', error);
});
}
}
</script>
</head>
<body>
<div class="divWrapper">
<h1>SHARK TANK Pitch Maker</h1>
<h3>(now infused with ChatGPT)</h3>
<p>Making a Pitch deck? Want to impress a client/VC/investor/LT with serious sounding technobabble? With the help of the Pitch maker, you can click your worries away.<br />
Click the buttons below and get inspired by the farrago of buzzword confabulations.
<ul>
<li><strong>Make Bullshit</strong> - Create a simple keyword combination that you can use directly.</li>
<li><strong>Deluxe BS</strong> - Leverage the power of ChatGPT and generate a snippet of inscrutable jargon.</li>
</ul>
</p>
<br />
<div class="btnContainer">
<div class="btnGen" id="btnGenBS" onclick="mkBull()">Make Bullshit!</div>
<div class="btnGen" id="btnGenGPT" onclick="deluxeBS()">Deluxe BS! (Coming soon)</div>
</div>
<div class="bordered">
<p class="sentence">Our Vision is to:</p>
<div class="wrapper_container">
<div class="wrapper_mask" >
<div id="actionbox" class="container recipe_if"></div>
</div>
<div class="wrapper_mask" >
<div id="adjectivebox" class="container recipe_if" ></div>
</div>
<div class="wrapper_mask" >
<div id="nounbox" class="container recipe_if" ></div>
</div>
</div>
</div>
<div class="gpt_container">
<p class="sentence">Deluxe version:</p>
<div class="sentence" id="gptfied">The GPT generated text will appear here.</div>
</div>
<div class="footer">This is a satire. Not officially affiliated with Shark Tank or Shark Tank India. Source code on <a href="https://github.com/Ajaxfire/bullshit" target="_blank" rel="noopener">Github</a>.</div>
</div>
<script type="text/javascript" src="jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="bullshit.js"></script>
<script type="text/javascript">registerServiceWorker();</script>
</body>
</html>