-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·150 lines (119 loc) · 5.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ko-kr">
<head>
<meta name="generator" content="Hugo 0.81.0" />
<meta name="google-site-verification" content="iGuwne5LJzJBBoCxsCg4BhAYCzXlzuvrOufVjQCreyA" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>> /tmp</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="https://jiwonaid.github.io/hugo-theme-console/css/terminal-0.7.1.min.css">
<link rel="stylesheet" href="https://jiwonaid.github.io/hugo-theme-console/css/animate-3.7.2.min.css">
<link rel="stylesheet" href="https://jiwonaid.github.io/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="https://jiwonaid.github.io/index.xml" rel="alternate" type="application/rss+xml" title="> /tmp" />
<meta property="og:title" content="> /tmp" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jiwonaid.github.io/" />
<meta name="twitter:title" content="> /tmp"/>
<meta name="twitter:description" content=""/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav" onclick="focusTerminal()">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="https://jiwonaid.github.io/" class="no-style ">> /tmp</a>:/<spam id="path"></spam>$
<input id="input" autofocus style="color: transparent; text-shadow: 0 0 0 black;"></div></header>
</div>
<p id="output">Supported commands: ls, cd ${PATH}</p>
</div>
<div class="container " >
<h1>Posts</h1>
<div class="posts-list">
<div class="post">
<p>
<div class="date">Oct. 3, 2024</div>
<span class="tab">	<h1><a href="https://jiwonaid.github.io/posts/xpd/" title="The eXpress Data Path (XDP) at a Glance">The eXpress Data Path (XDP) at a Glance</a></h1></span>
</p>
</div>
<div class="post">
<p>
<div class="date">Oct. 3, 2024</div>
<span class="tab">	<h1><a href="https://jiwonaid.github.io/posts/linux-kernel-dev-env-conf-for-bpf/" title="Linux Kernel Dev Env Configuration For BPF">Linux Kernel Dev Env Configuration For BPF</a></h1></span>
</p>
</div>
<div class="post">
<p>
<div class="date">Jan. 6, 2024</div>
<span class="tab">	<h1><a href="https://jiwonaid.github.io/posts/wsl/" title="WSL 2 VPN not working or no internet">WSL 2 VPN not working or no internet</a></h1></span>
</p>
</div>
<div class="post">
<p>
<div class="date">Jul. 23, 2022</div>
<span class="tab">	<h1><a href="https://jiwonaid.github.io/posts/dt/" title="DevOps Troubleshooting">DevOps Troubleshooting</a></h1></span>
</p>
</div>
<div class="post">
<p>
<div class="date">Jun. 21, 2022</div>
<span class="tab">	<h1><a href="https://jiwonaid.github.io/posts/materials/" title="Materials">Materials</a></h1></span>
</p>
</div>
</div>
<a href="posts/">(more)</a>
<h1>About</h1>
<p>
Work on cloud computing services (Linux, Kubernetes, and OpenStack).</br>
Have an interest in open source cloud computing technologies like <a href="https://github.com/googleforgames/agones">Agones</a>.
</p>
<a href="https://github.com/jiwonaid">(more)</a>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> and hugo-theme-console.
</div>
</div>
</body>
<script>
var input = document.getElementById("input");
input.style.width = "1ch";
input.blur();
function focusTerminal() {
input.focus();
}
input.addEventListener('input', function () {
input.style.width = input.value.length + 1 + "ch";
});
input.addEventListener('keydown', function () {
if (event.key == 'Enter') {
if (input.value == "ls") {
var path = document.getElementById("path");
var output = document.getElementById("output");
var text = ".\n..\n";
if ( path.innerText == "") {
text += "about\nposts";
}
else if (path.innerText == "posts/") {
text += "\/posts\/\/about\/\/adamantium\/";
text = text.replace(/\/posts\//g, "");
text = text.replace(/\//g, "\n");
}
input.value = "";
input.style.width = "1ch";
output.innerText = text;
}
else if (input.value.substr(0, 3) == "cd ") {
var text = input.value;
text = text.replace("cd ", "");
window.location.href = text;
}
}
});
</script>
</html>