1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php $_TITLE = "About UnchainedTech"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/header.php"; ?>
<div class="container" style="margin-top:30px;text-align: center;">
<h2>What's that? Who's behind it?</h2>
<p>Let us a moment to introduce ourselves.</p>
</div>
<div class="container">
<img src="/logo.svg" style="margin-bottom:15px;">
<p>UnchainedTech is a tech-centric blog written by two people on their free time. Whether it is the new Windows update or the latest iPhone, the UnchainedTech writers will always find a topic to talk about.</p>
<p><b>Version information:</b>
<ul>
<li>UnchainedTech Software version: <?= trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/../version.txt")) ?></li>
<li>PHP version: <?= PHP_VERSION ?></li>
<li><?= php_uname('s') ?> version: <?= php_uname('r') ?> <?= php_uname('v') ?> (<?= php_uname('m') ?>)</li>
<li>Git version: <?php exec("git --version", $res);$p = explode(" ", $res[0]);array_shift($p);array_shift($p);echo(implode(" ", $p)) ?></li>
<li><?php
$soft = $_SERVER['SERVER_SOFTWARE'];
if (strpos(strtolower($soft), "apache") !== false) {
echo("Apache HTTP Server");
} else {
echo("nginx");
}
?> version: <?php
$soft = $_SERVER['SERVER_SOFTWARE'];
if (strpos(strtolower($soft), "apache") !== false) {
exec("apache2 -v", $res2);$p = explode(" ", $res2[0]);array_shift($p);array_shift($p);$p2 = explode("/", implode(" ", $p));array_shift($p2);echo(implode(" ", $p2));
} else {
exec("nginx -v", $res2);$p = explode(" ", $res2[0]);array_shift($p);array_shift($p);$p2 = explode("/", implode(" ", $p));array_shift($p2);echo(implode(" ", $p2));
}
?></li>
</ul></p>
<p>UnchainedTech is proudly powered by open-source software! Namely:
<ul>
<li><a href="https://github.com/erusev/parsedown" target="_blank">Parsedown</a></li>
<li><a href="https://php.net" target="_blank">PHP</a></li>
<li><a href="https://httpd.apache.org" target="_blank">The Apache HTTP Server</a></li>
<li><a href="https://kernel.org" target="_blank">The Linux kernel</a></li>
<li><a href="https://www.openssh.com/" target="_blank">OpenSSH</a></li>
<li><a href="https://git-scm.org" target="_blank">The Git version control system</a></li>
<li>and much more...</li>
</ul></p>
<p>Last but not least, UnchainedTech wouldn't be so easy to develop without <a href="https://jetbrains.com" target="_blank">JetBrains software</a>. Huge thanks to them for giving me (Minteck) a free license to help me develop my FLOSS software faster than ever!</p>
<h2>Who is behind this blog?</h2>
<div class="list-group no-link">
<li class="list-group-item"><img src="/authors/antoine62.jpg" width="32px" style="vertical-align: middle;"> <b>antoine62</b> writer, correcter, UI/UX tester · Contact him on <a href="https://matrix.to/#/@antoine62:halogen.city" style="text-decoration: underline;">Matrix</a></li>
<li class="list-group-item"><img src="/authors/minteck.jpg" width="32px" style="vertical-align: middle;"> <b>Minteck</b> writer, developer, UI/UX designer · Contact them on <a href="https://matrix.to/#/@minteck:kde.org" style="text-decoration: underline;">Matrix</a> and <a href="https://twitter.com/_Minteck" style="text-decoration: underline;">Twitter</a></li>
</div>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/footer.php"; ?>
|