-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (108 loc) · 5.32 KB
/
index.html
File metadata and controls
122 lines (108 loc) · 5.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Prafullkumar Tale</title>
<meta name="description" content="Prafullkumar's homepage" />
<meta name="author" content="Prafullkumar Tale" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="common.css" media="all">
<link rel="icon" href="images/favicon.ico" type="image/x-icon" sizes="20x20">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=ABeeZee' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Enriqueta' rel='stylesheet' type='text/css' />
</head>
<body>
<div class="container">
<!-- Header section starts -->
<div class="header-section">
<div>
<div>
<h1><a href="index.html">Prafullkumar Tale</a></h1>
</div>
</div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="misc.html">Misc</a></li>
</ul>
</div>
</nav>
</div>
<!-- Header section ends -->
<!-- Main content starts -->
<div class="row">
<div class="col-sm-8" >
<p style="font-family: 'Enriqueta', sans-serif;
!important;">
Hi, welcome to my webpage.
</p>
<p style="font-family: 'Enriqueta', sans-serif;
!important;">
I am an Assistant Professor at
<a href="https://www.iiserpune.ac.in/" target="_blank">
Indian Institute of Science Education and Research (IISER) Pune, India
</a> in the
<a href="https://www.iiserpune.ac.in/research/department/mathematics" target="_blank">
Department of Mathematics</a>. </p>
<p style="font-family: 'Enriqueta', sans-serif;
!important;"> My primary research area is the design and analysis of
algorithms and corresponding conditional lower bound results.
My main publications are about parameterized algorithms for NP-hard graph problems. </p>
<p style="font-family: 'Enriqueta', sans-serif;
!important;">
I was an Assistant Professor at
<a href="https://www.iiserb.ac.in/" target="_blank">
Indian Institute of Science Education and Research (IISER) Bhopal, India
</a> in
<a href="https://eecs.iiserb.ac.in/" target="_blank">
Electrical Engineering and Computer Science</a> department
from January 2024 till April 2025.
Before that, I was an INSPIRE Faculty Fellow at
<a href="https://www.iiserpune.ac.in" target="_blank">
IISER Pune</a>,
and a Post-Doctoral Researcher at
<a href="https://www.mpi-inf.mpg.de/home/"
target="_blank"> Max-Planck Institute for
Informatics</a> and
<a href="https://cispa.de/en" target="_blank" > CISPA
Helmholtz Center for Information Security</a>,
both hosted by <a href="https://cispa.de/en/people/c01dama/"
target="_blank"> Prof. Daniel Marx</a>.
I have completed my Ph.D. at <a href="https://www.imsc.res.in"
target="_blank">IMSc Chennai </a>
under the supervision
of <a href="https://sites.google.com/view/sakethome/home"
target="_blank"> Prof. Saket Saurabh</a>, and
a 5-year Integrated Degree course in Applied
Mathematics at the <a href="https://www.iitr.ac.in"
target="_blank"> IIT Roorkee</a>.</p>
<p style="font-family: 'Enriqueta', sans-serif;
!important;"> You can find my resume <a href="./docs/Prafullkumar_Tale.pdf" target="_blank"> here </a>
(last updated Nov 2025).</p>
<p style="font-family: 'Enriqueta', sans-serif;
!important;">
My nickname is Pratik, and I prefer it in informal communications.
</p>
</div>
<div class="col-sm-4 homepage-self-img">
<img src="images/2022-informal-portrait.jpeg" alt="Prafullkumar Tale" />
</div>
</div>
<!-- Main content ends -->
<!-- Footer section -->
<footer>
<div class="container-fluid">
<p class="copyright text-muted">Copyright © Prafullkumar Tale</p>
</div>
</footer>
</div>
</body>
</html>