-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (52 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<title>archX</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="/img/logo.png">
</head>
<body>
<header>
<h1>ArchX - Cryptography and computing</h1>
<!-- Toolbar -->
<nav>
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="open-source.html">Open Source</a>
<a href="forum.html">Forum</a>
<a href="article.html">Articles</a>
<a href="write-up.html">Write-up</a>
<a href="ressources.html">Ressources</a>
<button id="dark-mode-toggle" class="btn" style="background: none; border: none; cursor: pointer; font-size: 1.5em;">
<span id="theme-icon">🌙</span>
</button>
</nav>
</header>
<section>
<h1>Welcome to archX !</h1>
<p>
I'm a 20 year old french student interested in cybersecurity, cryptography and many other stuff. I'm currently in the third year of a Bachelor in computer science.
<br/>
I started programmation with python and C and I'm mostly interested in implementing cryptographic algorithm.
I love security and I'm curently looking at open source project about that (like openSSL) to start contributing.
I've also been diagnosed asperger a few years ago now.
</p>
<p>
The purpose of this blog is to group ressources I'm finding. It is like a summary of my experience, what helped me and thing I want to share.
You also can find articles and write-up that I wrote and a library that I'm maintaining whith a lot of interesting books and papers.
</p>
<p>
Note: everything here is in english but if you find this flag: 🇫🇷 It means that the document is in french !
Finally If I'm using the word crypto anywhere, I mean cryptography and not cryptocurrency!
</p>
<p>
Contact me here :
<a href="https://github.com/Bl4omArchie" target="_blank">GitHub</a>
•
<a href="https://discord.com/invite/D2wGP62" target="_blank">Discord</a>
</p>
</section>
<script src="scripts/general_util.js"></script>
</body>
</html>