-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprof.html
More file actions
121 lines (105 loc) · 5.34 KB
/
Copy pathprof.html
File metadata and controls
121 lines (105 loc) · 5.34 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="abhishek verma, abhishekverma, verma7.com, vermaa, uiuc, phd, computer science, illinois" />
<meta name="description" content="The personal homepage of Abhishek Verma" />
<link rel="icon" href="images/A.png" />
<link rel="stylesheet" href="style.css" type="text/css" />
<title>verma7.com - Abhishek Verma's humble abode</title>
<script language="javascript" type="text/javascript">
function toggle(divId) {
if (document.getElementById(divId).style.display == "none") {
document.getElementById(divId).style.display = 'block';
} else {
document.getElementById(divId).style.display = 'none';
}
}
</script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD4MIB8mT2kteFqj3fgn3srtA8dfS6J2Vk&sensor=false">
</script>
<script type="text/javascript">
function initialize() {
if (!document.getElementById('map-canvas')) return
var map = new google.maps.Map(document.getElementById('map-canvas'), {
center: new google.maps.LatLng(30, -20),
zoom: 2,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infoWindow = new google.maps.InfoWindow();
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'Coordinates',
from: '1PpxInPZ6Sl9LPq2tX-gidwVelkhoGyNIJnGK6Kw'
},
map: map,
styleId: 2,
templateId: 2,
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<!-- Google Tracking -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27282669-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="container">
<h1 align="center"> <a href=".." class="header"> Abhishek Verma </a> </h1>
<div class="topLinks">
<span> <a class="linkSpan" href=".">HOME</a></span>
<span> <a class="linkSpan" href="pub.html">PUBLICATIONS</a></span>
<span> <a class="linkSpan" href="prof.html">WORK EXPERIENCE</a></span>
</div>
<div class="textContainer">
<br/>
<h2 style="display:inline"> Teach For India, Pune</h2>
<h3 style="display:inline"> (April 2015 – June 2015)</h3>
<div class="desc">
As a teaching fellow, learnt about lesson planning and pedagogy during training. Taught 7th to 10th grades as a 2015 part of the Teach for India fellowship.
</div>
<h2 style="display:inline"> Google, Mountain View</h2>
<h3 style="display:inline"> (Feb 2013 – Nov 2014)</h3>
<div class="desc">
Worked as a Software Engineer on designing, implementing and analyzing the cluster scheduling infrastructure at Google as part of Borg/Omega infrastructure team. Published a research paper summarizing the Borg system architecture and features, important
design decisions and a quantitative analysis of some of its policy decisions.
</div>
<h2 style="display:inline"> Google, Mountain View</h2>
<h3 style="display:inline"> (May 2012 – August 2012)</h3>
<div class="desc">
Interned in the cluster infrastructure team with John Wilkes. Worked on the scheduling of long running service jobs taking into account the performance and availability requirements.
</div>
<h2 style="display:inline"> Hewlett-Packard Labs, Palo Alto</h2>
<h3 style="display:inline"> (May 2010 – May 2012)</h3>
<div class="desc">
Interned in the Storage and Information Managements Platforms Lab with Lucy Cherkasova and researched on
<a href="http://labs.google.com/papers/mapreduce.html" target="_blank">MapReduce</a> performance modeling. By profiling MapReduce jobs, we built a compact performance model representing their execution. It is used to optimize the overall infrastructure
utility and achieve specified service level objectives.
</div>
<h2 style="display:inline">Yahoo! Champaign</h2>
<h3 style="display:inline"> (June 2009 – August 2009)</h3>
<div class="desc">
Contributed to the design and development of Direct Object Repository Architecture (DORA), which is a high performance, horizontally scalable and reliable object based back-end storage. Specifically, I worked on distributing the meta-data for fault tolerance
and higher availability, wrote a FUSE (Filesystem in User Space) implementation and a connector for the Distributed Filesystem of <a href="http://hadoop.apache.org" target="_blank">Hadoop</a>, the open source MapReduce implementation.
</div>
<h2 style="display:inline"> Google, Bangalore</h2>
<h3 style="display:inline">(May 2007 – July 2007)</h3>
<div class="desc">
Worked on <a href="http://orkut.com" target="_blank">Orkut</a>, an online social networking website. It involved understanding technologies like MapReduce and the distributed file systems, collecting data for research on Orkut and developing new features.
</div>
<br style="clear:both" />
</div>
</div>
</body>
</html>