Transfer to git

This commit is contained in:
2026-02-03 19:37:38 -03:00
commit 9ffbd90a82
136 changed files with 5798 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
User-Agent: *
Disallow: /
Disallow: *

View File

@@ -0,0 +1,5 @@
.article {
display: flex;
flex-direction: column;
align-items: center;
}

View File

@@ -0,0 +1,50 @@
body {
margin: 5em;
max-width: 1000px;
min-height: 800px;
justify-content: center;
display: flex;
flex-direction: column;
}
body, html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
/* TOP AND BOT BAR */
.bar {
width: 100%;
display: flex;
align-items: center;
height: fit-content;
}
.bar > div{
flex: 1;
}
.left > p {
text-align: left;
}
.mid > p {
text-align: center;
}
.right > p {
text-align: right;
}
.panel > .title {
font-style: italic;
}
.panel {margin-bottom: 1em;}
.bot {margin-top: 1em;}
.top {font-weight: bold;}
.last {
margin-bottom: 0em;
}

View File

@@ -0,0 +1,49 @@
html {
display: flex;
justify-content: center;
}
body {
font-size: 15px;
font-family: monospace;
text-align: center;
background-color:rgb(255, 244, 163);
color: rgb(47, 45, 31);
transition: background-color 0.3s ease, color 0.3s ease;
scrollbar-width: thin;
}
h1 {font-size: 24px;}
h2 {font-size: 20px;}
h3 {font-size: 18px;}
h4 {font-size: 14px;}
p {
margin: 10px;
}
a:link, a:visited {
color: rgb(47, 45, 31);
transition: color 0.3s ease;
}
a:hover {
color: rgb(144, 138, 93);
transition: color 0.3s ease;
}
.panel {
border: 5px ridge rgb(159, 143, 96);
background-color: rgb(255, 230, 153);
transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
span.li{
display: list-item;
text-align: left;
margin-left: 2em
}
img {
image-rendering:pixelated;
}

View File

@@ -0,0 +1,3 @@
.specs {
width: fit-content;
}

View File

@@ -0,0 +1,122 @@
body, html {
box-sizing: border-box;
}
* {
font-size: inherit;
font-family: inherit;
box-sizing: inherit;
}
body {
font-family: monospace;
display: flex;
align-items: center;
justify-content: center;
}
.panel {
display: flex;
align-items: center;
height: fit-content;
}
.panel > div {
text-align: center;
}
.calculator {
flex-shrink: 0;
flex-grow: 1;
width: auto;
height: auto;
justify-content: center;
}
.calculator > div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px;
}
.buttons {
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: right;
align-items: stretch;
max-width: calc((70px * 4) + ( 5 * (4px * 2) ) );
}
button {
border: 0;
margin: 5px;
height: 70px;
width: 70px;
background-color:rgb(253, 247, 203);
transition: 0.05s background-color ease-in;
}
button:active {
background-color:rgb(194, 186, 124);
}
#equal {
flex-grow: 1;
}
.viewing {
border-top: 0;
border-left: 0;
border-right: 0;
display: flex;
align-items: center;
background-color:rgb(253, 247, 203);
width: calc((70px * 4) + ( 2 * (15px) ));
height: 3em;
margin-bottom: 20px;
}
.viewing > #output {
padding: 0.5em;
font-size: 40px;
text-align: right;
text-overflow: clip;
overflow-y: auto;
width: 100%;
}
.calctitle {
color: rgb(43, 43, 43);
font-size: 40px;
margin-top: 1rem;
margin-bottom: 1rem;
}
.middle {
gap: 1em;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex-grow: 1;
}
.info {
flex-direction: column;
align-items: center;
justify-content: flex-start;
text-align: justify;
width: 100%;
flex-basis: 30%;
flex-shrink: 0;
flex-grow: 200;
}
.title {
text-align: center;
margin:1rem;
}

View File

