-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
318 lines (274 loc) · 12.3 KB
/
index.html
File metadata and controls
318 lines (274 loc) · 12.3 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Journey: A PhD Student's Guide</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
border-radius: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.header {
text-align: center;
padding: 40px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 10px;
margin-bottom: 40px;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
font-weight: 300;
}
.header p {
font-size: 1.2em;
opacity: 0.9;
}
.author-info {
text-align: center;
padding: 20px;
background-color: #f8f9fa;
border-radius: 8px;
margin-bottom: 30px;
border-left: 4px solid #667eea;
}
.author-info h3 {
color: #667eea;
margin-bottom: 10px;
font-size: 1.3em;
font-weight: 500;
}
.author-info p {
color: #666;
font-size: 1.1em;
margin: 0;
}
.section {
margin-bottom: 40px;
padding: 30px;
background-color: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #667eea;
}
.section h2 {
color: #667eea;
margin-bottom: 20px;
font-size: 1.8em;
font-weight: 400;
}
.preface {
font-size: 1.1em;
line-height: 1.8;
text-align: justify;
}
.preface p {
margin-bottom: 20px;
}
.chapter-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.chapter-table th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px;
text-align: left;
font-weight: 500;
}
.chapter-table td {
padding: 15px;
border-bottom: 1px solid #eee;
vertical-align: top;
}
.chapter-table tr:hover {
background-color: #f8f9fa;
}
.chapter-table tr:last-child td {
border-bottom: none;
}
.chapter-index {
width: 80px;
text-align: center;
font-weight: bold;
color: #667eea;
}
.chapter-name {
width: 200px;
font-weight: 500;
}
.chapter-name a {
color: #667eea;
text-decoration: none;
transition: color 0.3s ease;
}
.chapter-name a:hover {
color: #764ba2;
text-decoration: underline;
}
.chapter-summary {
font-size: 0.95em;
line-height: 1.5;
}
.welcome-message {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
text-align: center;
padding: 40px;
border-radius: 10px;
margin: 40px 0;
}
.welcome-message h2 {
color: white;
margin-bottom: 20px;
}
.welcome-message p {
font-size: 1.1em;
margin-bottom: 15px;
}
.github-link {
display: inline-block;
background-color: rgba(255,255,255,0.2);
color: white;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: 500;
margin-top: 20px;
transition: background-color 0.3s ease;
}
.github-link:hover {
background-color: rgba(255,255,255,0.3);
}
.copyright {
text-align: center;
padding: 30px;
background-color: #2c3e50;
color: white;
border-radius: 8px;
font-size: 0.95em;
line-height: 1.6;
}
.copyright p {
margin-bottom: 10px;
}
.copyright strong {
color: #ecf0f1;
}
.disclaimer {
text-align: center;
padding: 20px;
background-color: #fff3cd;
border: 1px solid #ffeaa7;
border-radius: 8px;
margin: 20px 0;
color: #856404;
font-size: 0.9em;
font-style: italic;
}
@media (max-width: 768px) {
.container {
margin: 10px;
padding: 15px;
}
.header h1 {
font-size: 2em;
}
.chapter-table {
font-size: 0.9em;
}
.chapter-table th,
.chapter-table td {
padding: 10px 8px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Research Journey</h1>
<p>A PhD Student's Guide to Navigating the Research Landscape</p>
<p>Author: <strong><a href="https://www.comp.nus.edu.sg/~hebs/"></a>Dr. Bingsheng He</a></strong></p>
</div>
<div class="section">
<h2>Why I Wrote This Book</h2>
<div class="preface">
<p>Almost every undergraduate considering a PhD faces uncertainty. You wonder if you're truly suited for research and whether you can commit several years to such a path. Once in a PhD program, the questions change form: How can I lower research risks? Is there a methodology that leads to impactful work? How do I find the right research topic? How can I avoid paper rejections?</p>
<p>It is with these questions in mind that I decided to write this book. I want to share my reflections to help new researchers take fewer detours and avoid pitfalls that make the journey unnecessarily painful. Of course, I don't claim to provide a perfect recipe for success—because in research, a "silver bullet" simply doesn't exist.</p>
<p>One size never fits all. Every person is different, every research direction has its own rhythm, and each field comes with its own culture and challenges. While there are methodologies and best practices that can guide you, they must always be adapted to your personal situation.</p>
<p>Over the years, one idea has become particularly important to me: research is less about chasing the "optimal" strategy and more about avoiding the worst mistakes. This is similar to systems design—we rarely aim for a perfect solution because such ideals often don't exist or are unstable. Instead, we focus on robustness: preventing failures, surviving unexpected conditions, and ensuring reliable performance under many scenarios.</p>
<p>This book is not about giving you a guaranteed roadmap to success. Rather, it's about sharing reflections, stories, and lessons that I hope will help you navigate research life with a clearer mind. If you can sidestep even a few of the big traps I'll describe, you'll already be in a much stronger position to grow into the researcher you aspire to become.</p>
<h3>What You Can Expect</h3>
<p>My goal is to share common traps I've seen students fall into, recurring patterns, and lessons learned through my own journey and mentoring others. Research will never be effortless—there will always be challenges, setbacks, and rejections. But by preparing yourself, recognizing patterns, and adopting the right mindset, you can make the road more manageable and turn your PhD journey into an experience that is not only survivable, but deeply rewarding.</p>
</div>
</div>
<div class="section">
<h2>Table of Contents</h2>
<table class="chapter-table">
<thead>
<tr>
<th class="chapter-index">Index</th>
<th class="chapter-name">Chapter Name</th>
<th class="chapter-summary">Summary</th>
</tr>
</thead>
<tbody>
<tr>
<td class="chapter-index">0</td>
<td class="chapter-name"><a href="https://docs.google.com/document/d/1HiFF9NFJarE1D39uioxvOi8lMh0E_Dx5skmrnffP-1I/edit?usp=drive_link" target="_blank">Preface</a></td>
<td class="chapter-summary">A reflective guide for aspiring researchers to navigate uncertainty, avoid common pitfalls, and build a meaningful, resilient PhD journey.</td>
</tr>
<tr>
<td class="chapter-index">1.1</td>
<td class="chapter-name"><a href="https://docs.google.com/document/d/1dL_0wS5fJs9NiIlOYGJuh22k8dazc7pbYHq3iXquzn4/edit?usp=drive_link" target="_blank">Why Ph.D.</a></td>
<td class="chapter-summary">A guide to deciding on a PhD: reject weak motives, embrace independence and resilience, build deep foundations, seek mentorship, and prioritize depth over volume. Includes a four-year undergrad prep plan, key “don’ts,” application strategy, and reflective exercises.</td>
</tr>
<tr>
<td class="chapter-index">1.2</td>
<td class="chapter-name"><a href="https://docs.google.com/document/d/157WKVehFn42rRV8FLN9WkaeU5-HOyF-XHmWc6bDCn9o/edit?usp=sharing" target="_blank">Guideline for Visiting Students and Interns in Our Research Group</a></td>
<td class="chapter-summary">Comprehensive guidance for visiting students and interns—covering preparation, research execution, milestones, engagement, and professional conduct—to ensure productive visits and meaningful outcomes.</td>
</tr>
<tr>
<td class="chapter-index">1.3</td>
<td class="chapter-name"><a href="https://docs.google.com/document/d/1dL_0wS5fJs9NiIlOYGJuh22k8dazc7pbYHq3iXquzn4/edit?usp=drive_link" target="_blank">Guidelines for Undergraduate and Master Projects</a></td>
<td class="chapter-summary">Structured guidance for undergraduate and master’s projects, covering submission requirements, execution workflow, timelines, and best practices for impactful outcomes.</td>
</tr>
</tbody>
</table>
</div>
<div class="welcome-message">
<p>Your feedback is invaluable to me. If you have suggestions, questions, or would like to share your own experiences, please don't hesitate to reach out through GitHub Issues.</p>
<a href="https://github.com/Xtra-Computing/raintreebook/issues" class="github-link">Share Your Feedback on GitHub</a>
</div>
<div class="disclaimer">
<p><strong>Disclaimer:</strong> The opinions expressed in this book belong to the author himself and do not reflect the position of his employer.</p>
<p><strong>Copyright Notice</strong> This work is distributed for research and educational purposes only. You are free to share, distribute, and use this content for non-commercial research purposes, provided that you attribute the work to the author. For commercial use or any other purposes not covered by this license, please contact the author for permission.</p>
<p><strong>Copyright © 2025 - All rights reserved by the author.</strong></p>
</div>
</div>
</body>
</html>