Skip to content

Commit 3ed17f5

Browse files
Initial website setup for PhD research showcase
0 parents  commit 3ed17f5

4 files changed

Lines changed: 460 additions & 0 deletions

File tree

Git_연동.txt

Whitespace-only changes.

README.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# GitHub Pages Setup Instructions
2+
3+
## Step-by-Step Guide to Create Your PhD Research Website
4+
5+
### What You Have Now
6+
I've created template files in: `e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\`
7+
- `index.html` - Main webpage structure
8+
- `styles.css` - Website styling and design
9+
- `README.md` - This instruction file
10+
11+
### Step 1: Create Your GitHub Pages Repository
12+
1. Go to GitHub.com and sign in
13+
2. Create a new repository named: `[your-username].github.io`
14+
- For example: `ndolphin-github.github.io`
15+
- Make sure it's PUBLIC
16+
- Initialize with README
17+
18+
### Step 2: Copy Files to Local Git Directory
19+
1. Clone your GitHub Pages repository to your local machine:
20+
```cmd
21+
cd E:\Git_page_source
22+
git clone https://github.com/ndolphin-github/ndolphin-github.github.io.git
23+
cd ndolphin-github.github.io
24+
```
25+
26+
2. Copy the template files from this folder to your git repository:
27+
```cmd
28+
copy "e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\index.html" .
29+
copy "e:\Second WorkSpace\Topic3\DIGIT_simulation\git_page_templates\styles.css" .
30+
```
31+
32+
### Step 3: Customize Your Content
33+
Edit the `index.html` file and replace:
34+
- "Your Name" with your actual name
35+
- "your.email@university.edu" with your email
36+
- "Your University Name" with your university
37+
- Add your actual research descriptions
38+
- Add your real publications
39+
- Update social media links
40+
41+
### Step 4: Upload to GitHub
42+
```cmd
43+
git add .
44+
git commit -m "Initial website setup"
45+
git push origin main
46+
```
47+
48+
### Step 5: Enable GitHub Pages
49+
1. Go to your repository on GitHub
50+
2. Click Settings → Pages
51+
3. Source: Deploy from branch
52+
4. Branch: main
53+
5. Save
54+
55+
### Step 6: View Your Website
56+
Your site will be available at: `https://ndolphin-github.github.io`
57+
(It may take 5-10 minutes to become active)
58+
59+
### Tips for Customization:
60+
1. **Add Images**: Create an `images` folder and add photos
61+
2. **Update Research**: Replace placeholder text with your actual research
62+
3. **Add Publications**: Include real paper titles, journals, and links
63+
4. **Styling**: Modify `styles.css` to change colors and layout
64+
65+
### File Structure You Need:
66+
```
67+
your-repository/
68+
├── index.html
69+
├── styles.css
70+
├── images/ (optional)
71+
│ ├── profile.jpg
72+
│ └── research_diagram.png
73+
└── README.md
74+
```
75+
76+
### Next Steps:
77+
1. Test locally by opening `index.html` in a web browser
78+
2. Customize the content with your actual information
79+
3. Upload to GitHub following the steps above
80+
4. Share your new website URL!

index.html

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
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>Your Name - PhD Research</title>
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<nav>
12+
<ul>
13+
<li><a href="#home">Home</a></li>
14+
<li><a href="#research">Research</a></li>
15+
<li><a href="#publications">Publications</a></li>
16+
<li><a href="#contact">Contact</a></li>
17+
</ul>
18+
</nav>
19+
</header>
20+
21+
<main>
22+
<section id="home">
23+
<h1>Your Name</h1>
24+
<h2>PhD Research Overview</h2>
25+
<p>Brief introduction about yourself and your research focus in tactile sensing and robotics.</p>
26+
<div class="hero-image">
27+
<!-- You can add a profile photo or research image here -->
28+
</div>
29+
</section>
30+
31+
<section id="research">
32+
<h2>Research Topics</h2>
33+
<div class="research-grid">
34+
<div class="research-item">
35+
<h3>Topic 1: DIGIT Sensor Simulation</h3>
36+
<p>Development of tactile sensor simulation using SOFA framework for robotic applications. This research focuses on creating realistic haptic feedback systems and contact detection mechanisms.</p>
37+
<ul>
38+
<li>FEM simulation with SOFA</li>
39+
<li>Tactile data processing</li>
40+
<li>Neural network integration</li>
41+
</ul>
42+
</div>
43+
<div class="research-item">
44+
<h3>Topic 2: Perception Networks</h3>
45+
<p>Machine learning approaches for tactile perception and object recognition using deep neural networks.</p>
46+
<ul>
47+
<li>U-Net architecture for tactile data</li>
48+
<li>Data preprocessing techniques</li>
49+
<li>Real-time inference systems</li>
50+
</ul>
51+
</div>
52+
<div class="research-item">
53+
<h3>Topic 3: Rendering Networks</h3>
54+
<p>Advanced rendering techniques for tactile sensor visualization and simulation environments.</p>
55+
<ul>
56+
<li>Image reconstruction</li>
57+
<li>Contact mask generation</li>
58+
<li>Delta image processing</li>
59+
</ul>
60+
</div>
61+
</div>
62+
</section>
63+
64+
<section id="publications">
65+
<h2>Publications & Achievements</h2>
66+
<div class="publications-list">
67+
<div class="publication-item">
68+
<h4>Conference Papers</h4>
69+
<ul>
70+
<li>Paper Title 1 - Conference Name (Year)</li>
71+
<li>Paper Title 2 - Conference Name (Year)</li>
72+
</ul>
73+
</div>
74+
<div class="publication-item">
75+
<h4>Journal Articles</h4>
76+
<ul>
77+
<li>Journal Paper 1 - Journal Name (Year)</li>
78+
<li>Journal Paper 2 - Journal Name (Year)</li>
79+
</ul>
80+
</div>
81+
<div class="publication-item">
82+
<h4>Projects & Code</h4>
83+
<ul>
84+
<li><a href="https://github.com/ndolphin-github/DIGIT_simulation" target="_blank">DIGIT Sensor Simulation</a></li>
85+
<li>Other research projects...</li>
86+
</ul>
87+
</div>
88+
</div>
89+
</section>
90+
91+
<section id="contact">
92+
<h2>Contact Information</h2>
93+
<div class="contact-info">
94+
<p><strong>Email:</strong> your.email@university.edu</p>
95+
<p><strong>GitHub:</strong> <a href="https://github.com/ndolphin-github" target="_blank">ndolphin-github</a></p>
96+
<p><strong>LinkedIn:</strong> your-linkedin-profile</p>
97+
<p><strong>University:</strong> Your University Name</p>
98+
</div>
99+
</section>
100+
</main>
101+
102+
<footer>
103+
<p>&copy; 2025 Your Name. All rights reserved.</p>
104+
</footer>
105+
</body>
106+
</html>

0 commit comments

Comments
 (0)