-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworks.html
99 lines (93 loc) · 6.38 KB
/
works.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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Elon Musk - Notable Works | Matthew Postel's Famous Person</title>
<script defer src="works.js" type="text/javascript"></script>
<link href="index.css" rel="stylesheet" type="text/css"/>
<link href="works.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="container">
<div id="logo"></div>
<nav id="nav">
<a href="index.html">Home</a>
<a href="achievements.html">Achievements</a>
<a id="current" href="works.html">Notable Works</a>
</nav>
<div id="cover"></div>
<h1 id="header"><a href="https://en.wikipedia.org/wiki/Elon_Musk" target="_blank">Notable Works</a></h1>
<div id="content">
<button class="workExpand" onclick="expand(this.nextElementSibling)">Work #1 - SpaceX</button>
<div id="SpaceX" class="workSection">
<ul>
<li>Elon Musk founded SpaceX in 2002 in order to establish a company that could produce affordable rockets.</li>
<li>SpaceX had a rocky start with several failed missions that nearly resulted in bankruptcy.</li>
<li>The Falcon 1 rocket was the first to reach orbit in 2008.</li>
<li>The Falcon 9 and the Dragon spacecraft replaced the Space Schuttle for flights to the International Space Station.</li>
<li>SpaceX has been developing a fully-reusable rocket known as Starship since 2019.</li>
<li>SpaceX is also in the business of producing satellites.</li>
<li>Starlink is a constellation of satellites that are designed to provide internet access anywhere in the world.</li>
<li>Custom military satellites are also designed and launched for the Space Development Agency for the purpose of missile defense.</li>
<li><a href="https://en.wikipedia.org/wiki/SpaceX" target="_blank">More Info</a></li>
</ul>
</div>
<button class="workExpand" onclick="expand(this.nextElementSibling)">Work #2 - Tesla</button>
<div id="Tesla" class="workSection">
<ul>
<li>Tesla became incorporated in 2003, prior to Elon Musk's involvement.</li>
<li>In 2004, Musk invested $6.4 million and became the majority shareholder, joining the board of directors.</li>
<li>Musk became CEO and product architect in 2008.</li>
<li>A 2009 lawsuit settlement marked Musk as a co-founder (alongside others).</li>
<li>In 2019, Musk legally changed his title from CEO to "Technoking".</li>
<li>Tesla is in the business of developing electric vehicles, including self-driving capabilities.</li>
<li>Tesla's vehicles include cars, trucks, busses, and even semis.</li>
<li><a href="https://en.wikipedia.org/wiki/Tesla,_Inc." target="_blank">More Info</a></li>
</ul>
</div>
<button class="workExpand" onclick="expand(this.nextElementSibling)">Work #3 - The Boring Company</button>
<div id="BoringCompany" class="workSection">
<ul>
<li>Founded in 2017 for the purpose of constructing tunnels.</li>
<li>Plans for a hyperloop were revealed.</li>
<li>A test tunnel was constructed in Los Angeles.</li>
<li>Two projects have been cancelled.</li>
<li>A tunnel beneath the Las Vegas Convention Center was completed in early 2021.</li>
<li>Construction for a tunnel in Fort Lauderdale, Florida was approved in 2021.</li>
<li>The Boring Company has sold merchandise such as t-shirts, hats, <b>FLAMETHROWERS</b>, and cologne that smells like <b>BURNT HAIR</b>.</li>
<li><a href="https://en.wikipedia.org/wiki/The_Boring_Company" target="_blank">More Info</a></li>
</ul>
</div>
<button class="workExpand" onclick="expand(this.nextElementSibling)">Work #4 - OpenAI</button>
<div id="OpenAI" class="workSection">
<ul>
<li>Founded in 2015 as a not-for-profit Artificial Intelligence research company.</li>
<li>Aims to develop a safe and beneficial general artificial intelligence.</li>
<li>Elon Musk left the OpenAI board to avoid conflicts of interest between his roles at OpenAI and Tesla.</li>
<li>Has worked on well-known projects such as: GPT-3, DALL-E, and Tesla Autopilot.</li>
<li><a href="https://en.wikipedia.org/wiki/OpenAI" target="_blank">More Info</a></li>
</ul>
</div>
<button class="workExpand" onclick="expand(this.nextElementSibling)">Work #5 - Twitter</button>
<div id="Twitter" class="workSection">
<ul>
<li>Elon Musk began purchasing shares of Twitter in January of 2022.</li>
<li>Musk hit 5% stake in Twitter by March of 2022.</li>
<li>Musk hit 9% stake in Twitter by April of 2022, making him the largest shareholder.</li>
<li>On the 13th of April, Musk made a $43 billion offer to buy Twitter, launching a takeover bid to buy 100% of Twitter's stock at $54.20 per share.</li>
<li>One week later, Musk secured funding worth $46.5 billion and concluded his bid for approximately $44 billion.</li>
<li>Musk began to back out of the deal, but then changed his mind and followed through in October 2022.</li>
<li>Twitter was bought for $54.20 per share on October 27, 2022.</li>
<li>Musk immediately began renovating the company, firing executives and laying off a significant portion of the company.</li>
<li>Twitter "Blue Check" verification is now an $8 per month subscription fee.</li>
<li><a href="https://en.wikipedia.org/wiki/Acquisition_of_Twitter_by_Elon_Musk" target="_blank">More Info</a></li>
</ul>
</div>
</div>
<div id="footer">
<p>© 2022 - Matthew Postel</p>
</div>
</div>
</body>
</html>