-
Notifications
You must be signed in to change notification settings - Fork 0
/
coders-who-changed-the-world.html
261 lines (258 loc) · 10.6 KB
/
coders-who-changed-the-world.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<div id="content">
<nav
class="navbar navbar-expand-lg bg-body-tertiary"
style="position: sticky; top: 0; z-index: 100"
>
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Vishal's Profile</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="./index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Projects
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="./html-css-projects.html"
>Html/Css projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/CPP-Projects"
target="_blank"
>C++ projects</a
>
</li>
<li>
<a class="dropdown-item" href="./javascript-projects.html"
>Javascript projects</a
>
</li>
<li>
<a class="dropdown-item" href="./reactjs-projects.html"
>ReactJs projects</a
>
</li>
<li>
<a class="dropdown-item" href="./nodejs-projects.html"
>NodeJs projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/Java-Projects"
target="_blank"
>Java projects</a
>
</li>
<li>
<a class="dropdown-item" href="./creative-projects.html"
>Creative projects</a
>
</li>
</ul>
</li>
<li class="rightNav">
<form class="formNav" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search all content"
aria-label="Search"
/>
<button class="btn btn-warning" type="submit">Search</button>
<a href="./signup.html"
><button
type="button"
class="btn btn-success"
style="margin-left: 10px"
>
Signup
</button></a
>
<a href="./login.html"
><button
type="button"
class="btn btn-primary"
style="margin-left: 10px"
>
Login
</button></a
>
</form>
</li>
</ul>
</div>
</div>
</nav>
<main id="info_main">
<div id="main_div">
<div class="aloneDiv">
<h1>Dennis Ritchie (1941-2011)</h1>
<img
src="https://www.businesspundit.com/wp-content/uploads/2011/10/ritchie.jpg"
class="home_info3_images"
/>
<p class="para">
An American Computer Scientist, Dennis Ritchie developed one of
the most widely used programming languages – the C language. Born
in Bronxville, New York, in 1941, he graduated in physics and
applied mathematics from Harvard University. While working at Bell
Laboratories, he met Ken Thompson, and together they built a
multi-tasking, multi-user operating system, which we know as UNIX.
They built it as an alternative to the batch processing systems
that ran on only one type of hardware. Dennis Ritchie’s
contributions to programming and computing spanned four decades,
casting an unforgettable impact across the globe.The C language is
still widely used today to write the software for digital
services. And the UNIX and UNIX-like operating systems pretty much
run the machinery from computers to smartphones. Ritchie died in
the year 2011 but his ideas still live on, as an inspiration for
the modern operating systems design, and for almost every new
programming language out there.
</p>
</div>
<div class="aloneDiv">
<h1>John McCarthy (1927-2011)</h1>
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTF591rgXLJTWEtotbpFExbWvMkw0UmWjHtDA&usqp=CAU"
class="home_info3_images"
/>
<p class="para">
Artificial Intelligence is the buzzword today. We hear talks about
a future with robots, metaverse, etc. all the time. Numerous
products and services have already incorporated AI into their
system. But do you know who formulated this idea for the first
time? It was none other than John McCarthy who coined the term in
1955. His main research involved the formalization of common sense
knowledge. In 1958, McCarthy created the computer programming
language LISP which was primarily used by the AI community.
McCarthy completed a bachelor’s degree in mathematics (1948) from
the California Institute of Technology and a doctorate from
Princeton University later in 1951. Besides founding the Stanford
Artificial Intelligence Lab (SAIL), he also developed ideas about
the processing characteristics of trees in computing. McCarthy
received the A.M Turing Award in 1971 for his contributions to the
field, followed up by the Kyoto Prize (1988), and the National
Medal of Science in 1990.
</p>
</div>
<div class="aloneDiv">
<h1>Bill Gates (1955-present)</h1>
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQd-GlI6L3YUGMc_cIleyfabYjZTpsG02XITg&usqp=CAU"
class="home_info3_images"
/>
<p class="para">
Perhaps the most commonly known name on this thread, Bill Gates
needs no introduction. This American computer programmer and
entrepreneur co-founded Microsoft Corporation- the world’s largest
personal computer software company. Gates wrote his first software
program when he was just 13 years of age, and since then he has
never looked back. In 1975, Gates along with his hometown fellow
Paul Allen developed software for the first microcomputers, using
BASIC. As the project came out successful, Gates dropped out of
Harvard during his junior year and founded Microsoft with Allen.
The microcomputer industry was fresh at that time and Gates built
an early influence by licensing MS-DOS (Operating System) to IBM –
the world’s biggest supplier of computers back then. By 1990, at
the age of 35, Bill Gates had become the ultimate kingpin of the
PC industry. Besides his programming acumen, Gates actively
participates in philanthropy work and is a major influencer in
today’s world.
</p>
</div>
</div>
<button id="topBtn" title="Go to top"><i class="fa-solid fa-arrow-up"></i></button>
</main>
<footer>
<div class="leftSide">
<a href="/">
<img class="footImg" src=".//images/my-avatar.png" />
</a>
<span class="creator">All rights reserved ©2024, Vishal Kumar</span>
</div>
<ul>
<li>
<a href="https://github.com/vishal02527" target="_blank"
><i class="fa-brands fa-github fa-2xl"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/vishal-kumar-8303a3283/"
target="_blank"
><i class="fa-brands fa-linkedin fa-2xl"></i
></a>
</li>
<li>
<a href="https://codepen.io/Vishal-Kumar25" target="_blank"
><i class="fa-brands fa-codepen fa-2xl"></i
></a>
</li>
</ul>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>