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>
|
2022-10-09 09:43:38 -05:00
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text">
|
|
|
|
<p>
|
|
|
|
Hi there! My name is Chad, I am the primary content creator behind the
|
|
|
|
Hyperling and HyperVegan brands. Thank you for your interest!
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
My hobbies go further than just coding and video making. I am big into
|
|
|
|
health and believe it is humanity's most important asset. I was fortunate
|
2023-03-04 06:44:55 -06:00
|
|
|
to have time off school/work/hobbies in my early 20's and was able to
|
|
|
|
lock in a great lifestyle after a life of chronic sickness. See more
|
|
|
|
below in <a href="#health">My Health Protocol</a>.
|
|
|
|
It also includes a link to my full history of changes.
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
I am also an avid gardener, focusing on the principles of nature-based
|
|
|
|
permaculture in order to grow fruits and vegetables, like in a Food
|
|
|
|
Forest system. This comes with other outdoor interests such as hiking,
|
|
|
|
camping, backpacking, foraging, and traveling.
|
|
|
|
</p>
|
2022-10-18 20:12:45 -05:00
|
|
|
<!--
|
|
|
|
<p>
|
|
|
|
Currently I reside in the US state of Indiana and am working to move
|
|
|
|
to the southwest, starting in Arizona. Colorado and Mexico will likely
|
|
|
|
be explored. New Mexico and other locations will be visited as well
|
|
|
|
but have not yet revealed areas which offer exactly what I'm looking
|
|
|
|
for.
|
|
|
|
</p>
|
|
|
|
-->
|
2022-10-16 09:22:44 -05:00
|
|
|
<p>
|
2022-10-19 04:56:51 -05:00
|
|
|
As of 2022 I reside in the US state of Indiana and am working to move
|
2022-10-18 20:12:45 -05:00
|
|
|
to the southwest for the following reasons:
|
|
|
|
</p>
|
|
|
|
<ul>
|
2022-10-19 04:56:51 -05:00
|
|
|
<li>Dry Climate</li>
|
2022-10-18 20:12:45 -05:00
|
|
|
<li>Mountains</li>
|
|
|
|
<li>Lack of Bugs</li>
|
2022-10-19 04:56:51 -05:00
|
|
|
<li>Permaculture Possibilities</li>
|
2022-10-18 20:12:45 -05:00
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
The search will begin in Arizona. Colorado and Mexico will likely
|
2022-10-19 04:56:51 -05:00
|
|
|
be explored. New Mexico and other locations will be visited as well.
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</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";
|
|
|
|
?>
|