www/about/index.php

80 lines
3.4 KiB
PHP
Raw Normal View History

2023-06-25 23:15:41 +03:00
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<?php
### ERROR HANDLING ###
function warnError($errno, $errstr, $errfile, $errline)
{
echo "<br><p style='padding:0px;margin:0px;background-color:white;color:black;'><b style='color:red;'>Error:</b> [$errno] $errstr <br> in file <b style='color:blue'>$errfile</b> line <b style='color:red'>$errline</b></p>";
}
set_error_handler("warnError");
if (!$_SERVER['DOCUMENT_ROOT']) {
$_SERVER['DOCUMENT_ROOT'] = '/weblink';
}
# TODO separate file
?>
<head>
<!--!Copyright © 2023 Aliberk Sandıı-->
<meta charset="UTF-8">
<!-- Meta Content -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-07-15 15:02:06 +03:00
<meta name="description" content="About Me">
2023-06-25 23:15:41 +03:00
<meta name="keywords" content="personal,website,about,information,whoami,aboutme">
<meta name="author" content="Aliberk Sandıı">
<!-- CSS Files -->
<?php
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/css");
foreach ($dir as $file) {
if ((!$file->isDot()) && str_ends_with($file, ".css")) {
echo '<link rel="stylesheet" href="/assets/css/' . $file . '">' . PHP_EOL . ' ';
}
} ?>
2023-07-15 16:01:16 +03:00
<title>About Me | Aliberk Sandıı</title>
2023-06-25 23:15:41 +03:00
</head>
<body>
2023-07-15 15:02:06 +03:00
<header>
<a href="/" id="hlogo"><img src="/assets/images/icons/favicon.png"></a>
<div class="tmpinfo">This page is still in active development</div>
</header>
2023-07-15 15:53:08 +03:00
<article style="text-align:center;align-items:center;">
<h1 class="title">Who am I?</h1>
<p id="headline">
<b>Software Enthusiast</b>, retired <b>Competitive Programmer</b>, <b>FOSS Advocate</b>, <b>High School Student</b> and <b>Linux User 🐧</b>
</p>
<p id="favorites">
I love programming, learning new things (about everything but especially about new technologies), open source methodology, reading science-fiction and biking.
</p>
<p id="languages">I speak Turkish native and English as intermediate. Also I know basic words in German and Russian.</p>
<p id="interests">I am interested in network technologies, operating systems, artificial intelligence, algorithms, and back-end development</p>
<p id="spare-time">I am also spending my spare time with cybersecurity, web development and playing drum/piano</p>
<p id="my-services">
Trying to use my own network services as alternative to services of big companies. I <b>don't</b> use any Google, Microsoft, Amazon, Apple services <i>actively</i>. Instead of them, i use my own cloud service (Nextcloud), social media service (Calckey - Fediverse), git service (Forgejo), news service (FreshRSS) ... Tries to be a conscious user in technology world!
</p>
<p id="volunteer"> I am Pardus and TEMA Volunteer. </p>
<p id="experience">I also doing internship in TÜBİTAK with Pardus & Liderahenk Team</p>
<p id="environment">Using Arch based GNU/Linux distribution CachyOs (with KDE desktop environment and Xorg display server) in daily usage. Still trying random operating systems, GNU/Linux distributions in virtual machine</p>
</article>
2023-06-25 23:15:41 +03:00
2023-07-15 15:02:06 +03:00
<footer>
<div class="tmpinfo">This page is still in active development</div>
</footer>
2023-06-25 23:15:41 +03:00
<?php
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/js");
foreach ($dir as $file) {
if ((!$file->isDot()) && str_ends_with($file, ".js") && $file != "jquery.js") {
echo '<script src="/assets/js/' . $file . '"></script>' . PHP_EOL . ' ';
}
} ?>
</body>
</html>