forked from Excalibra/Excalibra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhcl.html
More file actions
85 lines (84 loc) · 4.82 KB
/
hcl.html
File metadata and controls
85 lines (84 loc) · 4.82 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>О себе</title>
<meta name="keywords" content="Введение, Поэзия">
<meta name="description" content="Панель введения, имитирующая интерфейс терминала">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script src="./typing/typing.js"></script>
<link rel="stylesheet" href="./typing/typing.css">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.css">
</head>
<style>
body {
/**
Ссылка на цветовую схему:
https://www.omegaxyz.com/2018/07/01/javascript-terminal/
*/
background: black;
color: #00FF02;
font-size: 18px;
font-family: courier;
}
blink {
display: inline;
}
</style>
<body>
<div id="source">
Initializing connection to personal GitHub page...<br>
Establishing secure connection...<br>
Connection Established.<br>
Репозиторий: https://github.com/Excalibra/Excalibra<br>
[LOGIN] Guest user detected.<br>
[ACCESS GRANTED] Добро пожаловать на мой сайт.<br>
<br>
> РАЗРЕШИТЕ ПРЕДСТАВИТЬСЯ. МОЕ ИМЯ ПОЛЬЗОВАТЕЛЯ — EXCALIBRA. Я РАБОТАЛ В МЕЖДУНАРОДНОЙ ТОРГОВЛЕ И НА ПРЕДПРИЯТИЯХ НЕДВИЖИМОСТИ, А ТАКЖЕ ИМЕЮ НЕКОТОРОЕ ПОНИМАНИЕ СФЕРЫ ВНУТРЕННИХ ИНТЕРНЕТ-УСЛУГ. В НАСТОЯЩЕЕ ВРЕМЯ Я ЗАНИМАЮСЬ КИБЕРБЕЗОПАСНОСТЬЮ, ВЕБ-РАЗРАБОТКОЙ И РАБОТАЛ ИНЖЕНЕРОМ ИТ-ОПЕРАЦИЙ В КОМПАНИИ, ПРОИЗВОДЯЩЕЙ СИСТЕМЫ БЕЗОПАСНОСТИ ДЛЯ ДОМА. МОЯ РОЛЬ ВКЛЮЧАЕТ УПРАВЛЕНИЕ ИНФОРМАЦИОННЫМИ СИСТЕМАМИ ПРОМЫШЛЕННОГО ИНТЕРНЕТА И ОПЕРАЦИЯМИ ПРОЦЕССОВ, А ТАКЖЕ ПОДГОТОВКУ ОТЧЕТОВ ПО АНАЛИЗУ ДАННЫХ ЛОГИСТИКИ И ЦЕПОЧЕК ПОСТАВОК ДЛЯ РЕГУЛЯРНЫХ СОВЕЩАНИЙ.
<br>
<p>> НЕКОТОРЫЕ ИЗ МОИХ РАБОТ:</p>
<ul>
<li><a href="https://github.com/Excalibra/network-tunneling">Network Tunneling</a></li>
<li><a href="https://github.com/Excalibra/ChiseiKoya">ChiseiKoya</a></li>
<li><a href="https://github.com/Excalibra/Automated-Cryptocurrency-News-Analysis/tree/main">Automated-Cryptocurrency-News-Analysis</a></li>
</ul>
<p>> УВЛЕЧЕНИЯ И ИНТЕРЕСЫ:</p>
<ul>
<li>КОФЕ И ЧАЙ</li>
<li>ЧТЕНИЕ И НАПИСАНИЕ</li>
<li>ПУТЕШЕСТВИЯ</li>
</ul>
> <i class="fa fa-github" aria-hidden="true"></i>
ПЕРСОНАЛЬНАЯ СТРАНИЦА: <a href="http://github.com/Excalibra">github.com/Excalibra</a><br>
> <i class="fa fa-envelope" aria-hidden="true"></i>
КОНТАКТНЫЙ EMAIL: <a href="mailto:x.calibra@outlook.com">x.calibra@outlook.com</a><br>
<pre>
____ _ _ __ __ _ __ _ ____
(_ _)/ )( \ / _\ ( ( \( / )/ ___)
)( ) __ (/ \/ / ) ( \___ \
(__) \_)(_\_/\_/\_)__)(__\_)(____/
</pre>
> <i>СПАСИБО ЧТО УДЕЛИЛИ ВРЕМЯ ДЛЯ ПРОЧТЕНИЯ МОЕГО ПРЕДСТАВЛЕНИЯ. Я С НЕТЕРПЕНИЕМ ЖДУ ВОЗМОЖНОСТИ ЛУЧШЕ УЗНАТЬ ВАС.</i> :)
</div>
<div id="output-wrap">
<span id="output"></span>
<span class="typing-cursor">■</span>
</div>
<script>
var typing = new Typing({
source: document.getElementById('source'),
output: document.getElementById('output'),
delay: 50,
done: function() {} // Callback после завершения ввода
});
typing.start();
</script>
<div>
<script type="text/javascript">
// Ссылка на адаптацию шрифта для мобильных: https://blog.csdn.net/lixinyi0622/article/details/87347816
document.documentElement.style.fontSize = document.documentElement.clientWidth / 640 * 100 + 'px';
setTimeout("javascript:location.href='index.html'", 300000);
</script>
</body>
</html>