Massive Update

This commit is contained in:
TheEmeraldStarr 2020-11-01 17:37:18 -08:00
parent 259aaa60d0
commit d9a4490745
32 changed files with 601 additions and 1106 deletions

View file

@ -1,87 +0,0 @@
.button {
display: inline-block;
position: relative;
margin: 1em;
padding: 10px 30px;
border: 2px solid #ffffff;
overflow: hidden;
text-decoration: none;
font-size: 16px;
outline: none;
color: #ffffff;
background: transparent;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
}
a:hover {
color: #007053;
text-decoration: underline;
}
.button span {
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
.button:before,
.button:after {
content: '';
position: absolute;
top: 10px;
left: 0;
width: 100%;
text-align: center;
opacity: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.button:before {
content: attr(data-hover);
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
}
.button:hover span,
.button:active span {
opacity: 0;
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
}
.button:hover:before,
.button:active:after {
opacity: 1;
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
-o-transition-delay: .4s;
transition-delay: .4s;
}
.button:active:before {
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
}

View file

@ -1,12 +0,0 @@
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

View file

@ -1,90 +0,0 @@
.footer-dark {
padding: 50px 0;
color: #f0f9ff;
background-color: #282d32;
}
.footer-dark h3 {
margin-top: 0;
margin-bottom: 12px;
font-weight: bold;
font-size: 16px;
}
.footer-dark ul {
padding: 0;
list-style: none;
line-height: 1.6;
font-size: 14px;
margin-bottom: 0;
}
.footer-dark ul a {
color: inherit;
text-decoration: none;
opacity: 0.6;
}
.footer-dark ul a:hover {
opacity: 0.8;
}
@media (max-width:767px) {
.footer-dark .item:not(.social) {
text-align: center;
padding-bottom: 20px;
}
}
.footer-dark .item.text {
margin-bottom: 36px;
}
@media (max-width:767px) {
.footer-dark .item.text {
margin-bottom: 0;
}
}
.footer-dark .item.text p {
opacity: 0.6;
margin-bottom: 0;
}
.footer-dark .item.social {
text-align: center;
}
@media (max-width:991px) {
.footer-dark .item.social {
text-align: center;
margin-top: 20px;
}
}
.footer-dark .item.social > a {
font-size: 20px;
width: 36px;
height: 36px;
line-height: 36px;
display: inline-block;
text-align: center;
border-radius: 50%;
box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
margin: 0 8px;
color: #fff;
opacity: 0.75;
}
.footer-dark .item.social > a:hover {
opacity: 0.9;
}
.footer-dark .copyright {
text-align: center;
padding-top: 24px;
opacity: 0.3;
font-size: 13px;
margin-bottom: 0;
}

View file

@ -1,52 +0,0 @@
div.gallery {
border: 1px solid #ccc;
margin-top: 5px;
margin-bottom: 5px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: 60%;
}
div.desc {
padding: 10px;
text-align: center;
height: 150px;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 0 6px;
float: left;
width: 24.99999%;
display: flex;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
margin: 6px 0;
display: flex;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
display: flex;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}

View file

@ -1,83 +0,0 @@
.gembed {
width: 100%;
height: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
position: fixed;
}
.fbody {
background-color: black;
color: rgb(0, 0, 0);
font-family: sans-serif;
}
.glink {
display: block;
text-decoration: none;
color: white;
font: 18px;
border: 1px solid #007053;
margin-top: -1px;
background-color: #000000;
padding: 12px;
transition: 0.2s ease;
}
.glink:hover {
background-color: rgb(0, 0, 0);
text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
#gsearchbar {
outline: none;
width: 98%;
top: 12px;
font-size: 16px;
border: 1px solid #007053;
padding: 12px;
margin-bottom: 12px;
transition: 0.2s ease;
background: #1c2228;
}
#gsearchbar:focus {
background-color: rgb(29, 27, 27);
box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.4);
}
.container {
padding: 20px;
}
.box {
margin: auto;
background-color: wblack;
padding: 10px 10px 15px 10px;
width: 100%;
height: 540px;
}
#glist {
overflow-x: hidden;
overflow-y: scroll;
width: 100%;
height: 100%;
padding: 0;
text-align: center;
}
#glist h2 {
display: block;
text-decoration: none;
color: white;
font: 18px;
border: 1px solid #060606;
margin: -1px 0 0 0;
background-color: #060606;
padding: 12px;
font-weight: bold;
user-select: none;
}

View file

@ -1,172 +0,0 @@
.header-dark {
background: url(mountain_bg.jpg) #444;
background-size: cover;
padding-bottom: 80px;
}
@media (min-width:768px) {
.header-dark {
padding-bottom: 120px;
}
}
.header-dark .navbar {
background: transparent;
color: #fff;
border-radius: 0;
box-shadow: none;
border: none;
}
@media (min-width:768px) {
.header-dark .navbar {
padding-top: .75rem;
padding-bottom: .75rem;
}
}
.header-dark .navbar .navbar-brand {
font-weight: bold;
color: inherit;
}
.header-dark .navbar .navbar-brand:hover {
color: #f0f0f0;
}
.header-dark .navbar .navbar-collapse span {
margin-top: 5px;
}
.header-dark .navbar .navbar-collapse span .login {
color: #d9d9d9;
margin-right: .5rem;
text-decoration: none;
}
.header-dark .navbar .navbar-collapse span .login:hover {
color: #fff;
}
.header-dark .navbar .navbar-toggler {
border-color: #747474;
}
.header-dark .navbar .navbar-toggler:hover,
.header-dark .navbar-toggler:focus {
background: none;
}
.header-dark .navbar .navbar-toggler {
color: #eee;
}
.header-dark .navbar .navbar-collapse,
.header-dark .navbar .form-inline {
border-color: #636363;
}
@media (min-width: 992px) {
.header-dark .navbar.navbar .navbar-nav .nav-link {
padding-left: 1.2rem;
padding-right: 1.2rem;
}
}
.header-dark .navbar.navbar-dark .navbar-nav .nav-link {
color: #d9d9d9;
}
.header-dark .navbar.navbar-dark .navbar-nav .nav-link:focus,
.header-dark .navbar.navbar-dark .navbar-nav .nav-link:hover {
color: #fcfeff !important;
background-color: transparent;
}
.header-dark .navbar .navbar-nav>li>.dropdown-menu {
margin-top: -5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
background-color: #fff;
border-radius: 2px;
}
.header-dark .navbar .dropdown-menu .dropdown-item:focus,
.header-dark .navbar .dropdown-menu .dropdown-item {
line-height: 2;
height: 100%;
width: 100%;
font-size: 14px;
color: #37434d;
}
.header-dark .navbar .dropdown-menu .dropdown-item:focus,
.header-dark .navbar .dropdown-menu .drodown-item:hover {
background: #ebeff1;
}
.header-dark .navbar .action-button,
.header-dark .navbar .action-button:active {
background: #208f8f;
border-radius: 20px;
font-size: inherit;
color: #fff;
box-shadow: none;
border: none;
text-shadow: none;
padding: .5rem .8rem;
transition: background-color 0.25s;
}
.header-dark .navbar .action-button:hover {
background: #269d9d;
}
.header-dark .navbar .form-inline label {
color: #ccc;
}
.header-dark .navbar .form-inline .search-field {
display: inline-block;
width: 80%;
background: none;
border: none;
border-bottom: 1px solid transparent;
border-radius: 0;
color: #ccc;
box-shadow: none;
color: inherit;
transition: border-bottom-color 0.3s;
}
.header-dark .navbar .form-inline .search-field:focus {
border-bottom: 1px solid #ccc;
}
.header-dark .hero {
margin-top: 60px;
}
@media (min-width:768px) {
.header-dark .hero {
margin-top: 20px;
}
}
.header-dark .hero h1 {
color: #fff;
font-family: 'Bitter', serif;
font-size: 40px;
margin-top: 20px;
margin-bottom: 80px;
}
@media (min-width:768px) {
.header-dark .hero h1 {
margin-bottom: 50px;
line-height: 1.5;
}
}
.header-dark .hero .embed-responsive iframe {
background-color: #666;
}

