2022-10-06 22:16:27 -05:00
|
|
|
#!/usr/bin/php
|
2022-10-08 09:19:40 -05:00
|
|
|
<?php
|
|
|
|
include "helpers/body_open.php";
|
|
|
|
?>
|
2022-10-16 09:22:44 -05:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<h1 class="col-12 title">Who Am I?</h1>
|
2023-07-23 01:07:13 +00:00
|
|
|
</div>
|
2024-01-26 02:50:43 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 header center" >
|
2024-01-28 08:52:59 -07:00
|
|
|
<img src="/files/media/icons/about.jpg">
|
2024-01-26 02:50:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text">
|
2023-07-23 01:07:13 +00:00
|
|
|
<p>
|
2024-01-25 07:37:10 -07:00
|
|
|
Hi there! My name is Chad, I'm the primary content creator
|
|
|
|
behind Hyperling and HyperVegan. Thank you for your interest!
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
2023-07-23 01:07:13 +00:00
|
|
|
<p>
|
2024-01-25 07:37:10 -07:00
|
|
|
My mission in life is to help others and make the world a better
|
|
|
|
place. I adhere to objective morality and strive to teach it to
|
|
|
|
others in order to create a world based on Freedom. I'd also like
|
|
|
|
to recreate a "Garden of Eden" on Earth. Imagine if everyone
|
|
|
|
planted at least one fruit tree or had a small square foot
|
|
|
|
garden. We would be in paradise!
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
2024-03-23 18:57:58 -07:00
|
|
|
<!-- TBD change this to 'Coding, videos, and art' :) -->
|
2022-10-18 20:12:45 -05:00
|
|
|
<p>
|
2024-01-25 07:37:10 -07:00
|
|
|
Coding and videos aren't my only hobbies, I'm also big into
|
|
|
|
health. I see it as humanity's most important asset and take a
|
|
|
|
nature-based approach. I was fortunate in my early 20's and
|
|
|
|
learned to heal myself. After a childhood of chronic illness I
|
|
|
|
was able to lock in a powerful lifestyle and have not been sick
|
|
|
|
since! <a href="#health">My Health Protocol</a> contains more
|
|
|
|
information on that.
|
2022-10-18 20:12:45 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2024-03-23 18:57:58 -07:00
|
|
|
I'm also an avid gardener, focusing on the principles of native
|
|
|
|
plants and permaculture in order to grow fruits and vegetables.
|
2024-01-25 07:37:10 -07:00
|
|
|
Food forestry is one of my favorites! I have many other outdoor
|
|
|
|
interests too such as hiking, camping, backpacking, foraging, and
|
|
|
|
traveling.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
I live within the boundaries known as "United States of America".
|
|
|
|
From birth to 2023 it was the subboundary "Indiana", and since
|
|
|
|
2023 it is the subboundary "Arizona". As of 2024 I am working to
|
|
|
|
realize my goal of being a nomad.
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
2023-07-23 01:07:13 +00:00
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
</div>
|
2022-10-08 09:19:40 -05:00
|
|
|
|
|
|
|
<?php
|
2022-10-16 09:22:44 -05:00
|
|
|
include "subpages/about/notice.php";
|
|
|
|
include "subpages/about/health.php";
|
2022-10-08 09:19:40 -05:00
|
|
|
include "subpages/about/stance.php";
|
|
|
|
|
|
|
|
include "helpers/body_close.php";
|
|
|
|
?>
|