Browse Source

add about me page

master
RinRi 2 years ago
parent
commit
4acb352ced
4 changed files with 112 additions and 10 deletions
  1. +96
    -0
      about.html
  2. +5
    -1
      css/style.css
  3. +10
    -9
      index.html
  4. +1
    -0
      rec.html

+ 96
- 0
about.html View File

@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://rinri-d.xyz/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="https://rinri-d.xyz/images/logo.ico" type="image/x-icon">
<title>RinRi - Homepage</title>
</head>

<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="https://rinri-d.xyz" style="color: var(--color1);">
RinRi-D
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="https://rinri-d.xyz">Home</a>
<a class="nav-item nav-link" href="https://blog.rinri-d.xyz">Blog</a>
<a class="nav-item nav-link" href="https://apps.rinri-d.xyz">Apps</a>
<a class="nav-item nav-link" href="https://git.rinri-d.xyz">Code</a>
<a class="nav-item nav-link" href="https://rinri-d.xyz/rec.html">Recommendations</a>
<a class="nav-item nav-link active" href="https://rinri-d.xyz/about.html">About</a>
</div>
</div>
</nav>
<div class="container">
<h1> About me </h1>

<hr>
<p>
Hi! My real name is Amirlan Sharipov. I am a young seeker of knowledge and also an Information Security enthusiast looking for my first job.
</p>
<p>
Contact me at rin(AT)rinri-d(D0T)xyz, and I will send you my CV.
</p>

<h2> Experience </h1>
<hr>

<h4> <i> Linux & InfoSec </i> </h4>
<p>
I use Linux as my desktop OS(currently using arch, btw) for more than 3-years and use Debian on my VPS for hosting my website, e-mail server, Gitea, and Nextcloud instances. I configured tons of software like Nginx, OpenVPN, databases(MySQL, PostgreSQL, MongoDB), Gitea, Nextcloud on my server, and many programs on my desktop OS(dotfiles and software I use are available on my Gitea instance).
</p>
<p>
I enjoy solving interesting CTF challenges on web application security, reverse engineering, forensics, etc. I completed some wargames like Overthewire's bandit on Linux and scripting, many CTFlearn, and picoCTF challenges. Currently, I am solving Overthewire's Natas on web application security, Hackthebox, and hacking on my home lab.
</p>

<br>
<h4> <i> Competitive programming </i> </h4>
<p>
In high school, I studied Competitive programming, data structures, and algorithms. I won several Olympiads in Informatics, such as International Zhautykov Olympiad, Kazakhstan National Olympiad. While competing in Olympiads, I developed beneficial skills like problem-solving, creativity, and debugging. Competitive programming taught me many code techniques for developing optimized and fast programs.
</p>
<br>
<h4> <i> Web Development </i> </h4>
<p>
As for Web Development, I developed several websites and web applications like an e-commerce website(online shop) and a Blog app on my website. Their source code is available on Gitea and GitHub. I used different technologies: PHP and MySQL for e-commerce and Node.js, Express.js, MongoDB for the Blog app.
</p>

</div>

<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">Email: <a
href="mailto:rin(AT)rinri-d(D0T)xyz">rin(AT)rinri-d(D0T)xyz</a> <a
href="https://cloud.rinri-d.xyz/s/TtX6ny2x7XLSaeK">(PGP)</a>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">Mastodon: <a
href="https://fosstodon.org/@rinri">@rinri@fosstodon.org</a> </div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">Matrix: <a
href="https://matrix.to/#/@rinri-d:matrix.org">@rinri-d:matrix.org</a> </div>
</div>
<div style="text-align: center;">&copy; Copyright 2020 RinRi-D.xyz</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="js/main.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>

</html>

+ 5
- 1
css/style.css View File

@@ -8,7 +8,7 @@
--color0: #404b69;
--color1: #0fff83;
--color2: #2effaf;
--color3: #2effaf;
--color3: #8ffcc9;
--color4: #2ee0ff;
--color5: #3fb4d1;
--color6: #c59820;
@@ -113,6 +113,10 @@ h3 {
color: var(--color3);
}

h4 {
color: var(--color3);
}

.navbar-default .navbar-brand {
color: var(--color1);
}


+ 10
- 9
index.html View File

@@ -26,6 +26,7 @@
<a class="nav-item nav-link" href="https://apps.rinri-d.xyz">Apps</a>
<a class="nav-item nav-link" href="https://git.rinri-d.xyz">Code</a>
<a class="nav-item nav-link" href="https://rinri-d.xyz/rec.html">Recommendations</a>
<a class="nav-item nav-link" href="https://rinri-d.xyz/about.html">About</a>
</div>
</div>
</nav>
@@ -33,21 +34,21 @@
<h1>Welcome! I am RinRi.</h1>
<div class="odd">
<p>
I am interested in Open Source, Minimalist Programs, Privacy, Competitive programming (My Codeforces <a
href="http://codeforces.com/profile/rinri">account</a>), C/C++ programming, Web Development, Data
Science and Machine Learning. I also like IoT, Arduino and Hi-Fi headphones, etc.
I am interested in InfoSec, Privacy, Open-Source, Minimalist Software, Competitive programming (My Codeforces <a
href="http://codeforces.com/profile/rinri">account</a>), C/C++ programming, Web Development, and IoT.
</p>
<p>
This is my personal website. Here you can find my <a href="https://blog.rinri-d.xyz">blog</a>, <a
href="https://apps.rinri-d.xyz">apps</a> and <a href="https://git.rinri-d.xyz">git</a>. Hope, you
will enjoy it. You can find my
contact information at the bottom of the page.
<b>Currently, I am open to job offers. Contact me: rin(AT)rinri-d(D0T)xyz.</b>
</p>
<p>
Hope you will enjoy my personal website. Here you can find my <a href="https://blog.rinri-d.xyz">blog</a>, <a
href="https://apps.rinri-d.xyz">apps</a> and <a href="https://git.rinri-d.xyz">git</a>. You can find my contact information at the bottom of the page.
</p>
</div>
<div>
<h2>Plans:</h2>
<ul>
<li>Get rid of Bootstrap, CDNs, Javascript, and other bloats</li>
<li>Get rid of Bootstrap, CDNs, JavaScript, and other bloat</li>
<li>About me</li>
<li>Portfolio</li>
<li>CV</li>
@@ -86,7 +87,7 @@
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">Email: <a
href="mailto:rin@rinri-d.xyz">rin@rinri-d.xyz</a> <a
href="mailto:rin(AT)rinri-d(D0T)xyz">rin(AT)rinri-d(D0T)xyz</a> <a
href="https://cloud.rinri-d.xyz/s/TtX6ny2x7XLSaeK">(PGP)</a>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">Mastodon: <a


+ 1
- 0
rec.html View File

@@ -26,6 +26,7 @@
<a class="nav-item nav-link" href="https://apps.rinri-d.xyz">Apps</a>
<a class="nav-item nav-link" href="https://git.rinri-d.xyz">Code</a>
<a class="nav-item nav-link active" href="https://rinri-d.xyz/rec.html">Recommendations</a>
<a class="nav-item nav-link" href="https://rinri-d.xyz/about.html">About</a>
</div>
</div>
</nav>


Loading…
Cancel
Save