83 lines
No EOL
3.6 KiB
PHP
83 lines
No EOL
3.6 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="My current works">
|
||
<meta name="keywords" content="personal,website,now,doing,working,stuff,current">
|
||
<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>Now | Aliberk Sandıkçı</title>
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<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>
|
||
|
||
<article>
|
||
<h1 class="title">What I'm Doing Now</h1>
|
||
<ul>
|
||
<li>📚 Studying for YKS (Türkiye University Exam)</li>
|
||
<ul>
|
||
<li>📑 Currently remediating TYT subjects</li>
|
||
</ul>
|
||
<li>🖥 Working as <i>Back-End Developer Intern</i> in <b>TÜBİTAK ULAKBİM</b> with <b>Pardus & Liderahenk Team</b>. Writing an agent program (Ahenk) from scratch with <b>Go Language</b> for business usage</li>
|
||
<li>🏃 Working on a local project idea competition</li>
|
||
<li>🔐 Working on a VPN service development and marketing</li>
|
||
<li>📃 Noting down project ideas for working on them after YKS</li>
|
||
<ul>
|
||
<li>One of them is about multiplayer web based game (and engine of it), 2 other Fediverse/ActivityPub/Media related projects, 1 other web based tool development, and last one is about AI research. If you are interested with them don't hesitate to <a href="../link">contact</a> with me, I am searching for teammates 🤗
|
||
</li>
|
||
</ul>
|
||
<li>🖧 Hosting 2 personal website, one of them -<i>this one</i>- is for public usage, about me, links, blogs etc. Other one is for personal usage, git server, cloud and Calckey (Fediverse) server</li>
|
||
<li>🗫 Surfing Fediverse from my own Calckey server and communicating with other fedizens</li>
|
||
<li>💁🏻 Also trying to help some FOSS applicatons with some feature requests, bug tracking, translating, testing and sometimes with development</li>
|
||
</ul>
|
||
<p>Last Update: 13 August 2023</p>
|
||
<!-- see previous version: https://git.aliberksandikci.com.tr/asandikci.com/www/src/commit/5ce2a4e4efc66a9b8e48380aa0056f724fb909b0/now/index.php -->
|
||
<p style="font-size:small;">Inspired by: <br><a href="https://johanv.net/now/">https://johanv.net/now/</a><br><a href="https://nownownow.com/">https://nownownow.com/</a></p>
|
||
</article>
|
||
|
||
<footer>
|
||
<div class="tmpinfo">This page is still in active development</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>
|