-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab3.html
62 lines (57 loc) · 2.68 KB
/
Lab3.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
<html lang = "en">
<head>
<title>CSC 225: Lab 3</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</head>
<body>
<div class = "container">
<div class="jumbotron">
<h1 class = "display-4"> I really, really, <b>REALLY!!!</b> hate Python!</h1>
<p class = "lead">Everyone these days loves it. But in my opinion, it's absolute garbage! Here's why.</p>
</div>
</div>
<hr/>
<br/>
<div class = "container">
<div class = "row">
<div class = "col-md-6">
<ul class = "list-group" >
<li>A single press of the spacebar will break the entire fucking program!</li>
<li>Every single time I try to run <b><i><u>LITERALLY ANYTHING</u></i></b> in python, I'm told I don't have the right version of <i>insert thing.</i></li>
<li>Even if I then go out and get the things I need, I'm told it's the wrong version</li>
<li>Every single goddamn AI github I download ends up taking up 10-30gb of my precious SSD space as I have to redownload all the same shit all over again</li>
<li>Python is messy, ugly, there are no variable declarations making code hard to read.</li>
<li>I never know what's a built-in function or what's included by what else</li>
<li>Python code is so slow and takes like 20x the runtime of other languages!</li>
<li>Using Python is an exercise in patience. Be prepared to see plenty of <b>THIS</b></li>
</ul>
</div>
<div class = "col-md-6">
<img src = "I HATE PYTHON.png" class = "rounded"/>
</div>
</div>
</div>
<hr/>
<p>For more information, please feel free to head back to my homepage</p>
<nav class="navbar navbar-expand-sm bg-light">
<div class = "container-fluid">
<ul class = "navbar-nav">
<li class = "nav-item">
<a class = "nav-link" href = "https://Parogar.github.io">My Homepage</a>
</li>
</ul>
</div>
</nav>
</div>
<br/>
<p>Kevin Weinberg: 9/24/2024</p>
<hr>
</body>
</html>