80 lines
No EOL
3.5 KiB
PHP
80 lines
No EOL
3.5 KiB
PHP
<!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ıkçı-->
|
||
<meta charset="UTF-8">
|
||
|
||
<!-- Meta Content -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="description" content="About Me">
|
||
<meta name="keywords" content="personal,website,about,information,whoami,aboutme">
|
||
<meta name="author" content="Aliberk Sandıkçı">
|
||
|
||
<!-- 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 . ' ';
|
||
}
|
||
} ?>
|
||
|
||
<title>About Me | Aliberk Sandıkçı</title>
|
||
</head>
|
||
|
||
|
||
<body>
|
||
|
||
<header>
|
||
<a href="/" id="hlogo"><img src="/assets/images/icons/favicon.png"></a>
|
||
<div class="tmpinfo">Aliberk Sandıkçı</div>
|
||
</header>
|
||
|
||
<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 also spend 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 (Firefish - 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 have also made internship in TÜBİTAK with Pardus & Liderahenk Team for 2 month, <a href="https://git.aliberksandikci.com.tr/liderahenk/ahenk-go">see project</a></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>
|
||
|
||
<footer>
|
||
<div class="tmpinfo">2023 🄯 Aliberk Sandıkçı</div>
|
||
</footer>
|
||
|
||
<?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>
|