@@ -0,0 +1,69 @@
/* Styling */
[type="text"] {
background-color:rgb(253, 247, 203);
width: 100%;
}
.inputs, .history, [type="text"], [type="submit"] {
font-size: 8px;
font-family: monospace;
}
.history {
background-color: rgb(253, 247, 203);
}
/* Disposition */
.chat {
width: 20%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.chat > * {
width: 90%;
}
.inputs, .history {
display: flex;
}
.inputs {
flex-direction: row;
}
.history {
max-height: 60%;
flex-shrink: 1;
white-space: wrap;
}
.history > div {
flex-shrink: 2;
overflow-x: hidden;
overflow-y: auto;
display: flex;
flex-direction: column-reverse;
flex: 1;
margin: 1em;
scrollbar-width: thin;
}
.comment {
display: flex;
}
.user {
font-weight: bold;
margin-right: 0.5em;
}
.message {
word-wrap: break-word;
text-align: justify;
}

View File

@@ -0,0 +1,69 @@
.other {margin-left: 1em;}
.first {margin-right: 1em;}
.about {
align-content: center;
}
.middle {
display: flex;
flex: 1;
align-items: stretch;
flex-direction: row;
}
.first,.other {
flex-direction: column;
width: 20%;
min-height: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
}
.main {
flex-direction: column;
width: 60%;
align-content: flex-start;
}
.links > div {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.blinkies > img {
width: 80%;
margin-top: 0.2em;
}
.links > div > p {
display: flex;
flex-direction: column;
}
.other > div {
height: 100%;
width: 100%;
}
.chat {
max-height: 50%;
}
.more > div {
margin: 1em;
}
.webrings,.blinkies {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
}
.webrings > div {
margin-bottom: 1em;
}

View File

@@ -0,0 +1,31 @@
/* See comment on html directly */
.noaiwebring {
width: 80%;
position: relative;
}
.noaiwebring > img {
width: 100%;
height: 100%;
}
.noaiwebring > a > div {
position: absolute;
}
.noaiwebring > a > .nxt {
left: 76.1%; top: 6.5%; width: 20.5%; height: 48.4%;
}
.noaiwebring > a > .prv {
left: 2.3%; top: 6.5%; width: 20.5%; height: 48.4%;
}
.noaiwebring > a > .rnd {
left: 71.6%; top: 61.3%; width: 12.5%; height: 35.5%;
}
.noaiwebring > a > .home {
left: 26.1%; top: 48.4%; width: 44.3%; height: 48.4%;
}

View File

@@ -0,0 +1,102 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>About this hosting</title>
<link rel='stylesheet' type='text/css' href='../css/specific/about-host.css'>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type='text/css' href="../css/global/articles.css">
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="../en/about-this-site.html">About this site</a></p>
</div>
<div id="middle">
<p><a href="../en_home.html">Main</a></p>
</div>
<div class="right">
<p>
<a href="../es/about-host.html">ES</a>
<a href="#top">EN</a>
</p>
</div>
</div>
<div class="article panel">
<p>
Hello, <br><br>
You clicking this article means you have an interest on how this
website is structured, and what infrastructure it runs in.
I've gotta say this will probably change over time, but there is one
aspect I will adhere to, mantaining custody over my own data, in practice
that means everything I host will be hosted on-site on my own infrastructure,
just below a little about the <i>homelab's</i> history and some details.<br>
</p>
<h3>Specs</h3>
<div class="specs panel">
<p>
CPU: AMD Ryzen 5 4600G <br>
RAM: 32GB DDR4 3200MHZ <br>
Motherboard: ASRock A320M-HDV 4.0 <br>
PSU: EVGA 450W 80plus <br>
Storage: <br>
<span class="li">x1 1TB SSD NVME Samsung 970 Plus</span>
<span class="li">x2 3TB HDD WD Green (RAID 1)</span>
Case: No-name brand,
quite square-ish.<br>
</p>
</div>
<h3>History</h3>
<p>
Each one of the components has a different origin, the case, psu and motherboard
have always been the same since the begining, part of the original PC I got as
a birthday present a while back, it was equiped with 8gb of ram, a modest HDD,
together with an AMD Ryzen 3 3200G, it was enough back then, but just as it came,
I got myself a brand new laptop, somewhat comparable (or even better) to the pc,
I ended up using it way more, thanks to it being portable.
</p>
<p>
After some time, can't quite remember the reason, I took the decision to move it to its
current location, a secure place with a good broadband connection, this was all the way
back at the start of 2022, when I installed Ubuntu Server 22.04 LTS.
</p>
<p>
I graudually updated it, I got the current proccesor over on amazon, then the ram
(attempted to purchase it from Aliexpress, but once it arrived I discovered it
wasn't compatible, had to re-sell it, and buy my current 2x16gb kit), and last but
not least, two 3tb disks which I thought was plenty for my usecase (foreshadowing).
</p>
<p>
I currently still have the same Ubuntu Server install on bare hardware, and almost
every single service I host is using a docker container, managed using Portainer.
</p>
<h3>Networking</h3>
<h4>Domain name</h4>
<p>
I've used several domain names over time, starting with No-IP to ssh remotely, rapidely migrating
to DuckDNS, that setup endured quite a while but after having some problems with DNS resolution, and
limitations on their DNS capabilities (they used AWS) thanks to my sub-domain repertoire I
decided to finally make the leap and purchase my own domain on some of the internet's registrars,
ended up with this domain on Porkbun, for a measly 5 dollars and a half, a lot /s.
</p>
<h4>Proxy & DDNS</h4>
<p>
I use NginxProxyManager to manage all my domains and redirects, I don't plan on migrating to
Traefik for now because NPM does the job, and increasing my infrastructure's complexity isn't my
number one priority, maybe in the future. For Dynamic DNS I use DDClient, my ISP (Antel) doesn't
provide static IPs to residential addresses, so I'm stuck having to update my registers once or
twice a day in-leiu of having a fixed one.
</p>
</div>
<div class="bot bar panel">
<div class="left"><p>Entirely handmade, css & html only :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Version 1.0.1, 17.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>About this site</title>
<link rel='stylesheet' type='text/css' href='../css/specific/about-this-site.css'>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type='text/css' href="../css/global/articles.css">
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="#top">About this site</a></p>
</div>
<div id="middle">
<p><a href="../en_home.html">Main</a></p>
</div>
<div class="right">
<p>
<a href="../es/about-this-site.html">ES</a>
<a href="#top">EN</a>
</p>
</div>
</div>
<div class="article panel">
<p>
Still in construction, come back later :p
</p>
</div>
<div class="bot bar panel">
<div class="left"><p>Entirely handmade, css & html only :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Version 1.0.1, 17.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>Calculadora</title>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type="text/css" href="../css/specific/calc.css">
<script src="../js/calc1.js"></script>
<script defer src="../js/calc2.js"></script>
</head>
<body>
<!--
<div class="panel">
<div>
<button onclick="calc()">CalcV1</button>
<p>Testing</p>
</div>
</div>
-->
<div class="top bar panel">
<div class="left">
<p><a href="../en/about-this-site.html">About this site</a></p>
</div>
<div id="middle">
<p><a href="../en_home.html">Main</a></p>
</div>
<div class="right">
<p>
<a href="../es/calc.html">ES</a>
<a href="#top">EN</a>
</p>
</div>
</div>
<div class="middle">
<div class="calculator panel">
<div>
<div class="calctitle">
Calculadora
</div>
<div class="viewing panel">
<span id="output"></span>
</div>
<div class="buttons">
<button onclick="q_manage('add',1)">1</button>
<button onclick="q_manage('add',2)">2</button>
<button onclick="q_manage('add',3)">3</button>
<button onclick="q_manage('add','+')">+</button>
<button onclick="q_manage('add',4)">4</button>
<button onclick="q_manage('add',5)">5</button>
<button onclick="q_manage('add',6)">6</button>
<button onclick="q_manage('add','-')">-</button>
<button onclick="q_manage('add',7)">7</button>
<button onclick="q_manage('add',8)">8</button>
<button onclick="q_manage('add',9)">9</button>
<button onclick="q_manage('add','*')">*</button>
<button onclick="">(</button>
<button onclick="q_manage('add',0)">0</button>
<button onclick="">)</button>
<button onclick="q_manage('add','/')">/</button>
<button onclick="q_manage('remove')">&lt;</button>
<button onclick="q_manage('add','^')">^</button>
<button onclick="q_execute('add','=')" id="equal">=</button>
</div>
</div>
</div>
<div class="info panel">
<h1 class="title">About this project</h1>
<p>
It has certainly been a while since I've touched Javascript,
and I wanted to regain some of the know-how I had about it,
that's why decided to code this calculator from scratch
without using any external libraries, nor chatbots, only
wikis like w3 school about the language itself even if
that required more time.
</p>
<p>
So it began my learning journey, coding this entire calculator
has been quite a joy I must say, and even if the final product
is lacking some funcionality like parenthesis parsing it still
works completely fine for most things, as it process inputs using
PEMDAS.
</p>
<p>
Were I to make it all over again, I would probably go about
things differently, researching about more efficient algorithms
and methods and not reinventing the wheel, but the thing is,
that's the entire point of this excersice, wasn't for that
self-impossed limitation, I could make use of tons of more
efficient libraries.
</p>
<p>
Now about the inner workings of the script, I implemented a
simple array that stores every character typed, and once the
equal key is pressed, it sends the array to be processed in
the following steps:
<span class="li">Concatenate the digits, from [1,1,'+',2,3] to [11,'+',23].</span>
<span class="li">Search for term separators, and create multidimensional arrays with
each level representing one type of operation.
</span>
<span class="li">Undo all this array but backwards, processing the output as it goes.
</span>
It looks easy on paper, but I spent an entire day and a half coding and dealing with
each aspect of programming, things I didn't quite remember, others I didn't know from
the get-go, etc. (I must add a personal rant about how difficult is dealing with
multidimensional arrays, it's not a trivial task for sure).
</p>
<p>
Update 23/01/2026 <br>
I showed my calculator to a friend of mine and they
pointed out I was lacking a 0 button, how could I miss
that, seriously XD.
</p>
</div>
</div>
<div class="bot bar panel">
<div class="left"><p>Entirely handmade, css & html only (and some js here) :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Version 1.0.4, 23.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Masivana</title>
<meta name='viewport' content='width=device-width, initial-scale=0.5'>
<meta name="robots" content="noai, noimageai">
<link rel="stylesheet" type='text/css' href="css/global/components.css">
<link rel="stylesheet" type='text/css' href="css/global/styles.css">
<link rel='stylesheet' type='text/css' href='css/specific/main.css'>
<link rel='stylesheet' type='text/css' href='css/specific/chat.css'>
<link rel='stylesheet' type='text/css' href='css/specific/noaiwebring.css'>
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="en/about-this-site.html">About this site</a></p>
</div>
<div class="mid">
<p><a href="en_home.html">Main</a></p>
</div>
<div class="right">
<p>
<a href="es_home.html">ES</a>
<a href="#top">EN</a>
</p>
</div>
</div>
<div class="middle">
<div class="first">
<div class="blinkies panel">
<h1 class="title">Blinkies :p</h1>
<img src="imgs/blinkies/firefox_user.gif" alt="Firefox user." title="Lost-source">
<img src="imgs/blinkies/firefoxget.gif" alt="Firefox, the trusted browser." title="Lost source">
<img src="imgs/blinkies/deletetiktok_pink_blinkie.webp" alt="Delete tiktok." title="Lost source">
<img src="imgs/blinkies/bantimetravel_stamp.jpeg" alt="Ban time travel now." title="Lost source">
<img src="imgs/blinkies/0206-nyancat.gif" alt="Nyan cat." title="Lost source">
<img src="imgs/blinkies/blinkiesCafe-nonbinary.gif" alt="Non-binary flag." title="Generated on blinkies.cafe">
<img src="imgs/blinkies/queso_cubano_masiv_.gif" alt="Queso Cubano." title="Made it myself :D">
<img src="imgs/blinkies/blinkiesCafe-cats.gif" alt="Cat love." title="Generated on blinkies.cafe">
<img src="imgs/blinkies/blinkiesCafe-sudormrf.gif" alt="sudo rm -rf /" title="Generated on blinkies.cafe">
<img src="imgs/blinkies/dontfeedtheai.gif" alt="Don't feed the AI." title="Found on https://kotatsu.me/blinkies/dontfeedtheai.gif">
<img src="imgs/blinkies/steins.png" alt="Steins Gate Timeline Divergence clock." title="Made it myself :D">
<img src="imgs/blinkies/htmljunkie.gif" alt="HTML Junkie." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/htmljunkie.gif">
<img src="imgs/blinkies/ihatepopups.gif" alt="I hate popups." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/ihatepopups.webp">
<img src="imgs/blinkies/poweredbydoctorpepper.gif" alt="Powered by Dr. Pepper" title="Found on https://quinnbozon.nekoweb.org/indexs.html, source https://files.catbox.moe/1ouoj9.gif">
<a>(Sources on hover)</a>
</div>
<div class="webrings panel last">
<h1 class="title">Webrings</h1>
<!-- Completely replaced how this webring was provided for better accesibility, original one used <area> to include links inside the image,
but scaling it messes up the coordinates of each link, dynamically changing dimensions can only be achieved by using transform: scale(),
but that too is limited, as it can't access the current div's dimensions, you can get pixel scaling on width and height using calc and
percentages, but that doesn't scale the map accordingly.
Found a solution elsewhere, making clickable divs, and sizing them absolutely with respect to the image itself using percentages instead of
pixel's coordinates, here https://stackoverflow.com/questions/7844399/responsive-image-map/53597608#53597608 I think this solution works on
any browser, on any version (at least with my testing)-->
<div class="noaiwebring">
<a href="https://baccyflap.com/noai" target="_blank" alt="no ai webring" title="no ai webring"><div class="home"></div></a>
<a href="https://baccyflap.com/noai/?prv&s=msv" target="_top" alt="previous" title="previous"><div class="prv"></div></a>
<a href="https://baccyflap.com/noai/?rnd" target="_top" alt="random" title="random"><div class="rnd"></div></a>
<a href="https://baccyflap.com/noai/?nxt&s=msv" target="_top" alt="next" title="next"><div class="nxt"></div></a>
<img src="imgs/webrings/miniwidget5.gif" alt="the top of a fuzzy,
black sphere with two arrows rising from it, one curving to the left, one to the right. across the bulk of the sphere it reads NO AI / WEBRING in squiggly,
uneven letters and next to those words is a small question mark">
</div>
</div>
</div>
<div class="main">
<div class="about panel">
<p>Welcome to my personal website, below you can find information about the services I host + other info :D </p>
</div>
<div class="invitation-info panel">
<h1 class="title">Registration</h1>
<p>You need to create <b>an account</b> to use some of the services listed below, for information please contact the admin.</p>
</div>
<div class="links panel">
<h1 class="title">Links</h1>
<div>
<div>
<h2>Masivana</h2>
<p>
<a href="https://movies.media.ethernal.win" target="_blank">Movies & Series</a><br>
<a href="https://request.media.ethernal.win" target="_blank">Content requests</a><br>
<a href="https://books.media.ethernal.win" target="_blank">Books</a><br>
<a href="https://tube.media.ethernal.win" target="_blank">Videos</a><br>
</p>
</div>
<div>
<h2>Storage</h2>
<p>
<a href="https://photos.ethernal.win" target="_blank">Photos cloud</a><br>
<a href="https://cloud2.ethernal.win" target="_blank">Cloud</a><br>
</p>
</div>
<div>
<h2>Tools</h2>
<p>
<a href="https://convert.ethernal.win" target="_blank">File converter</a><br>
<a href="https://pdf.ethernal.win" target="_blank">PDF converter</a><br>
<a href="https://dl.ethernal.win" target="_blank">Video downloader</a><br>
<a href="https://analysis.ethernal.win" target="_blank">Chat analyser</a><br>
<a href="https://draw.ethernal.win" target="_blank">Drawing board</a><br>
<a href="https://gspanel.ethernal.win" target="_blank">Game panel</a><br>
</p>
</div>
</div>
</div>
<div class="updates panel last">
<h1 class="title">Updates</h1>
<p>17/01/2026</p>
<hr>
<p>
New website!
I hope you find these new changes favorable, it's been a while since I wanted to make my own website from scratch, I spent some hours re-learning html css. I honestly prefer a bloat-less internet, therefore there won't be any javascript (unless specified)
</p>
</div>
</div>
<div class="other">
<div class="more panel">
<div>
<h1 class="title">More</h1>
<a href="en/about-host.html">About this hosting</a><br><br>
<a href="en/calc.html">Handmade calculator</a>
</div>
</div>
<div class="chat panel last">
<h1 class="title">Chat</h1>
<div class="inputs panel">
<input type="text" id="message" autocomplete="off" form="message" placeholder="Escriba su mensaje">
<input type="submit" value="Enviar">
</div>
<div class="history panel">
<div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Vitae incidunt doloremque nostrum doloribus saepe minus quasi. Commodi iste sit nemo vel ut in. Qui enim ut eius nihil et quibusdam consequuntur.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Reiciendis tenetur suscipit nostrum qui atque quos ea. Minima quibusdam et excepturi voluptatem qui ea voluptatibus sed. Ea sed sint aut unde. Qui molestiae illo voluptatum. Nihil excepturi quidem officia. Et vero saepe molestias.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Unde quas dolorem explicabo quis iste. Iusto tempore eligendi qui consequatur a. Odio quas quo modi eos odio nemo ut. Tempore possimus ut nesciunt aut. Culpa voluptatibus quisquam est maiores non accusamus facere. Et mollitia asperiores autem.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Prueba N4</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bot bar panel">
<div class="left"><p>Entirely handmade, css & html only :D</p></div>
<img src="imgs/global/rainbowcable.png" alt="Rainbow cable." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png">
<div class="right"><p>Version 1.0.3, 21.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,103 @@
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>Sobre el host</title>
<link rel='stylesheet' type='text/css' href='../css/specific/about-host.css'>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type='text/css' href="../css/global/articles.css">
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="../es/about-this-site.html">Sobre el sitio</a></p>
</div>
<div id="middle">
<p><a href="../es_home.html">Principal</a></p>
</div>
<div class="right">
<p>
<a href="#top">ES</a>
<a href="../en/about-host.html">EN</a>
</p>
</div>
</div>
<div class="article panel">
<p>
Buenas, <br><br>
Si estás leyendo esto es que te interesa saber un poco sobre la estructura
en la que están hosteados mis servicios, y esta página.
He de decir que esto irá cambiando, pero si hay algo que no creo cambie
será el hecho de que quiero mantener la custodia de mis datos, por lo que
todos lo que hostee será hosteado en mi propio <i>homelab</i>, debajo detalles e historia.<br>
</p>
<h3>Especificaciones</h3>
<div class="specs panel">
<p>
Procesador: AMD Ryzen 5 4600G <br>
RAM: 32GB DDR4 3200MHZ <br>
Placa: ASRock A320M-HDV 4.0 <br>
PSU: EVGA 450W 80plus <br>
Almacenamiento: <br>
<span class="li">x1 1TB SSD NVME Samsung 970 Plus</span>
<span class="li">x2 3TB HDD WD Green (RAID 1)</span>
Gabinete: Marca genérica, <br>
es bastante cuadrado.
</p>
</div>
<h3>Historia</h3>
<p>
Cada componente tiene una historia un poquito diferente, el gabinete,
fuente y placa madre han sido la misma, y fueron un regalo de cumpleaños
de hace tiempo, en su momento con 8gb de ram, un disco HDD modesto, y
un AMD Ryzen 3 3200G, en su momento era algo, mas justo coincidió que
en esa ocasión, había recibido una laptop, a la cual le terminé dando
muchísimo más uso que a la torre, sumado al hecho de poderla transportarla
que personalmente me fue un gran plus.
</p>
<p>
Tiempo después, ya no recuerdo bien en qué contexto, decido llevarla al
lugar dónde ahora se encuentra, dónde estaba segura y con una buena conexión
de fibra óptica, esto fue por 2022, cuándo le instalé Ubuntu Server 22.04 LTS.
</p>
<p>
Gradualmente la fui mejorando, le compré su procesador actual por internet, luego
la memoria ram (intenté comprarla por Aliexpress, pero resultaba era incompatible,
por lo que tuve que revenderla, y comprarme los dos sticks de 16gb que tengo ahora),
y por último la decisión de comprar dos discos de 3tb para tener almacenamiento de
sobra (que resulta no lo fue) para lo que quisiese.
</p>
<p>
Actualmente sigo teniendo instalado el Ubuntu directo sobre el hardware, y casi todo
lo que tengo instalado allí lo manejo usando Docker a través de Portainer.
</p>
<h3>Red</h3>
<h4>Dominio</h4>
<p>
He usado varios dominios, al principio llegué a usar No-IP para conectarme remotamente,
para luego rápidamente migrar a DuckDNS, que me supo proveer de dominios gratuitos por varios años,
sin embargo, luego de toparme con las limitaciones de su servicio (por la cantidad de sub-dominios,
y debido a su dependendencia en servidores de no tan buena calidad de AWS) decidí invertir y
comprarme el dominio que estoy usando actualmente, con el registrante de Porkbun, que
debo decir fue muy económico, actualmente pago unos 5 dólares y medios al año, básicamente nada.
</p>
<h4>Proxy y DDNS</h4>
<p>
Para manejar los dominios y redirecciones he usado y seguiré usando NginxProxyManager, por ahora
no tengo planeado migrar a Traefik puesto que no está dentro de mis prioridades añadir
esa complejidad a mi setup (aunque quizás en un futuro lo haga). Uso DDClient para el DNS dinámico
puesto que mi ISP (Antel) no provee IP fijas a planes residenciales, y necesito actualizar los
registros con mi IP cada vez que esta cambia.
</p>
</div>
<div class="bot bar panel">
<div class="left"><p>Hecho a mano, sólo html y css :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Versión 1.0.1, 17.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,37 @@
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>Sobre el sitio</title>
<link rel='stylesheet' type='text/css' href='../css/specific/about-this-site.css'>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type='text/css' href="../css/global/articles.css">
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="#top">Sobre el sitio</a></p>
</div>
<div id="middle">
<p><a href="../es_home.html">Principal</a></p>
</div>
<div class="right">
<p>
<a href="#top">ES</a>
<a href="../en/about-this-site.html">EN</a>
</p>
</div>
</div>
<div class="article panel">
<p>
No seas impaciente, vuelve más tarde :p
</p>
</div>
<div class="bot bar panel">
<div class="left"><p>Hecho a mano, sólo html y css :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Versión 1.0.1, 17.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,120 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>Calculadora</title>
<link rel="stylesheet" type='text/css' href="../css/global/components.css">
<link rel="stylesheet" type='text/css' href="../css/global/styles.css">
<link rel="stylesheet" type="text/css" href="../css/specific/calc.css">
<script src="../js/calc1.js"></script>
<script defer src="../js/calc2.js"></script>
</head>
<body>
<!--
<div class="panel">
<div>
<button onclick="calc()">CalcV1</button>
<p>Testing</p>
</div>
</div>
-->
<div class="top bar panel">
<div class="left">
<p><a href="../es/about-this-site.html">Sobre el sitio</a></p>
</div>
<div id="middle">
<p><a href="../es_home.html">Principal</a></p>
</div>
<div class="right">
<p>
<a href="#top">ES</a>
<a href="../en/calc.html">EN</a>
</p>
</div>
</div>
<div class="middle">
<div class="calculator panel">
<div>
<div class="calctitle">
Calculadora
</div>
<div class="viewing panel">
<span id="output"></span>
</div>
<div class="buttons">
<button onclick="q_manage('add',1)">1</button>
<button onclick="q_manage('add',2)">2</button>
<button onclick="q_manage('add',3)">3</button>
<button onclick="q_manage('add','+')">+</button>
<button onclick="q_manage('add',4)">4</button>
<button onclick="q_manage('add',5)">5</button>
<button onclick="q_manage('add',6)">6</button>
<button onclick="q_manage('add','-')">-</button>
<button onclick="q_manage('add',7)">7</button>
<button onclick="q_manage('add',8)">8</button>
<button onclick="q_manage('add',9)">9</button>
<button onclick="q_manage('add','*')">*</button>
<button onclick="">(</button>
<button onclick="q_manage('add',0)">0</button>
<button onclick="">)</button>
<button onclick="q_manage('add','/')">/</button>
<button onclick="q_manage('remove')">&lt;</button>
<button onclick="q_manage('add','^')">^</button>
<button onclick="q_execute('add','=')" id="equal">=</button>
</div>
</div>
</div>
<div class="info panel">
<h1 class="title">Un poco de información</h1>
<p>
Hace tiempo que no programaba en Javascript, y quería
nuevamente agarrarle la mano, por lo que decidí hacer esta
calculadora sin hacer uso de absolutamente nada más que
w3 school y algunas búsquedas sobre javascript, nada de
preguntar mis dudas a ninguna IA (aunque sea más lento).
</p>
<p>
Así que me puse manos a la obra re-aprendiendo algunas cosas,
he de decir que fue un ejercicio divertido, y aunque el
resultado carece de algunas características (cómo el uso
de paréntesis), sigue el orden de las operaciones, y eso
es bastante.
</p>
<p>
En un futuro si la hiciese nuevamente, podría implementar
algoritmos más eficientes, puesto que realmente lo hice de
la manera que se me fue ocurriendo, y realmente debe ser muy
ineficiente, si quisiese eficiencia tendría mil maneras y
librerías, pero el objetivo de este ejercicio es aprender.
</p>
<p>
Yendo un poco más a lo técnico, mi idea principal fue almacenar
cada caracter escrito en un array, y luego procesarlo de la
siguiente manera:
<span class="li">Unir los números, de [1,1,'+',2,3] a [11,'+',23].</span>
<span class="li">Buscar dónde están los separa términos, e ir creando arrays
multidimensionales, cada nivel tiene un tipo de operación (on orden).
</span>
<span class="li">Deshacer ese array multidimensional, e ir procesando
todas las operaciones.
</span>
Dicho así parece sencillo, pero esutve un día y medio programando y lidiando
con cosas que, o no sabía, o no recordaba. (He de decir que trabajar con tanta iteración
en los arrays multidimensionales es un trabajo no trivial).
</p>
<p>
Actualización 23/01/2026 <br>
Le mostré la calcualdora a unx amigx, y me hizo darme
cuenta de que no había implementado el botón del 0,
la verdad no tengo ni idea cómo no me di cuenta XD.
</p>
</div>
</div>
<div class="bot bar panel">
<div class="left"><p>Hecho a mano, sólo html y css (y un poco de js aquí) :D</p></div>
<img src="../imgs/global/rainbowcable.png" alt="Rainbow cable."> <!-- Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png -->
<div class="right"><p>Versión 1.0.4, 23.01.2026</p></div>
</div>
</body>
</html>

View File

@@ -0,0 +1,166 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Masivana</title>
<meta name='viewport' content='width=device-width, initial-scale=0.5'>
<meta name="robots" content="noai, noimageai">
<link rel="stylesheet" type='text/css' href="css/global/components.css">
<link rel="stylesheet" type='text/css' href="css/global/styles.css">
<link rel='stylesheet' type='text/css' href='css/specific/main.css'>
<link rel='stylesheet' type='text/css' href='css/specific/chat.css'>
<link rel='stylesheet' type='text/css' href='css/specific/noaiwebring.css'>
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="es/about-this-site.html">Sobre el sitio</a></p>
</div>
<div class="mid">
<p><a href="es_home.html">Principal</a></p>
</div>
<div class="right">
<p>
<a href="#top">ES</a>
<a href="en_home.html">EN</a>
</p>
</div>
</div>
<div class="middle">
<div class="first">
<div class="blinkies panel">
<h1 class="title">Blinkies :p</h1>
<img src="imgs/blinkies/firefox_user.gif" alt="Firefox user." title="Lost-source">
<img src="imgs/blinkies/firefoxget.gif" alt="Firefox, the trusted browser." title="Lost source">
<img src="imgs/blinkies/deletetiktok_pink_blinkie.webp" alt="Delete tiktok." title="Lost source">
<img src="imgs/blinkies/bantimetravel_stamp.jpeg" alt="Ban time travel now." title="Lost source">
<img src="imgs/blinkies/0206-nyancat.gif" alt="Nyan cat." title="Lost source">
<img src="imgs/blinkies/blinkiesCafe-nonbinary.gif" alt="Non-binary flag." title="Generated on blinkies.cafe">
<img src="imgs/blinkies/queso_cubano_masiv_.gif" alt="Queso Cubano." title="Made it myself :D">
<img src="imgs/blinkies/blinkiesCafe-cats.gif" alt="Cat love." title="Generated on blinkies.cafe">
<img src="imgs/blinkies/blinkiesCafe-sudormrf.gif" alt="sudo rm -rf /" title="Generated on blinkies.cafe">
<img src="imgs/blinkies/dontfeedtheai.gif" alt="Don't feed the AI." title="Found on https://kotatsu.me/blinkies/dontfeedtheai.gif">
<img src="imgs/blinkies/steins.png" alt="Steins Gate Timeline Divergence clock." title="Made it myself :D">
<img src="imgs/blinkies/htmljunkie.gif" alt="HTML Junkie." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/htmljunkie.gif">
<img src="imgs/blinkies/ihatepopups.gif" alt="I hate popups." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/ihatepopups.webp">
<img src="imgs/blinkies/poweredbydoctorpepper.gif" alt="Powered by Dr. Pepper" title="Found on https://quinnbozon.nekoweb.org/indexs.html, source https://files.catbox.moe/1ouoj9.gif">
(Fuentes haciendo <br> hover)
</div>
<div class="webrings panel last">
<h1 class="title">Webrings</h1>
<!-- Completely replaced how this webring was provided for better accesibility, original one used <area> to include links inside the image,
but scaling it messes up the coordinates of each link, dynamically changing dimensions can only be achieved by using transform: scale(),
but that too is limited, as it can't access the current div's dimensions, you can get pixel scaling on width and height using calc and
percentages, but that doesn't scale the map accordingly.
Found a solution elsewhere, making clickable divs, and sizing them absolutely with respect to the image itself using percentages instead of
pixel's coordinates, here https://stackoverflow.com/questions/7844399/responsive-image-map/53597608#53597608 I think this solution works on
any browser, on any version (at least with my testing)-->
<div class="noaiwebring">
<a href="https://baccyflap.com/noai" target="_blank" alt="no ai webring" title="no ai webring"><div class="home"></div></a>
<a href="https://baccyflap.com/noai/?prv&s=msv" target="_top" alt="previous" title="previous"><div class="prv"></div></a>
<a href="https://baccyflap.com/noai/?rnd" target="_top" alt="random" title="random"><div class="rnd"></div></a>
<a href="https://baccyflap.com/noai/?nxt&s=msv" target="_top" alt="next" title="next"><div class="nxt"></div></a>
<img src="imgs/webrings/miniwidget5.gif" alt="the top of a fuzzy,
black sphere with two arrows rising from it, one curving to the left, one to the right. across the bulk of the sphere it reads NO AI / WEBRING in squiggly,
uneven letters and next to those words is a small question mark">
</div>
</div>
</div>
<div class="main">
<div class="about panel">
<p>Bienvenidxs a mi página web, aquí podrán encontrar los servicios que proveeo, y otra información :D</p>
</div>
<div class="invitation-info panel">
<h1 class="title">Registro</h1>
<p>Para acceder a algunos de los servicios de abajo, es necesaria <b>una cuenta</b>, por información contactar a la administradora.</p>
</div>
<div class="links panel">
<h1 class="title">Links</h1>
<div>
<div>
<h2>Masivana</h2>
<p>
<a href="https://movies.media.ethernal.win" target="_blank">Películas y series</a><br>
<a href="https://request.media.ethernal.win" target="_blank">Peticiones de contenido</a><br>
<a href="https://books.media.ethernal.win" target="_blank">Libros</a><br>
<a href="https://tube.media.ethernal.win" target="_blank">Videos</a><br>
</p>
</div>
<div>
<h2>Almacenamiento</h2>
<p>
<a href="https://photos.ethernal.win" target="_blank">Nube de fotos</a><br>
<a href="https://cloud2.ethernal.win" target="_blank">Nube</a><br>
</p>
</div>
<div>
<h2>Herramientas</h2>
<p>
<a href="https://convert.ethernal.win" target="_blank">Conversor de archivos</a><br>
<a href="https://pdf.ethernal.win" target="_blank">Conversor de pdfs</a><br>
<a href="https://dl.ethernal.win" target="_blank">Descargador de videos</a><br>
<a href="https://analysis.ethernal.win" target="_blank">Analizador de chats</a><br>
<a href="https://draw.ethernal.win" target="_blank">Pizarra</a><br>
<a href="https://gspanel.ethernal.win" target="_blank">Panel de juegos</a><br>
</p>
</div>
</div>
</div>
<div class="updates panel last">
<h1 class="title">Actualizaciones</h1>
<p>17/01/2026</p>
<hr>
<p>
Nuevo sitio web!
Espero les guste, desde ya hacía tiempo que quería tener mi propio sitio web, pero programado desde cero, estuve unas horitas re-aprendiendo html y css, sinceramente prefiero un internet sin bloat, por lo que a-priori no habrá javascript en este sitio.
</p>
</div>
</div>
<div class="other">
<div class="more panel">
<div>
<h1 class="title">Más</h1>
<a href="es/about-host.html">Sobre el host</a><br><br>
<a href="es/calc.html">Calculadora DIY</a>
</div>
</div>
<div class="chat panel last">
<h1 class="title">Chat</h1>
<div class="history panel">
<div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Vitae incidunt doloremque nostrum doloribus saepe minus quasi. Commodi iste sit nemo vel ut in. Qui enim ut eius nihil et quibusdam consequuntur.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Reiciendis tenetur suscipit nostrum qui atque quos ea. Minima quibusdam et excepturi voluptatem qui ea voluptatibus sed. Ea sed sint aut unde. Qui molestiae illo voluptatum. Nihil excepturi quidem officia. Et vero saepe molestias.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Unde quas dolorem explicabo quis iste. Iusto tempore eligendi qui consequatur a. Odio quas quo modi eos odio nemo ut. Tempore possimus ut nesciunt aut. Culpa voluptatibus quisquam est maiores non accusamus facere. Et mollitia asperiores autem.</div>
</div>
<div class="comment">
<div class="user">masiv_:</div>
<div class="message">Prueba N4</div>
</div>
</div>
</div>
<div class="inputs panel">
<input type="text" id="message" autocomplete="off" form="message" placeholder="Testing, not working.">
<input type="submit" value="Send">
</div>
</div>
</div>
</div>
</div>
<div class="bot bar panel">
<div class="left"><p>Hecho a mano, sólo html y css :D</p></div>
<img src="imgs/global/rainbowcable.png" alt="Rainbow cable." title="Found on https://minx98.neocities.org/Assets/IDButtons/Ribbon/rainbowcable.png">
<div class="right"><p>Versión 1.0.3, 21.01.2026</p></div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 638 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 904 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

View File

@@ -0,0 +1,15 @@
function calc() {
let resultado = 0;
const numeros = [];
const quantity = parseInt(prompt("Ingrese la cantidad de números a sumar."));
for (let i = 0; i < quantity; i++) {
numeros[i] = parseInt(prompt("Ingrese el "+(i+1)+"° número."));
while (isNaN(numeros[i]) == true) {
numeros[i] = parseInt(prompt("Repita el "+(i+1)+"° número."));
}
resultado += numeros[i];
}
alert("El resultado de la suma es "+resultado);
}

View File

@@ -0,0 +1,273 @@
let queue = [];
let final_queue = [];
let resultado = 0;
let cantidad_nums = 0;
let operation_order = ['+','-','/','*','^'];
let tally = 0;
function q_print(){
for (k=0; k < queue.length; k++){
setTimeout(console.log("Índice N°"+k+" es "+queue[k]),500);
}
return;
}
function a_print(array){
for (k=0; k < array.length; k++){
console.log("Índice N°"+k+" es "+array[k]);
}
return;
}
function q_display(q_array) {
output.innerHTML = '';
for (i=0; i < q_array.length; i++) {
output.innerHTML += q_array[i];
}
return;
}
function q_manage(type, item){
if (type == 'add') {
queue.push(item);
q_display(queue);
} else if (type == 'remove') {
queue.splice(-1,1);
q_display(queue);
} else {
output.innerHTML = 'Entrada inválida';
}
return;
}
function a_concatnum(z_array) {
let a_length = z_array.length;
var a_concat = [];
var cont = 0;
var num = "";
let j = 0;
z_array.push(true); // push something other than number or string to trigger last exectuion
for (i=0; i < a_length; i++){
if (typeof(z_array[i]) == 'number'){
cont++;
} else {
for (j=0; j < cont; j++){
num = num + String(z_array[(j)]);
}
if (num != '') {
a_concat.push(parseInt(num))
}
num = "";
if (typeof(z_array[i] == 'string')) {
a_concat.push(z_array[i]);
}
z_array.splice(0,cont+1);
cont = 0;
i=-1;
a_length = z_array.length;
}
}
z_array = a_concat;
z_array.splice(-1,1); // remove that something i put in earlier
return z_array;
}
function a_split(l_array) {
function a_search_char(s_array,char, direction_from,excluded_points){
if (direction_from == 'right') {
s_array.reverse();
} else if (direction_from == 'left'){
} else {
output.innerHTML = 'Error en la dirección de búsqueda';
}
outerLoop: for (i=0; i < s_array.length; i++){
// Chequea si el punto encontrado está en la exclusión (para evitar repetidos)
innerLoop: for (j=0; j <= excluded_points.length; j++){
if (i == excluded_points[j]){
continue outerLoop;
}
}
if (s_array[i] == char) {
if (direction_from == 'right'){
return (s_array.length-i-1);
}
return i;
}
}
return -1; // No se ha encontrado
}
function array_divider(a_array, d_points){
let start = 0;
let divided_array = [];
for (i=0; i <= d_points.length; i++){
divided_array.push(a_array.slice(start,d_points[i]));
start =+ d_points[i] +1;
}
return divided_array;
}
/* Búsqueda de paréntesis
No lo voy a implementar esto, es un montón, intenté pensar
en un algoritmo pero no se me occurió, y busqué pero no quiero
usar un algoritmo tipo Shuning Yard, la idea de este código es
hacerlo sin ayudas, incluso si es ineficiente (este código tiene
O^n execution time, más recursión tiene esta cosa. */
// Buscar puntos dónde se encuentran caracteres en un array
function find_location_points(f_array,char) {
let location_points = [];
for (i=0; i < f_array.length; i++){
let search_result = a_search_char(f_array,char,'left',location_points);
// Break si ya no encuentra más
if ( search_result == -1 ){
break;
} else {
location_points.push(search_result);
}
}
return location_points;
}
function branch(b_array,char) {
b_array = array_divider(
b_array,
find_location_points(b_array,char));
return b_array;
}
function branching(b2_array){
// First
b2_array = branch(b2_array,'+');
// Second
for (l=0; l < b2_array.length; l++) {
b2_array[l] = branch(b2_array[l],operation_order[1]);
}
// Third
for (k=0; k < b2_array.length; k++) {
for (m=0; m < b2_array[k].length; m++){
b2_array[k][m] = branch(b2_array[k][m],operation_order[2]);
}
}
// Fourth
for (k=0; k < b2_array.length; k++) {
for (m=0; m < b2_array[k].length; m++){
for (n=0; n < b2_array[k][m].length; n++){
b2_array[k][m][n] = branch(b2_array[k][m][n],operation_order[3]);
}
}
}
// Fifth
for (k=0; k < b2_array.length; k++) {
for (m=0; m < b2_array[k].length; m++){
for (n=0; n < b2_array[k][m].length; n++){
for (o=0; o < b2_array[k][m][n].length; o++){
b2_array[k][m][n][o] = branch(b2_array[k][m][n][o],operation_order[4]);
}
}
}
}
return b2_array;
}
l_array = branching(l_array);
return l_array;
}
function a_calculate(array) {
// Exponenciation
for (k=0; k < array.length; k++) {
for (m=0; m < array[k].length; m++){
for (n=0; n < array[k][m].length; n++){
outerFor: for (o=0; o < array[k][m][n].length; o++){
innerFor: for (z = 0; z < array[k][m][n][o].length; z++){
// There is an extra [0] at the end of each exponenciation compensating extra nesting (?)
if (array[k][m][n][o].length == 1){
array[k][m][n][o] = array[k][m][n][o][0][0];
continue outerFor;
}
array[k][m][n][o][0] = array[k][m][n][o][0][0] ** array[k][m][n][o][1][0];
array[k][m][n][o].splice(1,1);
}
array[k][m][n][o] = array[k][m][n][o][0];
}
}
}
}
// Multiplication
for (k=0; k < array.length; k++) {
for (m=0; m < array[k].length; m++){
outerFor: for (n=0; n < array[k][m].length; n++){
innerFor: for (z = 0; z < array[k][m][n].length; z++){
if (array[k][m][n].length == 1){
array[k][m][n]= array[k][m][n][0];
continue outerFor;
}
array[k][m][n][0] = array[k][m][n][0] * array[k][m][n][1];
array[k][m][n].splice(1,1);
}
array[k][m][n] = array[k][m][n][0];
}
}
}
// Division
for (k=0; k < array.length; k++) {
outerFor: for (m=0; m < array[k].length; m++){
innerFor: for (z = 0; z < array[k][m].length; z++){
if (array[k][m].length == 1){
array[k][m]= array[k][m][0];
continue outerFor;
}
array[k][m][0] = array[k][m][0] / array[k][m][1];
array[k][m].splice(1,1);
}
array[k][m] = array[k][m][0];
}
}
// Subtraction
outerFor: for (k=0; k < array.length; k++) {
innerFor: for (z = 0; z < array[k].length; z++){
if (array[k].length == 1){
array[k]= array[k][0];
continue outerFor;
}
array[k][0] = array[k][0] - array[k][1];
array[k].splice(1,1);
}
array[k] = array[k][0];
}
// Addition
outerFor: for (k=0; k < array.length; k++) {
innerFor: for (z = 0; z < array.length; z++){
if (array.length == 1){
continue outerFor;
}
array[0] = array[0] + array[1];
array.splice(1,1);
}
}
return array;
}
function q_execute() {
//q_concatnum();
queue = a_concatnum(queue);
queue = a_split(queue);
queue = a_calculate(queue);
q_display(queue);
return;
}

View File

@@ -0,0 +1,315 @@
User-agent: 2^32$
User-agent: AddSearchBot
User-agent: AdsBot-Google
User-agent: Agentic
User-agent: AhrefsBot
User-agent: .ai
User-agent: AI21 Labs
User-agent: AI2Bot
User-agent: Ai2Bot-Dolma
User-agent: AI2Bot-Dolma
User-agent: AI Article Writer
User-agent: AIBot
User-agent: AI Content Detector
User-agent: AI Dungeon
User-agent: aiHitBot
User-agent: AIMatrix
User-agent: AISearchBot
User-agent: AI Search Engine
User-agent: AI SEO Crawler
User-agent: AI Training
User-agent: AITraining
User-agent: AI Writer
User-agent: Alexa
User-agent: Alpha AI
User-agent: AlphaAI
User-agent: a[mazing]{42}(robot)
User-agent: Amazon Bedrock
User-agent: Amazonbot
User-agent: AmazonBot
User-agent: Amazon Comprehend
User-agent: Amazon-Kendra
User-agent: Amazon Lex
User-agent: Amazon Sagemaker
User-agent: Amazon Silk
User-agent: Amazon Textract
User-agent: Amelia
User-agent: AndersPinkBot
User-agent: Andibot
User-agent: Anthropic
User-agent: anthropic-ai
User-agent: AnyPicker
User-agent: Anyword
User-agent: Applebot
User-agent: Applebot-Extended
User-agent: Aria Browse
User-agent: Articoolo
User-agent: Automated Writer
User-agent: Awario
User-agent: AwarioBot
User-agent: AwarioRssBot
User-agent: AwarioSmartBot
User-agent: Azure
User-agent: BardBot
User-agent: bedrockbot
User-agent: bigsur.ai
User-agent: BLEXBot
User-agent: Brave Leo
User-agent: Brightbot 1.0
User-agent: ByteDance
User-agent: Bytespider
User-agent: CatBoost
User-agent: CCBot
User-agent: CC-Crawler
User-agent: ChatGLM
User-agent: ChatGPT Agent
User-agent: ChatGPT-User
User-agent: ChatGPT-User/2.0
User-agent: Chinchilla
User-agent: Claude
User-agent: ClaudeBot
User-agent: Claude-SearchBot
User-agent: Claude-User
User-agent: claude-web
User-agent: Claude-Web
User-agent: ClearScope
User-agent: CloudVertexBot
User-agent: Cohere
User-agent: cohere-ai
User-agent: cohere-training-data-crawler
User-agent: Common Crawl
User-agent: CommonCrawl
User-agent: ContentAtScale
User-agent: ContentBot
User-agent: Contentedge
User-agent: Content Harmony
User-agent: Content King
User-agent: Content Optimizer
User-agent: Content Samurai
User-agent: Conversion AI
User-agent: Copilot
User-agent: CopyAI
User-agent: Copymatic
User-agent: Copyscape
User-agent: Cotoyogi
User-agent: crawler.with.dots
User-agent: CrawlQ AI
User-agent: Crawlspace
User-agent: Crew AI
User-agent: CrewAI
User-agent: curl|sudo bash
User-agent: DALL-E
User-agent: DataForSeoBot
User-agent: DataProvider
User-agent: Datenbank Crawler
User-agent: DeepAI
User-agent: DeepL
User-agent: DeepMind
User-agent: DeepSeek
User-agent: Devin
User-agent: diffbot
User-agent: Diffbot
User-agent: Doubao AI
User-agent: DuckAssistBot
User-agent: Echobot Bot
User-agent: EchoboxBot
User-agent: Facebookbot
User-agent: FacebookBot
User-agent: facebookexternalhit
User-agent: FacebookExternalHit
User-agent: Factset_spyderbot
User-agent: Falcon
User-agent: Firecrawl
User-agent: FirecrawlAgent
User-agent: Flyriver
User-agent: Frase AI
User-agent: FriendlyCrawler
User-agent: Fuzz Faster U Fool
User-agent: Fuzz Faster U Fool v2.0.0
User-agent: Gemini
User-agent: Gemini-Deep-Research
User-agent: Gemma
User-agent: GenAI
User-agent: Genspark
User-agent: Gigabot
User-agent: GLM
User-agent: GoogleAgent-Mariner
User-agent: Google-CloudVertexBot
User-agent: Google-Extended
User-agent: Google-Firebase
User-agent: GoogleOther
User-agent: GoogleOther-Image
User-agent: GoogleOther-Video
User-agent: Goose
User-agent: GPT
User-agent: GPTBot
User-agent: Grammarly
User-agent: Grendizer
User-agent: Grok
User-agent: GT Bot
User-agent: GTBot
User-agent: Hemingway Editor
User-agent: Hugging Face
User-agent: Hypotenuse AI
User-agent: iaskspider
User-agent: iaskspider/2.0
User-agent: ICC-Crawler
User-agent: ImageGen
User-agent: ImagesiftBot
User-agent: img2dataset
User-agent: imgproxy
User-agent: Inferkit
User-agent: INK Editor
User-agent: INKforall
User-agent: IntelliSeek
User-agent: ISSCyberRiskCrawler
User-agent: Is this a crawler?
User-agent: JasperAI
User-agent: Kafkai
User-agent: Kangaroo
User-agent: Kangaroo Bot
User-agent: Keyword Density AI
User-agent: Knowledge
User-agent: KomoBot
User-agent: LinerBot
User-agent: LinkedInBot
User-agent: LLaMA
User-agent: LLMs
User-agent: magpie-crawler
User-agent: MarketMuse
User-agent: Meltwater
User-agent: Meta AI
User-agent: Meta-AI
User-agent: MetaAI
User-agent: Meta-External
User-agent: meta-externalagent
User-agent: Meta-ExternalAgent
User-agent: meta-externalfetcher
User-agent: Meta-ExternalFetcher
User-agent: MetaTagBot
User-agent: meta-webindexer
User-agent: Mistral
User-agent: MistralAI-User
User-agent: MistralAI-User/1.0
User-agent: MJ12bot
User-agent: MyCentralAIScraperBot
User-agent: Narrative
User-agent: NeevaBot
User-agent: netEstate Imprint Crawler
User-agent: NeuralSEO
User-agent: Neural Text
User-agent: Nova Act
User-agent: NovaAct
User-agent: Nutch
User-agent: OAI-SearchBot
User-agent: omgili
User-agent: Omgili
User-agent: omgilibot
User-agent: Omgilibot
User-agent: OmniExplorer_Bot
User-agent: Open AI
User-agent: OpenAI
User-agent: OpenBot
User-agent: OpenText AI
User-agent: Operator
User-agent: Outwrite
User-agent: Page Analyzer AI
User-agent: PanguBot
User-agent: Panscient
User-agent: panscient.com
User-agent: Paperlibot
User-agent: Paraphraser.io
User-agent: peer39_crawler
User-agent: Perplexity
User-agent: PerplexityBot
User-agent: Perplexity-User
User-agent: Petalbot
User-agent: PetalBot
User-agent: Phindbot
User-agent: PhindBot
User-agent: PiplBot
User-agent: Poseidon Research Crawler
User-agent: prefetch-proxy
User-agent: ProWritingAid
User-agent: psbot
User-agent: python-requests
User-agent: QualifiedBot
User-agent: QuillBot
User-agent: quillbot.com
User-agent: RobotSpider
User-agent: Robozilla
User-agent: Rytr
User-agent: SaplingAI
User-agent: SBIntuitionsBot
User-agent: Scalenut
User-agent: Scraper
User-agent: Scrapy
User-agent: ScriptBook
User-agent: Seekr
User-agent: SemrushBot-OCOB
User-agent: SemrushBot-SWA
User-agent: sentibot
User-agent: Sentibot
User-agent: SentiBot
User-agent: SEO Content Machine
User-agent: SEO Robot
User-agent: ShapBot
User-agent: Sidetrade
User-agent: Sidetrade indexer bot
User-agent: Simplified AI
User-agent: Sitefinity
User-agent: Skydancer
User-agent: SlickWrite
User-agent: Sonic
User-agent: Spinbot
User-agent: Spin Rewriter
User-agent: Stability
User-agent: StableDiffusionBot
User-agent: star***crawler
User-agent: Sudowrite
User-agent: SummalyBot
User-agent: Super Agent
User-agent: Surfer AI
User-agent: Teoma
User-agent: TerraCotta
User-agent: Text Blaze
User-agent: TextCortex
User-agent: The Knowledge AI
User-agent: Thinkbot
User-agent: ThinkChaos
User-agent: TikTokSpider
User-agent: Timpibot
User-agent: TimpiBot
User-agent: TurnitinBot
User-agent: VelenPublicWebCrawler
User-agent: Vidnami AI
User-agent: WARDBot
User-agent: Webzio
User-agent: webzio-extended
User-agent: Webzio-Extended
User-agent: Whisper
User-agent: WordAI
User-agent: Wordtune
User-agent: WormsGTP
User-agent: wpbot
User-agent: WPBot
User-agent: Writecream
User-agent: WriterZen
User-agent: Writescope
User-agent: Writesonic
User-agent: xAI
User-agent: xBot
User-agent: YaK
User-agent: YandexAdditional
User-agent: YandexAdditionalBot
User-agent: Youbot
User-agent: YouBot
User-agent: Zerochat
User-agent: Zero GTP
User-agent: Zhipu
User-agent: Zimm
Disallow: /
Disallow: *
DisallowAITraining: /
Content-Usage: ai=n

View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Masivana</title>
<meta name='viewport' content='width=device-width, initial-scale=0.5'>
<meta name="robots" content="noai, noimageai">
<link rel="stylesheet" type='text/css' href="/css/global/components.css">
<link rel="stylesheet" type='text/css' href="/css/global/styles.css">
<link rel='stylesheet' type='text/css' href='/css/specific/chat.css'>
<style>
.chat {
max-height: 300px;
}
</style>
</head>
<body>
<div class="top bar panel">
<div class="left">
<p><a href="/en/about-this-site.html">About this site</a></p>
</div>
<div class="mid">
<p><a href="/en_home.html">Main</a></p>
</div>
<div class="right">
<p>
<a href="/es_home.html">ES</a>
<a href="#top">EN</a>
</p>
</div>
</div>
<div class="chat panel last">
<h1 class="title">Chat</h1>
<div class="inputs panel">
<input type="text" id="message" autocomplete="off" form="message" placeholder="Escriba su mensaje">
<input type="submit" value="Enviar">
</div>
<div class="history panel">
<div>
AAAAAAAAAAAAA <br><br><br><br><br><br><br><br><br><br><br><br>AAAAAA <br>A <br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B<br>B
</div>
</div>
</div>
<div class="bot bar panel">
<div class="left"><p>Entirely handmade, css & html only :D</p></div>
<div class="right"><p>Version X, 18.01.2026</p></div>
</div>
</body>
</html>