Skip to content

Commit fae8278

Browse files
committed
home page
1 parent 44c86d5 commit fae8278

1 file changed

Lines changed: 338 additions & 0 deletions

File tree

index.html

Lines changed: 338 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,338 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Research Journey: A PhD Student's Guide</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
}
13+
14+
body {
15+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16+
line-height: 1.6;
17+
color: #333;
18+
background-color: #f8f9fa;
19+
}
20+
21+
.container {
22+
max-width: 1200px;
23+
margin: 0 auto;
24+
padding: 20px;
25+
background-color: white;
26+
box-shadow: 0 0 20px rgba(0,0,0,0.1);
27+
border-radius: 10px;
28+
margin-top: 20px;
29+
margin-bottom: 20px;
30+
}
31+
32+
.header {
33+
text-align: center;
34+
padding: 40px 0;
35+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
36+
color: white;
37+
border-radius: 10px;
38+
margin-bottom: 40px;
39+
}
40+
41+
.header h1 {
42+
font-size: 2.5em;
43+
margin-bottom: 10px;
44+
font-weight: 300;
45+
}
46+
47+
.header p {
48+
font-size: 1.2em;
49+
opacity: 0.9;
50+
}
51+
52+
.author-info {
53+
text-align: center;
54+
padding: 20px;
55+
background-color: #f8f9fa;
56+
border-radius: 8px;
57+
margin-bottom: 30px;
58+
border-left: 4px solid #667eea;
59+
}
60+
61+
.author-info h3 {
62+
color: #667eea;
63+
margin-bottom: 10px;
64+
font-size: 1.3em;
65+
font-weight: 500;
66+
}
67+
68+
.author-info p {
69+
color: #666;
70+
font-size: 1.1em;
71+
margin: 0;
72+
}
73+
74+
.section {
75+
margin-bottom: 40px;
76+
padding: 30px;
77+
background-color: #f8f9fa;
78+
border-radius: 8px;
79+
border-left: 4px solid #667eea;
80+
}
81+
82+
.section h2 {
83+
color: #667eea;
84+
margin-bottom: 20px;
85+
font-size: 1.8em;
86+
font-weight: 400;
87+
}
88+
89+
.preface {
90+
font-size: 1.1em;
91+
line-height: 1.8;
92+
text-align: justify;
93+
}
94+
95+
.preface p {
96+
margin-bottom: 20px;
97+
}
98+
99+
.chapter-table {
100+
width: 100%;
101+
border-collapse: collapse;
102+
margin-top: 20px;
103+
background-color: white;
104+
border-radius: 8px;
105+
overflow: hidden;
106+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
107+
}
108+
109+
.chapter-table th {
110+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
111+
color: white;
112+
padding: 15px;
113+
text-align: left;
114+
font-weight: 500;
115+
}
116+
117+
.chapter-table td {
118+
padding: 15px;
119+
border-bottom: 1px solid #eee;
120+
vertical-align: top;
121+
}
122+
123+
.chapter-table tr:hover {
124+
background-color: #f8f9fa;
125+
}
126+
127+
.chapter-table tr:last-child td {
128+
border-bottom: none;
129+
}
130+
131+
.chapter-index {
132+
width: 80px;
133+
text-align: center;
134+
font-weight: bold;
135+
color: #667eea;
136+
}
137+
138+
.chapter-name {
139+
width: 200px;
140+
font-weight: 500;
141+
}
142+
143+
.chapter-name a {
144+
color: #667eea;
145+
text-decoration: none;
146+
transition: color 0.3s ease;
147+
}
148+
149+
.chapter-name a:hover {
150+
color: #764ba2;
151+
text-decoration: underline;
152+
}
153+
154+
.chapter-summary {
155+
font-size: 0.95em;
156+
line-height: 1.5;
157+
}
158+
159+
.welcome-message {
160+
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
161+
color: white;
162+
text-align: center;
163+
padding: 40px;
164+
border-radius: 10px;
165+
margin: 40px 0;
166+
}
167+
168+
.welcome-message h2 {
169+
color: white;
170+
margin-bottom: 20px;
171+
}
172+
173+
.welcome-message p {
174+
font-size: 1.1em;
175+
margin-bottom: 15px;
176+
}
177+
178+
.github-link {
179+
display: inline-block;
180+
background-color: rgba(255,255,255,0.2);
181+
color: white;
182+
padding: 12px 24px;
183+
border-radius: 25px;
184+
text-decoration: none;
185+
font-weight: 500;
186+
margin-top: 20px;
187+
transition: background-color 0.3s ease;
188+
}
189+
190+
.github-link:hover {
191+
background-color: rgba(255,255,255,0.3);
192+
}
193+
194+
.copyright {
195+
text-align: center;
196+
padding: 30px;
197+
background-color: #2c3e50;
198+
color: white;
199+
border-radius: 8px;
200+
font-size: 0.95em;
201+
line-height: 1.6;
202+
}
203+
204+
.copyright p {
205+
margin-bottom: 10px;
206+
}
207+
208+
.copyright strong {
209+
color: #ecf0f1;
210+
}
211+
212+
.disclaimer {
213+
text-align: center;
214+
padding: 20px;
215+
background-color: #fff3cd;
216+
border: 1px solid #ffeaa7;
217+
border-radius: 8px;
218+
margin: 20px 0;
219+
color: #856404;
220+
font-size: 0.9em;
221+
font-style: italic;
222+
}
223+
224+
@media (max-width: 768px) {
225+
.container {
226+
margin: 10px;
227+
padding: 15px;
228+
}
229+
230+
.header h1 {
231+
font-size: 2em;
232+
}
233+
234+
.chapter-table {
235+
font-size: 0.9em;
236+
}
237+
238+
.chapter-table th,
239+
.chapter-table td {
240+
padding: 10px 8px;
241+
}
242+
}
243+
</style>
244+
</head>
245+
<body>
246+
<div class="container">
247+
<div class="header">
248+
<h1>Research Journey</h1>
249+
<p>A PhD Student's Guide to Navigating the Research Landscape</p>
250+
<p>Author: <strong><a href="https://www.comp.nus.edu.sg/~hebs/"></a>Dr. Bingsheng He</a></strong></p>
251+
</div>
252+
253+
<div class="section">
254+
<h2>Why I Wrote This Book</h2>
255+
<div class="preface">
256+
<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>
257+
258+
<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>
259+
260+
<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>
261+
262+
<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>
263+
264+
<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>
265+
266+
<h3>What You Can Expect</h3>
267+
<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>
268+
</div>
269+
</div>
270+
271+
<div class="section">
272+
<h2>Table of Contents</h2>
273+
<table class="chapter-table">
274+
<thead>
275+
<tr>
276+
<th class="chapter-index">Index</th>
277+
<th class="chapter-name">Chapter Name</th>
278+
<th class="chapter-summary">Summary (within 100 words)</th>
279+
</tr>
280+
</thead>
281+
<tbody>
282+
<tr>
283+
<td class="chapter-index">1</td>
284+
<td class="chapter-name"><a href="#chapter1">The Research Mindset</a></td>
285+
<td class="chapter-summary">Understanding what it truly means to be a researcher in the modern era. This chapter explores the fundamental mindset shifts needed to succeed in academic research, from embracing uncertainty to developing intellectual curiosity and resilience.</td>
286+
</tr>
287+
<tr>
288+
<td class="chapter-index">2</td>
289+
<td class="chapter-name"><a href="#chapter2">Finding Your Research Direction</a></td>
290+
<td class="chapter-summary">Practical strategies for identifying research topics that align with your interests and have potential for impact. Learn how to evaluate problems, assess feasibility, and build expertise in your chosen area.</td>
291+
</tr>
292+
<tr>
293+
<td class="chapter-index">3</td>
294+
<td class="chapter-name"><a href="#chapter3">The Literature Review Process</a></td>
295+
<td class="chapter-summary">Master the art of conducting comprehensive literature reviews. This chapter covers systematic approaches to finding, reading, and synthesizing research papers to build a solid foundation for your work.</td>
296+
</tr>
297+
<tr>
298+
<td class="chapter-index">4</td>
299+
<td class="chapter-name"><a href="#chapter4">Research Methodology and Design</a></td>
300+
<td class="chapter-summary">Learn how to design robust research methodologies that can withstand peer review. Covers experimental design, data collection strategies, and validation techniques across different research paradigms.</td>
301+
</tr>
302+
<tr>
303+
<td class="chapter-index">5</td>
304+
<td class="chapter-name"><a href="#chapter5">Writing and Communication</a></td>
305+
<td class="chapter-summary">Develop skills for clear, compelling academic writing. This chapter addresses paper structure, argumentation, and effective communication of complex ideas to diverse audiences.</td>
306+
</tr>
307+
<tr>
308+
<td class="chapter-index">6</td>
309+
<td class="chapter-name"><a href="#chapter6">Collaboration and Mentorship</a></td>
310+
<td class="chapter-summary">Build productive relationships with advisors, collaborators, and peers. Learn how to navigate different working styles and create mutually beneficial research partnerships.</td>
311+
</tr>
312+
<tr>
313+
<td class="chapter-index">7</td>
314+
<td class="chapter-name"><a href="#chapter7">Dealing with Rejection and Failure</a></td>
315+
<td class="chapter-summary">Develop resilience strategies for handling setbacks in research. Learn how to extract valuable lessons from rejections and use failures as stepping stones to success.</td>
316+
</tr>
317+
<tr>
318+
<td class="chapter-index">8</td>
319+
<td class="chapter-name"><a href="#chapter8">Building Your Research Identity</a></td>
320+
<td class="chapter-summary">Establish your presence in the research community through networking, conference participation, and online engagement. Learn how to build a sustainable research career.</td>
321+
</tr>
322+
</tbody>
323+
</table>
324+
</div>
325+
326+
<div class="welcome-message">
327+
<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>
328+
<a href="https://github.com/Xtra-Computing/raintreebook/issues" class="github-link">Share Your Feedback on GitHub</a>
329+
</div>
330+
331+
<div class="disclaimer">
332+
<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>
333+
<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>
334+
<p><strong>Copyright © 2024 - All rights reserved by the author.</strong></p>
335+
</div>
336+
</div>
337+
</body>
338+
</html>

0 commit comments

Comments
 (0)