View file

@ -1,21 +0,0 @@
section {
width: 100%;
height: 238px;
border: none;
overflow: hidden;
}
#page-holder {
border: 0;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 90;
position: fixed;
background-color: #fff;
display: block;
user-select: none;
}

View file

@ -1,163 +0,0 @@
.navigation-clean {
background: #fff;
padding-top: .75rem;
padding-bottom: .75rem;
color: #333;
border-radius: 0;
box-shadow: none;
border: none;
margin-bottom: 0;
}
@media (min-width:768px) {
.navigation-clean {
padding-top: 1rem;
padding-bottom: 1rem;
}
}
.navigation-clean .navbar-brand {
font-weight: bold;
color: inherit;
}
.navigation-clean .navbar-brand:hover {
color: #222;
}
.navigation-clean.navbar-dark .navbar-brand:hover {
color: #f0f0f0;
}
.navigation-clean .navbar-brand img {
height: 100%;
display: inline-block;
margin-right: 10px;
width: auto;
}
.navigation-clean .navbar-toggler {
border-color: #ddd;
}
.navigation-clean .navbar-toggler:hover, .navigation-clean .navbar-toggler:focus {
background: none;
}
.navigation-clean.navbar-dark .navbar-toggler {
border-color: #555;
}
.navigation-clean .navbar-toggler {
color: #888;
}
.navigation-clean.navbar-dark .navbar-toggler {
color: #eee;
}
.navigation-clean .navbar-collapse, .navigation-clean .form-inline {
border-top-color: #ddd;
}
.navigation-clean.navbar-dark .navbar-collapse, .navigation-clean.navbar-dark .form-inline {
border-top-color: #333;
}
.navigation-clean .navbar-nav > .active > a, .navigation-clean .navbar-nav > .show > a {
background: none;
box-shadow: none;
}
.navigation-clean.navbar-light .navbar-nav .nav-link.active, .navigation-clean.navbar-light .navbar-nav .nav-link.active:focus, .navigation-clean.navbar-light .navbar-nav .nav-link.active:hover {
color: #8f8f8f;
box-shadow: none;
background: none;
pointer-events: none;
}
.navigation-clean.navbar .navbar-nav .nav-link {
padding-left: 18px;
padding-right: 18px;
}
.navigation-clean.navbar-light .navbar-nav .nav-link {
color: #465765;
}
.navigation-clean.navbar-light .navbar-nav .nav-link:focus, .navigation-clean.navbar-light .navbar-nav .nav-link:hover {
color: #37434d !important;
background-color: transparent;
}
.navigation-clean .navbar-nav > li > .dropdown-menu {
margin-top: -5px;
box-shadow: none;
background-color: #fff;
border-radius: 2px;
}
@media (min-width:768px) {
.navigation-clean .navbar-nav .show .dropdown-menu {
box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
}
@media (max-width:767px) {
.navigation-clean .navbar-nav .show .dropdown-menu .dropdown-item {
color: #37434d;
padding-top: .8rem;
padding-bottom: .8rem;
line-height: 1;
}
}
.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item {
line-height: 2;
color: #37434d;
}
.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item:hover {
background: #eee;
color: inherit;
}
.navigation-clean.navbar-dark {
background-color: #1f2021;
color: #fff;
}
.navigation-clean.navbar-dark .navbar-nav a.active, .navigation-clean.navbar-dark .navbar-nav a.active:focus, .navigation-clean.navbar-dark .navbar-nav a.active:hover {
color: #8f8f8f;
box-shadow: none;
background: none;
pointer-events: none;
}
.navigation-clean.navbar-dark .navbar-nav .nav-link {
color: #dfe8ee;
}
.navigation-clean.navbar-dark .navbar-nav .nav-link:focus, .navigation-clean.navbar-dark .navbar-nav .nav-link:hover {
color: #fff;
background-color: transparent;
}
.navigation-clean.navbar-dark .navbar-nav > li > .dropdown-menu {
background-color: #1f2021;
}
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item {
color: #f2f5f8;
}
.navigation-clean.navbar-dark .dropdown-menu .dropdown-item:focus, .navigation-clean.navbar-dark .dropdown-menu .dropdown-item:hover {
background: #363739;
}
@media (max-width:767px) {
.navigation-clean.navbar-dark .navbar-nav .show .dropdown-menu .dropdown-item {
color: #fff;
}
}

View file

@ -1,154 +0,0 @@
@media only screen and (max-width: 100%) {
body {
min-height: 100%;
min-width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
}
}
.hd-base {
background-color: rgb(0, 0, 0);
background-image: url("assets/img/black.jpg");
}
.dp-base {
height: 100px;
}
.dp-menu {
background-color: rgb(33, 30, 30);
padding: 17%;
padding-top: 10%;
padding-bottom: 10%;
}
.dp-menu-brand {
font-family: 'Montserrat Alternates', sans-serif;
font-size: 21px;
margin: 10px;
font-style: normal;
font-weight: bold;
}
.dp-menu-more {
opacity: 0.80;
color: #fff;
font-family: 'Montserrat Alternates', sans-serif;
}
.dp-more {
background-color: rgb(33, 30, 30);
font-family: 'Titillium Web', sans-serif;
padding: 17%;
padding-top: 10%;
padding-bottom: 10%;
}
.dp-more-items {
color: white;
padding: 0;
font-family: Lato, sans-serif;
}
.dp-menu-options {
opacity: 0.80;
font-family: 'Montserrat Alternates', sans-serif;
}
.tb-cloakp1 {
font-size: 20px;
font-family: 'Montserrat Alternates', sans-serif;
}
.tb-cloakp2 {
font-size: 14px;
font-family: 'Montserrat Alternates', sans-serif;
}
.tb-input {
width: 100%;
height: 40px;
font-family: 'Montserrat Alternates', sans-serif;
}
.tb-btn {
width: 100%;
padding: 8px;
margin: 0px;
height: 90%;
font-family: 'Montserrat Alternates', sans-serif;
font-size: 16px;
}
.ft-bg {
background-color: rgb(0, 0, 0);
}
.ft-g {
margin: 2%;
}
.particlesbg {
position: absolute;
display: block;
min-height: 100%;
min-width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
color: #fff;
background-color: white;
}
.in-bg {
height: 500px;
font-family: 'Montserrat Alternates', sans-serif;
font-weight: bold;
}
.in-flex {
height: inherit;
min-height: initial;
width: 100%;
position: absolute;
left: 0;
}
.in-splash {
height: 200px;
}
.in-center {
color: rgb(255, 255, 255);
}
.in-splash-text {
color: rgb(242, 245, 248);
font-size: 35px;
font-weight: normal;
font-family: 'Montserrat Alternates', sans-serif;
margin: 7px;
padding: 34px;
width: 559px;
}
.in-btn-color {
color: #00bc8c;
}
.d-popupbg {
border: 3px solid #ffffff;
background-color: #000000;
font-family: 'Montserrat Alternates', sans-serif;
color: #FFFFFF;
padding: 1%;
margin: 1%;
}

View file

@ -20,8 +20,114 @@ section {
overflow: hidden;
}
#page-holder {
border: 0;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 90;
position: fixed;
background-color: #fff;
display: block;
user-select: none;
}
/*Styles CSS*/
/* Button Hover */
.button {
display: inline-block;
position: relative;
margin: 1em;
padding: 10px 30px;
border: 2px solid #ffffff;
overflow: hidden;
text-decoration: none;
font-size: 16px;
outline: none;
color: #ffffff;
background: transparent;
font-family: 'Titillium Web', sans-serif;
font-weight: 700;
}
a:hover {
color: #007053;
text-decoration: underline;
}
.button span {
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
.button:before,
.button:after {
content: '';
position: absolute;
top: 10px;
left: 0;
width: 100%;
text-align: center;
opacity: 0;
-webkit-transition: .4s;
-moz-transition: .4s;
-o-transition: .4s;
transition: .4s;
}
.button:before {
content: attr(data-hover);
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
}
.button:hover span,
.button:active span {
opacity: 0;
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
}
.button:hover:before,
.button:active:after {
opacity: 1;
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
-o-transition-delay: .4s;
transition-delay: .4s;
}
.button:active:before {
-webkit-transform: 0.4s;
-moz-transform: 0.4s;
-ms-transform: 0.4s;
-o-transform: 0.4s;
transform: 0.4s;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
}
/*CBO CSS*/
*,
*:before,
@ -31,13 +137,8 @@ section {
box-sizing: border-box;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*Header CSS*/
.hd-base {
background-color: rgb(0, 0, 0);
@ -113,6 +214,9 @@ section {
font-size: 16px;
}
/*Footer CSS*/
.ft-bg {
background-color: rgb(0, 0, 0);
}
@ -132,7 +236,7 @@ section {
left: 0;
z-index: -1;
color: #fff;
background-color: white;
background-color: black;
}
.in-bg {
@ -181,6 +285,29 @@ section {
}
/* Surf Texts*/
.s-text-header,
.s-text-p1,
.s-text-p2 {
font-weight: bold
}
.s-text-header,
.s-text-p1 {
font-family: 'Montserrat Alternates', sans-serif
}
.s-text-p1,
.s-text-p2 {
font-size: 0.9375rem
}
.s-text-p2 {
font-family: Lato, sans-serif
}
/*Navigation CSS */
.navigation-clean {
@ -364,7 +491,7 @@ section {
/* Header CSS */
.header-dark {
background: url(mountain_bg.jpg) #444;
background-color: black;
background-size: cover;
padding-bottom: 80px;
}
@ -542,7 +669,7 @@ section {
.footer-dark {
padding: 50px 0;
color: #f0f9ff;
background-color: #282d32;
background-color: black;
}
.footer-dark h3 {

View file

@ -1,153 +1,45 @@
var date = new Date();
date.setMonth(date.getMonth() + 12);
date = date.toUTCString();
/*Title & Icon Presets*/
let titles = icons = [];
function randInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
/* Title Presets*/
var titles = [
]
/* Icon Presets*/
var icons = [
]
/* Settings Menu Variables*/
var psel, prss;
window.addEventListener('DOMContentLoaded', function() {
psel = document.getElementById('csel');
addEventListener('DOMContentLoaded', p => {
p = $('csel');
setPreferences();
for (var i = 0; i < titles.length; i++) {
if (i == 0) {
psel.innerHTML += '<img title="(Blank)" src="./img/x.png">'
} else {
psel.innerHTML += '<img title="' + titles[i] + '" src="' + icons[i] + '">';
}
}
titles.forEach((e, i) => p.innerHTML += i ? `<img title="${e}" src="${icons[i]}">` : '<img title=(Blank) src=./img/x.png>');
/* Title Submit*/
document.getElementById('titleform').addEventListener('submit', function(e) {
e.preventDefault();
if (this.firstChild.value) {
setTitle(this.firstChild.value);
} else {
setTitle('&rlm;&lrm;');
}
}, false);
/*Title Submit*/
(i => i.onsubmit = e => e.preventDefault() || setTitle(i.firstChild.value || '&rlm;&lrm;'))($('titleform'));
/* Icon Submit*/
document.getElementById('iconform').addEventListener('submit', function(e) {
e.preventDefault();
if (this.firstChild.value) {
setIcon(this.firstChild.value);
} else {
setIcon('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=');
}
}, false);
/*Icon Submit*/
(i => i.onsubmit = e => e.preventDefault() || setIcon(i.firstChild.value || 'data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAA'))($('iconform'));
/* Settings Submit*/
psel.addEventListener('click', function(e) {
prss = Array.from(psel.children).indexOf(e.target);
if (prss != -1) {
setTitle(titles[prss]);
setIcon(icons[prss]);
}
}, false);
/*Settings Submit*/
p.onclick = (e, s) => (s = Array.from(p.children).indexOf(e.target)) + 1 && setTitle(titles[s], setIcon(icons[s]));
/* Settings Menu Event*/
document.getElementById('csel').addEventListener('click', function(e) {
if (this.checked) {
window.onbeforeunload = function(e) {
var message = 'Error Tab Cloak'
e.returnValue = message;
return message;
};
} else {
window.onbeforeunload = function() {};
}
}, false);
/*Settings Menu Event*/
(i => i.onclick = e => { onbeforeunload = e => { if (i.checked) return e.returnValue = 'Error Tab Cloak' } })($('csel'));
/* Fullscreen Feature Addition*/
/* document.getElementById('fullscreen').addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('theframe').requestFullscreen()
return false;
}, false); */
}, false);
/*Fullscreen Feature Addition*/
//$('fullscreen').onclick=e=>e.preventDefault()||$('theframe').requestFullscreen()
}, 0);
/* Title and Icon Cookies... and yes this is cookie based*/
function setPreferences() {
if (readCookie('HBTitle') != 'undefined') {
pageTitle(readCookie('HBTitle'));
}
if (readCookie('HBIcon') != 'undefined') {
pageIcon(readCookie('HBIcon'));
}
}
/*Title and Icon Cookies*/
setPreferences = (e, i, a) => { e = 'HBTitle', i = 'HBIcon', a = [] + void[], readCookie(e) == a || pageTitle(readCookie(e));
readCookie(i) == a || pageIcon(readCookie(i)) };
/* Set Cookie Secure*/
function setCookie(name, value) {
document.cookie = name + '=' + encodeURIComponent(value) + '; expires=' + date + '; SameSite=None; Secure';
}
/*Set Secure Cookie*/
(d => { d.setMonth(d.getMonth() + 12);
setCookie = (n, v) => { document.cookie = n + `=${encodeURIComponent(v)};expires=${d.toUTCString()};SameSite=None;Secure` } })(new Date());
/* Read Cookie*/
function readCookie(name) {
var cookie = document.cookie.split('; ');
var cookies = {};
for (var i = 0; i < cookie.length; i++) {
var cur = cookie[i].split('=');
cookies[cur[0]] = cur[1];
}
return decodeURIComponent(cookies[name]);
}
/*Read Cookie*/
readCookie = n => { try { return decodeURIComponent(document.cookie.split('; ').filter(e => e.startsWith(n + '='))[0].slice(n.length + 1)) } catch { return [] } };
/* Set Title from Input Value*/
function setTitle(value) {
pageTitle(value);
setCookie('HBTitle', value);
}
/*Set Title & Icon from Input Value*/
setTitle = v => pageTitle(v) || setCookie('HBTitle', v);
setIcon = v => pageIcon(v) || setCookie('HBIcon', v);
/* Set Icon from Input Value*/
function setIcon(value) {
pageIcon(value);
setCookie('HBIcon', value);
}
/* Title Attach*/
function pageTitle(value) {
document.getElementsByTagName('title')[0].innerHTML = value;
try {
parent.document.getElementsByTagName('title')[0].innerHTML = value;
} catch (e) { console.log(e); }
}
/* Icon Attach*/
function pageIcon(value) {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.rel = 'icon';
link.href = value;
document.getElementsByTagName('head')[0].appendChild(link);
try {
var link = parent.document.querySelector("link[rel*='icon']") || document.createElement('link');
link.rel = 'icon';
link.href = value;
parent.document.getElementsByTagName('head')[0].appendChild(link);
} catch (e) { console.log(e); }
}
/* Title & Icon Attach*/
pageTitle = v => { document.title = v; try { parent.document.title = v } catch (e) { console.log(e) } };
pageIcon = (v, l, e) => { e = 'link[rel*=icon]', document.head.appendChild(((l = document.querySelector(e) || document.createElement('link')).rel = 'icon', l.href = v, l)); try { parent.document.head.appendChild(((l = parent.document.querySelector(e) || document.createElement('link')).rel = 'icon', l.href = v, l)) } catch (e) { console.log(e) } };
/* Tab Cloak*/
function autoChange() {
if (document.getElementById('csel').checked) {
var atci = randInt(1, 5);
pageTitle(titles[atci]);
pageIcon(icons[atci]);
setTimeout(autoChange, randInt(10000, 60000));
} else {
setPreferences();
}
}
autoChange = (e, r) => { $('csel').checked ? pageTitle(titles[e = (r = (a, b) => Math.floor(Math.random() * (b - a + 1)) + a)(1, 5)], pageIcon(icons[e]), setTimeout(autoChange, r(1e4, 6e4))) : setPreferences() }

View file

@ -1,3 +1,11 @@
$=e=>document.getElementById(e)||[];
$ = e => document.getElementById(e) || [];
$("hblink").href="https://github.com/QuiteAFancyEmerald/HolyUnblockerPublic";$("hblink2").href="https://github.com/QuiteAFancyEmerald/HolyUnblockerPublic";$("allink").href="https://github.com/titaniumnetwork-dev/alloyproxy";$("tnlink").href="https://discord.com/invite/Dw6C7p5";$("plink").href="https://github.com/vibedivide/powermouse";$("nclink").href="https://nodeclusters.com";$("qrlink").href="https://support.discord.com/hc/en-us/articles/360039213771-QR-Code-Login-FAQ";$("nulink").href="https://github.com/nfriedly/node-unblocker";$("pylink").href="https://github.com/BinBashBanana/PyDodge"
$("hblink").href = "https://github.com/QuiteAFancyEmerald/HolyUnblockerPublic";
$("hblink2").href = "https://github.com/QuiteAFancyEmerald/HolyUnblockerPublic";
$("allink").href = "https://github.com/titaniumnetwork-dev/alloyproxy";
$("tnlink").href = "https://discord.com/invite/Dw6C7p5";
$("plink").href = "https://github.com/vibedivide/powermouse";
$("nclink").href = "https://nodeclusters.com";
$("qrlink").href = "https://support.discord.com/hc/en-us/articles/360039213771-QR-Code-Login-FAQ";
$("nulink").href = "https://github.com/nfriedly/node-unblocker";
$("pylink").href = "https://github.com/BinBashBanana/PyDodge"

View file

@ -10,16 +10,16 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Button-Change-Text-on-Hover.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/FD.css">
<link rel="stylesheet" href="assets/css/IF.css">
<link rel="stylesheet" href="assets/css/HD.css">
<link rel="stylesheet" href="assets/css/hp.css">
<link rel="stylesheet" href="assets/css/styles.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
@ -35,7 +35,7 @@
<iframe id="page-holder" src="/?j" style="display: block;"></iframe>
<noscript>You must enable javascript in your browser to view this webpage.</noscript>
-->
<span style=display:none data-cooking=cooks>Boost your confidence in the kitchen with our trusted tips, tricks and expert advice to master the basics and build upon your existing cooking skills and knowledge.</span>
<div>
<div class="header-dark hd-base">
<nav class="navbar navbar-dark navbar-expand-lg navigation-clean-search" style="height: 100px;">
@ -54,8 +54,8 @@
role="presentation" href="/?in" style="color: rgb(255,255,255);padding: 0%;font-family: Lato, sans-serif;">Docs</a><a class="dropdown-item text-white-50" role="presentation" href="/?c" style="color: rgb(255,255,255);padding: 0%;font-family: Lato, sans-serif;">Cre&#8203;dits</a></div>
</li>
<!--Options Menu-->
<li id="csel" class="nav-item dropdown"><a class="dropdown-toggle nav-link text-white" data-toggle="dropdown" aria-expanded="false" href="#" style="opacity: 0.80;font-family: 'Montserrat Alternates', sans-serif;">Options</a>
<div class="dropdown-menu" role="menu" style="background-color: rgb(33,30,30);padding: 17%;padding-top: 10%;padding-bottom: 10%;">
<li class="nav-item dropdown"><a class="dropdown-toggle nav-link text-white" data-toggle="dropdown" aria-expanded="false" href="#" style="opacity: 0.80;font-family: 'Montserrat Alternates', sans-serif;">Options</a>
<div id="csel" class="dropdown-menu" role="menu" style="background-color: rgb(33,30,30);padding: 17%;padding-top: 10%;padding-bottom: 10%;">
<style>
.csel input[type="submit"] {
cursor: pointer;
@ -80,12 +80,11 @@
</div>
</div>
</nav>
<span style=display:none data-cooking=chem></span>
<span style=display:none data-cooking=chem>Warm and inviting, home cooking has resurfaced with all the kudos it deserves. Diana's menu reflects some of the most sought after recipes there are. They call it comfort food for a reason! Mac and Cheese with Butternut Squash, Chicken Pot Pie, Pork Ragu over Easy Creamy Polenta, Beef and Bacon Meatloaf with Garlic Mashed Potatoes, Boston Cream ...</span>
<!-- Main Body -->
<!-- Particles.js background -->
<div id="particles-js" class="in-bg">
<div class="d-flex justify-content-center align-items-center in-flex">
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
particlesJS.load('particles-js', 'particles.json', function() {
@ -104,6 +103,20 @@
</div>
</div>
<!--Footer-->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<div class="footer-dark ft-bg">
<footer>
<div class="container">
@ -139,10 +152,7 @@
</div>
</footer>
</div>
<!-- Assets -->
<script src="assets/js/links.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>

View file

@ -9,18 +9,21 @@
<meta name="description" content="G&#8203;et p&#8203;ast in&#8203;te&#8203;r&#8203;net ce&#8203;n&#8203;s&#8203;or&#8203;sh&#8203;ip tod&#8203;a&#8203;y!
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
</head>
<body>
@ -69,6 +72,20 @@
</div>
</div>
</nav>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<!-- Particles.js background -->
<div id="particles-js" style="background-image: url(&quot;assets/img/black.jpg&quot;);height: 100%;background-position: center;background-size: cover;background-repeat: no-repeat;background-color: #000000;font-family: 'Montserrat Alternates', sans-serif;font-weight: bold;">
<div class="d-flex justify-content-center align-items-center" style="height: 100%;min-height: initial;width: 100%;position: absolute;left: 0;">

View file

@ -10,18 +10,21 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<!--Icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
</head>
<body>
@ -80,6 +83,20 @@
console.log('particlesjs loaded.......');
});
</script>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<div class="text-center d-flex align-items-center order-12" style="height: 80%;width: 80%;">
<div class="container text-center justify-content-center align-items-center" style="color: rgb(255,255,255);">
<!-- Credits -->

View file

@ -10,23 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="/assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="/assets/css/Button-Change-Text-on-Hover.css">
<link rel="stylesheet" href="/assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="/assets/css/Footer-Dark.css">
<link rel="stylesheet" href="/assets/css/Header-Dark.css">
<link rel="stylesheet" href="/assets/css/styles.css">
<!-- Game CSS-->
<link rel="stylesheet" href="/assets/css/games.css">
<link rel="stylesheet" href="/assets/css/gembed.css">
<link rel="application/javascript" href="/assets/js/games.js">
<!-- Icons-->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<link rel="application/javascript" href="/assets/js/games.js">
</head>
<body>

View file

@ -9,18 +9,24 @@
<meta name="description" content="G&#8203;et p&#8203;ast in&#8203;te&#8203;r&#8203;net ce&#8203;n&#8203;s&#8203;or&#8203;sh&#8203;ip tod&#8203;a&#8203;y!
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="/assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="/assets/css/Button-Change-Text-on-Hover.css">
<link rel="stylesheet" href="/assets/css/styles.css">
<!--Game CSS-->
<link rel="application/javascript" href="/assets/js/games.js">
<!--Icons-->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="/expr/alload.js"></script>
<!--Game CSS-->
<link rel="application/javascript" href="/assets/js/games.js">
</head>
<!--Games Old CSS -->
@ -32,6 +38,20 @@
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav ml-auto">
<!--Nav-->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<li class="nav-item" role="presentation"><a class="nav-link active" href="/?z" style="font-family: 'Montserrat Alternates', sans-serif;">Su&#8203;rf Fre&#8203;ely</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="/?g" style="font-family: 'Montserrat Alternates', sans-serif;">Ga&#8203;mes</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="/?y" style="font-family: 'Montserrat Alternates', sans-serif;">YouTu&#8203;be</a></li>

View file

@ -92,6 +92,20 @@
</tr>
</tbody>
</table>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
<footer>Crea&#8203;ted by <a href="https://github.com/juchi">@Juc&#8203;hi</a></footer>

View file

@ -10,16 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="/expr/alload.js"></script>
</head>
<body>
@ -79,10 +85,24 @@
});
</script>
<!-- YT Surf-->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<div class="d-flex align-items-center order-12" style="height:200px;">
<div class="container text-center border rounded justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px);opacity: 0.95;">
<form class="hb-form-padding" id="unblocker-form" action="b" method="get">
<p style="font-size: 46px;">GTo&#8203;ols Directory</p>
<p class="s-text-header" style="font-size: 46px;">GTo&#8203;ols Directory</p>
<p style="font-family: 'Montserrat Alternates', sans-serif;">Choose where you would like to go. Below is some information.</p>
<p class="text-info" style="font-size: 20px;font-family: Lato, sans-serif;">Information:<br></p>
<p class="text-default" style="font-family: Lato, sans-serif;">Here you can find cool stuff like emula&#8203;tors and gam&#8203;es!</p>

View file

@ -10,17 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="/expr/alload.js"></script>
</head>
<body>
@ -82,6 +87,20 @@
<div class="text-center d-flex align-items-center order-12" style="height: 80%;width: 80%;">
<div class="container text-center justify-content-center align-items-center" style="color: rgb(255,255,255);">
<!-- Credits -->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<h1 class="text-center d-md-flex flex-grow-1 justify-content-md-center align-items-md-center" style="color: rgb(242,245,248);font-size: 46px;font-weight: normal;font-family: 'Montserrat Alternates', sans-serif;margin: 7px;padding: 34px;width: 100%;filter: blur(0px);height: 100%;">Icon Information<br></h1>
<script>
document.write(`

View file

@ -10,19 +10,23 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/part-bg.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="/expr/alload.js"></script>
<script src="assets/js/part-bg.js"></script>
</head>
<body>
@ -80,7 +84,8 @@
<h1>Privacy Policy for Holy Unblocker</h1>
<p>At Holy Unblocker, accessible from ${document.domain}, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Holy Unblocker and how we use
it.</p>
it.
</p>
<p>If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.</p>
@ -284,6 +289,20 @@
<p>This document was last updated on April 17, 2020</p>
</div>`);
</script>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
</div>
<!--Footer-->

View file

@ -10,21 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!--Icons-->
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="/expr/alload.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="/expr/alload.js"></script>
</head>
<body>
@ -86,8 +87,8 @@
<div class="container border rounded text-center justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px); opacity: 0.95;">
<!--AL-->
<form id="scontainer" onkeydown=al() action="/home/session" method="POST">
<p style="font-size: 46px;">Al<wbr>loy Pro<wbr>xy</p>
<p style="font-family: 'Montserrat Alternates', sans-serif;">A fast, lightweight pr<wbr>oxy developed by Tita<wbr>nium N<wbr>etwork.</p>
<p class="s-text-header" style="font-size: 46px;">Al<wbr>loy Pro<wbr>xy</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif;">A fast, lightweight pr<wbr>oxy developed by Tita<wbr>nium N<wbr>etwork.</p>
<div id="scontainerb" class="input-group">
<div class="input-group-prepend"></div><input id="url" class="bg-dark border rounded-0 border-info shadow-sm form-control form-control-lg" type="text" name="url" inputmode="url" style="width: 194px;font-family: 'Montserrat Alternates', sans-serif;opacity: 0.80; color:rgb(255,255,255);"
placeholder="Insert URL">
@ -103,10 +104,24 @@
</script>
</div>
<p class="text-primary" style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif;">More Inf<wbr>ormation:<br></p>
<p class="text-light" style="font-family: Lato, sans-serif;">Works on Di<wbr>scord (QR Code Only), Yout<wbr>ube (Might need to rel<wbr>oad), etc.<br><br>Many si<wbr>tes work with this. Ex<wbr>plore!</p>
<p class="text-primary" style="font-family: Lato, sans-serif;">Git<wbr>Hub:&nbsp;<a class="text-primary" id="allink"><strong>&nbsp;https://github&#8203;.com/ti&#8203;taniumnetwork-&#8203;dev/alloypro&#8203;xy</strong></a><br><br>All<wbr>oy Pr<wbr>ox<wbr>y created by S<wbr>exyDu<wbr>ceD<wbr>uce
<p class="text-light s-text-p2" style="font-family: Lato, sans-serif;">Works on Di<wbr>scord (QR Code Only), Yout<wbr>ube (Might need to rel<wbr>oad), etc.<br><br>Many si<wbr>tes work with this. Ex<wbr>plore!</p>
<p class="text-primary s-text-p2" style="font-family: Lato, sans-serif;">Git<wbr>Hub:&nbsp;<a class="text-primary" id="allink"><strong>&nbsp;https://github&#8203;.com/ti&#8203;taniumnetwork-&#8203;dev/alloypro&#8203;xy</strong></a><br><br>All<wbr>oy Pr<wbr>ox<wbr>y created by S<wbr>exyDu<wbr>ceD<wbr>uce
(a very epic person) :D<br>All<wbr>oy v2.2</p>
</form>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
</div>
</div>

View file

@ -10,19 +10,21 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
</head>
<body>
@ -85,16 +87,30 @@
<div class="d-flex align-items-center order-12" style="height:200px;">
<div class="container text-center border rounded justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px);opacity: 0.95;">
<form id="unblocker-form" action="b" method="get">
<p style="font-size: 46px;">Di<wbr>sc<wbr>ord Pr<wbr>oxy</p>
<p style="font-family: 'Montserrat Alternates', sans-serif;">Choose which pr&#8203;oxy you would like to use. Below is some information.</p>
<p class="text-warning" style="font-size: 20px;font-family: Lato, sans-serif;">Having Issues?:<br></p>
<p class="text-warning" style="font-family: Lato, sans-serif;">If the page appears gray, reload the page.<br>If the QR code doesn't load, reload the page.<br> Please note that you CANNOT login normally, this is QR Code only.<br>Lastly, if the page is marked as danger&#8203;ous try
<p class="s-text-header" style="font-size: 46px;">Di<wbr>sc<wbr>ord Pr<wbr>oxy</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif;">Choose which pr&#8203;oxy you would like to use. Below is some information.</p>
<p class="text-warning s-text-p2" style="font-size: 20px;font-family: Lato, sans-serif;">Having Issues?:<br></p>
<p class="text-warning s-text-p2" style="font-family: Lato, sans-serif;">If the page appears gray, reload the page.<br>If the QR code doesn't load, reload the page.<br> Please note that you CANNOT login normally, this is QR Code only.<br>Lastly, if the page is marked as danger&#8203;ous try
using another Hol&#8203;y Unblo&#8203;cker link.</p>
<div class="btn-group" role="group" style="background-color: #030303;margin: 2%;padding: 1px;">
<a href="/?dd" class="btn btn-lg btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif;">Dis<wbr>cord
Pr<wbr>oxy (QR)</a>
<a class="btn btn-lg btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif; margin-left: 15px;" href="/?p">Disc<wbr>ord Pro<wbr>xy (Tok<wbr>en)</a>
</div>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</form>
</div>
</div>

View file

@ -10,21 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!--Icons-->
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="expr/nuload.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="expr/nuload.js"></script>
</head>
<body>
@ -86,8 +87,8 @@
<div class="container border rounded text-center justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px); opacity: 0.95;">
<!--NU-->
<form id="pc" onkeydown="nu()">
<p style=" font-size: 46px; ">No&#8203;de Unbloc&#8203;ker</p>
<p style="font-family: 'Montserrat Alternates', sans-serif; ">A flexib&#8203;le seco&#8203;ndary pr&#8203;oxy compared to All&#8203;oy, P&#8203;M and P&#8203;D.</p>
<p class="s-text-header" style=" font-size: 46px; ">No&#8203;de Unbloc&#8203;ker</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif; ">A flexib&#8203;le seco&#8203;ndary pr&#8203;oxy compared to All&#8203;oy, P&#8203;M and P&#8203;D.</p>
<div class="input-group ">
<div class="input-group-prepend"></div><input id="url" class="bg-dark border rounded-0 border-info shadow-sm form-control form-control-lg " type="text" name="url" style="width: 194px;font-family:
'Montserrat Alternates', sans-serif;opacity: 0.80; color:rgb(255,255,255); " placeholder="Insert URL ">
@ -103,10 +104,24 @@
}
</script>
</div>
<p class="text-primary " style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif; ">More Informat&#8203;ion:<br></p>
<p class="text-light " style="font-family: Lato, sans-serif; ">Works on Di&#8203;scord (QR Code Only), Yout&#8203;ube (Might need to reload), etc.<br><br>Many sites work with this. Explore!</p>
<p class="text-primary " style="font-family: Lato, sans-serif; ">Gi&#8203;tHub:&nbsp;<a class="text-primary " id="nulink"><strong>&nbsp;https://git&#8203;hub.com/nfri&#8203;edly/no&#8203;de-unblo&#8203;cker</strong></a><br><br>Created by Nat&#8203;han Friedl&#8203;y.</p>
<p class="text-primary" style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif; ">More Informat&#8203;ion:<br></p>
<p class="text-light s-text-p2" style="font-family: Lato, sans-serif; ">Works on Di&#8203;scord (QR Code Only), Yout&#8203;ube (Might need to reload), etc.<br><br>Many sites work with this. Explore!</p>
<p class="text-primary s-text-p2" style="font-family: Lato, sans-serif; ">Gi&#8203;tHub:&nbsp;<a class="text-primary " id="nulink"><strong>&nbsp;https://git&#8203;hub.com/nfri&#8203;edly/no&#8203;de-unblo&#8203;cker</strong></a><br><br>Created by Nat&#8203;han Friedl&#8203;y.</p>
</form>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
</div>
</div>

View file

@ -10,20 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="expr/pmload.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="expr/pmload.js"></script>
</head>
<body>
@ -86,8 +88,8 @@
<div class="container border rounded text-center justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px); opacity: 0.95;">
<!--PM-->
<form id="pm" onkeydown="pm()">
<p style=" font-size: 46px; ">Powermouse Pr<wbr>oxy</p>
<p style="font-family: 'Montserrat Alternates', sans-serif; ">A fle&#8203;xible seconvdary pr&#8203;oxy compared to A&#8203;lloy with support for D&#8203;isco&#8203;rd.</p>
<p class="s-text-header" style="font-size: 46px;">Powerm<wbr>ouse Pr<wbr>oxy</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif;">A fle&#8203;xible seconvdary pr&#8203;oxy compared to A&#8203;lloy with support for D&#8203;isco&#8203;rd.</p>
<div class="input-group ">
<div class="input-group-prepend"></div><input id="url" class="bg-dark border rounded-0 border-info shadow-sm form-control form-control-lg " type="text" name="url" style="width: 194px;font-family:
'Montserrat Alternates', sans-serif;opacity: 0.80; color:rgb(255,255,255); " placeholder="Insert URL ">
@ -104,14 +106,28 @@
</script>
</div>
<p class="text-primary " style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif; ">More Information:<br></p>
<p class="text-light " style="font-family: Lato, sans-serif; ">Wor&#8203;ks on Disc&#8203;ord (QR Code Only), etc. For Disc&#8203;ord you will need to lo&#8203;gin v&#8203;ia Q&#8203;R Code. Normal login will not work (Search up on YT on how to find your Discord Token). Token login
<p class="text-light s-text-p2" style="font-family: Lato, sans-serif;">Wor&#8203;ks on Disc&#8203;ord (QR Code Only), etc. For Disc&#8203;ord you will need to lo&#8203;gin v&#8203;ia Q&#8203;R Code. Normal login will not work (Search up on YT on how to find your Discord Token). Token login
may work with Discord.<br>Reload the page a bunch if it shows up blank.
<br><br>Many si&#8203;tes work with this. Exp&#8203;lore!
</p>
<p class="text-primary " style="font-family: Lato, sans-serif; ">QR Co&#8203;de FAQ:&nbsp;<a class="text-primary " id="qrlink"><strong>&nbsp;https://supp&#8203;ort.dis&#8203;cord.com/hc/en-us/articles/360039213771-QR-C&#8203;ode-Login-FAQ</strong></a><br><br>--</p>
<p class="text-primary " style="font-family: Lato, sans-serif; ">GitH&#8203;ub:&nbsp;<a class="text-primary " id="pmlink"><strong>&nbsp;https://g&#8203;ithub.com/vibed&#8203;ivide/pow&#8203;ermouse</strong></a><br><br>Created by Div&#8203;ide.
<p class="text-primary s-text-p2" style="font-family: Lato, sans-serif; ">QR Co&#8203;de FAQ:&nbsp;<a class="text-primary " id="qrlink"><strong>&nbsp;https://supp&#8203;ort.dis&#8203;cord.com/hc/en-us/articles/360039213771-QR-C&#8203;ode-Login-FAQ</strong></a><br><br>--</p>
<p class="text-primary s-text-p2" style="font-family: Lato, sans-serif; ">GitH&#8203;ub:&nbsp;<a class="text-primary " id="pmlink"><strong>&nbsp;https://g&#8203;ithub.com/vibed&#8203;ivide/pow&#8203;ermouse</strong></a><br><br>Created by Div&#8203;ide.
</p>
</form>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
</div>
</div>

View file

@ -10,21 +10,22 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!--Icons-->
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="expr/pdload.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
<script src="expr/pdload.js"></script>
</head>
<body>
@ -86,8 +87,8 @@
<div class="container border rounded text-center justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px); opacity: 0.95;">
<!--PD-->
<form id="pd" onkeydown="pd()">
<p style=" font-size: 46px; ">P<wbr>yDo<wbr>dge B</p>
<p style="font-family: 'Montserrat Alternates', sans-serif; ">An alterna<wbr>tive pr<wbr>oxy of a modi<wbr>fied V<wbr>ia Pro<wbr>xy by O<wbr>lyB.</p>
<p class="s-text-header" style=" font-size: 46px; ">P<wbr>yDo<wbr>dge B</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif; ">An alterna<wbr>tive pr<wbr>oxy of a modi<wbr>fied V<wbr>ia Pro<wbr>xy by O<wbr>lyB.</p>
<div class="input-group ">
<div class="input-group-prepend"></div><input id="url" class="bg-dark border rounded-0 border-info shadow-sm form-control form-control-lg " type="text" name="url" style="width: 194px;font-family:
'Montserrat Alternates', sans-serif;opacity: 0.80; color:rgb(255,255,255); " placeholder="Insert URL ">
@ -103,9 +104,23 @@
}
</script>
</div>
<p class="text-primary " style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif; ">More Information:<br></p>
<p class="text-light " style="font-family: Lato, sans-serif; ">Works on vari<wbr>ous sites.<br><br>Explore!</p>
<p class="text-primary " style="font-family: Lato, sans-serif; ">GitH<wbr>ub:&nbsp;<a class="text-primary " id="pylink"><strong>&nbsp;https://github.com/BinBashBa&#8203;nana/PyD&#8203;odge</strong></a><br><br>Crea<wbr>ted by Ol<wbr>yB.</p>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<p class="text-primary" style="font-size: 20px;font-family: 'Montserrat Alternates', sans-serif; ">More Information:<br></p>
<p class="text-light s-text-p2" style="font-family: Lato, sans-serif; ">Works on vari<wbr>ous sites.<br><br>Explore!</p>
<p class="text-primary s-text-p2" style="font-family: Lato, sans-serif; ">GitH<wbr>ub:&nbsp;<a class="text-primary " id="pylink"><strong>&nbsp;https://github.com/BinBashBa&#8203;nana/PyD&#8203;odge</strong></a><br><br>Crea<wbr>ted by Ol<wbr>yB.</p>
</form>
</div>
</div>

View file

@ -10,16 +10,21 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
</head>
<body>
@ -82,15 +87,29 @@
<div class="d-flex align-items-center order-12" style="height:200px;">
<div class="container text-center border rounded justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px);opacity: 0.95;">
<form id="unblocker-form" action="b" method="get">
<p style="font-size: 46px;">Yout<wbr>ube Pr<wbr>oxy</p>
<p style="font-family: 'Montserrat Alternates', sans-serif;">Choose which pr&#8203;oxy you would like to use. Below is some information.</p>
<p class="s-text-header" style="font-size: 46px;">Yout<wbr>ube Pr<wbr>oxy</p>
<p class="s-text-p1 " style="font-family: 'Montserrat Alternates', sans-serif;">Choose which pr&#8203;oxy you would like to use. Below is some information.</p>
<p class="text-warning" style="font-size: 20px;font-family: Lato, sans-serif;">Having Issues?:<br></p>
<p class="text-warning" style="font-family: Lato, sans-serif;">If the page appears white, reload the page.<br>Lastly, if the page is marked as danger&#8203;ous try using another H&#8203;oly Unblo&#8203;cker link.</p>
<p class="text-warning s-text-p2 " style="font-family: Lato, sans-serif;">If the page appears white, reload the page.<br>Lastly, if the page is marked as danger&#8203;ous try using another H&#8203;oly Unblo&#8203;cker link.</p>
<div class="btn-group" role="group" style="background-color: #030303;margin: 2%;padding: 1px;">
<a class="btn btn-lg btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif;" href="/?yh">YouTu<wbr>be Pr<wbr>oxy</a>
<a class="btn btn-lg btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif; margin-left: 15px;" href="/?ym">M<wbr>obil<wbr>e YouTu<wbr>be Pr<wbr>oxy</a>
</div>
</form>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</div>
</div>
</div>

View file

@ -25,6 +25,20 @@
</head>
<body>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</body>
</html>

View file

@ -24,6 +24,20 @@
<body>
<!-- AL DC -->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<script src="/expr/dbp.js"></script>
</body>

View file

@ -24,6 +24,20 @@
<body>
<!-- AL YT -->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<script src="/assets/js/y.js"></script>
</body>

View file

@ -24,6 +24,20 @@
<body>
<!-- AL YT -->
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
<script src="/assets/js/ym.js"></script>
</body>

View file

@ -10,19 +10,20 @@
:D">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/i.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat+Alternates">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Customizable-Background--Overlay.css">
<link rel="stylesheet" href="assets/css/Footer-Dark.css">
<link rel="stylesheet" href="assets/css/Header-Dark.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Assets -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
<script src="assets/js/header.js"></script>
<script src="assets/js/im-runtime.js"></script>
</head>
<body>
@ -85,10 +86,10 @@
<div class="d-flex align-items-center order-12" style="height:200px;">
<div class="container text-center border rounded justify-content-center align-items-center button" style="color: rgb(255,255,255);filter: blur(0px);opacity: 0.95;">
<form id="unblocker-form" action="b" method="get">
<p style="font-size: 46px;">Su<wbr>rf Free<wbr>ly</p>
<p style="font-family: 'Montserrat Alternates', sans-serif;">Choose which proxy you would like to use. Below is some information.</p>
<p class="s-text-header" style="font-size: 46px;">Su<wbr>rf Free<wbr>ly</p>
<p class="s-text-p1" style="font-family: 'Montserrat Alternates', sans-serif;">Choose which proxy you would like to use. Below is some information.</p>
<p class="text-primary" style="font-size: 20px;font-family: Lato, sans-serif;">More Information:<br></p>
<p class="text-light" style="font-family: Lato, sans-serif;">A&#8203;llo&#8203;y: Yo&#8203;uTu&#8203;be (Full), Co&#8203;olMa&#8203;thGa&#8203;mes, etc.<br><br>Nod&#8203;e: Secondary pr&#8203;oxy compared to Al&#8203;loy, PM and PD.<br><br>P<wbr>M Pro<wbr>xy: Disc<wbr>ord, Yout<wbr>ube
<p class="text-light s-text-p2" style="font-family: Lato, sans-serif;">A&#8203;llo&#8203;y: Yo&#8203;uTu&#8203;be (Full), Co&#8203;olMa&#8203;thGa&#8203;mes, etc.<br><br>Nod&#8203;e: Secondary pr&#8203;oxy compared to Al&#8203;loy, PM and PD.<br><br>P<wbr>M Pro<wbr>xy: Disc<wbr>ord, Yout<wbr>ube
(limited), etc.<br><br>PyD<wbr>od<wbr>ge: Alternative pro<wbr>xy.<br><br><strong>Many sites work with this. Join the T<wbr>N disc<wbr>ord for updated H<wbr>B sites and more. Explore!</strong><br>T<wbr>N D<wbr>isco<wbr>rd:
<a class="text-light" id="tnlink">https://dis&#8203;cord.c&#8203;om/invite/Dw&#8203;6C7p&#8203;5</a><br></p>
<div class="btn-group" role="group" style="background-color: #030303;margin: 2%;padding: 1px;"><a class="btn btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif;" href="/?a">Al&#8203;loy Pro&#8203;xy</a>
@ -96,6 +97,20 @@
<a class="btn btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif;" href="/?p">PM Pro<wbr>xy</a>
<a class="btn btn-primary text-info border rounded-0 border-primary" role="button" data-bs-hover-animate="pulse" style="background-color: rgb(24,26,28);font-family: 'Montserrat Alternates', sans-serif;" href="/?e">PyD<wbr>odge Pr<wbr>oxy</a>
</div>
<span style=display:none data-cooking=cooks>Cooking started 1.9 million years ago. Therefore, cooking is not something new to humans. Cooking started over a fire with no pots and pans or cooking utensils and now we have microwaves and stoves and special brushes to wipe on a marinade which was not even able to be comprehended 1.9 years ago. In between that time was the middle ages which had many advancements. Life was very different before cooking and has been very different since the beginning of cooking.
1.9 million years ago, given humans average sizes, had to spend forty eight percent of their life time in the “feeding process.” The feeding process does not include cooking. Cooking narrowed the time that humans had to spend in the feeding process to five percent. This change made it to where humans could spend less time in the feeding process and could do more valuable things with their time such as go out and hunt to grow bigger societies and other pursuits which ultimately lead to the beginning to the path of our modern brain. Cooking made food a lot easier to chew and digest. As a result of that we got more calorie benefit and a smaller digestive tract. All of this made cooking a vital part of human adaptation. The changes in human teeth happened so much faster than anything in the human body that scientists have come to the conclusion that this means that cooking was and has been passed down from generations and generations. Also, the oppressed women theory has been going on since the beginning of cooking when men went out and hunted and sought new things. Women at this time had to cook and do the gathering because of their lack of physically strength. So ever since cooking, even 1.9 million years ago, the roles of men and women have been a natural thing of life...
... middle of paper ...
...still be spending too much time eating and cooking. Different things in nature such as wood, spices, iron and chemicals that make up fire, which are just a few, helped start and continue cooking down the path that its going down. I think that cooking will continue to expand as technology advances. I am not sure how it will advance and change but I am sure we will have better more efficient stove tops and ovens.
In conclusion, cooking has evolved as technology has developed. But in the grand scheme of things we still have the same methods. Cooking helped the advancement of the human brain and the advancement of human teeth and our digestive tracts. Today we have restaurants, grocery stores, microwaves, and ovens. And all we started off with was a fire and a piece of meat with a stick stuck through it. Cooking was, is, and will be a vital part of the human life.
</span>
</form>
</div>
</div>