-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
127 lines (119 loc) · 5.74 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
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Methods in Computer Science</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding-top: 20px;
}
.container {
max-width: 900px;
margin: auto;
}
h1, h2, h3 {
margin-top: 20px;
}
pre {
background-color: #f4f4f4;
padding: 10px;
border-left: 4px solid #ccc;
overflow-x: auto;
}
.citation {
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 15px;
margin-top: 20px;
}
iframe {
max-width: 100%;
border: none;
}
.author {
font-size: 1.2em;
font-weight: bold;
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<header class="text-center mb-5">
<h1>Research Methods in Computer Science</h1>
<p class="lead">Resources and material from bootcamps conducted on research methods in CS</p>
<p class="author">By Nipun Batra | <a href="https://nipunbatra.github.io">nipunbatra.github.io</a></p>
</header>
<section>
<h2>About</h2>
<p>This repository contains the material used for a 2-hour bootcamp on research methods in CS. I conducted this session twice: in August 2018 at IIT Gandhinagar and July 2017 at IIIT Delhi. Below are resources and video recordings.</p>
<h2>Watch the recording here</h2>
<iframe src="https://www.youtube.com/embed/LoCoplWgvp4" allowfullscreen></iframe>
</section>
<section>
<h2>Citation</h2>
<p>If you use this material, please cite it as follows:</p>
<div class="citation">
@misc{batra2018research_methods,
author = {Nipun Batra},
title = {Research Methods in Computer Science},
year = {2018},
version = {1.0.0},
url = {https://nipunbatra.github.io/CS-Research-Methods-Bootcamp/},
note = {Available at: https://github.com/nipunbatra/CS-Research-Methods-Bootcamp},
abstract = {This repository contains material from a 2-hour bootcamp on research methods in Computer Science, conducted in August 2018 at IIT Gandhinagar and July 2017 at IIIT Delhi. The sessions covered email writing, paper abstracts, scientific thinking, and debugging.}
}
</div>
</section>
<section>
<h2>Contents</h2>
<ol>
<li>
<strong><a href="Email101.pdf">Writing better emails</a></strong>
<p>An example-driven session on writing good emails. The session included examples of poor and good emails, characteristics of a good email, and three hands-on exercises for writing emails to:
<ul>
<li>A potential advisor</li>
<li>Reporting results to an advisor</li>
<li>Seeking help on a research project from someone outside the institute</li>
</ul>
</p>
</li>
<li>
<strong><a href="RM101.pdf">Towards better paper abstracts</a></strong>
<p>Discussed general structuring of research papers, case studies on good paper abstracts, and common scientific flaws visible in abstracts. Included hands-on exercises.</p>
</li>
<li>
<strong><a href="ScientificMethod101.pdf">Thinking like a scientist</a></strong>
<p>Explored the scientific method with examples. Hands-on exercises involved presenting hypotheses, observations, and experimental designs for various problems.</p>
</li>
<li>
<strong><a href="Debug101.pdf">Debugging like a pro</a></strong>
<p>Example-driven session focused on StackOverflow questions and characteristics of good debugging questions. Highlighted strategies to improve debugging efficiency.</p>
</li>
</ol>
</section>
<section>
<h2>Feedback</h2>
<p>The average feedback for the sessions was approximately <strong>9/10</strong>. Below are some subjective comments from participants:</p>
<blockquote class="blockquote">
<p>"The presentations were excellent. The hard work on making these slides was clearly visible. Also, the way the sessions were presented in the class was good."</p>
</blockquote>
<blockquote class="blockquote">
<p>"Dr. Nipun Batra had given a good talk. I would like to thank him for giving his valuable time and for sharing lots of experiences which will help us a lot."</p>
</blockquote>
<blockquote class="blockquote">
<p>"Relating with Real-World examples was the best part of the presentation."</p>
</blockquote>
</section>
<footer class="text-center mt-5">
<p>© 2024 Research Methods in CS | <a href="https://github.com">GitHub Repository</a></p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>