-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmisc.html
More file actions
69 lines (64 loc) · 3.51 KB
/
misc.html
File metadata and controls
69 lines (64 loc) · 3.51 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
<!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><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 class="active"><a href="misc.html">Misc</a></li>
</ul>
</div>
</nav>
</div>
<!-- Header section ends -->
<!-- Main content starts -->
<div class="experience">
<div>
<h3>Some Useful Links</h3>
<ul>
<li><a href="http://fpt.wikidot.com" target="_blank"> The Parameterized Complexity Cummunity WiKi</a>
<li><a href="http://cstheory-feed.org/" target="_blank"> Theory of Computing Blog Aggregator</a>
<li><a href="http://www.lel.ed.ac.uk/~gpullum/loopsnoop.html" target="_blank"> Poetic proof </a> that the Halting Problem is undecidable</li>
<li>Compilation of <a href="http://tcsvideos.quora.com/" target="_blank">video lectures</a> and <a href="http://tcsnotes.quora.com/" target="_blank">lecture notes</a> in Theoretical Computer Science by Obinna Okechukwu</li>
<li><a href="http://www.cs.unc.edu/~azuma/hitch4.html" target="_blank"> A computer science graduate school survival guide </a> by by Ronald T. Azuma</li>
<li><a href="http://jmlr.org/reviewing-papers/knuth_mathematical_writing.pdf" target="_blank"> Mathematical Writing</a> by Donald E. Knuth, Tracy Larrabee, and Paul M. Roberts</li>
<li> Eric Demaine talks about how to do research <a href="https://www.youtube.com/watch?v=SMCeyv-QZN4" target="_blank">Video</a></li>
</ul>
</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>