completely re-working everything!
This commit is contained in:
parent
2a6fdc1a9c
commit
2266e3ddc5
20 changed files with 24 additions and 516 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
.vscode
|
|
@ -1,7 +0,0 @@
|
|||
RewriteEngine On
|
||||
RewriteRule ^home/?$ index.php
|
||||
RewriteRule ^about/?$ about.php
|
||||
RewriteRule ^projects/?$ projects.php
|
||||
RewriteRule ^guides/?$ guides.php
|
||||
RewriteRule ^privacy/?$ privacy.php
|
||||
RewriteRule ^projects/opennic?$ projects/opennic.php
|
62
about.php
62
about.php
|
@ -1,62 +0,0 @@
|
|||
<?php include('views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">About Me</h1>
|
||||
<h3>Short Bio:</h3>
|
||||
<p>Hi there, I am by day a UNIX\Linux System Administrator and the rest of the time I am just a big old Linux nerd. I have been running Linux as my daily driver pretty much since I was nine years old. I found it after getting my first computer, and it was so slow and wanted to find something that would run faster. I found something called ZenWalk Linux back then (sadly not around anymore), which was based on Slackware Linux which is still around. Shortly after that, I started to dive more into Linux over the years. I have used many different distributions over the years as a daily driver. Ubuntu, Arch, Debian, Mandriva, OpenSUSE, and Solus just to name a few.</p>
|
||||
<p>These days I tend to use Fedora as my daily driver, I like being able to run more up to date software that isn’t really modified for the distribution. Fedora feels very stock and since I manage mostly RHEL(Red Hat Enterprise Linux) for my day job, it is nice to use the upstream version of the system to just stay in the same ecosystem. That said, I have nothing against any other distribution.</p>
|
||||
<h3>Contact:</h3>
|
||||
<div class="container">
|
||||
<center>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<i class="fab fa-telegram-plane fa-5x"></i><br><a href="https://t.me/kite5521" target="_blank">@kite5521</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="fab fa-discord fa-5x"></i><br>@hack13#4761
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="fab fa-mastodon fa-5x"></i><br><a href="https://meow.social/@hack13" target="_blank">@hack13</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="fab fa-twitter fa-5x"></i><br><a href="https://twitter.com/kite552" target="_blank">@kite552</a>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<i class="fab fa-github fa-5x"></i><br><a href="https://github.com/hack13" target="_blank">hack13</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="fab fa-gitlab fa-5x"></i><br><a href="https://gitlab.com/hack13" target="_blank">hack13</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="fab fa-lastfm fa-5x"></i><br><a href="https://www.last.fm/user/dothacker552" target="_blank">dothacker552</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<i class="far fa-envelope-open fa-5x"></i><br><a href="mailto:me@hack13.me">me<i class="fas fa-at"></i>hack13.me</a>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
Binary file not shown.
Before Width: | Height: | Size: 23 KiB |
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
Binary file not shown.
Before Width: | Height: | Size: 13 KiB |
Binary file not shown.
Before Width: | Height: | Size: 24 KiB |
|
@ -1,4 +1,3 @@
|
|||
baseURL = "http://hack13-site.pages.dev"
|
||||
baseURL = "https://hack13.me/"
|
||||
languageCode = "en-us"
|
||||
title = "Hack13 Site"
|
||||
theme = "hacksite"
|
||||
title = "Hack13 Site"
|
54
guides.php
54
guides.php
|
@ -1,54 +0,0 @@
|
|||
<?php include('views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">Guides</h1>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Name</th>
|
||||
<th scope="col">About</th>
|
||||
<th scope="col">Download</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Load Balancing OpenSimulator</th>
|
||||
<td>This is a simple guide to breaking apart your OpenSimulator Robust and load balancing between the multiple instances.</td>
|
||||
<td>
|
||||
<a href="#" target="_blank" class="btn btn-secondary"><i class="fab fa-markdown"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Automated Borg Backups</th>
|
||||
<td>Simple guide to setting up backups with borg backup software on your server.</td>
|
||||
<td>
|
||||
<a href="#" target="_blank" class="btn btn-secondary"><i class="fab fa-markdown"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
58
index.php
58
index.php
|
@ -1,58 +0,0 @@
|
|||
<?php include('views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="jumbotron">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-auto">
|
||||
<img src="assets/avatar_1.png" class="rounded float-left" alt="avatar"/>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<h1 class="display-3">HACK13's Site</h1>
|
||||
<p>Just another fox on the internet.<br>
|
||||
<strong>Other Aliases:</strong> Timothy Vyper, kite552, dothacker552</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h2>Blog</h2>
|
||||
<p>Read my ramblings from my history as well as few things I post from time to time. I don't write on it often, but I do plan to try and contribute more when I have time. </p>
|
||||
<p><a class="btn btn-secondary" href="https://blog.hack13.me/" role="button">Read Blog »</a></p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h2>Guides</h2>
|
||||
<p>From time to time I will write up a guide on how to accomplish something that I did so that if someone else comes upon it they can read what I did to accomplish the same. </p>
|
||||
<p><a class="btn btn-secondary" href="/guides" role="button">View Guides »</a></p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h2>Projects</h2>
|
||||
<p>While I am primarily a System Administrator, I really enjoy open source and I like to code here and there. So if you are interested in seeing some of my work and projects I list them here.</p>
|
||||
<p><a class="btn btn-secondary" href="/projects" role="button">Projects »</a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
82
privacy.php
82
privacy.php
|
@ -1,82 +0,0 @@
|
|||
<?php include('views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">Privacy Policy</h1>
|
||||
<h3>Short Bio:</h3>
|
||||
<h2>Privacy Policy of <span class="website_url">https://zadaroo.com & https://hack13.me</span></h2>
|
||||
<p>At <span class="website_name">Zadaroo</span>, we collect and manage user data according to the following Privacy Policy.</p>
|
||||
|
||||
<h3>Data Collected</h3>
|
||||
|
||||
<p>We collect information you provide directly to us. For example, we collect information when you create an account, subscribe, participate in any interactive features of our services, fill out a form, request customer support or otherwise communicate with us. The types of information we may collect include your name, email address, postal address, credit card information and other contact or identifying information you choose to provide.</p>
|
||||
|
||||
<p>We collect anonymous data from every visitor of the Website to monitor traffic and fix bugs. For example, we collect information like web requests, the data sent in response to such requests, the Internet Protocol address, the browser type, the browser language, and a timestamp for the request.</p>
|
||||
|
||||
<p>We also use various technologies to collect information, and this may include sending cookies to your computer. Cookies are small data files stored on your hard drive or in your device memory that helps us to improve our services and your experience, see which areas and features of our services are popular and count visits. We may also collect information using web beacons (also known as "tracking pixels"). Web beacons are electronic images that may be used in our services or emails and to track count visits or understand usage and campaign effectiveness. Our Privacy Policy was created with the help of the <a href="https://www.privacy-policy-template.com">Privacy Policy Template</a> and the <a href="https://www.generateprivacypolicy.com">Generate Privacy Policy Generator</a>.</p>
|
||||
|
||||
<h3>Use of the Data</h3>
|
||||
|
||||
<p>We only use your personal information to provide you the <span class="website_name">Zadaroo</span> services or to communicate with you about the Website or the services.</p>
|
||||
|
||||
<p>We employ industry standard techniques to protect against unauthorized access of data about you that we store, including personal information.</p>
|
||||
|
||||
<p>We do not share personal information you have provided to us without your consent, unless:</p>
|
||||
|
||||
<ul>
|
||||
<li>Doing so is appropriate to carry out your own request</li>
|
||||
<li>We believe it's needed to enforce our legal agreements or that is legally required</li>
|
||||
<li>We believe it's needed to detect, prevent or address fraud, security or technical issues</li>
|
||||
</ul>
|
||||
|
||||
<h3>Sharing of Data</h3>
|
||||
|
||||
<p>We don't share your personal information with third parties. Aggregated, anonymized data is periodically transmitted to external services to help us improve the Website and service.</p>
|
||||
|
||||
<p>We may allow third parties to provide analytics services. These third parties may use cookies, web beacons and other technologies to collect information about your use of the services and other websites, including your IP address, web browser, pages viewed, time spent on pages, links clicked and conversion information.</p>
|
||||
|
||||
<p>We also use social buttons provided by services like Twitter, Google+, LinkedIn and Facebook. Your use of these third party services is entirely optional. We are not responsible for the privacy policies and/or practices of these third party services, and you are responsible for reading and understanding those third party services' privacy policies.</p>
|
||||
|
||||
<h3>Cookies</h3>
|
||||
|
||||
<p>We may use cookies on our site to remember your preferences.</p>
|
||||
|
||||
<p>For more general information on cookies, please read <a href="https://www.cookieconsent.com/what-are-cookies/">"What Are Cookies"</a>.</p>
|
||||
|
||||
<h3>Opt-Out, Communication Preferences</h3>
|
||||
|
||||
<p>You may modify your communication preferences and/or opt-out from specific communications at any time. Please specify and adjust your preferences.</p>
|
||||
|
||||
<h3>Security</h3>
|
||||
|
||||
<p>We take reasonable steps to protect personally identifiable information from loss, misuse, and unauthorized access, disclosure, alteration, or destruction. But, you should keep in mind that no Internet transmission is ever completely secure or error-free. In particular, email sent to or from the Sites may not be secure.</p>
|
||||
|
||||
<h3>About Children</h3>
|
||||
|
||||
<p>The Website is not intended for children under the age of 13. We do not knowingly collect personally identifiable information via the Website from visitors in this age group.</p>
|
||||
|
||||
<h3>Changes to the Privacy Policy</h3>
|
||||
|
||||
<p>We may amend this Privacy Policy from time to time. Use of information we collect now is subject to the Privacy Policy in effect at the time such information is used.</p>
|
||||
|
||||
<p>If we make major changes in the way we collect or use information, we will notify you by posting an announcement on the Website or sending you an email.</p>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
120
projects.php
120
projects.php
|
@ -1,120 +0,0 @@
|
|||
<?php include('views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">Projects</h1>
|
||||
<h3>Services:</h3>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Name</th>
|
||||
<th scope="col">About</th>
|
||||
<th scope="col">Tags</th>
|
||||
<th scope="col">Link(s)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Tier 2 Virginia OpenNIC Resolvers</th>
|
||||
<td>Two OpenNIC Public Tier 2 resolvers with DoH(DNS over HTTPS) support for anyone to use.</td>
|
||||
<td><span class="badge badge-info">DNS</span> <span class="badge badge-info">Service</span></td>
|
||||
<td>
|
||||
<a href="/projects/opennic" class="btn btn-secondary">Learn More</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">CyberWrld Grid</th>
|
||||
<td>Free public grid used for testing and development of software and tools.</td>
|
||||
<td><span class="badge badge-info">OpenSimulator</span> <span class="badge badge-info">Service</span></td>
|
||||
<td>
|
||||
<a href="/projects/cyberwrld" class="btn btn-secondary">Learn More</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Zadaroo</th>
|
||||
<td>Free public OpenSimulator resources licensed under CC0.</td>
|
||||
<td><span class="badge badge-info">OpenSimulator</span> <span class="badge badge-info">Service</span></td>
|
||||
<td>
|
||||
<a href="https://zadaroo.com" target="_blank" class="btn btn-secondary">Visit</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Code:</h3>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Name</th>
|
||||
<th scope="col">About</th>
|
||||
<th scope="col">Tags</th>
|
||||
<th scope="col">Link(s)</th>
|
||||
<th scope="col">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Ansible OpenNIC Setup</th>
|
||||
<td>Simple Ansible Playbook to install and configure an OpenNIC Tier 2 node on multiple distributions of Linux.</td>
|
||||
<td><span class="badge badge-info">Ansible Playbook</span> <span class="badge badge-info">Automation</span></td>
|
||||
<td>
|
||||
<a href="https://github.com/hack13/ansible-opennic-setup" target="_blank" class="btn btn-secondary"><i class="fab fa-github"></i></a>
|
||||
</td>
|
||||
<td><h4><span class="badge badge-primary">Maintained</span></h4></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Ansible OpenSim Grid</th>
|
||||
<td>Grid Setup for OpenSim using Ansible on CentOS 7</td>
|
||||
<td><span class="badge badge-info">Ansible Playbook</span> <span class="badge badge-info">Automation</span></td>
|
||||
<td>
|
||||
<a href="https://github.com/hack13/ansible-opensim-grid" target="_blank" class="btn btn-secondary"><i class="fab fa-github"></i></a>
|
||||
</td>
|
||||
<td><h4><span class="badge badge-primary">Maintained</span></h4></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">OpenSim Libre Panel</th>
|
||||
<td>OpenSimulator Standalone/Grid Management System</td>
|
||||
<td><span class="badge badge-info">PHP</span> <span class="badge badge-info">SQL</span></td>
|
||||
<td>
|
||||
<a href="https://github.com/hack13/opensim-libre-panel" target="_blank" class="btn btn-secondary"><i class="fab fa-github"></i></a>
|
||||
</td>
|
||||
<td><h4><span class="badge badge-info">Work In Progress</span></h4></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Zadaroo</th>
|
||||
<td>A static redesign of the Zadaroo site, to provide a more streamlined site.</td>
|
||||
<td><span class="badge badge-info">HTML</span> <span class="badge badge-info">JavaScript</span></td>
|
||||
<td>
|
||||
<a href="https://github.com/hack13/Zadaroo" target="_blank" class="btn btn-secondary"><i class="fab fa-github"></i></a>
|
||||
</td>
|
||||
<td><h4><span class="badge badge-info">Work In Progress</span></h4></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
|
@ -1,75 +0,0 @@
|
|||
<?php include('../views/https.php'); ?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>HACK13 Site</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<?php include('../views/navbar.php'); ?>
|
||||
<main role="main">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">Tier 2 Virginia OpenNIC Resolvers</h1>
|
||||
<hr>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<h3>What is OpenNIC?</h3>
|
||||
<p>OpenNIC is an open and democratic alternative to DNS root. The project is ran by hobbyists who work together to operate a decentralized DNS resolver to ensure DNS Neutrality. OpenNIC also provides its own set to TLDs that operators are all free registration. OpenNIC is also peered with other networks such as Emercoin, New Nations, and FurNIC. More information about the project as a whole can be found out from the official site.</p>
|
||||
<p><a href="https://opennic.org/" class="btn btn-primary" target="_blank">Learn More</a></p>
|
||||
</div>
|
||||
<div class="row">
|
||||
<h3>DNS over HTTPS Service</h3>
|
||||
<p>I provide a free DoH service that load balances between my two OpenNIC Recursive Resolvers. You can add it to your Firefox browser by going into your preferences, or to any other DoH capable system/browser.</p>
|
||||
<p><strong>DoH Address:</strong> https://doh.hack13.me/dns-query </p>
|
||||
<h4>Instructions to Add to DoH to Firefox</h4>
|
||||
<ol>
|
||||
<li>Open your preferences by click on the hamburger menu on the top right, and select Preferences. <br/> <img src="/assets/firefox-1.jpg" /></li>
|
||||
<li>Scroll down to the bottom second labled "Network Settings" and click "Settings". <br/> <img src="/assets/firefox-2.jpg" /></li>
|
||||
<li>Check the box at the bottom labeled "Enable DNS over HTTPS" and select "Custom" and enter "https://doh.hack13.me/dns-query" and click OK. <br/> <img src="/assets/firefox-3.jpg" /></li>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="row">
|
||||
<h3>DNS Servers</h3>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<div class="card">
|
||||
<h5 class="card-header">OpenNIC Virginia USA NS1</h5>
|
||||
<div class="card-body">
|
||||
<strong>Hostname:</strong> ns1.va.us.dns.opennic.glue <br/>
|
||||
<strong>A Record:</strong> 147.135.113.37 <br/>
|
||||
<strong>AAAA Record:</strong> 2604:2dc0:101:200::3de <br/>
|
||||
<strong>Location:</strong> Vint Hill, Virginia <br/>
|
||||
<strong>Logging Policy:</strong> No logs kept, routed to /dev/null <br/>
|
||||
<a href="https://servers.opennicproject.org/edit.php?srv=ns1.va.us.dns.opennic.glue" class="btn btn-primary" target="_blank">OpenNIC Servers Report</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="card">
|
||||
<h5 class="card-header">OpenNIC Virginia USA NS2</h5>
|
||||
<div class="card-body">
|
||||
<strong>Hostname:</strong> ns2.va.us.dns.opennic.glue <br/>
|
||||
<strong>A Record:</strong> 147.135.115.88 <br/>
|
||||
<strong>AAAA Record:</strong> 2604:2dc0:101:200::465 <br/>
|
||||
<strong>Location:</strong> Vint Hill, Virginia <br/>
|
||||
<strong>Logging Policy:</strong> No logs kept, routed to /dev/null <br/>
|
||||
<a href="https://servers.opennicproject.org/edit.php?srv=ns2.va.us.dns.opennic.glue" class="btn btn-primary" target="_blank">OpenNIC Servers Report</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
<footer class="footer mt-auto py-3">
|
||||
<div class="container">
|
||||
<span class="text-muted"><i class="far fa-copyright"></i>HACK13<i>(Timothy Rogers)</i></span>
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.8.1/js/all.js" integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ" crossorigin="anonymous"></script>
|
||||
</footer>
|
||||
</html>
|
|
@ -0,0 +1,17 @@
|
|||
{{ partial "header.html" . }}
|
||||
|
||||
<div class="header">
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h2>{{ .Site.Params.subtitle }}</h2>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
{{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
|
||||
{{ partial "pagination.html" . }}
|
||||
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
|
@ -1,4 +1,4 @@
|
|||
<head>
|
||||
<title>{{ block "title" . }}{{ if .IsHome }} {{ .Site.Title }} {{ else }} {{ .Title }} - {{ .Site.Title }} {{ end }}{{ end }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/bootstrap.min.css"/>
|
||||
</head>
|
File diff suppressed because one or more lines are too long
|
@ -11,8 +11,8 @@ features = []
|
|||
min_version = "0.41.0"
|
||||
|
||||
[author]
|
||||
name = "hack13"
|
||||
homepage = "https://hack13.me/"
|
||||
name = ""
|
||||
homepage = ""
|
||||
|
||||
# If porting an existing theme
|
||||
[original]
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
<?php
|
||||
//If the HTTPS is not found to be "on"
|
||||
if(!isset($_SERVER["HTTPS"]) || $_SERVER["HTTPS"] != "on")
|
||||
{
|
||||
//Tell the browser to redirect to the HTTPS URL.
|
||||
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"], true, 301);
|
||||
//Prevent the rest of the script from executing.
|
||||
exit;
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<a class="navbar-brand" href="#"> <i class="far fa-user"></i> HACK13</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarColor02">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://blog.hack13.me">Blog</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/guides">Guides</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/projects">Projects</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/about">About Me</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/privacy">Privacy</p>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://github.com/hack13" target="_blank"><i class="fab fa-github fa-2x"></i></a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://meow.social/@hack13" target="_blank"><i class="fab fa-mastodon fa-2x"></i></a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://www.last.fm/user/dothacker552" target="_blank"><i class="fab fa-lastfm-square fa-2x"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
Reference in a new issue