Skip to content

Commit 75a4e94

Browse files
Merge and setup PhD research website
2 parents 3ed17f5 + e17bc81 commit 75a4e94

2 files changed

Lines changed: 38 additions & 72 deletions

File tree

Git_연동.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
cd E:\Git_page_source && git status
2+
3+
cd E:\Git_page_source && git init
4+
5+
cd E:\Git_page_source && git add .
6+
7+
cd E:\Git_page_source && git commit -m
8+
9+
cd E:\Git_page_source && git remote add origin https://github.com/ndolphin-github/ndolphin-github.github.io.git
10+
11+
cd E:\Git_page_source && git branch -M main
12+
13+
cd E:\Git_page_source && git push -u origin main

README.md

Lines changed: 25 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,33 @@
1-
# GitHub Pages Setup Instructions
1+
# Taehwa Hong - PhD Research Portfolio
22

3-
## Step-by-Step Guide to Create Your PhD Research Website
3+
## PhD Research Website
44

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
5+
This repository contains the source code for my PhD research portfolio website showcasing my work in tactile sensing and robotics.
106

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
7+
**Website URL:** https://ndolphin-github.github.io
178

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
9+
### Research Areas:
10+
- DIGIT Sensor Simulation with SOFA Framework
11+
- Tactile Perception Networks
12+
- Neural Network-based Rendering for Tactile Sensors
6413

65-
### File Structure You Need:
14+
### File Structure:
6615
```
67-
your-repository/
68-
├── index.html
69-
├── styles.css
70-
├── images/ (optional)
71-
│ ├── profile.jpg
72-
│ └── research_diagram.png
73-
└── README.md
16+
├── index.html # Main webpage
17+
├── styles.css # Website styling
18+
└── README.md # This file
7419
```
7520

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!
21+
### Technologies Used:
22+
- HTML5 & CSS3
23+
- Responsive Web Design
24+
- GitHub Pages
25+
26+
### To Update the Website:
27+
1. Edit the files locally
28+
2. Commit and push changes:
29+
```cmd
30+
git add .
31+
git commit -m "Update content"
32+
git push origin main
33+
```

0 commit comments

Comments
 (0)