-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (80 loc) · 3.57 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="/assets/css/syntax.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous"></script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "$", right: "$", display: false},
{left: "\\(", right: "\\)", display: false},
{left: "\\[", right: "\\]", display: true}
]
})
})
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Valeri Haralanov</title>
<link rel="stylesheet" type="text/css" href="/assets/css/home.css">
</head>
<body>
<header>
<img src='/assets/images/profile.jpg' alternative='Profile photo'>
</img>
<div>
<h1>
Valeri Haralanov
</h1>
<div class="misc-info">
3rd year undergraduate student<br />
Saitama University, Dept. of Computer Science<br />
Email: <a href="mailto:val.hrln.public@gmail.com">val.hrln.public@gmail.com</a><br />
<div class="my-sns-buttons">
<a href="https://twitter.com/stealthmate_val?ref_src=twsrc%5Etfw" class="twitter-follow-button sns-button" data-show-count="false">Follow @stealthmate_val</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<a class="sns-button github-button" href="https://github.com/stealthmate" aria-label="Follow @stealthmate on GitHub">Follow @stealthmate</a>
</div>
</div>
</div>
</header>
<main>
<section>
<header>
<h2>
Introduction
</h2>
</header>
I'm currently doing a bachelor's degree in Computer Science in Saitama University. My interest lies mainly in discrete mathematics, namely graph theory, computation theory and a bit of abstract algebra.
</section>
<section>
<header>
<h2>
Writings
</h2>
</header>
<ul>
<li><a href="https://engineering.linecorp.com/en/blog/designing-line-firewall-secretary/" target="_blank">An intern’s tale of designing LINE’s firewall secretary</a> (Blog entry from LINE intern)</li>
<li><a href="https://stealthmate.github.io/science-articles" target="_blank">Science-related articles</a> </li>
<li><a href="https://github.com/stealthmate/clrs" target="_blank">My solutions to CLRS problems.</a> </li>
</ul>
</section>
<section>
<header>
<h2>
Useful Creations
</h2>
</header>
<ul>
<li><a href="https://stealthmate.github.io/turing-machine" target="_blank">Turing Machine Simulator</a> </li>
</ul>
</section>
</main>
<footer>
</footer>
</body>
</html>