-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
265 lines (235 loc) · 8.03 KB
/
Copy pathindex.html
File metadata and controls
265 lines (235 loc) · 8.03 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OS Research Portfolio | GreenIdealist</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #27ae60;
--bg-color: #f4f7f6;
--text-color: #333;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Noto Sans KR', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
}
/* Navigation */
nav {
background: var(--primary-color);
color: var(--white);
padding: 1rem 5%;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav .logo {
font-weight: 700;
font-size: 1.2rem;
letter-spacing: 1px;
}
/* Hero Section */
header {
height: 100vh;
background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
color: var(--white);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 20px;
}
header h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s forwards;
}
header p {
font-size: 1.2rem;
color: #bdc3c7;
max-width: 700px;
margin-bottom: 2rem;
opacity: 0;
animation: fadeInUp 1s 0.3s forwards;
}
/* Projects Section */
.container {
max-width: 1100px;
margin: 80px auto;
padding: 0 20px;
}
.section-title {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
position: relative;
}
.section-title::after {
content: '';
width: 50px;
height: 4px;
background: var(--accent-color);
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-bottom: 4px solid transparent;
cursor: pointer;
}
.card:hover {
transform: translateY(-10px);
border-bottom: 4px solid var(--accent-color);
}
.card i {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 20px;
}
.card h3 {
margin-bottom: 15px;
font-size: 1.4rem;
}
.card p {
font-size: 0.95rem;
color: #666;
}
/* Responsive Button */
.btn {
display: inline-block;
background: var(--accent-color);
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
transition: 0.3s;
font-weight: bold;
}
.btn:hover {
background: #219150;
box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}
/* Footer */
footer {
background: var(--primary-color);
color: #95a5a6;
text-align: center;
padding: 50px 0;
}
/* Animations */
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
header h1 { font-size: 2.2rem; }
.grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<div class="logo">OS RESEARCH LAB</div>
<div>
<a href="https://github.com/GreenIdealist/ComputerOperationSystem" style="color: white; text-decoration: none;">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</nav>
<header>
<h1>Computer Operating System</h1>
<p>컴퓨터 시스템의 핵심 메커니즘을 탐구하고, 프로세스 관리, 메모리 할당 및 파일 시스템의 효율적 설계를 연구합니다.</p>
<a href="#projects" class="btn">프로젝트 보기</a>
</header>
<section class="container" id="projects">
<h2 class="section-title">Core Modules</h2>
<div class="grid">
<div class="card">
<i class="fas fa-microchip"></i>
<h3>Process Management</h3>
<p>CPU 스케줄링 알고리즘(FCFS, SJF, RR) 구현 및 프로세스 동기화 메커니즘을 분석합니다.</p>
</div>
<div class="card">
<i class="fas fa-memory"></i>
<h3>Memory Management</h3>
<p>가상 메모리, 페이징 및 세그먼테이션 기법을 통해 메모리 활용도를 최적화하는 연구를 수행합니다.</p>
</div>
<div class="card">
<i class="fas fa-hdd"></i>
<h3>File Systems</h3>
<p>데이터의 저장 구조와 접근 효율성을 극대화하기 위한 디스크 스케줄링 및 파일 할당 기법입니다.</p>
</div>
<div class="card">
<i class="fas fa-shield-alt"></i>
<h3>System Security</h3>
<p>OS 레벨에서의 자원 보호 및 데드락(Deadlock) 방지 알고리즘을 설계하고 검증합니다.</p>
</div>
</div>
</section>
<section class="container" style="text-align: center; background: #fff; padding: 60px; border-radius: 20px;">
<h2 style="margin-bottom: 20px;">Research Repository</h2>
<p style="margin-bottom: 30px;">본 프로젝트의 전체 소스 코드와 기술 문서는 아래 GitHub 저장소에서 확인하실 수 있습니다.</p>
<a href="https://github.com/GreenIdealist/ComputerOperationSystem" target="_blank" class="btn">
<i class="fab fa-github"></i> View on GitHub
</a>
</section>
<footer>
<p>© 2026 GreenIdealist. All Rights Reserved.</p>
<p>AI 융합공학과 운영체제 연구 포트폴리오</p>
</footer>
<script>
// 간단한 인터렉션: 스크롤 시 카드 애니메이션
const cards = document.querySelectorAll('.card');
const observerOptions = {
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
cards.forEach(card => {
card.style.opacity = '0';
card.style.transform = 'translateY(50px)';
card.style.transition = 'all 0.6s ease-out';
observer.observe(card);
});
</script>
</body>
</html>