-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (111 loc) · 4.78 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>
Chirag M. Shah's Homepage!!
</title>
</head>
<body>
<a href="https://www.facebook.com/chirag7085/" target="_blank">
<img src="chirags.jpg" alt="Chirag M. Shah">
</a>
<div class="topic first">
About me:
<div class="topictext">
Hello, World! I like to <b>design, implement, scale and optimize software to create smarter and reliable systems.</b>
</div>
</div>
<div class="topic">
Education:
<ul>
<li class="topictext">Master of Science in Engineering in Embedded Systems from <a href="http://www.cis.upenn.edu/prospective-students/graduate/embs.php" target="_blank">Univeristy of Pennsylvania.</a> (May' 2017)</li>
<li class="topictext">Bachelor of Engineering in Electronics and Telecommunication from <a href="http://www.djsce.ac.in/"> Dwarkadas J. Sanghvi College of Engineering, Univeristy of Mumbai.</a> (May '2015)</li>
</ul>
</div>
<div class="topic">
Work Experience:
<ul>
<li class="topictext">Currently working with <a href=https://www.apple.com target="_blank">Apple Inc.</a> as a Software Engineer. I work in the CoreDarwin team (under CoreOS). My work involves developing and maintaining some of the frameworks and daemons which are shipped with the operating system. </li>
<li class="topictext">Prior to Apple, I worked with <a href=https://www.rti.com target="_blank">Real-Time Innovations (Sunnyvale, CA)</a> as a Software Engineer.</li>
</ul>
</div>
<div class="topic"> More stuff:
<div>
<ul>
<li class="topictext"><a href="https://chirags27.blogspot.com/"" target="_blank">Blog</a></li>
<li class="topictext"><a href="http://dedos.cis.upenn.edu/" target="_blank">University Research</a></li>
<li class="topictext"><a href="https://www.linkedin.com/in/chirags93" target="_blank"> LinkedIn</a></li>
<li class="topictext"><a href="https://github.com/chirags27" target="_blank">Git</a></li>
<li class="topictext"><a href="mailto:chirags@alumni.upenn.edu" target="_blank">Email : chirags[at]alumni[dot]upenn[dot]edu</a></li>
</ul>
</div>
</div>
<p>
<b>
Techinal Interests: <p id="interests"></p>
</b>
</p>
<p>
<b>
Courses: <p id="courses"></p>
</b>
</p>
<script type="text/javascript">
var allInterests =
[
"Algorithms",
"Distributed Systems",
"Operating Systems",
"System Design and Development",
"Machine Learning",
"Security",
]
var courses =
[
"Operating Systems Desgin and Implementation (CIS 700 - 001) (Best Project Award - PennOS)",
"Internet and Web Systems (CIS 455/555) <a href=\"http:\/\/www.cis.upenn.edu\/~cis455\/hall-of-fame.html\" target=\"_blank\">Google Award 2017</a>",
"Software Systems (CIS 505)",
"Database and Information Systems (CIS 550)",
"Machine Learning (CIS 520)",
"Computer Architecture (CIS 501)",
"Principles of Embedded Computation (CIS 540)",
"Real-Time Embedded Systems (ESE 519)",
"Embedded Software for Life Critical Applications (CIs 541)",
"Software Engineering (CIS 573)"
]
function TimedPrinter(interests, elementID) {
this.interests = interests;
this.count = 1;
this.elementID = elementID;
this.toPrint = ""
this.printStuff = function() {
if (this.count <= this.interests.length) {
this.toPrint += "    " + this.count + ". ==> " + this.interests[this.count - 1] + "<br>";
this.count++;
document.getElementById(this.elementID).innerHTML = this.toPrint;
} else {
clearInterval(this.stop)
}
}
}
var printInterests = new TimedPrinter(allInterests, "interests");
var printCourses = new TimedPrinter(courses, "courses");
printInterests.stop = setInterval(
function () {
printInterests.printStuff()
}
, 300);
printCourses.stop = setInterval(
function() {
printCourses.printStuff()
}
, 300);
</script>
</body>
</html>