-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
323 lines (215 loc) · 10.9 KB
/
about.html
File metadata and controls
323 lines (215 loc) · 10.9 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<!-- Head tag -->
<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" />
<link rel="apple-touch-icon" sizes="57x57" href="/images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png">
<!--Description-->
<meta name="description" content="Welcome to my portfolio! I am Prastut, a 20 year old designer.">
<!--Author-->
<meta name="author" content="Prastut Kumar">
<!--Open Graph Title-->
<meta property="og:title" content="About"/>
<!--Open Graph Site Name-->
<meta property="og:site_name" content="Prastut Kumar"/>
<!--Page Cover-->
<meta property="og:image" content="undefined"/>
<!-- Title -->
<title>About - Prastut Kumar</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="/sass/main.css">
<link rel="stylesheet" href="/galleria/themes/classic/galleria.classic.css">
<script src="/js/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/galleria/1.4.5/galleria.min.js"></script>
<!--[if lt IE 8]>
<script src="/js/ie/html5shiv.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="/sass/ie8.css">
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" href="/sass/ie9.css">
<![endif]-->
<!-- Gallery -->
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-82835468-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="wrapper">
<!-- Menu -->
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo -->
<a href="/" class="logo">
<span class="symbol"><img src="/images/guy.jpg" alt="" /></span><span class="title">Prastut Kumar</span>
</a>
<!-- Nav -->
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
</ul>
</nav>
</div>
</header>
<!-- Menu -->
<nav id="menu">
<h2>Menu</h2>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
<li>
<a href="https://drive.google.com/file/d/0B2cR2veLdnt3N2JWUWxPaWRld3c/view?usp=sharing">Resume</a>
</li>
<li>
<a href="/archives">Archives</a>
</li>
</ul>
</nav>
<div id="main">
<div class="inner">
<!-- Main Content -->
<h1>About</h1>
<!-- Gallery -->
<!-- Content -->
<style>
blockquote p{
margin: 0;
}
</style>
<span class="image main">
<img src="/images/about_avatar.jpg" alt="">
</span>
<p>
I'm a 20 year-old product designer and front-end engineer studying computer science at Vellore Institute of Technology, India. Born and brought up in Delhi, my high school and undergrad have been a cultural roller coaster.
</p>
<p>
As a child I loved tinkering with computers. As I progressed through high school, I realized I really liked beautifully designed things. My occasional hobby, when I sat in the backseat of my father's car, was to either spot new cars (well designed) and tell my parents about them excitedly, or notice billboards and comment on the design intricacies. I felt really proud when I started making PowerPoint presentations look really neat and minimalistic, and sometimes they turned out to better than the content of the PowerPoint. That time, I wanted to prove myself to my friends so one thing led to another, and armed with a pirated copy of Adobe Creative Suite, I started learning design.
</p>
<p>
At VIT, I realized that design is my calling and this is something I want to take up as a career. <br>
Questions were raised by family and friends such as:
<ul>
<li>
<i>"We wasted so much money for your computer science education, and you want to do design?" </i>
</li>
<li>
<i>"Does Indian market even have jobs in design?"</i>
</li>
<li>
<i>"Design is for girls!"</i>
</li>
</ul>
Saddened by this mentality coming from my closest, I decided to pursue design independently under the confines of my computer science major. I realized that my background in computer science made designing for Internet much more interesting and practical. After that I went onto do a couple of internships: all at the intersection of design and technology, spoke at various events and conferences and became much more confident in my abilities as a designer. Though I lack formal design education, I try to compensate them with dev skills.
</p>
<p>
If you'd like to take a look, here's my <a href="https://drive.google.com/file/d/0B2cR2veLdnt3N2JWUWxPaWRld3c/view?usp=sharing" target="_blank">résumé</a>. I write about design, entrepreneurship and hacking your undergrad education on <a href="https://www.quora.com/profile/Prastut-Kumar-1" target="_blank" rel="external">Quora.</a> I'd love to hear from you, so please do get in touch!
</p>
<h2>Theme</h2>
<p>
I am building my portfolio on top of Hexo's implementation of
<a href="https://github.com/klugjo/hexo-theme-phantom" target="_blank">Phantom</a>
by
<a href="https://github.com/klugjo" target="_blank">@klugjo</a>,
though I have tailored it to suit my needs. I am using Proxima Nova as the primary typeface for headings and content. Fontawesome is being used for icons.
</p>
<p>
I moved to this combination because it was more robust and automated, and I was much more comfortable writing posts in Markdown (rather than writing it in clunky HTML). Heavy inspiration is drawn from my old <a href="https://prastut.github.io/legacy" target="blank">portfolio design</a>.
</p><h2>Quotes that I believe in</h2>
<blockquote><p>I have a thumb rule in my life and that is to play the biggest game possible. Rate of learning is the highest in that case.</p>
<footer><strong>Aditya Kumar Nayak</strong><cite>- Mentor</cite></footer></blockquote>
<blockquote><p>You can’t connect the dots looking forward; you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future.</p>
<footer><strong>Steve Jobs</strong><cite>- Ex CEO Apple</cite></footer></blockquote>
<blockquote><p>When something is important enough, you do it even if the odds are not in your favor.</p>
<footer><strong>Elon Musk</strong><cite>- CEO of Tesla & SpaceX</cite></footer></blockquote>
<br><br><br>
<!-- Comments -->
<div>
<hr />
<h3>Comments:</h3>
<div id="disqus_thread">
<noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<section>
<h2>Say Hello!</h2>
<div>
Always up for discussing design and entrepreneurship. <br> I am reachable at kr.prastut@gmail.com.
</div>
</section>
<section>
<h2>Follow</h2>
<ul class="icons">
<li><a href="https://github.com/prastut" class="icon style2 fa-github" target="_blank" ><span class="label">GitHub</span></a></li>
<li><a href="https://www.behance.net/prastutkumar" class="icon style2 fa-behance" target="_blank" ><span class="label">Behance</span></a></li>
<li><a href="https://in.linkedin.com/in/prastut" class="icon style2 fa-linkedin" target="_blank" ><span class="label">LinkedIn</span></a></li>
<li><a href="https://www.facebook.com/prastut.kumar" class="icon style2 fa-facebook" target="_blank" ><span class="label">Facebook</span></a></li>
</ul>
</section>
<ul class="copyright">
<li>© Prastut Kumar
<a href="/about.html"><span class="label">· About</span></a>
<a href="https://drive.google.com/file/d/0B2cR2veLdnt3N2JWUWxPaWRld3c/view?usp=sharing" target="_blank"><span class="label">· Resume</span></a></li>
<a href="/speaking.html"><span class="label">· Speaking</span></a>
</ul>
</div>
</footer>
</div>
<!-- After footer scripts -->
<!-- jQuery -->
<script src="/js/jquery.min.js"></script>
<!-- nProgress -->
<script src="/js/nprogress.js"></script>
<script src="/js/jquery.image-fit-window.js"></script>
<!-- skel -->
<script src="/js/skel.min.js"></script>
<!-- Custom Code -->
<script src="/js/util.js"></script>
<!--[if lte IE 8]>
<script src="/js/ie/respond.min.js"></script>
<![endif]-->
<!-- Custom Code -->
<script src="/js/main.js"></script>
<!-- Disqus Comments -->
<script type="text/javascript">
var disqus_shortname = 'prastutkumar';
(function(){
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
</body>
</html>