-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
155 lines (148 loc) · 5.7 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Me - Anuraag Yachamaneni</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta
name="description"
content="Anuraag Yachamaneni's Corner of the Web"
/>
<meta name="author" content="Anuraag Yachamaneni" />
<meta
name="keywords"
content="Anuraag Yachamaneni DCHacks Purdue Anuraagy"
/>
<meta
name="google-site-verification"
content="FRB7FyPFjBi_tuxfCY8lbpQHv4Y1OMnL0fLe3rY2F5E"
/>
<meta name="web_author" content="Anuraag Yachamaneni" />
<!-- Essential META Tags -->
<meta property="og:title" content="Anuraag Yachamaneni" />
<meta property="og:description" content="My little corner of the web." />
<meta property="og:image" content="http://anuraag.me/assets/img/meta.jpg" />
<meta property="og:url" content="http://anuraag.me" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="http://anuraag.me/assets/img/meta.jpg" />
<!-- Non-Essential, But Recommended -->
<meta property="og:site_name" content="Anuraag Yachamaneni" />
<meta name="twitter:image:alt" content="Anuraag Yachamaneni" />
<link rel="shortcut icon" href="assets/img/favicon.jpg" />
<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",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-103499587-1", "auto");
ga("send", "pageview");
</script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"
integrity="sha256-zmfNZmXoNWBMemUOo1XUGFfc0ihGGLYdgtJS3KCr/l0="
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Exo:300,400,500,700&display=swap"
rel="stylesheet"
/>
<link href="assets/css/styles.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="left-container"></div>
<div class="right-container animated fadeInRight about-right-container">
<div class="content">
<div class="navbar">
<div class="nav-left animated tada delay-1s">
<a href="/">👋🏽</a>
</div>
<div class="nav-right">
<a class="navbar-link" href="/about">About</a>
<a class="navbar-link" href="/projects">Projects</a>
<!-- <a class="navbar-link" href="http://writing.anuraag.me">Writing</a>
<a class="navbar-link" href="https://builttolast.fm">Podcast</a> -->
</div>
</div>
<div class="about">
<h1 class="about-title">About Me</h1>
<p class="about-text">
I’m interested in introducing technology to archaic industries, in
order to align incentives and improve people’s lives. I'm
currently doing this as the Co-Founder & CEO of
<a style="font-weight: bold" href="https://www.meetladder.com"
>Ladder</a
>, an automated recruiting system for construction companies to
find, qualify, and hire top construction workers. <br /><br />
Before Ladder, I spent time at variety of companies, both big and
small, in roles that range product, engineering, and operations. I
also helped launch
<a
href="https://www.insideindianabusiness.com/story/40391879/purdue-students-create-innovation-website"
style="font-weight: bold"
>
various initiatives</a
>
focused on building up an entrepreneurship community at my alma
mater, Purdue University (Class of 2020). <br /><br />
When I’m not working on Ladder, you can either catch me at your
local rec center playing basketball or on Xbox Live playing
Warzone with the homies.
</p>
</div>
<div class="footer about-footer">
<div class="footer-name">
©
<script>
// Get the current year
var date = new Date();
var year = date.getFullYear();
document.write(year);
</script>
Render Labs LLC.
</div>
<div class="footer-links">
<a class="footer-link" href="https://twitter.com/anuraag_y"
><i class="fab fa-twitter"></i>
</a>
<a class="footer-link" href="mailto:[email protected]"
><i class="fa fa-envelope-open-text"></i>
</a>
<a class="footer-link" href="https://linkedin.com/in/anuraagy"
><i class="fab fa-linkedin"></i>
</a>
<a class="footer-link" href="https://github.com/anuraagy"
><i class="fab fa-medium"></i
></a>
</div>
</div>
</div>
</div>
</div>
</body>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css"
/>
<script src="scripts.js"></script>
</html>