2023-05-11 16:23:14 +03:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
2023-05-11 17:58:03 +03:00
|
|
|
|
<?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
|
|
|
|
|
?>
|
2023-05-11 16:23:14 +03:00
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<!--!Copyright © 2023 Aliberk Sandıkçı-->
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
|
|
|
|
<!-- Meta Content -->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-06-19 23:48:18 +03:00
|
|
|
|
<meta name="description" content="My current works">
|
|
|
|
|
<meta name="keywords" content="personal,website,now,doing,working,stuff,current">
|
2023-05-11 16:23:14 +03:00
|
|
|
|
<meta name="author" content="Aliberk Sandıkçı">
|
|
|
|
|
|
|
|
|
|
<!-- CSS Files -->
|
|
|
|
|
<?php
|
2023-05-11 17:58:03 +03:00
|
|
|
|
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/css");
|
2023-05-11 16:23:14 +03:00
|
|
|
|
foreach ($dir as $file) {
|
|
|
|
|
if ((!$file->isDot()) && str_ends_with($file, ".css")) {
|
|
|
|
|
echo '<link rel="stylesheet" href="/assets/css/' . $file . '">' . PHP_EOL . ' ';
|
|
|
|
|
}
|
|
|
|
|
} ?>
|
|
|
|
|
|
2023-06-19 23:48:18 +03:00
|
|
|
|
<title>Now | Aliberk Sandıkçı</title>
|
2023-05-11 16:23:14 +03:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2023-07-12 22:53:23 +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>
|
|
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
<h1 class="title">What I'm Doing Now</h1>
|
|
|
|
|
<ul>
|
2023-07-15 14:49:19 +03:00
|
|
|
|
<li>📚 Studying for YKS (Türkiye University Exam)</li>
|
2023-07-12 22:53:23 +03:00
|
|
|
|
<ul>
|
2023-09-10 17:44:53 +03:00
|
|
|
|
<li>📑 remediating TYT subjects</li>
|
|
|
|
|
<li>📖 studying AYT subjects</li>
|
|
|
|
|
<li>🗒️ using Anki/Ankidroid for taking notes</li>
|
2023-07-12 22:53:23 +03:00
|
|
|
|
</ul>
|
2023-09-21 01:00:31 +03:00
|
|
|
|
<li>🔐 Working on a VPN service development and marketing - <a href="https://vpn.iflpanel.com">SSA VPN</a></li>
|
|
|
|
|
<li>👥 Setting up a community website (gallery, ankets, forums, microblogging) for my School</li>
|
|
|
|
|
<li>🖧 Hosting web servers, one of them -<i>this one</i>- is for public usage, about me, links, blogs etc. Second one is for personal usage. Others are VPN or project servers</li>
|
2023-09-10 17:44:53 +03:00
|
|
|
|
<li>🗫 Surfing Fediverse from my own Firefish server and pixelfed, communicating with other fedizens. Sharing photos, microblogging</li>
|
2023-08-13 18:56:36 +03:00
|
|
|
|
<li>💁🏻 Also trying to help some FOSS applicatons with some feature requests, bug tracking, translating, testing and sometimes with development</li>
|
2023-07-12 22:53:23 +03:00
|
|
|
|
</ul>
|
2023-09-21 01:00:31 +03:00
|
|
|
|
<p>Last Update: 21 September 2023</p>
|
2023-07-12 22:53:23 +03:00
|
|
|
|
<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>
|
2023-05-11 17:58:03 +03:00
|
|
|
|
<?php
|
|
|
|
|
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/js");
|
2023-05-11 16:23:14 +03:00
|
|
|
|
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>
|