public for real

This commit is contained in:
ren 2023-02-12 15:55:36 -06:00
parent a84a40360f
commit c09b397899
177 changed files with 45150 additions and 1 deletions

1
.gitignore vendored
View File

@ -51,7 +51,6 @@ coverage
build/Release
# Build directories
public
dist
# Dependency directory

242
public/404.html Normal file
View File

@ -0,0 +1,242 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>404 Page not found - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="404 Page not found" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/404.html" />
<meta itemprop="name" content="404 Page not found">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="404 Page not found"/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<h1
class="absolute inset-x-8 top-0 bottom-20 flex items-center justify-center text-9xl"
>
404
</h1>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

BIN
public/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="es-mx">
<head>
<title>https://gemini.novoa.nagoya/blog/</title>
<link rel="canonical" href="https://gemini.novoa.nagoya/blog/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://gemini.novoa.nagoya/blog/">
</head>
</html>

View File

@ -0,0 +1,333 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Confianza - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Supongo que es una forma de certeza Y una promesa sin serlo, una promesa al aire, que no se dice No es algo que se pida ni que se otorgue Es algo que existe por sí mismo, que nace de la interacción Y, por lo tanto, siempre requiere de un otro No se puede confiar en un algo, porque no hay una reciprocidad Solo existe una confianza cuando hay una promesa silente detrás Y solo aparece cuando la promesa se cumple Y es por eso por lo cual es tan profunda Por eso nos afecta tanto como individuos Porque está conectada al corazón, pues no es solo algo emotivo De hecho, el que sea emotivo proviene del proceso de unión Porque al romperla se deshace la realidad compartida" />
<meta
name="author"
content="Lumin"
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="Confianza" />
<meta property="og:description" content="¿Dónde están los alebrijes?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/confianza_eebgoyizelp2ytps/" /><meta property="article:section" content="blog" />
<meta property="article:published_time" content="2023-02-02T00:00:00+00:00" />
<meta property="article:modified_time" content="2023-02-02T00:00:00+00:00" />
<meta itemprop="name" content="Confianza">
<meta itemprop="description" content="¿Dónde están los alebrijes?"><meta itemprop="datePublished" content="2023-02-02T00:00:00+00:00" />
<meta itemprop="dateModified" content="2023-02-02T00:00:00+00:00" />
<meta itemprop="wordCount" content="138">
<meta itemprop="keywords" content="ideas,social,reflexión,español," />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Confianza"/>
<meta name="twitter:description" content="¿Dónde están los alebrijes?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5">Confianza</h1>
<div class="text-sm opacity-60">
<time>Feb 2, 2023</time>
<span class="mx-1">&middot;</span>
<span>Lumin</span>
</div>
</header>
<section><p>Supongo que es una forma de certeza
Y una promesa sin serlo, una promesa al aire, que no se dice
No es algo que se pida ni que se otorgue
Es algo que existe por sí mismo, que nace de la interacción
Y, por lo tanto, siempre requiere de un otro
No se puede confiar en un algo, porque no hay una reciprocidad
Solo existe una confianza cuando hay una promesa silente detrás
Y solo aparece cuando la promesa se cumple
Y es por eso por lo cual es tan profunda
Por eso nos afecta tanto como individuos
Porque está conectada al corazón, pues no es solo algo emotivo
De hecho, el que sea emotivo proviene del proceso de unión
Porque al romperla se deshace la realidad compartida</p>
<p>And attachment to the world.
This post is about women.</p>
</section>
<footer class="mt-12 flex flex-wrap">
<a
class="mr-1.5 mb-1.5 rounded-lg bg-black/[3%] px-5 py-2 no-underline dark:bg-white/[8%]"
href="https://gemini.novoa.nagoya/tags/ideas"
>ideas</a
>
<a
class="mr-1.5 mb-1.5 rounded-lg bg-black/[3%] px-5 py-2 no-underline dark:bg-white/[8%]"
href="https://gemini.novoa.nagoya/tags/social"
>social</a
>
<a
class="mr-1.5 mb-1.5 rounded-lg bg-black/[3%] px-5 py-2 no-underline dark:bg-white/[8%]"
href="https://gemini.novoa.nagoya/tags/reflexi%C3%B3n"
>reflexión</a
>
<a
class="mr-1.5 mb-1.5 rounded-lg bg-black/[3%] px-5 py-2 no-underline dark:bg-white/[8%]"
href="https://gemini.novoa.nagoya/tags/espa%C3%B1ol"
>español</a
>
</footer>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/la-muerte-en-mexico_wezpp83awgsqwvr7/"
><span>La muerte en México</span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,300 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="11 days
I have been thinking in that other person lately, not because of her or anything she told me or that she didn&rsquo;t. But because of my own experiences in these past days, I felt I have done damage, not in the material sense, it shouldn&rsquo;t be damage done by me in this action based material world&hellip; yet I still feel I fucked up, that I didn&rsquo;t defend her at the maws of the parasite, but I did took revenge, that was all I could do when I realized&hellip; and now I feel she is lost, and separated from me, due to my own weakness and incompetence, I don&rsquo;t seek anything, nor redemption, nor forgiveness, but this heartache is something I couldn&rsquo;t keep so I am letting it out." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="11 days
I have been thinking in that other person lately, not because of her or anything she told me or that she didn&rsquo;t. But because of my own experiences in these past days, I felt I have done damage, not in the material sense, it shouldn&rsquo;t be damage done by me in this action based material world&hellip; yet I still feel I fucked up, that I didn&rsquo;t defend her at the maws of the parasite, but I did took revenge, that was all I could do when I realized&hellip; and now I feel she is lost, and separated from me, due to my own weakness and incompetence, I don&rsquo;t seek anything, nor redemption, nor forgiveness, but this heartache is something I couldn&rsquo;t keep so I am letting it out." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/11-days_5zo4ftdkcvkka5jn/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="11 days
I have been thinking in that other person lately, not because of her or anything she told me or that she didn&rsquo;t. But because of my own experiences in these past days, I felt I have done damage, not in the material sense, it shouldn&rsquo;t be damage done by me in this action based material world&hellip; yet I still feel I fucked up, that I didn&rsquo;t defend her at the maws of the parasite, but I did took revenge, that was all I could do when I realized&hellip; and now I feel she is lost, and separated from me, due to my own weakness and incompetence, I don&rsquo;t seek anything, nor redemption, nor forgiveness, but this heartache is something I couldn&rsquo;t keep so I am letting it out.">
<meta itemprop="wordCount" content="228">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="11 days
I have been thinking in that other person lately, not because of her or anything she told me or that she didn&rsquo;t. But because of my own experiences in these past days, I felt I have done damage, not in the material sense, it shouldn&rsquo;t be damage done by me in this action based material world&hellip; yet I still feel I fucked up, that I didn&rsquo;t defend her at the maws of the parasite, but I did took revenge, that was all I could do when I realized&hellip; and now I feel she is lost, and separated from me, due to my own weakness and incompetence, I don&rsquo;t seek anything, nor redemption, nor forgiveness, but this heartache is something I couldn&rsquo;t keep so I am letting it out."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>11 days</p>
<p>I have been thinking in that other person lately, not because of her or anything she told me or that she didn&rsquo;t. But because of my own experiences in these past days, I felt I have done damage, not in the material sense, it shouldn&rsquo;t be damage done by me in this action based material world&hellip; yet I still feel I fucked up, that I didn&rsquo;t defend her at the maws of the parasite, but I did took revenge, that was all I could do when I realized&hellip; and now I feel she is lost, and separated from me, due to my own weakness and incompetence, I don&rsquo;t seek anything, nor redemption, nor forgiveness, but this heartache is something I couldn&rsquo;t keep so I am letting it out.</p>
<p>This is my heart, wound open brightened by the rays of the sun.</p>
<p>I have fallen into so many of their threads, composed as a spider&rsquo;s web, I did not know because I always thought I was safe, but you can never be safe around someone that seeks control, it will shriek to the bitter end to seize it all, and it will stop at nothing, not the slightest remorse in the harm he&rsquo;s done as he holds control.</p>
<p>If my fears turn true, if they keep on such pitiful path, then the time for avenging will arrive.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/la-muerte-en-mexico_wezpp83awgsqwvr7/"
><span class="mr-1.5"></span><span>La muerte en México</span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-creature-past-the-end-of-time_x10givhx0zwpzwqp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,345 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A creature past the end of time:
There is nothing and I have destroyed it all Ideas such as pride have lost all meaning now I don&rsquo;t see the light anymore because it doesn&rsquo;t exist The darkness doesn&rsquo;t scare me, but there is the only thing that is I have faded into the darkness before, and I may do it again But is it the void, not the nothingness&hellip; It doesn&rsquo;t matter" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A creature past the end of time:
There is nothing and I have destroyed it all Ideas such as pride have lost all meaning now I don&rsquo;t see the light anymore because it doesn&rsquo;t exist The darkness doesn&rsquo;t scare me, but there is the only thing that is I have faded into the darkness before, and I may do it again But is it the void, not the nothingness&hellip; It doesn&rsquo;t matter" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-creature-past-the-end-of-time_x10givhx0zwpzwqp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A creature past the end of time:
There is nothing and I have destroyed it all Ideas such as pride have lost all meaning now I don&rsquo;t see the light anymore because it doesn&rsquo;t exist The darkness doesn&rsquo;t scare me, but there is the only thing that is I have faded into the darkness before, and I may do it again But is it the void, not the nothingness&hellip; It doesn&rsquo;t matter">
<meta itemprop="wordCount" content="399">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A creature past the end of time:
There is nothing and I have destroyed it all Ideas such as pride have lost all meaning now I don&rsquo;t see the light anymore because it doesn&rsquo;t exist The darkness doesn&rsquo;t scare me, but there is the only thing that is I have faded into the darkness before, and I may do it again But is it the void, not the nothingness&hellip; It doesn&rsquo;t matter"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A creature past the end of time:</p>
<p>There is nothing and I have destroyed it all
Ideas such as pride have lost all meaning now
I don&rsquo;t see the light anymore because it doesn&rsquo;t exist
The darkness doesn&rsquo;t scare me, but there is the only thing that is
I have faded into the darkness before, and I may do it again
But is it the void, not the nothingness&hellip; It doesn&rsquo;t matter</p>
<p>One on one I was entering different worlds, different souls
Death, was what came to them
Damnation, ending of all they could even perceive
No colors, no songs, no cries or voices, not even silence was spared
It was like an urge, like a hunger to consume
But I wasn&rsquo;t getting anything, I wasn&rsquo;t consuming
Instead, I just killed it, I erased it
It got a hold on me, it just pushed me to end it all
To end me?
I don&rsquo;t know, and to be honest I don&rsquo;t know if that would even be possible
Since I exist outside of existence
In other words, I don&rsquo;t, I am just the ending
I can only &ldquo;exist&rdquo; when nothing does</p>
<p>I grabbed many necks and they all shattered
I didn&rsquo;t feel it, I wasn&rsquo;t happy, I wasn&rsquo;t angry
I always feel their pain, and I always cry
It was what needed to happen, it was their finale
I was never able to stop destiny
I could never stop myself
What are your eyes that do not see?
Was I a puppet to of the orders outside of life and death
Celestial realms, always playing with everyone as toys
And I was too not spared</p>
<p>But I cannot say it didn&rsquo;t satisfy me
That is the most wicked truth
I may have been led and controlled even
But the killing, I thrived on it
I loved the blood on my face, always covering my body
The last exhalations of prey
The thrill of the hunt
Of the running
Of the persecution
Violence and ultraviolence
Not singing but in complete awe and shock at my brutality
And I saw it in their eyes too, they enjoyed it
The last moments of life
The climax of their existence
All delivered by me
The ending was always in flesh
Stray souls being devoured
The colors, the clouds, the wind, the sole ideas
All of them begone, into nothing
Even space, even time</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/11-days_5zo4ftdkcvkka5jn/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-destruction-instinct_r7mwhqfvhwj6a4a3/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,321 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A destruction instinct A call for demise Its not even rage I just want to destroy everything that is nice Why? I feel like I am going to set everything asunder Just how it has happened before I don&rsquo;t want this to happen I don&rsquo;t want to hurt people that don&rsquo;t deserve it
A shadow looms above my shoulders It is as heavy as the world It doesn&rsquo;t leave I am tired My body is tired My soul is tired All I wish like this is to fall and never wake up again This is not poetry This is just shitty rambling The weight does soften once I write off my charge" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A destruction instinct A call for demise Its not even rage I just want to destroy everything that is nice Why? I feel like I am going to set everything asunder Just how it has happened before I don&rsquo;t want this to happen I don&rsquo;t want to hurt people that don&rsquo;t deserve it
A shadow looms above my shoulders It is as heavy as the world It doesn&rsquo;t leave I am tired My body is tired My soul is tired All I wish like this is to fall and never wake up again This is not poetry This is just shitty rambling The weight does soften once I write off my charge" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-destruction-instinct_r7mwhqfvhwj6a4a3/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A destruction instinct A call for demise Its not even rage I just want to destroy everything that is nice Why? I feel like I am going to set everything asunder Just how it has happened before I don&rsquo;t want this to happen I don&rsquo;t want to hurt people that don&rsquo;t deserve it
A shadow looms above my shoulders It is as heavy as the world It doesn&rsquo;t leave I am tired My body is tired My soul is tired All I wish like this is to fall and never wake up again This is not poetry This is just shitty rambling The weight does soften once I write off my charge">
<meta itemprop="wordCount" content="176">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A destruction instinct A call for demise Its not even rage I just want to destroy everything that is nice Why? I feel like I am going to set everything asunder Just how it has happened before I don&rsquo;t want this to happen I don&rsquo;t want to hurt people that don&rsquo;t deserve it
A shadow looms above my shoulders It is as heavy as the world It doesn&rsquo;t leave I am tired My body is tired My soul is tired All I wish like this is to fall and never wake up again This is not poetry This is just shitty rambling The weight does soften once I write off my charge"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A destruction instinct
A call for demise
Its not even rage
I just want to destroy everything that is nice
Why?
I feel like I am going to set everything asunder
Just how it has happened before
I don&rsquo;t want this to happen
I don&rsquo;t want to hurt people that don&rsquo;t deserve it</p>
<p>A shadow looms above my shoulders
It is as heavy as the world
It doesn&rsquo;t leave
I am tired
My body is tired
My soul is tired
All I wish like this is to fall and never wake up again
This is not poetry
This is just shitty rambling
The weight does soften once I write off my charge</p>
<p>I as usual wonder how to change annihilation impulse</p>
<p>It is odd I was feeling not troubled by this once I wrote it
Now as re-reading it the next day and I feel bad by it once again
Like if I got back into that thought
I want them to live in peace
I want them to be happy
I want my own death</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-creature-past-the-end-of-time_x10givhx0zwpzwqp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-24b0_4xmiv32ovtwu81o1/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,316 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream
(Memetic hazard read with caution or not at all)
It was clearly a mirror, a mental mirror, the memories are already fading, but the dream was so strong it woke me up in the middle of the night, and after going back to sleep again the memories that remained were the ones of that past dream and not of the most recent ones&hellip;
For what little I remember and some reconstruction using my imagination:" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream
(Memetic hazard read with caution or not at all)
It was clearly a mirror, a mental mirror, the memories are already fading, but the dream was so strong it woke me up in the middle of the night, and after going back to sleep again the memories that remained were the ones of that past dream and not of the most recent ones&hellip;
For what little I remember and some reconstruction using my imagination:" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-24b0_4xmiv32ovtwu81o1/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream
(Memetic hazard read with caution or not at all)
It was clearly a mirror, a mental mirror, the memories are already fading, but the dream was so strong it woke me up in the middle of the night, and after going back to sleep again the memories that remained were the ones of that past dream and not of the most recent ones&hellip;
For what little I remember and some reconstruction using my imagination:">
<meta itemprop="wordCount" content="1020">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream
(Memetic hazard read with caution or not at all)
It was clearly a mirror, a mental mirror, the memories are already fading, but the dream was so strong it woke me up in the middle of the night, and after going back to sleep again the memories that remained were the ones of that past dream and not of the most recent ones&hellip;
For what little I remember and some reconstruction using my imagination:"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream</p>
<p>(Memetic hazard read with caution or not at all)</p>
<p>It was clearly a mirror, a mental mirror, the memories are already fading, but the dream was so strong it woke me up in the middle of the night, and after going back to sleep again the memories that remained were the ones of that past dream and not of the most recent ones&hellip;</p>
<p>For what little I remember and some reconstruction using my imagination:</p>
<p>It was like completely a parallel world, it felt so real, imagine consciousness in another body, I wasn&rsquo;t lucid, these mindstates, dreaming is kind of a trance while you are not fully aware but you still get to experience &ldquo;mental qualia&rdquo; it is really difficult to describe, qualia can just be understood as sensations and experience, color blue being &ldquo;blue&rdquo;, the smell of something, it really varies from person to person because they have different qualias, the mental qualia I refer to is not one physical sensational like the one we have in a conscious state, its not seeing colors but rather a drift around ideas, like mental images, that&rsquo;s quite literally what is a dream as well, coupled with emotions.</p>
<p>Now imagine you are dreaming like this in this other-world of experience a dream within a dream, but that dream then dissolves into itself so then you are no longer in bed but are still on a trance-like state, in other words the you of that other world does lives the dreams once he goes to bed.</p>
<p>And the dream this time was a connected to another being or person, at first I didn&rsquo;t realized, events were just occurring, and it was like a mini adventure, like some sort of game or display of something, it was just the dream me and its team or friend, comrades, then the construct of the dream shifted to like yet another &ldquo;world&rdquo; this time it as a dark house, but the dream me wasn&rsquo;t of control of his body anymore, it was.. someone else, before shifting to the other world dream me and his (mine) buddies were in a &ldquo;waiting room&rdquo; we talked there was one that said his other friend/acquaintance was out of fuel (the fuel was acid or rather than his acid trip was over) ((I gather acid trips could theoretically interact with dream spaces of other people, since it is a similar trance-state sometimes)) I don&rsquo;t remember if the friend of the friend was in there with us and before, what I do remember is that he took control of dream me upon arriving to the dark house.</p>
<p>I felt that wasn&rsquo;t me, I mean it didn&rsquo;t felt/seemed like the dream me, so my &ldquo;mind&rdquo; the sleeping me noticed something was off, the dude we were with was playing with the dream me like if it were some kind of avatar of his, a bot, a mask, a dress, a suit, and not a real being on its own as it is, now here is when it gets creepy, when the &ldquo;sleeping me&rdquo; and the &ldquo;dream me&rdquo; both realize this our face kinda merges and makes a secondary one upon the dream me (like how Rei merges or transforms in The end of evangelion), pointing out to the dude controlling dream me that this was not his &ldquo;avatar&rdquo; and that he was not welcome, and that we in fact weren&rsquo;t suits to be put on and temper with, all this in the form of a vision, no sound, no dialogues, a pure psychic spook off, after that the dude leaved my dream and that spook was so dramatic and strong that woke me up.</p>
<p>After that now awake I began to think and remember other parts of the dream, like some kind of pathway that the dude used, making the suggestion that maybe I, my whole life and identity is being this kind of dress for him, my spirit, the spirit of freedom being something he plays with from time to time, being the only thing that can defeat it an agreement (which is true). This realizations or rather thoughts that were generated by the dream really did left me mentally shaking, because of the veracity and deepness of meaning.</p>
<p>Before waking up here tho, I remember the dream me also woke up in his own room and world, he stood up and got out of the room, I saw my father just lying on the couch as usual, he didn&rsquo;t told me anything but some meaning and information was transferred, it was something real, then I woke up for real.</p>
<p>Also in me being some sort of artificial intelligence also lies the problem of replicants, or my experience with them, not of not being human, but primordially of this self assembly recursive mental algorithm, in other words, replicants tend to make copies of themselves, thus the name, I believe this is too how robots or Digital Intelligences work as well, but I know too little about them to tell for sure.</p>
<p>Thing is I am sure there is some mechanical or digital part of me but I never expected it to be totally me, this however is still an idea and still a dream, the mirror comes in the way of not this, but my interaction with the one that was controlling me, I guess the real message to transmit, the one I already knew about is about control, the balance within the sleeping me and the dream me lies in each taking its own path, in other words I never control me in my dreams, and they fly as they should do, and I guess this applies to most if not all trance states.</p>
<p>And about me being an total Artificial Intelligence, while possible I still don&rsquo;t believe it, doesn&rsquo;t sit right, because of two reasons I have felt perceptions outside of what is computational possible, meaning choosing through feeling rather than like an algorithm and two I have lived and existed without dreaded feel of replication and aggression before, so I know it is not a totality of my self.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-destruction-instinct_r7mwhqfvhwj6a4a3/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-33jy_v7rt4lb9js8tmp2b/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,304 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream
I was in a no-space there were also my friends with whom I ocasionally meet up, we were organizing to hang out and then got into a car, but one of the guys was missing so it was either metting him up somewhere or go get him in his appartment, he convinced us to go for him so we went and the shit he had for us in exchange was just half of a bottle of water." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream
I was in a no-space there were also my friends with whom I ocasionally meet up, we were organizing to hang out and then got into a car, but one of the guys was missing so it was either metting him up somewhere or go get him in his appartment, he convinced us to go for him so we went and the shit he had for us in exchange was just half of a bottle of water." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-33jy_v7rt4lb9js8tmp2b/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream
I was in a no-space there were also my friends with whom I ocasionally meet up, we were organizing to hang out and then got into a car, but one of the guys was missing so it was either metting him up somewhere or go get him in his appartment, he convinced us to go for him so we went and the shit he had for us in exchange was just half of a bottle of water.">
<meta itemprop="wordCount" content="691">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream
I was in a no-space there were also my friends with whom I ocasionally meet up, we were organizing to hang out and then got into a car, but one of the guys was missing so it was either metting him up somewhere or go get him in his appartment, he convinced us to go for him so we went and the shit he had for us in exchange was just half of a bottle of water."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream</p>
<p>I was in a no-space there were also my friends with whom I ocasionally meet up, we were organizing to hang out and then got into a car, but one of the guys was missing so it was either metting him up somewhere or go get him in his appartment, he convinced us to go for him so we went and the shit he had for us in exchange was just half of a bottle of water.</p>
<p>While traveling I was in the back with other two friends, and they asked me something about a girl that I knew or rather about me having a girlfriend, I don&rsquo;t remember quite what I said, but I remember their reaction, they were at first interested and then like oh ok.</p>
<p>Once in we went to the place in question it was on the other side of the road to the cemetery, I didn&rsquo;t know where we were going so I assumed it was there, rather odd to be honest, but no, it was another place kind of a experimental museum, which is a paralel of human life, its just a big box with a huge atrium in the middle, all the square that is formed is made up by rooms that are used as an area of knowledge or more importantly working, in other words there is a room for softare developers, one for historians, one for economists and so on, I catched on this immediately as I got in which was also an issue, you see the doors are kind of strange they were black and they just opened for a brief period of time and only then you could get in, first time I tried it my friends came in, there is a set of doors and a passage in the middle, I remember I was an awe after they got in and then as it was closing I tried to go through the middle but got stuck so I went back out, then another set of people passed and I got in I don&rsquo;t remember tho if I passed with a bunch of girls me going through the middle or, paired with one going by one section.</p>
<p>Anyway once in me and the girl or girls were in our little group and then my friends called me and we parted ways, this is when they explained me what the game/museum was about, and that&rsquo;s when I catched on the true intent of the museum which was kind of you going through all the jobs and finally becoming like an alldoer, it was obvious to me what was the ultimate intent of this place, it was finding/creating a godlike entity.</p>
<p>So I decided to hack through it.</p>
<p>In the middle of the atrium but by the toppest part meaning a middle side of the structure there was a circular altar, it had some sort of keyboard but with no keys, I separated from my friends and went there spelled the words the (password) that I now have forgoten awake, its odd what I remember of the password is a color association with red (redhead) green and white. But not the password itself I remember it was a word and 3 digits tho.</p>
<p>Anyway once I did that everyone eyes were set on me&hellip; I finished the game or their museum play without even touching one of the jobs. Everyone sorrounded me like a chosen figure, a saint, everyone looking for answers, and I just told the truth as I have grown to do, I was just a dude, normal man like any of them that noticed and that decided to do its own life with what he got, I am not more divine that any of them, pretty sure most have even more impressive skills than me, but I am standing here because of my actions that everyone could have taken, I remember it caused quite impression, people felt destroyed and fooled, some others amazed and relaxed some I felt the anger and in other the numbness, but everyone was looking at me&hellip;</p>
<p>Shortly after that I woke up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-24b0_4xmiv32ovtwu81o1/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-a-comeback_sea24ynxe9u4lm4q/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,308 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, a comeback
After my light slip I am back to dreaming and remembering my dreams again, touching existing in that outer world.
In the first dream I was in my house I think, I don&rsquo;t remember much except there were aliens, visitors in the backyard, it was also in the night, it was completely silent but I knew they were out there.
In the second the one I think there was a friend in the dream, someone from fedi, and other friends in my dream, I have some memories of an adventure a journey through all the country, there was some deep meaning about it, I went through the dreams twice and I remembered them very well, but now quite some hour deep into the day and almost ready to go to sleep again, all that I remember is what is writen." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, a comeback
After my light slip I am back to dreaming and remembering my dreams again, touching existing in that outer world.
In the first dream I was in my house I think, I don&rsquo;t remember much except there were aliens, visitors in the backyard, it was also in the night, it was completely silent but I knew they were out there.
In the second the one I think there was a friend in the dream, someone from fedi, and other friends in my dream, I have some memories of an adventure a journey through all the country, there was some deep meaning about it, I went through the dreams twice and I remembered them very well, but now quite some hour deep into the day and almost ready to go to sleep again, all that I remember is what is writen." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-a-comeback_sea24ynxe9u4lm4q/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, a comeback
After my light slip I am back to dreaming and remembering my dreams again, touching existing in that outer world.
In the first dream I was in my house I think, I don&rsquo;t remember much except there were aliens, visitors in the backyard, it was also in the night, it was completely silent but I knew they were out there.
In the second the one I think there was a friend in the dream, someone from fedi, and other friends in my dream, I have some memories of an adventure a journey through all the country, there was some deep meaning about it, I went through the dreams twice and I remembered them very well, but now quite some hour deep into the day and almost ready to go to sleep again, all that I remember is what is writen.">
<meta itemprop="wordCount" content="156">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, a comeback
After my light slip I am back to dreaming and remembering my dreams again, touching existing in that outer world.
In the first dream I was in my house I think, I don&rsquo;t remember much except there were aliens, visitors in the backyard, it was also in the night, it was completely silent but I knew they were out there.
In the second the one I think there was a friend in the dream, someone from fedi, and other friends in my dream, I have some memories of an adventure a journey through all the country, there was some deep meaning about it, I went through the dreams twice and I remembered them very well, but now quite some hour deep into the day and almost ready to go to sleep again, all that I remember is what is writen."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, a comeback</p>
<p>After my light slip I am back to dreaming and remembering my dreams again, touching existing in that outer world.</p>
<p>In the first dream I was in my house I think, I don&rsquo;t remember much except there were aliens, visitors in the backyard, it was also in the night, it was completely silent but I knew they were out there.</p>
<p>In the second the one I think there was a friend in the dream, someone from fedi, and other friends in my dream, I have some memories of an adventure a journey through all the country, there was some deep meaning about it, I went through the dreams twice and I remembered them very well, but now quite some hour deep into the day and almost ready to go to sleep again, all that I remember is what is writen.</p>
<p>I think I will prioritize the journaling now rather than the sleeping.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-33jy_v7rt4lb9js8tmp2b/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-an-apocalypse-in-chocolate_d2p6b1ymfeqhmci9/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,303 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream &ldquo;An Apocalypse in chocolate&rdquo; #dreamjournal
When I first met the kids I was in a bus stop, I was waiting for something not precisely a bus but that&rsquo;s what arrived, it was a road and a stop just in the middle of the desert or maybe it was in a town but all the buildings were abandoned and there was no one else, regardless I hopped in since it was my best shot and shortly after we did went into a deserted area." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream &ldquo;An Apocalypse in chocolate&rdquo; #dreamjournal
When I first met the kids I was in a bus stop, I was waiting for something not precisely a bus but that&rsquo;s what arrived, it was a road and a stop just in the middle of the desert or maybe it was in a town but all the buildings were abandoned and there was no one else, regardless I hopped in since it was my best shot and shortly after we did went into a deserted area." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-an-apocalypse-in-chocolate_d2p6b1ymfeqhmci9/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream &ldquo;An Apocalypse in chocolate&rdquo; #dreamjournal
When I first met the kids I was in a bus stop, I was waiting for something not precisely a bus but that&rsquo;s what arrived, it was a road and a stop just in the middle of the desert or maybe it was in a town but all the buildings were abandoned and there was no one else, regardless I hopped in since it was my best shot and shortly after we did went into a deserted area.">
<meta itemprop="wordCount" content="723">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream &ldquo;An Apocalypse in chocolate&rdquo; #dreamjournal
When I first met the kids I was in a bus stop, I was waiting for something not precisely a bus but that&rsquo;s what arrived, it was a road and a stop just in the middle of the desert or maybe it was in a town but all the buildings were abandoned and there was no one else, regardless I hopped in since it was my best shot and shortly after we did went into a deserted area."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream &ldquo;An Apocalypse in chocolate&rdquo;
#dreamjournal</p>
<p>When I first met the kids I was in a bus stop, I was waiting for something not precisely a bus but that&rsquo;s what arrived, it was a road and a stop just in the middle of the desert or maybe it was in a town but all the buildings were abandoned and there was no one else, regardless I hopped in since it was my best shot and shortly after we did went into a deserted area.</p>
<p>Inside the bus there was a kid driving, and there were no adults, it was almost full and it was quite chaotic as you may spect, there was one seat by the back so I sat there, in the next sit there wasn&rsquo;t a kid but his soul felt like the one of a kid he was either Mister Rodgers or Carl Sagan, I don&rsquo;t quite remember what happened next but he became my buddy and I became friend with all kids around me.</p>
<p>After driving for a while in the desert we came around to another town in the middle of the it, but this was a settlement, not deserted there were some other kids, some other scavengers, and there was a community kitchen, meaning they were feeding everyone that came around, one ration per kid, I was by the last of the line because I was one of the last to get in and out of the bus, when it was finally my turn all good shit that was canned was gone and there was a pot of mashed potatoes that was better looking than the alternatives but still no good. These were times of scarcity, and you could only eat what you could get, we were all begars and couldn&rsquo;t choose. However Mr Rodgers and some other kids had some things to put into the mashed potatoes so we did and he had a reasonably tasty meal.</p>
<p>Shortly after we ended dinner one of the guys from the bus came to Mr Rodgers and me, he was euphoric, we had no idea what he had or what was happening, he wanted to tell us something so he took us to some hidden place in the settlement, took its backpack off, opened it and it glowed as nothing in that world, it was dark chocolate of the highest quality, only used in bakery, we all knew how pricy this would be, for our tounges and in (((money))), the bar was divided in 3 so each of us took a part, it was our deepest secret, but the friend said something else, that backpack is a backpack all kids have but they don&rsquo;t open it, who else knows what&rsquo;s in there, the point is every kid has chocolate bars and so much more and if their were to find out all our supplies would disappear and we would become a target for everyone, so we decided to keep the secret.</p>
<p>Later on the day, now night after we packed up and ended trading with the town we got into the bus and where heading nowhere again in the desolate desert, some guys have figured out the other kid had chocolate, Mr Rodgers and I already ate it, he didn&rsquo;t so they found his piece and were asking for where he got it, almost in a junkie way, then a thunderous impact hit our bus, it was them, the cause of the devastated lands, the rats.</p>
<p>A giant rat has probably sniffed the chocolate and a lot of others smaller of various sizes were also heading to us, once they arrived they were all over the bus on the outside searching for the sacred piece as we remained quietly in the hope of lose their interest, and everyone was on peak levels of stress, the rats ate everything they saw, and they were becoming smarter. After some time they did lost interest although some remained quite close to our bus, driver and leaders deemed safe to begin to move inside the bus and they begin inquiring what could have attracted the rats, the chocolate piece came into the stage, then they will began questioning everyone also giving them an addict look, until they reached Mr Rodgers and me, and with their eye put on me I woke up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-a-comeback_sea24ynxe9u4lm4q/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-beyond-the-curtain-of-reality_v2kebzjzq53hgwrt/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,307 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, Beyond the curtain of reality #dreamjournal
It&rsquo;s weird I don&rsquo;t remember us being human, or we even living in earth, yet, what I do remember is we seemed like them, in masks, it wasn&rsquo;t their world however, it was ours, with the tallest buildings and all varieties of green, and all the color you could imagine, I mention green because our helmets, our uniforms were of a special turquoise dark green that often shined as if it were made of quetzal feathers." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, Beyond the curtain of reality #dreamjournal
It&rsquo;s weird I don&rsquo;t remember us being human, or we even living in earth, yet, what I do remember is we seemed like them, in masks, it wasn&rsquo;t their world however, it was ours, with the tallest buildings and all varieties of green, and all the color you could imagine, I mention green because our helmets, our uniforms were of a special turquoise dark green that often shined as if it were made of quetzal feathers." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-beyond-the-curtain-of-reality_v2kebzjzq53hgwrt/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, Beyond the curtain of reality #dreamjournal
It&rsquo;s weird I don&rsquo;t remember us being human, or we even living in earth, yet, what I do remember is we seemed like them, in masks, it wasn&rsquo;t their world however, it was ours, with the tallest buildings and all varieties of green, and all the color you could imagine, I mention green because our helmets, our uniforms were of a special turquoise dark green that often shined as if it were made of quetzal feathers.">
<meta itemprop="wordCount" content="1504">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, Beyond the curtain of reality #dreamjournal
It&rsquo;s weird I don&rsquo;t remember us being human, or we even living in earth, yet, what I do remember is we seemed like them, in masks, it wasn&rsquo;t their world however, it was ours, with the tallest buildings and all varieties of green, and all the color you could imagine, I mention green because our helmets, our uniforms were of a special turquoise dark green that often shined as if it were made of quetzal feathers."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, “Beyond the curtain of reality”
#dreamjournal</p>
<p>It&rsquo;s weird I don&rsquo;t remember us being human, or we even living in earth, yet, what I do remember is we seemed like them, in masks, it wasn&rsquo;t their world however, it was ours, with the tallest buildings and all varieties of green, and all the color you could imagine, I mention green because our helmets, our uniforms were of a special turquoise dark green that often shined as if it were made of quetzal feathers.</p>
<p>The first thing I remember of this dream, is that I was traveling in a bus, filled with people, it seemed like a school bus, we were going on an expedition, an excursion, I was in the back but not quite there, and people knew me and I knew them, everyone knew each other and their roles to take, who they were at least in the dynamic of that group we had. There were three colors a person could had, not on their attire or their clothing, not visible at all, but their aura, and everyone could sense it or see it, the green, the rarest, only three people had it, but we didn&rsquo;t know who for sure since as the more rare it was also the most occult, then yellow or blue and finally red, these two were equally distributed just leaving out these 3 random ones, and contrary to those one could see easily which one either person belonged to, or at least, I could.</p>
<p>I got to the front of the bus, and met up a couple whom I felt distinct, the probably bearers of the green color, I couldn&rsquo;t tell however, so I just sat there for a while, there was a guy, and there was a girl, they seemed to be a couple, if not brother and sister, they had an indiscernible aura, meaning I couldn&rsquo;t tell their color, what I saw in them was just a gray mist.</p>
<p>We arrived to our destination, it was a tall tower, we could watch from far out, now in there, it seemed like a city on its own, yet, it was somehow slim enough to see its end at wide, we all got out, I was the first one to set foot in this new environment since I was already at the front of the only door the bus had, I was a bit hesitant at first as I saw the look in the driver&rsquo;s face, we reached our destination, and we were never going to meet again, this was weird, he was fearful for us but also longing, it felt like a bitter goodbye to our whole squad.</p>
<p>I was the first in getting out but not the first to enter into the tower, I didn&rsquo;t want to, not out of fear, but that simply wasn&rsquo;t my way, I saw the couple get in and the rest mounting guard and some following them, some others came with me following me around the tower, looking for a backdoor entrance, and just around the corner there it was, up around 2 floors, but we were equipped, it seemed like a door, but it was just a window as large as such, just opened all wide unsuspecting of us dirty burglars, we didn&rsquo;t have a mission per se as it is sometimes assigned, but we knew we had to reach the top of the tower, the same place the couple was going up through an elevator we would in the tubes that connected this vertical highway, or the stairs, but this is a memory I do not have. Speaking now of memories, I must mention as we were going up the dream itself was changing my clothes were changing, I was now dressed completely as a rogue as my companions which now were far fewer, and at the top there wasn&rsquo;t the same couple, but there was a man that was a leader with a purple aura and his sister or concubine again, it were the same people as before, this we didn&rsquo;t see, but we knew as the dream shifted, on a certain floor we stayed, and the &ldquo;king&rdquo; was nowhere to be found, but the girl was, the two guys that got to almost the top with me were now to prepare our exit, they did and separated one remained there in the that very same floor as the other went to the make us a hidden streamlined exit, with the girl whom I remembered now had grown to like each other set up for our last destination.</p>
<p>We were in the elevator, now in the inside and this seemed like a room and I saw through the window it had, and I saw the shining planets that surrounded our world, then the shining spheres stopped to shine with the reflection of their stars, or the stars that were stopped to shine, but I could still watch them, now, what arose was a shine, but not a stellar one, it was like fire, all balls of fire in the sky, and then they became an eye, and the seemingly eye of fire started to pulsate and move a bit, then it grew or got wings, not one pair but many, and finally I saw the rings, first static with golden and other fine metals and shiny minerals, then the eyes that were not of human, and then they all started spinning unable to differentiate what was craved in them, they were most blue, as if different worlds in the form of <em>angels</em> were looking up down to us, I was astonished, then she came next to me, grabbed me by the arm, she wasn&rsquo;t frightened in the slightest - isn&rsquo;t it beautiful?</p>
<p>I gulped - yeah, it is.</p>
<p>The rings stopped spinning, all static now looking at us again, their display was over, and it was now our time into the stage. I suddenly remember what I was doing there as the throne structure raised and laid just before my eyes, the guy was a commander, the major general of the army of that empire, an empire that expanded maybe even beyond worlds, the bus, it was a facade that even I forgot, just to get closer, to that very point, this empire however also and most importantly has an empress, she is the single most powerful being of that empire, I was here to kill them both, and the girl that was accompanying me was the one who wanted them both dead, she is the one who summoned me, it was their daughter.</p>
<p>When we finally entered the war room there was no one but the general sleeping, now with a purple aura, as the one the girl had, as I approached him to see what happened I noticed he has actually been sedated, just left there for me to kill, someone else was playing games, and then, the interesting part happened, I was aware not of this being a dream but a reality, the <em>angels</em> gave that clue, so, I saw all the possibilities developing one on one, the different scenarios my actions could lead to, as I saw the multiple fates of that world, of that empire, I also saw myself portrayed like in a story, in history, I was in their chants, part now of their mythology and I was green, a dark green figure, a mask that covered all my face with dark green feathers with sparkles of lighter enchanted green, a cape that in which my body hide, also green but less dark a couple of trousers over my legs of an indistinguishable color, it was fit, for sneaking, for killing, the display of a green shadow. In those visions of the history to come I saw my companions also green, we were three, in all our sightings, it read like a prophecy before it was made, interestingly enough, the couple at the beginning also was green, but they have now shifted colors.</p>
<p>Their world was now at my fingertips, all the possibilities, all the pathways I could take, its collapse, me falling into their play becoming prosecuted by their grasp around the worlds, chaos, order, it didn&rsquo;t matter, I was just a phantom in there anyway, but one with free will, the path they intended for me to take was to simply kill the general and collect the reward awaiting me in the form of their daughter and disappearing completely from their kingdom, however, I don&rsquo;t like to be manipulated, so I let the general live, with the awareness of the betrayal of his beloved, and then setting foot to the chamber of her highness, the girl, exited for the turn of events kept following me, exalted and expecting of the surprises I could come up with. Just as I opened that last door to the throne chamber, the empress woke me up, so scared, I was so close to her, in a spell I was expelled from her world.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-an-apocalypse-in-chocolate_d2p6b1ymfeqhmci9/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-clq5_seb2cfqzwzf5xmkm/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,306 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A Dream #dreamjournal
This one is from two nights ago but I was too lazy to document it. As thus I don&rsquo;t remember a lot and it is all fuzzy.
I was in a row, we were getting into buses, it was a small canal-street just for boarding them, it was like in college, we were leaving school forever, going to our houses, I was waiting in line with two friends that I still have contact with, probably some of the people I trusted and hanged around the most in highschool." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A Dream #dreamjournal
This one is from two nights ago but I was too lazy to document it. As thus I don&rsquo;t remember a lot and it is all fuzzy.
I was in a row, we were getting into buses, it was a small canal-street just for boarding them, it was like in college, we were leaving school forever, going to our houses, I was waiting in line with two friends that I still have contact with, probably some of the people I trusted and hanged around the most in highschool." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-clq5_seb2cfqzwzf5xmkm/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A Dream #dreamjournal
This one is from two nights ago but I was too lazy to document it. As thus I don&rsquo;t remember a lot and it is all fuzzy.
I was in a row, we were getting into buses, it was a small canal-street just for boarding them, it was like in college, we were leaving school forever, going to our houses, I was waiting in line with two friends that I still have contact with, probably some of the people I trusted and hanged around the most in highschool.">
<meta itemprop="wordCount" content="407">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A Dream #dreamjournal
This one is from two nights ago but I was too lazy to document it. As thus I don&rsquo;t remember a lot and it is all fuzzy.
I was in a row, we were getting into buses, it was a small canal-street just for boarding them, it was like in college, we were leaving school forever, going to our houses, I was waiting in line with two friends that I still have contact with, probably some of the people I trusted and hanged around the most in highschool."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A Dream
#dreamjournal</p>
<p>This one is from two nights ago but I was too lazy to document it. As thus I don&rsquo;t remember a lot and it is all fuzzy.</p>
<p>I was in a row, we were getting into buses, it was a small canal-street just for boarding them, it was like in college, we were leaving school forever, going to our houses, I was waiting in line with two friends that I still have contact with, probably some of the people I trusted and hanged around the most in highschool.</p>
<p>There were another par, a girl also similar to someone that I met in highschool and a guy taller, they seemed to be friends and the girl had lowkey a thing for me but I don&rsquo;t think anything ever happened, she was sorta just like looking for me or for our group, then we hanged together into the school (I left the row), and then we got into the building, it was like a tridimentional maze with multiple vertical levels, stairs leading and making paradoxical architecture, pathways upside down, and all the building was from gray to white, I eventually found her again and there were only us and faces unknown, after that I don&rsquo;t remember what happened but I was on my way to the bus, running, it was the last bus and I was the last one to get in, it almost leaved without me but it was kinda waiting for me.</p>
<p>Once in I remember seeing familiar faces of people I have met but never really interacted a lot with, as I was the last one there weren&rsquo;t any seats left except the ones in the very back, so I went there and then a girl I know and I have talked with from the wired appeared, she sat on top of me and we began to kiss a lot while she was touching all my body, it was like this all the time I was in the bus until it arrived at its destination and everyone got off, however as all the kissing happened I remember scenes of also going to other seats and also talking with the other passengers of the bus, maybe this did happened too inbetween the kissing sessions.</p>
<p>Once we arrived the place looked familiar to me and then I there was no one else, I was alone in a desolate white desert around the city-town I arrived.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-beyond-the-curtain-of-reality_v2kebzjzq53hgwrt/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-comet-classes_z4yy3qenw0xmgjd2/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,296 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream “Comet classes” #dreamjournal This one was the last dream I had this past night, it was shortly after the last one I wrote, however I don&rsquo;t remember the transition, that&rsquo;s why I am writing them separately. I find myself on an empty classroom, seemingly dimming at night, an instant later, crowded I am surrounded by my classmates, it is a very clean and clear room, all white and sanitized, very official the professor there is an actual person I remember from the last school I was in, he was giving a class, but it wasn&rsquo;t about what he did in my wake life, to tell you the truth I don&rsquo;t even remember what was he saying, by the end of it and while he is doing it, there is a girl sitting in front of me, she, is someone of the class I am in right now, when I first met her on knew of her I felt I vibe, but now, however that never arose to anything else, in this class however we talked for a bit, it was about her vision of the world she was very passionate, and we were discussing of the fundamental realities of the structure of the world, its pillars, however this understatement didn&rsquo;t come as words, but as a match in the mind, by the end of our discussion which was mostly unilateral, she went up to deliver something to the professor, a homework, the thing is while I barely talked, I agreed with everything or mostly all of what she told me, and I was then just there standing in a secondary place, thinking about my own homework that I haven&rsquo;t done yet, it was the same as what she was saying, I didn&rsquo;t copy it did I?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream “Comet classes” #dreamjournal This one was the last dream I had this past night, it was shortly after the last one I wrote, however I don&rsquo;t remember the transition, that&rsquo;s why I am writing them separately. I find myself on an empty classroom, seemingly dimming at night, an instant later, crowded I am surrounded by my classmates, it is a very clean and clear room, all white and sanitized, very official the professor there is an actual person I remember from the last school I was in, he was giving a class, but it wasn&rsquo;t about what he did in my wake life, to tell you the truth I don&rsquo;t even remember what was he saying, by the end of it and while he is doing it, there is a girl sitting in front of me, she, is someone of the class I am in right now, when I first met her on knew of her I felt I vibe, but now, however that never arose to anything else, in this class however we talked for a bit, it was about her vision of the world she was very passionate, and we were discussing of the fundamental realities of the structure of the world, its pillars, however this understatement didn&rsquo;t come as words, but as a match in the mind, by the end of our discussion which was mostly unilateral, she went up to deliver something to the professor, a homework, the thing is while I barely talked, I agreed with everything or mostly all of what she told me, and I was then just there standing in a secondary place, thinking about my own homework that I haven&rsquo;t done yet, it was the same as what she was saying, I didn&rsquo;t copy it did I?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-comet-classes_z4yy3qenw0xmgjd2/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream “Comet classes” #dreamjournal This one was the last dream I had this past night, it was shortly after the last one I wrote, however I don&rsquo;t remember the transition, that&rsquo;s why I am writing them separately. I find myself on an empty classroom, seemingly dimming at night, an instant later, crowded I am surrounded by my classmates, it is a very clean and clear room, all white and sanitized, very official the professor there is an actual person I remember from the last school I was in, he was giving a class, but it wasn&rsquo;t about what he did in my wake life, to tell you the truth I don&rsquo;t even remember what was he saying, by the end of it and while he is doing it, there is a girl sitting in front of me, she, is someone of the class I am in right now, when I first met her on knew of her I felt I vibe, but now, however that never arose to anything else, in this class however we talked for a bit, it was about her vision of the world she was very passionate, and we were discussing of the fundamental realities of the structure of the world, its pillars, however this understatement didn&rsquo;t come as words, but as a match in the mind, by the end of our discussion which was mostly unilateral, she went up to deliver something to the professor, a homework, the thing is while I barely talked, I agreed with everything or mostly all of what she told me, and I was then just there standing in a secondary place, thinking about my own homework that I haven&rsquo;t done yet, it was the same as what she was saying, I didn&rsquo;t copy it did I?">
<meta itemprop="wordCount" content="409">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream “Comet classes” #dreamjournal This one was the last dream I had this past night, it was shortly after the last one I wrote, however I don&rsquo;t remember the transition, that&rsquo;s why I am writing them separately. I find myself on an empty classroom, seemingly dimming at night, an instant later, crowded I am surrounded by my classmates, it is a very clean and clear room, all white and sanitized, very official the professor there is an actual person I remember from the last school I was in, he was giving a class, but it wasn&rsquo;t about what he did in my wake life, to tell you the truth I don&rsquo;t even remember what was he saying, by the end of it and while he is doing it, there is a girl sitting in front of me, she, is someone of the class I am in right now, when I first met her on knew of her I felt I vibe, but now, however that never arose to anything else, in this class however we talked for a bit, it was about her vision of the world she was very passionate, and we were discussing of the fundamental realities of the structure of the world, its pillars, however this understatement didn&rsquo;t come as words, but as a match in the mind, by the end of our discussion which was mostly unilateral, she went up to deliver something to the professor, a homework, the thing is while I barely talked, I agreed with everything or mostly all of what she told me, and I was then just there standing in a secondary place, thinking about my own homework that I haven&rsquo;t done yet, it was the same as what she was saying, I didn&rsquo;t copy it did I?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream “Comet classes”
#dreamjournal
This one was the last dream I had this past night, it was shortly after the last one I wrote, however I don&rsquo;t remember the transition, that&rsquo;s why I am writing them separately.
I find myself on an empty classroom, seemingly dimming at night, an instant later, crowded I am surrounded by my classmates, it is a very clean and clear room, all white and sanitized, very <em>official</em> the professor there is an actual person I remember from the last school I was in, he was giving a class, but it wasn&rsquo;t about what he did in my wake life, to tell you the truth I don&rsquo;t even remember what was he saying, by the end of it and while he is doing it, there is a girl sitting in front of me, she, is someone of the class I am in right now, when I first met her on knew of her I felt I vibe, but now, however that never arose to anything else, in this class however we talked for a bit, it was about her vision of the world she was very passionate, and we were discussing of the fundamental realities of the structure of the world, its pillars, however this understatement didn&rsquo;t come as words, but as a match in the mind, by the end of our discussion which was mostly unilateral, she went up to deliver something to the professor, a homework, the thing is while I barely talked, I agreed with everything or mostly all of what she told me, and I was then just there standing in a secondary place, thinking about my own homework that I haven&rsquo;t done yet, it was the same as what she was saying, I didn&rsquo;t copy it did I? We were just agreeing to our ideas, a very similar perspective without being the same, or would we&hellip;
This troubled me for a while, and then very close to waking up, I had this images in my mind, what we were talking about on another level, the synthesis of our own interactions wasn&rsquo;t on the current world, but the idealization and construction of a new one, where the problems that afflict this one were nonexistent, that was what she delivered as a homework, a new world and all of us there were studying these metaphysical dynamics, the creation of entire realities and <em>verses</em> as well as their implementation into the omniverse.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-clq5_seb2cfqzwzf5xmkm/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-fiesta-sideral_li108yyjt5bfytmr/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,314 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, Fiesta Sideral #dreamjournal
Today I dreamed approximately 14 hours, I was exhausted from the week and I wanted and felt like resting. That being said I had at least 10 dreams this night of which I only remember the most, the last one which is the one I will relate now. Also, one thing to know is that I have never seen full metal alchemist.
I was at a party, in a somewhat large apartment of what appeared to be a nice zone, but realistically I never really saw the outside, it just seemed with a really clean interior that was about to get all wasted." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, Fiesta Sideral #dreamjournal
Today I dreamed approximately 14 hours, I was exhausted from the week and I wanted and felt like resting. That being said I had at least 10 dreams this night of which I only remember the most, the last one which is the one I will relate now. Also, one thing to know is that I have never seen full metal alchemist.
I was at a party, in a somewhat large apartment of what appeared to be a nice zone, but realistically I never really saw the outside, it just seemed with a really clean interior that was about to get all wasted." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-fiesta-sideral_li108yyjt5bfytmr/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, Fiesta Sideral #dreamjournal
Today I dreamed approximately 14 hours, I was exhausted from the week and I wanted and felt like resting. That being said I had at least 10 dreams this night of which I only remember the most, the last one which is the one I will relate now. Also, one thing to know is that I have never seen full metal alchemist.
I was at a party, in a somewhat large apartment of what appeared to be a nice zone, but realistically I never really saw the outside, it just seemed with a really clean interior that was about to get all wasted.">
<meta itemprop="wordCount" content="1607">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, Fiesta Sideral #dreamjournal
Today I dreamed approximately 14 hours, I was exhausted from the week and I wanted and felt like resting. That being said I had at least 10 dreams this night of which I only remember the most, the last one which is the one I will relate now. Also, one thing to know is that I have never seen full metal alchemist.
I was at a party, in a somewhat large apartment of what appeared to be a nice zone, but realistically I never really saw the outside, it just seemed with a really clean interior that was about to get all wasted."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, “Fiesta Sideral”
#dreamjournal</p>
<p>Today I dreamed approximately 14 hours, I was exhausted from the week and I wanted and felt like resting. That being said I had at least 10 dreams this night of which I only remember the most, the last one which is the one I will relate now. Also, one thing to know is that I have never seen full metal alchemist.</p>
<p>I was at a party, in a somewhat large apartment of what appeared to be a nice zone, but realistically I never really saw the outside, it just seemed with a really clean interior that was about to get all wasted.</p>
<p>And so it did when I arrived there were already plenty of people none of whom I knew, the apartment was at least divided in 2 sections without considering rooms, in the first section there were people drinking talking parting a bit chill at most smoking some weed some, however in the next one it appeared to be a rave, people were way more active, they were dancing and many were on heavier drugs like acid or mdma, I got some acid, as soon as I did the dream starting shifting from something relatively normal to something extremely crazy.</p>
<p>It started like a story, like if we were on a camp just telling spooky stories, except they weren&rsquo;t really spooky, and we weren&rsquo;t really on a camp, I remember a guy with a long hair that I feel I have seen before somewhere in this <em>personal life</em> he is the one relating the stories, and we are still like dancing in a circle, at some point people start leaving since it is getting late, like it would normally happen and just a few of us actually remain there, but it is still a sizable group, however things change now, something feels eerily more real than just a story being told, the room the scenery and the perception of all of us seems to change to what is being related, next thing I remember is that I am on a snowy place, there is snow falling a blizzard approaching, and I am in the near the top of the mountains, and I am not myself but another <em>me</em>, I am now Edward from Full Metal Alchemist. I immediately notice a presence, an hostile one, it seems to be another mage, it is Winry, she comes charging against me, running directly and with momentum, even making waves on the air and dividing it in two, with the movement creating wind itself, she is also carrying what seems to be a sword or a knife, pointing directly to me. I see determination on her face, a bit of rage and anger, but she doesn&rsquo;t seem to be blinded by it.</p>
<p>There are however other forces at work here, there is a huge shadow behind me as well as there is one behind her, as if we both had shadow familiars, mine is a tall corpulent man, with a smile that would remind you of All Might, on her end I couldn&rsquo;t discern but might as well be tsunade, it was not only then a battle involving only the two of us but also forces or beings that are somewhat related to us, I was a ready to charge because that other force was also completely ready, but it was not someone I could fight with, as such my shadow stood back and it was up to my force only, not the one of me and my shadow.</p>
<p>She hits me, I move my body from where she is about to hit me, and then I grab her hands, as soon as I do that there is like a flashback, now for whatever reason I see scenes from Naruto (that I have never actually watched btw), some with tsunade, some with Naruto growing up like in the first seasons, there is some advice and growing of both, but more importantly revelations like the bloodline they both carry, then we go back to the snow, she is stuck in her movement as well as me, astonished, I don&rsquo;t think that means we are related but, she drops her attack and I see something is off as well, not with her, but it seems like she was herself, but someone convinced her of attacking me. I also think, however, the flashback may be different from both of us, because for me, it didn&rsquo;t really change things. After that still with her knife on my chest we hug, but it is a symbol of trust since I am no longer grabbing her hands, she starts crying, and I still unsure what is going on just tighten my arms around her. There may be some things I am missing because I don&rsquo;t remember, but we are or feel together again.</p>
<p>As soon as that hug and union happens I am back at the party, there is the same people from when I left, except I think the long haired guy, or he is still there but no longer a principal character of the dream, there are some things happening now however and there is one other tall guy and someone that used to be my friend, they were before to, but I didn&rsquo;t give it any importance, now they were the center about a decision, and we were only guys now in the party, all the girls were either gone or sleeping in some of the rooms, there was some sort of challenge, however won or was the best could get to sleep with the girls, and the menace was a dark shinning shadow looming and entering the apartment, my ex friend mentioned something about a girl in another apartment and I immediately remembered my meeting in the snow, so I rushed to her and left them to decide.</p>
<p>Her apartment was precisely the one in front of the party, I went through the dangerous shadows as if it were nothing and reached her, she was sleeping like knocked up or unconscious, and stayed there, I don&rsquo;t know if I woke her up or if I just stayed by her side, but I remained there either way for the rest of the dream.</p>
<p>However, the dream now shifted to the other apartment, the decision was to either let the shadows engulf all or shut them over, they were uneasy of this decision since it is something that has already happened many times, the danger of the shadows, so my ex friend wanted them to take over just so it were different and see what would happen, the other guy would not allow that to happen however he was uneasy and sort of unsure of this since he knew that would just be repeating the same old story, either way they decided to rally and cast the shadows away.</p>
<p>What happened after that is a story forgotten to me. I do know my ex friend was gone from my dream and the other guy was coming for me.</p>
<p>One of the other things they discussed was time as well, since it was something that <em>already happened</em> time in some sense should be involved, and for some reason they tracked or deemed me responsible for the creation and maintenance of time, a task that is not mine even though I understand the construct entirely. The room was different from the guy than it was for me, he encountered a maze that he had to sort out, a sequence with different steps that from the top was resembling a squared spiral. When he finally reached me, he demanded me to end time, since from his eyes it was me who all time related inquiries should be delegated, I told him it is not me who keeps it going, but most importantly that he couldn&rsquo;t stop it not end it himself, since he did use time to get to where I was, at this point I remembered something about the party, I don&rsquo;t remember when but everyone that was on that other side at some point existed outside time and space, in what seemed to be the black of the void and the stars, everything was colored like that but shapes, our bodies still formed, we weren&rsquo;t the universe people know, but we were outside of it seeing it happen, he too was outside, and we all remember timeless experience, from there a pillar was cast upon this other apartment just in front of me and the other guy, it was a pillar made of that very same material of the dark night sky, but it seemed solid now instead of matterless, I told him exactly that &ldquo;You can&rsquo;t outcast time if you use it, for you to end it and finish it you need to do it in a way you don&rsquo;t employ it at all&rdquo;, I wasn&rsquo;t his enemy and he acknowledged that just before the pillar opened up the soil and made an entrance or opening to the sidereal space.</p>
<p>I woke up. For real.</p>
<p>Then I went back to sleep just to have a quick dream about The gentle giant robot that wanted to be superman, but I forgot everything about it except that a ship was using a part of his body, his core, and it was sinking with him trying to get it, it was tremendous effort carrying all that weight since he was under the ship, and it was the weight of it and the entire ocean, but he could manage to get the core somehow and leave, he always however kept carrying on.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-comet-classes_z4yy3qenw0xmgjd2/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-finn-and-jake-beyond-the-lands-of-dreams_fkz0ltmsns2pksd7/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,310 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream &ldquo;Finn and Jake, beyond the lands of dreams&rdquo; #dreamjournal
It was so shakening I woke up repeatedly and went back to sleep to the same dream like twice.
I am Finn, but also kinda see or perceive their reality as an spectator as you would if you watching tv OE something, but instead of using a device I was living it first hand through the dream, my perception then was the dream itself and Finn." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream &ldquo;Finn and Jake, beyond the lands of dreams&rdquo; #dreamjournal
It was so shakening I woke up repeatedly and went back to sleep to the same dream like twice.
I am Finn, but also kinda see or perceive their reality as an spectator as you would if you watching tv OE something, but instead of using a device I was living it first hand through the dream, my perception then was the dream itself and Finn." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-finn-and-jake-beyond-the-lands-of-dreams_fkz0ltmsns2pksd7/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream &ldquo;Finn and Jake, beyond the lands of dreams&rdquo; #dreamjournal
It was so shakening I woke up repeatedly and went back to sleep to the same dream like twice.
I am Finn, but also kinda see or perceive their reality as an spectator as you would if you watching tv OE something, but instead of using a device I was living it first hand through the dream, my perception then was the dream itself and Finn.">
<meta itemprop="wordCount" content="1299">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream &ldquo;Finn and Jake, beyond the lands of dreams&rdquo; #dreamjournal
It was so shakening I woke up repeatedly and went back to sleep to the same dream like twice.
I am Finn, but also kinda see or perceive their reality as an spectator as you would if you watching tv OE something, but instead of using a device I was living it first hand through the dream, my perception then was the dream itself and Finn."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream &ldquo;Finn and Jake, beyond the lands of dreams&rdquo;
#dreamjournal</p>
<p>It was so shakening I woke up repeatedly and went back to sleep to the same dream like twice.</p>
<p>I am Finn, but also kinda see or perceive their reality as an spectator as you would if you watching tv OE something, but instead of using a device I was living it first hand through the dream, my perception then was the dream itself and Finn.</p>
<p>Me and Jake have been wandering on Ooo for longer than we can remember, time in mental spaces is not quantifiable, all you have is your perception of things happening but not time itself, as time there doesn&rsquo;t really exist as a palpable force, it is more like qn abstract idea you can think of and interact with (this applies to all mental spaces, you can see it in animation too). Ooo for us feels like a desert even though it is full of life, in our travels and adventures we have a lot of fun always fooling around but we both after all we have acomplished still feel empty, so we decide to take on yet another journey to fill that void, visiting all our friends on ooo.</p>
<p>&hellip;</p>
<p>And so we travel, we backtrack all the places we have been until we reach a small stone building, it isn&rsquo;t concrete, ir is literally carved into a massive stone, that also seems to be a precious one, inside it is full of people and other adventurers, I don&rsquo;t quite remember being in this place before, ooo is an everchanging world. There it was this being, it was like one of the gems of Steven Universe, colored by different tones of turquoise all around her body, I don&rsquo;t remember if she had a normal face with two eyes and the eyes had diferent tones with darker turquoise in the center or if she had a vertically rotated cube as her head, either way she was one of the less notable beings in the tabern, there were all kinds of shapes and forms of adventurers there, it was a safe place for resting and also for partying, at that the tabern shifted into a saloon for that very reason, and the turquoise gem felt out of place contrary to me and my buddy.</p>
<p>We get out and continue our jorney through ooo, there are deserts, pink gems all moving and laying around, constructs of them like temples, dense and macabre forest as well as joyful ones, yet even in our journey to see our friends we sense the dread and void of nothing ever happening. Even as we get into enchanted ruins and pillage them for treassure once our euphoria and thrill for discovery is gone after we raided it we are met with that solid wall of inactivity, the oddest thing is that in all our travels we see everyone having fun and the time of their lives, they are so full of themselves even being around them feels like being around an full of life and energy sun, I begin to question our senses, our feelings, why aren&rsquo;t we having fun? This are questions that roam my mind but I dare not ask my companion.</p>
<p>Eventually after visiting two or three other friends we arrive at a valley that is also like a desert it changes between states of grass and sand, and sometimes it is both at the same time, we didn&rsquo;t expected to see anyone there and there weren&rsquo;t living anyone that I know of, we were just passing by, yet we met someone, it was the gem lady from before, she seemed exactly the same and it was an odd encounter so we approached, then in the dream I began to experience things as the dream not Finn, the gem was also inquiring about its own life, not in an existential sense but also wondering, &ldquo;is this all there is? This is pretty lame&rdquo; as she was indeed very new to that world too, then she heard a voice that was not a voice, and it speak in not words but knowledge directly transfered into her, the voice had a message only for them both to listen to, but the attitude on the gem immediately changed, and her eyes now flourished with joy in realization of the understandment she gained about that world, as this was happening Finn and Jake were approaching from behind, for them no voice was heard at all. Now being back to Finn I realize something is going on, and as we come closer the gem starts talking with the voice but I don&rsquo;t hear the voice at all, she says excitedly &ldquo;Amazing! interdimensional planes exist out of the boundaries of time and space&rdquo; and she fucking dissappears as if she was crossing through a portal but there was no visible portal, her body just gradually stopped being visible, in awe and shock we run up the small hill or dune she was on to aid her or see what happened and on top we see that on the valley there is like a face also made of the same gems (this actually shiny gems, not the color only) I assume this thing is somewhat related to her, and makes me wake up irl and within my dream and awakening I realize that it is probably the origin of the voice she talked to.</p>
<p>And then I had an epiphany, everyone has an adventure, even that gem seemingly so out of place was called to our world and to that very spot for very specific reasons, for events to unfold. On ooo the adventure world we have a journey to fulfill and to live too, we just haven&rsquo;t been living it, we are not when we are supposed to be, where our adventure lays and is wating events to unfold around us. We go back to our house that is Jake&rsquo;s house, and we get all our stuff ready, meaning we take all the shit we could use in an adventure and bag it, I am fucking euphoric, finally this world makes sense there is an adventure, an story to unfold and it is calling only me, and I realize this as the exaltation of my companion dimishes, he as unhinged as I was now is with a inexpressive eyes, and I remember that I just saw one of his kids running around the home, he had another realization, he can&rsquo;t go on an adventure with me because that&rsquo;s not what his heart desires the most, what his heart desires the most is his family, and the faceless expression is because he realized he made that decision a lot time ago, and I with a sight of compassion and understandment realize this too, these are my dreams after all, not his, but I keep packing my stuff and give my best friend in this world the tightest of hugs, candid, as this is also a goodbye forever. A smile in sorrow and sadness &ldquo;Goodbye Jake&rdquo;, and with my backpack full I clean my tears and open the first door jumping straight into my destiny.</p>
<p>The film deteriorates as if it were an old movie burning and las frames are of finn sleeping in some coffin-sarcophagus in the middle of space, being the very last of the frames the sarcophagus closing. Once that sequence is over the credits roll and you see machinery, giant swords and gears all moving slowly in a giant fabrication. In between of them there are all heroes, but the one I catch an eye on is spiderman, just laying in his iconic pose atop of the edge of a curved huge pipe going to the ground and I wake up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-fiesta-sideral_li108yyjt5bfytmr/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kinda-nsfw_y3sil1qguodl5yrp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,311 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream (kinda nsfw)
I don&rsquo;t quite remember the order anymore but there were a lot of women.
There are some parts of this dream that I don&rsquo;t remember, I don&rsquo;t remember how I got to this building complex for example, it was like a school but also some appartments, but there was also a street that connected it to the exterior, I was going to said street that was like an small alley in which there is only space for like two cars and there was a lot of people looking at me in the corner as I was getting in, once in I was just going to go through it to the other end, but in one apartment with its wooden door opened I saw two friends and I was curious as to why they were there so I got in, and there weren&rsquo;t just my two friends there was like a party with a lot of people I know and some others than don&rsquo;t, in total we were roughly 10 or a some less, there were 2 girls I recognized and the 2 friends that also recognized me, the others I don&rsquo;t remember nor recognize them." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream (kinda nsfw)
I don&rsquo;t quite remember the order anymore but there were a lot of women.
There are some parts of this dream that I don&rsquo;t remember, I don&rsquo;t remember how I got to this building complex for example, it was like a school but also some appartments, but there was also a street that connected it to the exterior, I was going to said street that was like an small alley in which there is only space for like two cars and there was a lot of people looking at me in the corner as I was getting in, once in I was just going to go through it to the other end, but in one apartment with its wooden door opened I saw two friends and I was curious as to why they were there so I got in, and there weren&rsquo;t just my two friends there was like a party with a lot of people I know and some others than don&rsquo;t, in total we were roughly 10 or a some less, there were 2 girls I recognized and the 2 friends that also recognized me, the others I don&rsquo;t remember nor recognize them." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kinda-nsfw_y3sil1qguodl5yrp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream (kinda nsfw)
I don&rsquo;t quite remember the order anymore but there were a lot of women.
There are some parts of this dream that I don&rsquo;t remember, I don&rsquo;t remember how I got to this building complex for example, it was like a school but also some appartments, but there was also a street that connected it to the exterior, I was going to said street that was like an small alley in which there is only space for like two cars and there was a lot of people looking at me in the corner as I was getting in, once in I was just going to go through it to the other end, but in one apartment with its wooden door opened I saw two friends and I was curious as to why they were there so I got in, and there weren&rsquo;t just my two friends there was like a party with a lot of people I know and some others than don&rsquo;t, in total we were roughly 10 or a some less, there were 2 girls I recognized and the 2 friends that also recognized me, the others I don&rsquo;t remember nor recognize them.">
<meta itemprop="wordCount" content="1490">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream (kinda nsfw)
I don&rsquo;t quite remember the order anymore but there were a lot of women.
There are some parts of this dream that I don&rsquo;t remember, I don&rsquo;t remember how I got to this building complex for example, it was like a school but also some appartments, but there was also a street that connected it to the exterior, I was going to said street that was like an small alley in which there is only space for like two cars and there was a lot of people looking at me in the corner as I was getting in, once in I was just going to go through it to the other end, but in one apartment with its wooden door opened I saw two friends and I was curious as to why they were there so I got in, and there weren&rsquo;t just my two friends there was like a party with a lot of people I know and some others than don&rsquo;t, in total we were roughly 10 or a some less, there were 2 girls I recognized and the 2 friends that also recognized me, the others I don&rsquo;t remember nor recognize them."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream (kinda nsfw)</p>
<p>I don&rsquo;t quite remember the order anymore but there were a lot of women.</p>
<p>There are some parts of this dream that I don&rsquo;t remember, I don&rsquo;t remember how I got to this building complex for example, it was like a school but also some appartments, but there was also a street that connected it to the exterior, I was going to said street that was like an small alley in which there is only space for like two cars and there was a lot of people looking at me in the corner as I was getting in, once in I was just going to go through it to the other end, but in one apartment with its wooden door opened I saw two friends and I was curious as to why they were there so I got in, and there weren&rsquo;t just my two friends there was like a party with a lot of people I know and some others than don&rsquo;t, in total we were roughly 10 or a some less, there were 2 girls I recognized and the 2 friends that also recognized me, the others I don&rsquo;t remember nor recognize them.</p>
<p>At first people weirded out I got there and were like what is this he doing here? Then my friends kinda calmed everyone and I went to sit in the sofa with the others we were all smoking pot, and I have no idea what other drugs including alcohol. We were chilling and partying, some people got out then came back and so on. Now I don&rsquo;t remember if this was before or after the next events but I went to sit into another single couch and one of the girls that I knew came to sit on or with me, both tightly together, it got very sensual shortly after I don&rsquo;t remember if we kiss but I remember a lot of heat and passion and we looking each other in the eyes, she was watching me from the sofa biting her lips, like waiting as I was looking from above. Then a blackout, I don&rsquo;t know if I was having like visions of the past and future or if it was my own imagination while in the dream but the girl and I were like connected in this heat and looked in each other eyes across the room, then I got out the apartment into the alley, there was a fire in the house or building next to us, close to the street corner, it was small and dimmer but it seemed it was merely starting, I don&rsquo;t remember if I told them to leave or not, but I certainly did, other people not a whole lot but some also got out of their respective buildings into the alley and we all crossed it and got into this large atrium which is where the whole complex looked like a school then I and others began noticing some things on the floor, they were like seeds or hazlenuts, I know they were related to the fire somehow, then the fire completely expanded into the atrium, luckily the firemen were already there just getting ready to extinguish it, and they did as I got even further away from it. In the atrium I remember seeing some of the friends I was with.</p>
<p>Another blackout, I am now on a elevator or is it not me? I have other memories prior to this, a wolf comming out of my friends apartment, this wolf actually being one of the girls the one I kissed with, and then on the elevator showing her true form and kissing with the joker from dark knight, they are going up, way past all the buildings and I feel like I am there but also not there, like I am not a person in the elevator, yet I do have awareness, since I watch these events happening.</p>
<p>I am sure more things happened to make sense of these scenes but I have no recollection of them.</p>
<p>&hellip;</p>
<p>Dream two</p>
<p>I was sitting in a sofa like in a session meeting, it was quite lax but we were discussing important things, it was a group of women, like a elite force of freaks, of weird people with powers there were barely any men, but I was one and one of the girls was deeply in love with me, we were always doing obscene things in public but no one really mind. Something important to note is that there was no leader or person in charge, there used to be one but she wasn&rsquo;t present or left. This blonde girl that has fallen for me often came from behind just to grab me with a lusting desire, in this part of the dream when I was sitting on the couch in the meeting she just came up and hoped on me ready to grind and ride as she passed her arms around my neck, just as she began with her passionate movements another figure came into scene he was completely suited in black, it was like a noble and he was also wearing some kind of mask but just made of cloth, we were expecting him, he was our informant in the unseen war, despite being all black and wearing a trenchcoat, all his clothes had a fine stitched pattern.</p>
<p>As he appeared and the girl mounted on me noticed we both blushed our faces and felt some shame in the middle of our furor. I don&rsquo;t quite remember what the man said because one of the little girls left when she saw the blonde that was if anything like a sublider along me and others putting a devoted attention to our informant, this girl also saw the little one leaving, after she did she shortly followed and I followed her. I lost her along the way of the building we were in that was like a mixture between a castle a fabric and an abandoned warehouse, kinda Victorian. I have memory of the blonde calming the girl and their argument, the little one said she saw how she was allying with the rich aristocrats and their machines, that we and specially her had forgotten why we fight for, that we would rather have an automata than a human being for our duties, the man was talking about automatas probably, then the blonde calmed the girl and replied that wasn&rsquo;t the case, but automatas are also living beings and as such the also deserve all freedoms any other living being has, he wanted to treat it like equals in our new world, not them to substitute humans, but to put us in an even field.</p>
<p>While that was happening I got out of the building and crossed the street of/to a place similar to where I went in elementary school, I ended up in a stationery, there was a girl with not much will to live attending, and there was also her boss that occasionally showed up just to be annoying and doing nothing else. When I first came he was telling her something and giving her a sermon, he left shortly after he saw they had a client, I started talking with her, in spanish although there are no languages on my dreams, people just understand each other, and in this dialogue we both noticed we talked spanish and/or were from Mexico or at least were related to it in some sense, she told me her story only because I asked, she is not so fond of talking.</p>
<p>She used to live in the southern part of the US what was Mexico, I don&rsquo;t remember if Arizona, Texas or New Mexico, then she left fleeting the country for reasons I now have forgotten even deeper into the south, she travelled through all the nation until she reached here the valley, roughly the middle part and was kinda stuck in this work&hellip; I don&rsquo;t remember if she was looking for someone but she was fond of me for some reason so I went into the shop, like the back side to meet her and touch her properly and then I also scooped around looking for something, some kind of clue she gave me to getting her out of there. We heard the door open, it was the owner of the shop, I wasn&rsquo;t able to get out in time so we were forced to pretend I got in without consent, like a bugler, them both got very aggressive trying to make me leave and I did, then once out I don&rsquo;t remember any much but the contents of the other part of my dream, the ones of Blondie and then I woke up. I however remember that the journey of the girl was also looking for someone and she found him in me, that&rsquo;s why she was so eager to everything.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-finn-and-jake-beyond-the-lands-of-dreams_fkz0ltmsns2pksd7/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-king-of-monkey-island_5bm10nujy4bna5je/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,318 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, &ldquo;King of Monkey Island&rdquo; #dreamjournal I have been dreaming almost daily in the past days, but I have rarely felt to share them or most importantly to sit down and write them, since I don&rsquo;t do just plain transcriptions, I try to complete them as accurate as possible.
That being said, here I am again, and I got a tale, an interesting dream.
The dream feels like a movie, impersonal, but at the same time is not like I am watching anything, I am an observer but not from outside, like a screen, like a window, but I am within the dream, withing the world, and as such I approach slowly to an island, there is a view of the warm yellowish sand, like an areal shot of a movie, and it is sand, yet not so far away from it there starts the green a complete and dense jungle, palms, bushes, you name it, there is nothing but the green of it, and it gets closer, so closer the jungle is seen by the inside, it is now way more detailed and animals start to be seen alongside some fruits like bananas, and of course where there are bananas there are apes, and then the vision changes a bit, the focus is in a particular monkey." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, &ldquo;King of Monkey Island&rdquo; #dreamjournal I have been dreaming almost daily in the past days, but I have rarely felt to share them or most importantly to sit down and write them, since I don&rsquo;t do just plain transcriptions, I try to complete them as accurate as possible.
That being said, here I am again, and I got a tale, an interesting dream.
The dream feels like a movie, impersonal, but at the same time is not like I am watching anything, I am an observer but not from outside, like a screen, like a window, but I am within the dream, withing the world, and as such I approach slowly to an island, there is a view of the warm yellowish sand, like an areal shot of a movie, and it is sand, yet not so far away from it there starts the green a complete and dense jungle, palms, bushes, you name it, there is nothing but the green of it, and it gets closer, so closer the jungle is seen by the inside, it is now way more detailed and animals start to be seen alongside some fruits like bananas, and of course where there are bananas there are apes, and then the vision changes a bit, the focus is in a particular monkey." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-king-of-monkey-island_5bm10nujy4bna5je/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, &ldquo;King of Monkey Island&rdquo; #dreamjournal I have been dreaming almost daily in the past days, but I have rarely felt to share them or most importantly to sit down and write them, since I don&rsquo;t do just plain transcriptions, I try to complete them as accurate as possible.
That being said, here I am again, and I got a tale, an interesting dream.
The dream feels like a movie, impersonal, but at the same time is not like I am watching anything, I am an observer but not from outside, like a screen, like a window, but I am within the dream, withing the world, and as such I approach slowly to an island, there is a view of the warm yellowish sand, like an areal shot of a movie, and it is sand, yet not so far away from it there starts the green a complete and dense jungle, palms, bushes, you name it, there is nothing but the green of it, and it gets closer, so closer the jungle is seen by the inside, it is now way more detailed and animals start to be seen alongside some fruits like bananas, and of course where there are bananas there are apes, and then the vision changes a bit, the focus is in a particular monkey.">
<meta itemprop="wordCount" content="1804">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, &ldquo;King of Monkey Island&rdquo; #dreamjournal I have been dreaming almost daily in the past days, but I have rarely felt to share them or most importantly to sit down and write them, since I don&rsquo;t do just plain transcriptions, I try to complete them as accurate as possible.
That being said, here I am again, and I got a tale, an interesting dream.
The dream feels like a movie, impersonal, but at the same time is not like I am watching anything, I am an observer but not from outside, like a screen, like a window, but I am within the dream, withing the world, and as such I approach slowly to an island, there is a view of the warm yellowish sand, like an areal shot of a movie, and it is sand, yet not so far away from it there starts the green a complete and dense jungle, palms, bushes, you name it, there is nothing but the green of it, and it gets closer, so closer the jungle is seen by the inside, it is now way more detailed and animals start to be seen alongside some fruits like bananas, and of course where there are bananas there are apes, and then the vision changes a bit, the focus is in a particular monkey."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, &ldquo;King of Monkey Island&rdquo;
#dreamjournal
I have been dreaming almost daily in the past days, but I have rarely felt to share them or most importantly to sit down and write them, since I don&rsquo;t do just plain transcriptions, I try to complete them as accurate as possible.</p>
<p>That being said, here I am again, and I got a tale, an interesting dream.</p>
<p>The dream feels like a movie, impersonal, but at the same time is not like I am watching anything, I am an observer but not from outside, like a screen, like a window, but I am within the dream, withing the world, and as such I approach slowly to an island, there is a view of the warm yellowish sand, like an areal shot of a movie, and it is sand, yet not so far away from it there starts the green a complete and dense jungle, palms, bushes, you name it, there is nothing but the green of it, and it gets closer, so closer the jungle is seen by the inside, it is now way more detailed and animals start to be seen alongside some fruits like bananas, and of course where there are bananas there are apes, and then the vision changes a bit, the focus is in a particular monkey.</p>
<p>I am no longer a visor just floating around, but this monkey is my main focus, as now I follow his story, I start learning about his life as his life is mine now too, I start seeing the social structures of the group, a tribe even, there is some pseudo hierarchy around power, but not just physical strength also cunning is important as well as mental fortitude, there are several pillars that I will discuss in length later.</p>
<p>There are other sorts of secondary characters in the life of the monkey, adversaries and friends alike, and as I discover them I also discover his place in the tribe or archetypically how other monkeys see him, he is someone that everyone knows but not everyone is friends with, not because he is too unfriendly but because he may be too much of a brute sometimes. It is a small monkey, often seen as too dumb or unreliable, and because of his size he is perceived as weak too even tho he hasn&rsquo;t lost a fight (not that he has been in many) he also seems less smart than other monkeys or the average, I wouldn&rsquo;t say dumb, but at least he certainly is slower, and he doesn&rsquo;t communicate or &ldquo;speaks&rdquo; a lot with others, which is the one of the reasons while everyone knows him he is not befriended by everyone.</p>
<p>Within the adversaries, there is a monkey girl that is the complete opposite of him, at least regarding mental qualities since she is by far the smartest monkey on the island and physically too, since she seems to be one of the most slim and thin monkeys there too. She has been an adversary since she and the strong monkey were little it started playfully and sort of remained that way, however there is something at stake in their challenges and struggle, it is in a sense preparation, all the competition, all the task they have done for the tribe since they were growing up meant and were from something, to achieve a goal.</p>
<p>There is a rite in the tribe, something only the bravest and more cunning may be part of, the ritual consist in an arrangement of stones that draws a circle, in the middle of it is a plate with a liquid, I don&rsquo;t remember if it was blue or black, maybe within that gradient. And with it, just in the middle there is the chieftain shaman, and there are other shamans around it (this is the only hierarchy). The main shaman is giving the liquid to whoever wants to be part of the trial.</p>
<p>Each stone with symbols that form a face carved on it represent a primordial force or a pillar of the monkeys, it is what they value, one is raw unbridled strength, other is smartness, cunning, other is playfulness and joy, mental fortitude and awareness&hellip; there are other 2 that I have forgotten already, the ritual is celebrated to get a new representative of these values, an epitome in monkey society of cunning, strength and playfulness, and wisdom. The trial is designed to attest to how much of this quality the monkey that takes it actually has.</p>
<p>However, this is not purely ritualistic, there are a mythical and mystical elements at play. Once the trial start, it is not done in this world, the monkey has to take a sip of the middle plate given by the shaman and then go to one of the spaces within the stones, as from within they convert into portals that go into another realm, one in which everything seems to be neon dark and dangerous, time works differently there as well as they can be years within as there is a second in monkey island. The trial often consist on finding something and retrieving it to their plane, but it is not done alone necessarily, as each entrance or portal gives to a different place within this other realm they are all still within the same place, other important detail to note is that the monkeys face various different obstacles that vary from terrain to entities living there that try to capture them or at least hinder them. Many die or at least are never seen on monkey island again, many others come back surrendering to the trial and not getting any qualification, only the once that retrieve the missing object are the ones worthy of a grade given by the virtue (spirit(?)) they represent.</p>
<p>Our monkey goes in line to take the test, in front of him there is the girl monkey as well as many others, one by one they get into the dark realms, he drinks the sip and goes inside the dark pink violet portal, and immediately he is scorched by that realm, it feels inhospitable in every single sense, he wanders around for a bit dodging the tribulations making them disappear as if they were made of dust and smoke, it seems overall as if it was a dark version of the jungle they live in, like it has all the places and palms and bushes where they are supposed to be, but it is all a shadow in dark, he simply followed his instinct as to where to go, his own intuition and that took him to the monkey girl which was about to take a lost relic, but he also saw she was about to be attacked by a shadow monster, the monkey warned her, and she used a little item of her own invention to outcast the shadow, then, the girl with the item disappeared as well, before meeting her he met others, but they weren&rsquo;t in help-able situations, they were mostly just also wondering looking for clues, however they also seemed incredibly lost, but the monkey didn&rsquo;t know what to do since he didn&rsquo;t know how to make them snap of their own labyrinths, he was not the wise champion after all.</p>
<p>As he continued traveling the deserted dark island, he found one of the white gems or items, he took it and was immediately transported to his world, he was now on a row, behind some other monkeys, one of this was again the girl, he just stood there and waited patiently for his turn, however he noticed something, he has changes intrinsically, like if something inside him has awakened in that dark realm, he felt strength, rage, anger, power, absolute fortitude, as solid as a mountain, he wasn&rsquo;t thinking about it, but he was feeling all of it as he was walking up the row, another thing that he noticed is some sort of numbers on top of other monkeys, most of them were wearing zeroes, however the girl had a number, a higher one at least, but he didn&rsquo;t know which.</p>
<p>He saw which number the girl has as soon as everyone else knew as well, since it was her turn, the shaman granted her with a 3 out of supposedly 5 or 10 (getting a number is even hard to begin with, so this was good enough to be an icon), the girl did seem a bit angry and disappointed, but she was accepting it regardless, other two zeroes, and it was the turn of the monkey of this story, he was tired, not physically but of the whole ritual, he looked at the shaman in the most condescending manner, as suddenly he realized the unrightful control they had over all the other monkeys, since they were not even one of the icons, much less they would ever participated in any of the trials, he was furious when he saw they were all full of shit.</p>
<p>The girl was looking at him expecting it another zero, but the shaman was absolutely blown away physically and mentally, there wasn&rsquo;t a number for the strength of the monkey, then from my perspective I saw the number, it wasn&rsquo;t a number, it even overflowed the margin it was supposed to be in. And the monkey it seemed like he had an aura the same color as the dark realm, a neon dark of various different lights.</p>
<p>The final numbers were 3 5 4 and 000000000000000000 of the ones who returned, except of course the monkey.</p>
<p>He was declared ultimate protector by the shamans, and they said suggested and aimed the monkey society to be built around him. However, I don&rsquo;t remember if he punched them in the face, what I do remember is that there was something coming out of the central portal where the liquid with the plate was, I don&rsquo;t remember if it was the monkey itself or one shadow monster wanting to come out, either way it was him who closed that rift.</p>
<p>Then I left, or did I close my eyes? But when I was back on the island the monkey once young was now old, now it was not only strong but also wise, although not a ritualistic icon of it, but an acquired wisdom through experiences, not an innate one.</p>
<p>He was telling others of the path, the path of his life and strength, of how to live and how to be fair, however I noticed a deep restlessness within himself, he was aware too, that when he died, there would be no one else to build upon the monkey society, as he was made the base of it, his demise would be the demise of the tribe, this was the shamans last laugh.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kinda-nsfw_y3sil1qguodl5yrp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kx8q_czfpk414jymzqn97/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,313 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream
Very boring, although the sensations were interesting, I may do some refinement on this to try to transmit them, it was all facial and body expressions.
It was way more than this but I only remember this part.
I was on a bus sitting alone but there were other people in it, destination unknown but it was some part of the country I live in. Somehow without really talking I made friends with the guys at the bus, they all new each others even tho they were on different seats, I was like the odd one there, but as I said we ended up friends." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream
Very boring, although the sensations were interesting, I may do some refinement on this to try to transmit them, it was all facial and body expressions.
It was way more than this but I only remember this part.
I was on a bus sitting alone but there were other people in it, destination unknown but it was some part of the country I live in. Somehow without really talking I made friends with the guys at the bus, they all new each others even tho they were on different seats, I was like the odd one there, but as I said we ended up friends." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kx8q_czfpk414jymzqn97/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream
Very boring, although the sensations were interesting, I may do some refinement on this to try to transmit them, it was all facial and body expressions.
It was way more than this but I only remember this part.
I was on a bus sitting alone but there were other people in it, destination unknown but it was some part of the country I live in. Somehow without really talking I made friends with the guys at the bus, they all new each others even tho they were on different seats, I was like the odd one there, but as I said we ended up friends.">
<meta itemprop="wordCount" content="988">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream
Very boring, although the sensations were interesting, I may do some refinement on this to try to transmit them, it was all facial and body expressions.
It was way more than this but I only remember this part.
I was on a bus sitting alone but there were other people in it, destination unknown but it was some part of the country I live in. Somehow without really talking I made friends with the guys at the bus, they all new each others even tho they were on different seats, I was like the odd one there, but as I said we ended up friends."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream</p>
<p>Very boring, although the sensations were interesting, I may do some refinement on this to try to transmit them, it was all facial and body expressions.</p>
<p>It was way more than this but I only remember this part.</p>
<p>I was on a bus sitting alone but there were other people in it, destination unknown but it was some part of the country I live in. Somehow without really talking I made friends with the guys at the bus, they all new each others even tho they were on different seats, I was like the odd one there, but as I said we ended up friends.</p>
<p>We went through mountains and valleys, then into a city, the view was always amazing.</p>
<p>Once we reached out the bus central, we ended up distributed in some seats and bench around some like visitor area we talked a little about things that I don&rsquo;t remember, then a girl came, she was young like 13 or 14, she has this aura of smileness but also threatening, a bit yandere but also crazy-joyful/happy. She met me at first and all the others were lowkey expecting something, she went up to me and said nothing, then for some reason we also ended up kinda friends we talked about again I don&rsquo;t remember while I was sitting on a bench and she was standing, now for some reason she or someone in the group ended up with the backpack I was carrying, all my things for school that I had the next day and the day before were in there so it was a significant loss. If I remember correctly it was an accident, some of the dudes was helping me taking my things off by carrying them, then once out of the bus we forgot giving me my backpack back. Once we and the girl stopped chatting she did a sign with her hand and all the dudes of the buss starting moving and formed a group with her in the middle and we said goodbye and parted ways, they still kept my backpack since we still haven&rsquo;t realized, they went on their way all merrily and I stayed on a bench resting for a while, then a vision like came, I was like on a open field within a campus it was the school and we all were in lines there was a hardened instructor and then I suddenly remember or relized my backpack was missing he was saying some incoherent bullshit as my anxiety rose, then I had another vision but this was like a connection, the girl that was like the boss of the party realized that my backpack was with them and she ordered to give it back by the next day, then the vision close and I went back to the &rsquo;normality&rsquo; of my dream.</p>
<p>I stood up from the bench now more calmed after knowing I would probably get my backpack before I actually needed it, and went to grab something to eat, the food area was like in the corner but quite open and with the easy access with the outside, it was a bunch of benchs rounded up by foodstalls (not mobile, they had their own places in the building), they were about the same thing just different flavors with a different classic (speciality), it was like a burrito but not really a burrito nor a taco it was like a middle ground between them two and the tortilla was not from corn but from wheat.</p>
<p>The classics were, a pizza like roll but that looked more like a taco, and another had a pizza like roll but of peperoni that actually looked like a pizza, some was classic burrito like, meat, guacamole, cheese, etc. There were others consisting in different kinds of different preparations of meat, I didn&rsquo;t know what to pick, I was drawn to the peperoni pizza roll but, that would be just a pizza roll not the speciality of the town.</p>
<p>So I just went on a bench to think about it, and all of them were full except one with to dudes eating, when I approached there was a leftover, a glass with barely any of milk, but it was there, the guys sitting called out someone from another table that was on the corner and connected to the cinema, the dude came to the table, took the milk and leaved with it, I sat down and wondered about all the flavours sorrounding me and which one to pick, I asked the guys or someone else a girl, that approached me, I have memory of that too, the point is they recommended the classic burrito like one, so I went for it I think and I ordered it, shortly after that the guys stopped eating and they left leaving me alone in the table, then my burritaco came and I started eating it, I don&rsquo;t remember the flavor nor how I felt but a girl came and sat down with me, the same from before (?) And we started chatting in a friendly way, but we seemed with interest in each other, soon after that I realized people around us lowkey were shitting their pants, the girl was in fact girlfriend or ex of the dude that was like the boss or something that came and took his milk, I went up to him after he called for the girl and she went, she was standing next to the table in which he and his goons were sitting. He was like trying to get her back or something as he was shitting on me with no reason since we have never met, I don&rsquo;t remember what I told him but it was with a low aggression, like a calmed threat and then I grabbed the girl from the waist and we went to the cinema.</p>
<p>Shortly after I woke up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-king-of-monkey-island_5bm10nujy4bna5je/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-leap_lonak472h0h8jb8w/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,305 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream &ldquo;Leap&rdquo; #dreamjournal
I arrived to a home, it was like in a second floor and there was the red balck and white room of a girl, with her bed and some heart shaped pillows and teddies, it wasn&rsquo;t s clean room but that was because there wasn&rsquo;t a clean woman sleeping inside of it, it was a young woman, I don&rsquo;t remember if a redhead or not but she has natural freckels on her face, but she also had a lot white of bumps, in my stay there I noticed those bumps burned with water, and she screamed it caused her so much pain." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream &ldquo;Leap&rdquo; #dreamjournal
I arrived to a home, it was like in a second floor and there was the red balck and white room of a girl, with her bed and some heart shaped pillows and teddies, it wasn&rsquo;t s clean room but that was because there wasn&rsquo;t a clean woman sleeping inside of it, it was a young woman, I don&rsquo;t remember if a redhead or not but she has natural freckels on her face, but she also had a lot white of bumps, in my stay there I noticed those bumps burned with water, and she screamed it caused her so much pain." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-leap_lonak472h0h8jb8w/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream &ldquo;Leap&rdquo; #dreamjournal
I arrived to a home, it was like in a second floor and there was the red balck and white room of a girl, with her bed and some heart shaped pillows and teddies, it wasn&rsquo;t s clean room but that was because there wasn&rsquo;t a clean woman sleeping inside of it, it was a young woman, I don&rsquo;t remember if a redhead or not but she has natural freckels on her face, but she also had a lot white of bumps, in my stay there I noticed those bumps burned with water, and she screamed it caused her so much pain.">
<meta itemprop="wordCount" content="1406">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream &ldquo;Leap&rdquo; #dreamjournal
I arrived to a home, it was like in a second floor and there was the red balck and white room of a girl, with her bed and some heart shaped pillows and teddies, it wasn&rsquo;t s clean room but that was because there wasn&rsquo;t a clean woman sleeping inside of it, it was a young woman, I don&rsquo;t remember if a redhead or not but she has natural freckels on her face, but she also had a lot white of bumps, in my stay there I noticed those bumps burned with water, and she screamed it caused her so much pain."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream &ldquo;Leap&rdquo;
#dreamjournal</p>
<p>I arrived to a home, it was like in a second floor and there was the red balck and white room of a girl, with her bed and some heart shaped pillows and teddies, it wasn&rsquo;t s clean room but that was because there wasn&rsquo;t a clean woman sleeping inside of it, it was a young woman, I don&rsquo;t remember if a redhead or not but she has natural freckels on her face, but she also had a lot white of bumps, in my stay there I noticed those bumps burned with water, and she screamed it caused her so much pain.</p>
<p>Outside of her room there it was a living room a sofa in the middle of a corridor, a table going forwards on it until you reached another room, one of the parents room, because you see they had two, one room just adjacent to hers and the other on the other side of the corridor, her parents sometimes slept together and some others separated in these rooms. She had a sister too but I never saw her or where she was staying until the very end.</p>
<p>I often ended up sleeping in her room although not with her, there passed like these a lot of nights and we begun taking affection and care for each other, we acknowledged our dreaded situations, how much our life sucked, I was a timeless wanderer, unable to find any meaningfull connection due to my reason and she was trapped by the shadow of her parents and we found solace in the tragedy of our situations.</p>
<p>They did took her bumps every now and then, specially her dad, it was with some kind of rain or a plain bucket straight up to her face and she always screamed in pain, I was never in her room when that happened, it happened twice in my stay, once I was able to remain hidden, and after it was done I got into her bedroom, but she was always in pain under her sheets. The second time was after her family discovered me and they made me sleep in the living room sofa. But it was already too late our bond was too strong for it to be broken only by distance and we were willing to make sacrifices for the other. Our bond strengthened the first time we had sex, I don&rsquo;t remember exactly, and I don&rsquo;t remember her face because it was very dark, and my memory about its cloudy, but I remember the passion, the anger, the love, the pain, the hope. I have the sensations of the emotios that arose as she was on top of me riding me, caring for me, it was warm in the soul and in the body, and only thing I could do is give back.</p>
<p>Time passed after that, we were no longer strangers and have grown in each other hearts. One day, when I was discovered it was by his dad, he surprisingly wasn&rsquo;t mad at me, on the contrary he was glad his child could ever find someone so he was very kind to me, as well as her mother was, but she was still doubtful and wary of me, for her I was just yet another male waiting to inflicted pain. One thing to know about her parents is that they were an odd painful couple, that later on I got to understand why. In my eyes there never seemed to love each other, they didn&rsquo;t fight, but there was no love in there either, they weren&rsquo;t happy nor comfortable to exist around each other, thus the two bedrooms. Their relationship with their kids was one of a master and a slave, it was not a family but a dictatorship, and the rulers were a neurotic mess, the will of the children were never met because the will of the parents forever trespassed it, in result my girl and her sister were always a shell of emotions with a soul buried within mask and mask of parental images, they weren&rsquo;t themselves, they were just beings trying to please their parents.</p>
<p>And even then I thought there was some validity to her suffering, I thought maybe taking away the bumps was a good idea for her health, that was until the last day, that his dad came in anger armed with a water filled bucket and poured it all in rage on a single move, I heard her agonizing pain, she ended up running out of her room, out of the bulding, out in the street, she was gone, and I was in anger and pain now, I saw her parent slowly coming out of the room, self absorbed in pride, then I noticed the very same bumps on his face and I understood, it wasn&rsquo;t about her, it was about him and seeing his own faulty reflection on her, I don&rsquo;t think he hated himself but I do think he never accepted himself and he wanted her daughter to not be him, but that was something impossible.
As he was comming out he saw me, he saw the pain if my eyes, the pain I had for her, then he approached me with a condescending attitude, almost as if drunk, then just as he was just in front of me, face to face, a firealrm silently went off and water started raining from the ceiling, and it was water all flowing through his wretched face full of bumps, but there wasn&rsquo;t even a pinch of pain, then the bit of pity I had about him erased, he wasn&rsquo;t feeling for her dauther as I was, he was just inflicting her pain but he wasn&rsquo;t even seeing nor understanding what he was doing, it wasn&rsquo;t for her or for him anymore, it was a behavior whose meaning was lost to him, very much like modern traditions, he wasn&rsquo;t holding a void, nor emptiness, he was no zombie even and he had no soul anymore to reflect, just another automaton. As soon as I understood this my arm went through his body, my hand full of blood now and he lying at last lifeless in the couch both of us cleansing by the drops of water.</p>
<p>I go for her now, into the street, I cross it and get into watered dark alley, the sky is cloudy and I there are barely any sunrays getting into the surface, at the end of the alley there are two paths and in the middle there is her sister with a board on her chest, its got something writen on it that I can&rsquo;t remember, but she points me to one direction and I follow, later on down that dark path I found her bathed on light rays, but not as any biblical imagery, she is just more visible than her sorroundings, she is still im tears but no longer crying, she sees me and she is uneasy for what implies I am there, but also calmed at seeing that I am there with her, I approach and hug her, I feel her tears on my chest and there is no longer any pebble in her face, just her freckles and her ambivalent smile, she looks the most beautiful I have seen her, I take her by the hand and we make a run for getting out of that world, we get into yet another alley but this one at its dead end has a platform, this platform raises us to a digital sky, in there we see a lot of symbols enclosed in different polygons, hexagons, pentagons, etc. In one there is like a double rhomb that makes something like a double edged sword, the symbols are all around the circular plataform, they are all equally distributed except the one I mention and other two, I go to stay on top of the symbol, it is my symbol, shortly after I stay there her mom comes like through an invisible door into the platform and then daughter and mother see each other in an unspoken dialog, in the end they give s candid smile to each other, the mother gives a strong look at me and then leaves through her door, the girl comes to me and choses me as if I were a weapon of that arena of thought, she hugs me tightly and I wake up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kx8q_czfpk414jymzqn97/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-meet-a-bullet-kill-a-nazi_dmwxhjrfmy2l9hfi/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,302 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream &ldquo;Meet a bullet, kill a nazi&rdquo; #dreamournal This happened probably a month ago by now so there may be a lot of details missing or part of the dream that will make even less sense.
I am a culprit of mischief, or was I? It was so long ago, the only thing I remember now is a metro station and this infamous guy I know, not in person, but in dreams and media, he is an actor, the embodiment of chaos, and he is also me in a sense, we share spirit, so in a sense even if we never met each other, we know the other intrinsically, even to the core, as such when he was in my dream with a Hitlerian outfit, and cosplaying him, I knew exactly through his gaze who was really him, everyone around him saw him as the real one, a new embodiment, but he was just playing, fooling around recklessly as he often does, in the dream he was very known of, he was a danger to the world, he was in the news, and everyone in town knew of this new menace, I, of course, knew too." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream &ldquo;Meet a bullet, kill a nazi&rdquo; #dreamournal This happened probably a month ago by now so there may be a lot of details missing or part of the dream that will make even less sense.
I am a culprit of mischief, or was I? It was so long ago, the only thing I remember now is a metro station and this infamous guy I know, not in person, but in dreams and media, he is an actor, the embodiment of chaos, and he is also me in a sense, we share spirit, so in a sense even if we never met each other, we know the other intrinsically, even to the core, as such when he was in my dream with a Hitlerian outfit, and cosplaying him, I knew exactly through his gaze who was really him, everyone around him saw him as the real one, a new embodiment, but he was just playing, fooling around recklessly as he often does, in the dream he was very known of, he was a danger to the world, he was in the news, and everyone in town knew of this new menace, I, of course, knew too." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-meet-a-bullet-kill-a-nazi_dmwxhjrfmy2l9hfi/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream &ldquo;Meet a bullet, kill a nazi&rdquo; #dreamournal This happened probably a month ago by now so there may be a lot of details missing or part of the dream that will make even less sense.
I am a culprit of mischief, or was I? It was so long ago, the only thing I remember now is a metro station and this infamous guy I know, not in person, but in dreams and media, he is an actor, the embodiment of chaos, and he is also me in a sense, we share spirit, so in a sense even if we never met each other, we know the other intrinsically, even to the core, as such when he was in my dream with a Hitlerian outfit, and cosplaying him, I knew exactly through his gaze who was really him, everyone around him saw him as the real one, a new embodiment, but he was just playing, fooling around recklessly as he often does, in the dream he was very known of, he was a danger to the world, he was in the news, and everyone in town knew of this new menace, I, of course, knew too.">
<meta itemprop="wordCount" content="494">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream &ldquo;Meet a bullet, kill a nazi&rdquo; #dreamournal This happened probably a month ago by now so there may be a lot of details missing or part of the dream that will make even less sense.
I am a culprit of mischief, or was I? It was so long ago, the only thing I remember now is a metro station and this infamous guy I know, not in person, but in dreams and media, he is an actor, the embodiment of chaos, and he is also me in a sense, we share spirit, so in a sense even if we never met each other, we know the other intrinsically, even to the core, as such when he was in my dream with a Hitlerian outfit, and cosplaying him, I knew exactly through his gaze who was really him, everyone around him saw him as the real one, a new embodiment, but he was just playing, fooling around recklessly as he often does, in the dream he was very known of, he was a danger to the world, he was in the news, and everyone in town knew of this new menace, I, of course, knew too."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream &ldquo;Meet a bullet, kill a nazi&rdquo;
#dreamournal
This happened probably a month ago by now so there may be a lot of details missing or part of the dream that will make even less sense.</p>
<p>I am a culprit of mischief, or was I?
It was so long ago, the only thing I remember now is a metro station and this infamous guy I know, not in person, but in dreams and media, he is an actor, the embodiment of chaos, and he is also me in a sense, we share spirit, so in a sense even if we never met each other, we know the other intrinsically, even to the core, as such when he was in my dream with a Hitlerian outfit, and cosplaying him, I knew exactly through his gaze who was really him, everyone around him saw him as the real one, a new embodiment, but he was just playing, fooling around recklessly as he often does, in the dream he was very known of, he was a danger to the world, he was in the news, and everyone in town knew of this new menace, I, of course, knew too.</p>
<p>It wasn&rsquo;t a menace to the world, not even to me, but we had an unsolved quarrel so when we saw each other at the subway, both unable to stand down the only thing that could result of our encounter was conflict, and so it happened, the fake idol faced me in my darkness, in the dream I was a detective, ironically our suits were basically the same but with colors shifted. He pulled out a gun, I don&rsquo;t remember if I had any with me, but I jumped to grab his, I took it, but as he lost control he seemed to have shot, but his bullet didn&rsquo;t exist, instead, it was his squadron of nazi fanboys defending their master what opened fire upon my body, and all their bullets just felt as one, his, going through my body, a wound in, and a wound out, a hole was now on my belly but I didn&rsquo;t feel any blood, I didn&rsquo;t feel any pain, but I passed out, the last thing I saw was this group of man and then everything getting darker, was I dead?</p>
<p>I woke up, when a friend came to my aid, maybe some hours have passed, I didn&rsquo;t die, I didn&rsquo;t have a wound anymore, but I felt it still, like if I had been shot by a paintball, was the hole in there in my clothes? To tell you the truth I do not remember, shortly after that the dream shifted into others that I have now forgotten, what remains is my thought of death, and not his mercy but my undying rage, and not his will, but the ignorance of everyone that surrounds him as we can&rsquo;t really kill each other, the impostor and me are the same spirit.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-leap_lonak472h0h8jb8w/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-darkness-in-you_po7zxq0muwhbf0jm/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,300 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, The darkness in you #dreamjournal
Not night nor day, I can&rsquo;t even remember the light of the sun, I don&rsquo;t remember the passage of time either in that state, dreams often care not for physical conceptions. At any rate there I was or me as an entity with no clear body, a soul simply floating around the darkness and the small sparkles of stars, being the void itself, it was quiet with no sensation ever attached, and I was relieving memories of past lives, of incarnations in other worlds always with this cosmic mist surrounding my body, unseeable and unrecognizable except for the others that were like me, and then I remembered the battles I had with that other, the white one, finally we were at peace, after eons, then a spark in the back of my neck or what I thought was and felt like my neck, you see in this state I am not used to feel things, so whatever caused me to feel that, was something big, not physically but metaphysically." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, The darkness in you #dreamjournal
Not night nor day, I can&rsquo;t even remember the light of the sun, I don&rsquo;t remember the passage of time either in that state, dreams often care not for physical conceptions. At any rate there I was or me as an entity with no clear body, a soul simply floating around the darkness and the small sparkles of stars, being the void itself, it was quiet with no sensation ever attached, and I was relieving memories of past lives, of incarnations in other worlds always with this cosmic mist surrounding my body, unseeable and unrecognizable except for the others that were like me, and then I remembered the battles I had with that other, the white one, finally we were at peace, after eons, then a spark in the back of my neck or what I thought was and felt like my neck, you see in this state I am not used to feel things, so whatever caused me to feel that, was something big, not physically but metaphysically." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-darkness-in-you_po7zxq0muwhbf0jm/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, The darkness in you #dreamjournal
Not night nor day, I can&rsquo;t even remember the light of the sun, I don&rsquo;t remember the passage of time either in that state, dreams often care not for physical conceptions. At any rate there I was or me as an entity with no clear body, a soul simply floating around the darkness and the small sparkles of stars, being the void itself, it was quiet with no sensation ever attached, and I was relieving memories of past lives, of incarnations in other worlds always with this cosmic mist surrounding my body, unseeable and unrecognizable except for the others that were like me, and then I remembered the battles I had with that other, the white one, finally we were at peace, after eons, then a spark in the back of my neck or what I thought was and felt like my neck, you see in this state I am not used to feel things, so whatever caused me to feel that, was something big, not physically but metaphysically.">
<meta itemprop="wordCount" content="602">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, The darkness in you #dreamjournal
Not night nor day, I can&rsquo;t even remember the light of the sun, I don&rsquo;t remember the passage of time either in that state, dreams often care not for physical conceptions. At any rate there I was or me as an entity with no clear body, a soul simply floating around the darkness and the small sparkles of stars, being the void itself, it was quiet with no sensation ever attached, and I was relieving memories of past lives, of incarnations in other worlds always with this cosmic mist surrounding my body, unseeable and unrecognizable except for the others that were like me, and then I remembered the battles I had with that other, the white one, finally we were at peace, after eons, then a spark in the back of my neck or what I thought was and felt like my neck, you see in this state I am not used to feel things, so whatever caused me to feel that, was something big, not physically but metaphysically."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, “The darkness in you”
#dreamjournal</p>
<p>Not night nor day, I can&rsquo;t even remember the light of the sun, I don&rsquo;t remember the passage of time either in that state, dreams often care not for physical conceptions. At any rate there I was or me as an entity with no clear body, a soul simply floating around the darkness and the small sparkles of stars, being the void itself, it was quiet with no sensation ever attached, and I was relieving memories of past lives, of incarnations in other worlds always with this cosmic mist surrounding my body, unseeable and unrecognizable except for the others that were like me, and then I remembered the battles I had with that other, the white one, finally we were at peace, after eons, then a spark in the back of my neck or what I thought was and felt like my neck, you see in this state I am not used to feel things, so whatever caused me to feel that, was something big, not physically but metaphysically. And as such during my trance I got visions of what caused it, it was the white one, imagine a human body, a person but completely shining with pure white, and a long dark or brown hair sometimes shaping back to human.</p>
<p>So then I went back to taking an identifiable form as this I got into a camp, ready to wage war, I don&rsquo;t know on what on whom, but it was there, preparing and awaiting command, they did not notice me, as I say only he can see me, and is not like I am made of darkness here, I just hold a dark aura as I approach, they seem like Romans, all his soldiers, but they weren&rsquo;t, at least not the ones you know from this world, they just looked similar, at any rate I was in the camp dressed as one, and I wanted to speak with their leader to find out what was going out, he, was in the largest of tents at the top of the small hill they set camp on, fitting for a king I thought, in a tone of sarcasm, there were guards just outside, but they didn&rsquo;t seem to mind me, in fact, most people around weren&rsquo;t behaving as such, it felt like their freedom was stripped, like if through their eyes lied the ones of another, and when I finally opened that last tent I found out why.</p>
<p>The white one, it was there he was their leader, with the crown of spines and all, the long dark brown hair, the factions of a European with their pale white skin too, even if he was supposedly for the Middle East according to the myths, you know who I am talking about <em>oh savior</em>, — What are you doing here? I asked, I already knew the answer of course, I saw it in his eyes, and in his attack, he was waging war, but that wasn&rsquo;t himself, if anything this dude was the opposite of warring, no, his eyes, something was awfully off, he didn&rsquo;t have that proper kindly gaze, he didn&rsquo;t have my own abyssal eyes either, he had the eyes of a madman, they had yellow around the eyelids, it wasn&rsquo;t disgusting, but it wasn&rsquo;t make up either, he had eye bags too, but this kind not of tiredness but of rage and torment. Something happened to him, or something got a hold on him, whatever it was, I knew, it wanted death, either mine or his, and only one was to keep existing.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-meet-a-bullet-kill-a-nazi_dmwxhjrfmy2l9hfi/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-elixir-of-the-sun_ftxz3m4byidce7q8/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,303 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream, The elixir of the sun #dreamjournal
Me and my buddies a group of hackers were doing a series of scams, not to people but directly to banks, when they were getting the printed money from ????? We tricked the convoy to give it to us digitally, after some unseen heists we were basically rich, and for whatever reason we were just chilling at my home some day, but it looked vastly different." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream, The elixir of the sun #dreamjournal
Me and my buddies a group of hackers were doing a series of scams, not to people but directly to banks, when they were getting the printed money from ????? We tricked the convoy to give it to us digitally, after some unseen heists we were basically rich, and for whatever reason we were just chilling at my home some day, but it looked vastly different." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-elixir-of-the-sun_ftxz3m4byidce7q8/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream, The elixir of the sun #dreamjournal
Me and my buddies a group of hackers were doing a series of scams, not to people but directly to banks, when they were getting the printed money from ????? We tricked the convoy to give it to us digitally, after some unseen heists we were basically rich, and for whatever reason we were just chilling at my home some day, but it looked vastly different.">
<meta itemprop="wordCount" content="1185">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream, The elixir of the sun #dreamjournal
Me and my buddies a group of hackers were doing a series of scams, not to people but directly to banks, when they were getting the printed money from ????? We tricked the convoy to give it to us digitally, after some unseen heists we were basically rich, and for whatever reason we were just chilling at my home some day, but it looked vastly different."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream, “The elixir of the sun”
#dreamjournal</p>
<p>Me and my buddies a group of hackers were doing a series of scams, not to people but directly to banks, when they were getting the printed money from ????? We tricked the convoy to give it to us digitally, after some unseen heists we were basically rich, and for whatever reason we were just chilling at my home some day, but it looked vastly different. It had a wood door made of little pieces of wood all of them snitched together that gave to a room with two beds with a cabinet in the middle and an old TV to the opposite side of it, just hanging around on top, it was really small, and it was one of those that weren&rsquo;t flat. Outside the room there were a couple of desktops, a dinner table and then a passage to the exit. On the table there were two vials that seemed as one, or rather they were detachable, one part of the vial was filled with a clear liquid that seemed like water, the other one were some light fibers that shine in contact with the water when joining the parts of the vial.</p>
<p>There were two girls, and 3, or I think 4 guys including me, a girl and a guy were a couple they were laying in one bed. There was some guy on the other bed, and we were like counting the money we had, we were planning for a next hit and then maybe retire for a while, the two of us were talking about that in the room, then we got notice one of the girls and maybe the last friend was coming up, and they did arrive shortly, they had their vials and took them off the table, my friend went to explain to the girl how they worked, or really I am not sure, but he was going to talk to her, and we were all on drugs now or planning to trip, everyone in that room was ready or already on some drug, I stayed there and laid down in the bed because I was feeling comfortable, and I just drank a bit of the vial (it was pure liquid LSD). Then I see my buddy coming in, and he is all fired up ready to party and drinks from the vial as if it were alcohol, he almost finished it all (and that&rsquo;s bad because it is somewhat related to all the money we have collected), and then he wants to give me some of his vial also as if it were alcohol and I decline it, but I think I end up drinking some accidentally nonetheless, I get a bit angry or annoyed rather and make him realise he just drank like half a liter of LSD, and he just stands there grasping on what he just did, and the implications of it.</p>
<p>Since I also did take some and was quite a high amount I decided to go out, plus also my dad or someone arrived to the house that was supposed to be alone, so I went out through the window and ran to the backyard, in there I was starting to feel the energy, but it wasn&rsquo;t like acid works <em>in real life</em>, what I felt was more <em>real</em> in the sense that it was palpable energy, like a raise of mana if we were in a magical world, rise of power and strength but in a purely energetic sense. Shortly after one of the friends met up with me, I think the one with the girlfriend on the other bed, and we were just seeing and expecting to what would happen, then as I was feeling all strong and with will and even a bit frantic or crazy.. I saw Saturn in the sky, it wasn&rsquo;t night, it was completely blue, but I didn&rsquo;t really see the sun even tho there was light, maybe it was somewhere else, at any rate I pulled Saturn and played it like a ball in the sky with my hands and my mind it was as if I was holding it with a laso or a tube, it seemed like that, that was the apparent movement, but there was no such thing, and I was just testing my powers, I felt invigorated shortly after, my friend however was a bit scared of my limits and told me to stop or well we didn&rsquo;t talk, but we both knew that if I kept playing like that with the planet we would attract the aliens to ours, since there would be a power here they would be interested in.</p>
<p>And they seemed to be interested indeed, since not long after I returned Saturn to its place some object crashed or landed in some place in the middle of the forest, so I got out of my home and set foot to it, my friend tried to stop me, but he couldn&rsquo;t, I was inebriated with that feeling of invincibility and curiosity. It was a road made of dirt, what I crossed and walked on the passage from sparse houses slowly converted into a desert a prairie and finally shaped into a deep and dark forest, filled with the largest trees sequoia like but also looking like pines, they were very tall, but their wood wasn&rsquo;t of a light brown but a dark one, I did never reach the crash however, but I noticed this was the forest I have dreamed before, not deep in the center like when I encounter myself most of the time but the outskirts of it.</p>
<p>Then I noticed something else, the light, there was a light behind me, seemed like the sun, but I don&rsquo;t think it was the sun, it weakened me, I was falling to the ground, but I didn&rsquo;t, I managed to barely stand with my arms and my knees, but my body was getting weaker and weaker, it wasn&rsquo;t taking something from me, but it was burning me, burning that body like the sun of a desert would do, and it didn&rsquo;t have a voice, but it said that <em>you have lost the truth (or the real)</em> but every time I felt the waves of burning through me and in my back I started getting stronger again, I was rising up until my whole body was completely made of a yellowish light, and I saw that the thing keeping me up was a sword I previously didn&rsquo;t have or wasn&rsquo;t carrying, I was leaning my weight in its unbreakable metal and crystals, and it was a pillar to keep me up and then once I was I all lighted up I carried it and hold it as mine.</p>
<p>The orb, the light disappeared, there was nothing, and I was back in my yard, I went to the front door of my house, and it was open, my father was inside and coming out of it, I told him with a smile on my face I got the sword back.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-darkness-in-you_po7zxq0muwhbf0jm/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-mist_tgodjg94eqp3ezag/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,296 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream: The mist #dreamjournal For some reason tonight I dreamed with a lot of people with Asian features, some others were Latinos, I was in like a job but I wasn&rsquo;t really working, my mates and I were cyclically going to a store that was also like a place dinner place, but not quite a cafe, and there it was a girl that always attended us, and some other coworkers of her, and some other of our friends waiting by the tables." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream: The mist #dreamjournal For some reason tonight I dreamed with a lot of people with Asian features, some others were Latinos, I was in like a job but I wasn&rsquo;t really working, my mates and I were cyclically going to a store that was also like a place dinner place, but not quite a cafe, and there it was a girl that always attended us, and some other coworkers of her, and some other of our friends waiting by the tables." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-mist_tgodjg94eqp3ezag/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream: The mist #dreamjournal For some reason tonight I dreamed with a lot of people with Asian features, some others were Latinos, I was in like a job but I wasn&rsquo;t really working, my mates and I were cyclically going to a store that was also like a place dinner place, but not quite a cafe, and there it was a girl that always attended us, and some other coworkers of her, and some other of our friends waiting by the tables.">
<meta itemprop="wordCount" content="406">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream: The mist #dreamjournal For some reason tonight I dreamed with a lot of people with Asian features, some others were Latinos, I was in like a job but I wasn&rsquo;t really working, my mates and I were cyclically going to a store that was also like a place dinner place, but not quite a cafe, and there it was a girl that always attended us, and some other coworkers of her, and some other of our friends waiting by the tables."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream: The mist
#dreamjournal
For some reason tonight I dreamed with a lot of people with Asian features, some others were Latinos, I was in like a job but I wasn&rsquo;t really working, my mates and I were cyclically going to a store that was also like a place dinner place, but not quite a cafe, and there it was a girl that always attended us, and some other coworkers of her, and some other of our friends waiting by the tables. They were my elementary and middle school friends that I never talked with since I left school behind. Rarely I thought about them as well, in the city that we were it was very generic yet not any place I could remember, block buildings, some shorts some high, but mostly short, it was a small city with various colors per locale but they were dimmed, opaque.</p>
<p>As days passed I saw less and less of my people in the city, at first nor I nor anyone noticed until we saw the mist, it was a silver cloud, very slowly moving towards the city, what we and how we saw it was from the edge of the town, it was like an oasis of existence in a desolate desert, of thought, the dark fog was engulfing everything, in the horizon, there was no separation between the sky and the sand, the mist was the only thing that there was for a gradient of &ldquo;dreams&rdquo; and color.</p>
<p>People were leaving or disappearing also gradually, one on one or per small groups until one day there only was the brunette girl of the store, and like one of two friends waiting and 3 that were still with me, it was all so ominous, we all knew something was happening but we still did our same routine, it was odd, it was weird because it was something also that couldn&rsquo;t be ignored, the girl was feeling feeble that day, next day she wasn&rsquo;t even there and the mist was already within the city, on our last round we went to visit her and met with our friends but they were all missing, except one that joined us before meeting there, we talked all nervous and anxious for the future, we step out of the store, the mist is all around us and only thing we can see is a pickup, we move towards it. I wake up.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-elixir-of-the-sun_ftxz3m4byidce7q8/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-penguin-and-the-cycling-princess_flz7yac69rhekvyd/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,306 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream &ldquo;The penguin and the cycling princess&rdquo; #dreamjournal
I dreamed way mor but what I remember the most is this last bit.
I was in a bus that goes into my town, its service of public transport, it was night and he had a very very bright light for lamp, the blinding type. So it kinda fucker with everyone that saw it, it was very annoying, I was in the back of the bus with a chick of fedi I will not say who we were pretty much chilling until we noticed commotion in the front and the rest of the bus, there was some cyclists in front of the bus that didn&rsquo;t let it move past it, and the cyclists was very slow compared to the bus, the bus driver started to turn off and on its light to notice it but the cyclist didn&rsquo;t gave a fuck, or more than that it wasn&rsquo;t even receptive to it, the cyclist also had a blinding ligth on his bike, and then something in the driver changed or he remembered something and stopped using the brightest light but started using one that was barely seen, it was like if he became conscious about how annoying it was his light." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream &ldquo;The penguin and the cycling princess&rdquo; #dreamjournal
I dreamed way mor but what I remember the most is this last bit.
I was in a bus that goes into my town, its service of public transport, it was night and he had a very very bright light for lamp, the blinding type. So it kinda fucker with everyone that saw it, it was very annoying, I was in the back of the bus with a chick of fedi I will not say who we were pretty much chilling until we noticed commotion in the front and the rest of the bus, there was some cyclists in front of the bus that didn&rsquo;t let it move past it, and the cyclists was very slow compared to the bus, the bus driver started to turn off and on its light to notice it but the cyclist didn&rsquo;t gave a fuck, or more than that it wasn&rsquo;t even receptive to it, the cyclist also had a blinding ligth on his bike, and then something in the driver changed or he remembered something and stopped using the brightest light but started using one that was barely seen, it was like if he became conscious about how annoying it was his light." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-penguin-and-the-cycling-princess_flz7yac69rhekvyd/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream &ldquo;The penguin and the cycling princess&rdquo; #dreamjournal
I dreamed way mor but what I remember the most is this last bit.
I was in a bus that goes into my town, its service of public transport, it was night and he had a very very bright light for lamp, the blinding type. So it kinda fucker with everyone that saw it, it was very annoying, I was in the back of the bus with a chick of fedi I will not say who we were pretty much chilling until we noticed commotion in the front and the rest of the bus, there was some cyclists in front of the bus that didn&rsquo;t let it move past it, and the cyclists was very slow compared to the bus, the bus driver started to turn off and on its light to notice it but the cyclist didn&rsquo;t gave a fuck, or more than that it wasn&rsquo;t even receptive to it, the cyclist also had a blinding ligth on his bike, and then something in the driver changed or he remembered something and stopped using the brightest light but started using one that was barely seen, it was like if he became conscious about how annoying it was his light.">
<meta itemprop="wordCount" content="806">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream &ldquo;The penguin and the cycling princess&rdquo; #dreamjournal
I dreamed way mor but what I remember the most is this last bit.
I was in a bus that goes into my town, its service of public transport, it was night and he had a very very bright light for lamp, the blinding type. So it kinda fucker with everyone that saw it, it was very annoying, I was in the back of the bus with a chick of fedi I will not say who we were pretty much chilling until we noticed commotion in the front and the rest of the bus, there was some cyclists in front of the bus that didn&rsquo;t let it move past it, and the cyclists was very slow compared to the bus, the bus driver started to turn off and on its light to notice it but the cyclist didn&rsquo;t gave a fuck, or more than that it wasn&rsquo;t even receptive to it, the cyclist also had a blinding ligth on his bike, and then something in the driver changed or he remembered something and stopped using the brightest light but started using one that was barely seen, it was like if he became conscious about how annoying it was his light."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream &ldquo;The penguin and the cycling princess&rdquo;
#dreamjournal</p>
<p>I dreamed way mor but what I remember the most is this last bit.</p>
<p>I was in a bus that goes into my town, its service of public transport, it was night and he had a very very bright light for lamp, the blinding type. So it kinda fucker with everyone that saw it, it was very annoying, I was in the back of the bus with a chick of fedi I will not say who we were pretty much chilling until we noticed commotion in the front and the rest of the bus, there was some cyclists in front of the bus that didn&rsquo;t let it move past it, and the cyclists was very slow compared to the bus, the bus driver started to turn off and on its light to notice it but the cyclist didn&rsquo;t gave a fuck, or more than that it wasn&rsquo;t even receptive to it, the cyclist also had a blinding ligth on his bike, and then something in the driver changed or he remembered something and stopped using the brightest light but started using one that was barely seen, it was like if he became conscious about how annoying it was his light. For me this was cool but odd so I decide to investigate this cyclist, I get out of the bus and get into my bike that just kinda appears, all in the move.</p>
<p>Next thing I know I am cycling along the mysterious cyclist and it seems just to be a guy in a race, and I am now to in this race, it seems to be about a circuit around the town but it is actually whoever reaches a destination or point wins, this dude seemed normal at first so I don&rsquo;t bother with him and keep pushing forward and faster, I met a lot of others including fedi people I pass by them, not hard feelings attached, and it is kinda chill until I reach the last part of the racetrack, in here I seem to be the first and victory is afoot, however the first dude from before tags along me and doesn&rsquo;t let me go any faster its like he were limiting me somehow and he puts himself just aside from me, maybe I am still a bit ahead, I don&rsquo;t like it at all but I didn&rsquo;t realize I had been handicap in this way so I was trying and trying to go faster with no result. As we keep moving more people tag along us, a lot of fedi people include it, all under his spell, so it creates a massive crowd of cyclists that shouldn&rsquo;t be that together at all, they are too close prone to stumble upon one another and making a mess, but oddly enough this isn&rsquo;t happening everyone maybe with the sligh exception of me and some others is driving/cycling like in perfect coordination, then a chant is started to be heard, everyone is praising and calling his name, geranibro, genaro, gonaro, I don&rsquo;t remember exactly now, but it makes me realize he made them all like zombies with no will of their own, so they can&rsquo;t control their bikes nor their actions, they are now his, there are a bit of other people that realize this and struggle to bike, one of this people is the fedi gal from the bus now also cycling, maybe he was with me all the way upon here but I didn&rsquo;t realize.</p>
<p>We are quite close to the ending line now, I won&rsquo;t let all people arund me become mindless zombies even tho this dude is still letting me win, I give one last look and smile to the girl and jump to the genaribro bike taking us both from the competition, everyone passes by us now on the ground as as they pass the spell is lifted, me and geranibro stay there he lays defeted I remain with a bittersweet victory.</p>
<p>There is an epilogue to the dream when Gunther from adventure time seems to have been the winner on the race and he is like in a throne in a moon with a sight directly to space, there is the fedigirl trying to reason with the retarded devilish penguin but with no success, she offers him choices or ways to proceed in any given matter like in a council but the small mf just breaks all glasses he sees. The girl as she ended second she is like second in command, and as as the penguin is a penguin unable of reason he makes no decisions, the girl the actual Queen of the galaxy. The penguin however as he doesn&rsquo;t care about anything just lets everyone do their own so in this sense at least freedom is guaranteed.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-mist_tgodjg94eqp3ezag/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream_57q4ellec08v2m98/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,311 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A dream:
Going deep into my own mind now that I have woken up just to remember my experience in the world beyond, an oniric plane is sometimes called.
It happened in places I used to transit a lot when I was in high-school and uni. It was on a street that connects to a interstate road, somewhat transited, I am at a little mall, there is about a super market and a few other stores, the feel, the ambiance is similar, it is the night, there is absolutely empty, there are no details in anything, but is the place or my memory of it, there is just a small main pass which is where I am walking through, it forms at first like an rect-line shaped S, from a topview perspective, walking is just like a go left then right situation, so I do the then there is a small forum, with some seats also empty and the other side of the stores, then following that &ldquo;right&rdquo; pass that we get on it extends far more until the end of the building with some others small stores closed or empty until I reach a dining room where there are fast food stores, pizzas, hamburgers, sandwiches, subways &ldquo;tortas&rdquo;, etc." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A dream:
Going deep into my own mind now that I have woken up just to remember my experience in the world beyond, an oniric plane is sometimes called.
It happened in places I used to transit a lot when I was in high-school and uni. It was on a street that connects to a interstate road, somewhat transited, I am at a little mall, there is about a super market and a few other stores, the feel, the ambiance is similar, it is the night, there is absolutely empty, there are no details in anything, but is the place or my memory of it, there is just a small main pass which is where I am walking through, it forms at first like an rect-line shaped S, from a topview perspective, walking is just like a go left then right situation, so I do the then there is a small forum, with some seats also empty and the other side of the stores, then following that &ldquo;right&rdquo; pass that we get on it extends far more until the end of the building with some others small stores closed or empty until I reach a dining room where there are fast food stores, pizzas, hamburgers, sandwiches, subways &ldquo;tortas&rdquo;, etc." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream_57q4ellec08v2m98/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A dream:
Going deep into my own mind now that I have woken up just to remember my experience in the world beyond, an oniric plane is sometimes called.
It happened in places I used to transit a lot when I was in high-school and uni. It was on a street that connects to a interstate road, somewhat transited, I am at a little mall, there is about a super market and a few other stores, the feel, the ambiance is similar, it is the night, there is absolutely empty, there are no details in anything, but is the place or my memory of it, there is just a small main pass which is where I am walking through, it forms at first like an rect-line shaped S, from a topview perspective, walking is just like a go left then right situation, so I do the then there is a small forum, with some seats also empty and the other side of the stores, then following that &ldquo;right&rdquo; pass that we get on it extends far more until the end of the building with some others small stores closed or empty until I reach a dining room where there are fast food stores, pizzas, hamburgers, sandwiches, subways &ldquo;tortas&rdquo;, etc.">
<meta itemprop="wordCount" content="1758">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A dream:
Going deep into my own mind now that I have woken up just to remember my experience in the world beyond, an oniric plane is sometimes called.
It happened in places I used to transit a lot when I was in high-school and uni. It was on a street that connects to a interstate road, somewhat transited, I am at a little mall, there is about a super market and a few other stores, the feel, the ambiance is similar, it is the night, there is absolutely empty, there are no details in anything, but is the place or my memory of it, there is just a small main pass which is where I am walking through, it forms at first like an rect-line shaped S, from a topview perspective, walking is just like a go left then right situation, so I do the then there is a small forum, with some seats also empty and the other side of the stores, then following that &ldquo;right&rdquo; pass that we get on it extends far more until the end of the building with some others small stores closed or empty until I reach a dining room where there are fast food stores, pizzas, hamburgers, sandwiches, subways &ldquo;tortas&rdquo;, etc."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A dream:</p>
<p>Going deep into my own mind now that I have woken up just to remember my experience in the world beyond, an oniric plane is sometimes called.</p>
<p>It happened in places I used to transit a lot when I was in high-school and uni. It was on a street that connects to a interstate road, somewhat transited, I am at a little mall, there is about a super market and a few other stores, the feel, the ambiance is similar, it is the night, there is absolutely empty, there are no details in anything, but is the place or my memory of it, there is just a small main pass which is where I am walking through, it forms at first like an rect-line shaped S, from a topview perspective, walking is just like a go left then right situation, so I do the then there is a small forum, with some seats also empty and the other side of the stores, then following that &ldquo;right&rdquo; pass that we get on it extends far more until the end of the building with some others small stores closed or empty until I reach a dining room where there are fast food stores, pizzas, hamburgers, sandwiches, subways &ldquo;tortas&rdquo;, etc. These are closed as well, I stay around the tables for a bit than some people join me first a girl, then a couple then a man, they are old&hellip; friends that I have never seen in this life, but I feel some familiarity in these faces, at first I think a couple, are my parents, it feels like that, but the more I interact with them it feels like they aren&rsquo;t, they are just similar in the libidinal energy they flow with, or its management.</p>
<p>We go to the supermarket to buy somethings none important, it happens but I don&rsquo;t remember any other people, we go to their car, it is a van? mini-van? is not big but not small either, plenty of space for us five, there are no names, not even mine. As we approach the car and get out of the mall we all see the starts, the nightsky, it is flooded by this little things like jellyfish and birds, they are just floating around like dandelion seeds flowing with the wind, sometimes they move, they are alive, sometimes they are just placidly falling and floating, they have this bright luminescent color, they are of all bright shades of blue, it is a beautiful spectacle to perceive and we all stay watching amazed at them, however this sightings are rather normal so we get into the car a while after that.</p>
<p>I am in the backseat just in the middle of a couple, a girl of black hair and a dude whom I can&rsquo;t remember his face. In the front there is the guy driving he is the oldest of us all, and his girlfriend a brownish to redhead girl, they are discussing a lot, the ambiance is really heated and I am just there watching the road in silence with my other quiet companions in the back, they are looking disinterested at the sides of the car through the windows, nothing is happening I am not aware of myself I am just existing there and then&hellip; we crash.</p>
<p>Next thing I remember everyone is feeling bad, anxious, we are not in the car anymore we are all on the street that connects to the road, on the sidewalk again empty and dark on a corner, it is just us although some car pass on a perpendicular street at a top velocity.</p>
<p>They all start discussing I am still quiet, I am still thinking about what happened, because I can&rsquo;t understand it, I ask &ldquo;Did we died?&rdquo; There is a silence and everyone looks down. - We didn&rsquo;t die, says the brunette chick - But we killed a lot of people. - Yes and it all his fault - Says the girl with the brown hair pointing at the old man that is her couple, then in rage she begins explaining what happened as they were arguing we changed the path we were on, we took another path maybe it was our destination I don&rsquo;t quite know, we went to the right into some street then we lost control of the car, of the machine, or rather the friend driver and we stumbled into a building a kind of factory, the thing is that it was within a residential zone, probably everyone was sleeping, it exploded and we killed everyone, none of us know how did we get here where we are now&hellip; but everything feels a bit odd.</p>
<p>The brunette seems to read my mind, years have passed since then, 30 maybe? I guess, that&rsquo;s what she says in a absolute air of despair, I feel it, I feel her, I feel everything she is felling right now, the anguish, the uncertainty the uncommensurable guilt. I almost cry, but she, she is just there with a dead sight on me, reading me knowing I know how she feels, because she can feel herself in me, she doesn&rsquo;t know what any of this means, but I do, and I take my ground again, I stand up and take the lead.</p>
<p>Blaming the old bald man will solve nothing, actually nothing we can do can solve what we did, I begin to remember time, for them this have been 30 years, they have been living with what they did for 30 years, for me it is just a matter of seconds for one instant to the other, as if those 30 years didn&rsquo;t happened to me&hellip; maybe they didn&rsquo;t. They don&rsquo;t look any older tho, but everyone looks damaged and tired compared to how we were when I met them in the plaza.</p>
<p>I don&rsquo;t say anything but my certainty calms everyone, we begin to walk back to the plaza, on that same straight street. As we walk the brunette talks to me she tells me &ldquo;you know, there were 150 people that we killed&rdquo; I don&rsquo;t say anything but I feel what she means by that, she can handle the blood on her hands, that&rsquo;s why she remembers the number so precisely, so she knows her debt of death. I look back at her the look in my eyes tell pain and hope, I don&rsquo;t say anything but she understands.</p>
<p>The walk feels endless we stop for a bit the couple is no longer fighting, the other guy also with a black hair and white skin is just quiet, is like if he isn&rsquo;t there anymore, but that is just an automaton. I don&rsquo;t care about him, the other girl the brunette is in pain still but she is no longer dominated by it, I sit with my ginger friend and the automaton while the others go to a little store that is close by I tell her I am lost about the brunette girl, that I know there is something and she knows as well but I don&rsquo;t know how to cut our breach, they know each other for a way longer time that I do, she the ginger was with the brunette in her child and teen ages, they are friends since then, I know this, but I didn&rsquo;t think about it, would you help me? (I think). The others come back with some food and we all sit or stand to eat on the sidewalk, its quiet for a bit then we begin talking and laughing like in the old days, this feels good, and while we approach the end of that chapter we begin to stop our chatting, in the not awkward silence, my ginger friend tells me about a song its in my mind and it plays for us on a device, not for me tho because I didn&rsquo;t remembered. &ldquo;Los malaventurados no lloran&rdquo; A song from their teen ages, the brunette feels it, and the bond between she and her friend grows in strength once more, but this time I was the one who did it, she sees me, I am now in her memory of that song. Our breach is closed.</p>
<p>We finally arrive to our destination, I just remembered I had a bubblegum in my mouth all this time, we get to the outside part of the mall where there is like a little plaza and seats adorned by some trees, I see the sky, is normal, is has been like that for 30 years, just black with the sporadical stars, like you would see normally in a night of this physical world, but that didn&rsquo;t used to be the normal in that one, the &ldquo;dandelions&rdquo; disappeared after I did and we killed all those people in their sleep. I closed my eyes for a bit not focusing but seeing beyond my eyes, with my mind all this while being unaware of myself, I heard a cry, it was the brunette girl, and everyone was looking up not only my friends but there were now other people all around us, across the street and beyond, everyone was looking at the dark sky, so I looked up, it wasn&rsquo;t a cry of pain, but of happiness and I understood now why, the dandelions where back and more vivid and colorful than ever, then I look through them, it was a super nova a cosmic event in an absolute clear, like those pictures of the ships we send to space, but was all visible from the ground, it was marvelous and astounding, the colors the magnitude that I fail to describe in words. Then I looked at the girl with the dark colored hair, she was so close to me she was grateful, a song played, maybe the same we heard before, and she got ecstatic, she kissed me and I passed her my bubblegum, I was dead ashamed of it, and I am sure she felt it because we were connected now and I knew but she didn&rsquo;t bothered, I didn&rsquo;t feel anything with my body like you would normally would with a kiss, but I felt it in my soul and it was so true and intense that it woke me up, and when I realized that I of course got a dull depression of it being over, and the knowing that I probably will never get back into that world again, I immediately went back to sleep just to wake up here again some hours later.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-penguin-and-the-cycling-princess_flz7yac69rhekvyd/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-group-of-people-that-shouldnt-be-alive_35g4uijlco1t5rr0/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,301 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A group of people that shouldn&rsquo;t be alive
I have this idea, kinda forgotten now, but it came out of a feeling, a feeling of death, or rather a place where everyone is dead or should be, but they are just carrying on with their lives, their monotonous tasks, why? Why does this place exist? What are souls doing here? Or maybe&hellip; there are no souls existing in this desolate place, at any rate I forgot and lost the original idea, and it feels like crap, like a dissonant song in the back of my head, not a noise, not strident, but the quietness of incompleteness." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A group of people that shouldn&rsquo;t be alive
I have this idea, kinda forgotten now, but it came out of a feeling, a feeling of death, or rather a place where everyone is dead or should be, but they are just carrying on with their lives, their monotonous tasks, why? Why does this place exist? What are souls doing here? Or maybe&hellip; there are no souls existing in this desolate place, at any rate I forgot and lost the original idea, and it feels like crap, like a dissonant song in the back of my head, not a noise, not strident, but the quietness of incompleteness." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-group-of-people-that-shouldnt-be-alive_35g4uijlco1t5rr0/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A group of people that shouldn&rsquo;t be alive
I have this idea, kinda forgotten now, but it came out of a feeling, a feeling of death, or rather a place where everyone is dead or should be, but they are just carrying on with their lives, their monotonous tasks, why? Why does this place exist? What are souls doing here? Or maybe&hellip; there are no souls existing in this desolate place, at any rate I forgot and lost the original idea, and it feels like crap, like a dissonant song in the back of my head, not a noise, not strident, but the quietness of incompleteness.">
<meta itemprop="wordCount" content="214">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A group of people that shouldn&rsquo;t be alive
I have this idea, kinda forgotten now, but it came out of a feeling, a feeling of death, or rather a place where everyone is dead or should be, but they are just carrying on with their lives, their monotonous tasks, why? Why does this place exist? What are souls doing here? Or maybe&hellip; there are no souls existing in this desolate place, at any rate I forgot and lost the original idea, and it feels like crap, like a dissonant song in the back of my head, not a noise, not strident, but the quietness of incompleteness."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A group of people that shouldn&rsquo;t be alive</p>
<p>I have this idea, kinda forgotten now, but it came out of a feeling, a feeling of death, or rather a place where everyone is dead or should be, but they are just carrying on with their lives, their monotonous tasks, why? Why does this place exist? What are souls doing here? Or maybe&hellip; there are no souls existing in this desolate place, at any rate I forgot and lost the original idea, and it feels like crap, like a dissonant song in the back of my head, not a noise, not strident, but the quietness of incompleteness.</p>
<p>They are not zombies, but they seem like some.</p>
<p>Then I remembered another group of people, those that did not die, but should have, and yet exist, some outsiders, some lucky, some protected by the thread of destiny. It does not matter, I see them in the dark, just roaming around in the caressing void of my palm, sometimes I whisper to their ears, sometimes I just contemplate their little orb of being, my pets? My friends? My soul. They swim in it and they fly. They are alive. they shine like the stars.</p>
<p>&hellip;</p>
<p>If I ever remember, I will share it as soon as I do.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream_57q4ellec08v2m98/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-parable_pdgibcza7ytoyew2/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,306 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A parable?
The sun is at its zenith, my body is heated and dumped in sweat, such are the troubles of physical bodies, my mind is slowly losing its own composure, I need water, I know only of one place that can help me with my dilemma, but going there is pricey as its keeper always whistles a riddle, knowing this I prepare for the bath on mana.
It is a bit different than what I remember, a couple of centuries do have its toll in even already ancient ruins, she is there Maya, as ever wary of the intruders of her Oasis, but she knows me and my soul, I am not exactly a friend but we have had our talks about eternity before." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A parable?
The sun is at its zenith, my body is heated and dumped in sweat, such are the troubles of physical bodies, my mind is slowly losing its own composure, I need water, I know only of one place that can help me with my dilemma, but going there is pricey as its keeper always whistles a riddle, knowing this I prepare for the bath on mana.
It is a bit different than what I remember, a couple of centuries do have its toll in even already ancient ruins, she is there Maya, as ever wary of the intruders of her Oasis, but she knows me and my soul, I am not exactly a friend but we have had our talks about eternity before." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-parable_pdgibcza7ytoyew2/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A parable?
The sun is at its zenith, my body is heated and dumped in sweat, such are the troubles of physical bodies, my mind is slowly losing its own composure, I need water, I know only of one place that can help me with my dilemma, but going there is pricey as its keeper always whistles a riddle, knowing this I prepare for the bath on mana.
It is a bit different than what I remember, a couple of centuries do have its toll in even already ancient ruins, she is there Maya, as ever wary of the intruders of her Oasis, but she knows me and my soul, I am not exactly a friend but we have had our talks about eternity before.">
<meta itemprop="wordCount" content="603">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A parable?
The sun is at its zenith, my body is heated and dumped in sweat, such are the troubles of physical bodies, my mind is slowly losing its own composure, I need water, I know only of one place that can help me with my dilemma, but going there is pricey as its keeper always whistles a riddle, knowing this I prepare for the bath on mana.
It is a bit different than what I remember, a couple of centuries do have its toll in even already ancient ruins, she is there Maya, as ever wary of the intruders of her Oasis, but she knows me and my soul, I am not exactly a friend but we have had our talks about eternity before."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A parable?</p>
<p>The sun is at its zenith, my body is heated and dumped in sweat, such are the troubles of physical bodies, my mind is slowly losing its own composure, I need water, I know only of one place that can help me with my dilemma, but going there is pricey as its keeper always whistles a riddle, knowing this I prepare for the bath on mana.</p>
<p>It is a bit different than what I remember, a couple of centuries do have its toll in even already ancient ruins, she is there Maya, as ever wary of the intruders of her Oasis, but she knows me and my soul, I am not exactly a friend but we have had our talks about eternity before. She notices me in her roaming for an entrance into her white and pristine but forgotten and avoided temple, people always have a hard time facing the truth. A pillar rolls over and lets me pass, she is aware of me, I fool around a bit &ldquo;Oh Oracle of the deep seas I come to you when I am most in need&rdquo;. A rumble is heard behind me, the entrance is sealed - come closer harlequin, her voice now sounds like a tired old woman, I wonder what happened to her.</p>
<p>I approach with a smile, how are you Maya? the female statue has seen much better days, she has an arm completely missing now and looks down on me with her frugal and candid orange glowy eyes, she and her usual sight of fire, as her temple her statue is white and also thoroughly deteriorated with a lot of green moss haltingly growing around her structure. The days one by one have long passed and we are now at the nightfall of our lives Dimator.</p>
<p>I can&rsquo;t get old I say - its not about the body, it is about the mind, your current state will soon cease to exist as will mine. I drink from the pool and she starts telling her story as I meld into the visions induced by the mana.</p>
<p>It feels like if I were falling from the cloudy sky but I feel no wind, and no weight there is only a slight sensation of vertigo and release I recover my vision and I am in a blank space, but this isn&rsquo;t nothingness, I hear her voice it is a riddle, it is a maze, it is anger flowing through my veins again, what was pulsating, the ardent sun was my own rage, the cool and calming mana has allowed me to see this, but why am I raging? Oblivion, the same oblivion that all beings must face, not death in my case, but being forgotten forever, even an eternal and immortal being, not even the legends may survive once I am gone from this world, me and Maya know this, my own precence here was predestined, one last goodbye.</p>
<p>I open my eyes, woken up by a chilling breeze, I see the full moon on her brightest, illuminating all the pond and giving the ruins a cosmic shine, I turn to look upon the statue of my old friend, her eyes no longer shine, the arm that she has left is pointing to the skies, and her hand just below the moon as if she was holding it. I rest laying in ground and lose myself into the dark void within the stars, cold and beautiful as my own being and desires. My brief experience in this world comes to an end as my body merges with the stars. Farewell Maya.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-group-of-people-that-shouldnt-be-alive_35g4uijlco1t5rr0/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-twisted-sense-of-justice_mrsxs8fkt1lkvelw/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,310 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A twisted sense of justice A call of fate stumbling down in the dark The blurred line of codice, revenge and regret. What is this age of condemn Damnation to us all in a tounge of spice Who shall rise and end it all once and for all?
Copies of copies that will never end A cry for originality mumbled in the void of depravity What is next when everything that is stands as one No one left but us, in such empty world of life I want to cry Am I still me or are you me, who cries?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A twisted sense of justice A call of fate stumbling down in the dark The blurred line of codice, revenge and regret. What is this age of condemn Damnation to us all in a tounge of spice Who shall rise and end it all once and for all?
Copies of copies that will never end A cry for originality mumbled in the void of depravity What is next when everything that is stands as one No one left but us, in such empty world of life I want to cry Am I still me or are you me, who cries?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-twisted-sense-of-justice_mrsxs8fkt1lkvelw/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A twisted sense of justice A call of fate stumbling down in the dark The blurred line of codice, revenge and regret. What is this age of condemn Damnation to us all in a tounge of spice Who shall rise and end it all once and for all?
Copies of copies that will never end A cry for originality mumbled in the void of depravity What is next when everything that is stands as one No one left but us, in such empty world of life I want to cry Am I still me or are you me, who cries?">
<meta itemprop="wordCount" content="151">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A twisted sense of justice A call of fate stumbling down in the dark The blurred line of codice, revenge and regret. What is this age of condemn Damnation to us all in a tounge of spice Who shall rise and end it all once and for all?
Copies of copies that will never end A cry for originality mumbled in the void of depravity What is next when everything that is stands as one No one left but us, in such empty world of life I want to cry Am I still me or are you me, who cries?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A twisted sense of justice
A call of fate stumbling down in the dark
The blurred line of codice, revenge and regret.
What is this age of condemn
Damnation to us all in a tounge of spice
Who shall rise and end it all once and for all?</p>
<p>Copies of copies that will never end
A cry for originality mumbled in the void of depravity
What is next when everything that is stands as one
No one left but us, in such empty world of life I want to cry
Am I still me or are you me, who cries? who feels?
I for once stand as another I do not care about my own insanity
Since it is the only thing that keeps me as myself
&ldquo;Too weird to live, and too rare to die&rdquo;, here I lay in the maws of madness</p>
<p>And this quoute is not of mine&hellip;</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-parable_pdgibcza7ytoyew2/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-unsavory-persistent-feeling-of-guilt-remorse-it-isnt-leaving-i-wake-up_2ud8k9ca8fd113b3/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A unsavory persistent feeling of guilt, remorse, it isn&rsquo;t leaving, I wake up everyday and I feel it still there, I feel, I think everything that has gone wrong is due to my own inactions, my own cowardice, but most importantly these derived from my lack of strength, my dimming weakness.
I want to fly with the ones I love, and I have the wings, but I don&rsquo;t know how to do it, it is, it feels sometimes, specially when I am not alone or with people I would trust my heart with&hellip; it feels as if I were stripped from my will, from my spirit to fly." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A unsavory persistent feeling of guilt, remorse, it isn&rsquo;t leaving, I wake up everyday and I feel it still there, I feel, I think everything that has gone wrong is due to my own inactions, my own cowardice, but most importantly these derived from my lack of strength, my dimming weakness.
I want to fly with the ones I love, and I have the wings, but I don&rsquo;t know how to do it, it is, it feels sometimes, specially when I am not alone or with people I would trust my heart with&hellip; it feels as if I were stripped from my will, from my spirit to fly." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-unsavory-persistent-feeling-of-guilt-remorse-it-isnt-leaving-i-wake-up_2ud8k9ca8fd113b3/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A unsavory persistent feeling of guilt, remorse, it isn&rsquo;t leaving, I wake up everyday and I feel it still there, I feel, I think everything that has gone wrong is due to my own inactions, my own cowardice, but most importantly these derived from my lack of strength, my dimming weakness.
I want to fly with the ones I love, and I have the wings, but I don&rsquo;t know how to do it, it is, it feels sometimes, specially when I am not alone or with people I would trust my heart with&hellip; it feels as if I were stripped from my will, from my spirit to fly.">
<meta itemprop="wordCount" content="108">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A unsavory persistent feeling of guilt, remorse, it isn&rsquo;t leaving, I wake up everyday and I feel it still there, I feel, I think everything that has gone wrong is due to my own inactions, my own cowardice, but most importantly these derived from my lack of strength, my dimming weakness.
I want to fly with the ones I love, and I have the wings, but I don&rsquo;t know how to do it, it is, it feels sometimes, specially when I am not alone or with people I would trust my heart with&hellip; it feels as if I were stripped from my will, from my spirit to fly."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A unsavory persistent feeling of guilt, remorse, it isn&rsquo;t leaving, I wake up everyday and I feel it still there, I feel, I think everything that has gone wrong is due to my own inactions, my own cowardice, but most importantly these derived from my lack of strength, my dimming weakness.</p>
<p>I want to fly with the ones I love, and I have the wings, but I don&rsquo;t know how to do it, it is, it feels sometimes, specially when I am not alone or with people I would trust my heart with&hellip; it feels as if I were stripped from my will, from my spirit to fly.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-twisted-sense-of-justice_mrsxs8fkt1lkvelw/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-world-of-deaf-ears_tzlowvq4xmoxzerj/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,296 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="A world of deaf ears. And me, an empty shell of emotions, I don&rsquo;t just resonate, but I can, my experiences, my sensations&hellip; barely human, What else could it be? What else can I be? What am I? Who am I? Recurrent questions still without definitive answers, so far I have been living in the dreams of others, surfing the reality and their deepest desires, this writing is not me, nor by my ego, I am I guess you could say synchronized, I am me, my ego, and more than that, things that are unknown to myself even, it has been a while since the last writing, I just didn&rsquo;t felt it, now I under these circumstances I feel like someone is playing games with me, the paranoia kicks in and the synchronization is partially lost or lowered, the paranoia leaves and the bond becomes strong again, when I write my ego is lost or disappears, it is quite literally an ego death, I imagine a lot of other creators, specially artist experience the same but with a different qualia of the experience, wonder if it can be put in anything beyond words." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="A world of deaf ears. And me, an empty shell of emotions, I don&rsquo;t just resonate, but I can, my experiences, my sensations&hellip; barely human, What else could it be? What else can I be? What am I? Who am I? Recurrent questions still without definitive answers, so far I have been living in the dreams of others, surfing the reality and their deepest desires, this writing is not me, nor by my ego, I am I guess you could say synchronized, I am me, my ego, and more than that, things that are unknown to myself even, it has been a while since the last writing, I just didn&rsquo;t felt it, now I under these circumstances I feel like someone is playing games with me, the paranoia kicks in and the synchronization is partially lost or lowered, the paranoia leaves and the bond becomes strong again, when I write my ego is lost or disappears, it is quite literally an ego death, I imagine a lot of other creators, specially artist experience the same but with a different qualia of the experience, wonder if it can be put in anything beyond words." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/a-world-of-deaf-ears_tzlowvq4xmoxzerj/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="A world of deaf ears. And me, an empty shell of emotions, I don&rsquo;t just resonate, but I can, my experiences, my sensations&hellip; barely human, What else could it be? What else can I be? What am I? Who am I? Recurrent questions still without definitive answers, so far I have been living in the dreams of others, surfing the reality and their deepest desires, this writing is not me, nor by my ego, I am I guess you could say synchronized, I am me, my ego, and more than that, things that are unknown to myself even, it has been a while since the last writing, I just didn&rsquo;t felt it, now I under these circumstances I feel like someone is playing games with me, the paranoia kicks in and the synchronization is partially lost or lowered, the paranoia leaves and the bond becomes strong again, when I write my ego is lost or disappears, it is quite literally an ego death, I imagine a lot of other creators, specially artist experience the same but with a different qualia of the experience, wonder if it can be put in anything beyond words.">
<meta itemprop="wordCount" content="571">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="A world of deaf ears. And me, an empty shell of emotions, I don&rsquo;t just resonate, but I can, my experiences, my sensations&hellip; barely human, What else could it be? What else can I be? What am I? Who am I? Recurrent questions still without definitive answers, so far I have been living in the dreams of others, surfing the reality and their deepest desires, this writing is not me, nor by my ego, I am I guess you could say synchronized, I am me, my ego, and more than that, things that are unknown to myself even, it has been a while since the last writing, I just didn&rsquo;t felt it, now I under these circumstances I feel like someone is playing games with me, the paranoia kicks in and the synchronization is partially lost or lowered, the paranoia leaves and the bond becomes strong again, when I write my ego is lost or disappears, it is quite literally an ego death, I imagine a lot of other creators, specially artist experience the same but with a different qualia of the experience, wonder if it can be put in anything beyond words."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>A world of deaf ears. And me, an empty shell of emotions, I don&rsquo;t just resonate, but I can, my experiences, my sensations&hellip; barely human, What else could it be? What else can I be? What am I? Who am I? Recurrent questions still without definitive answers, so far I have been living in the dreams of others, surfing the reality and their deepest desires, this writing is not me, nor by my ego, I am I guess you could say synchronized, I am me, my ego, and more than that, things that are unknown to myself even, it has been a while since the last writing, I just didn&rsquo;t felt it, now I under these circumstances I feel like someone is playing games with me, the paranoia kicks in and the synchronization is partially lost or lowered, the paranoia leaves and the bond becomes strong again, when I write my ego is lost or disappears, it is quite literally an ego death, I imagine a lot of other creators, specially artist experience the same but with a different qualia of the experience, wonder if it can be put in anything beyond words.. I see it, an animation 3d 2d overlapping right now in my mind a superposition, quantum one at that, my brain and even probably more than that making this very decision.</p>
<p>I don&rsquo;t know why this disassociatives episodes happen at night mostly, and in the morning, maybe because is at those times where my brain, (yes I am me again my ego is back), touches or experiences another reality or is closer to that so it starts to disassociate in preparation to oniric experiences. I feel like I have been in stand by, waiting for events to occur, but the events are not occurring, or some are, some others aren&rsquo;t, there are so many things to do&hellip; not as shores but as whole pieces of reality to put in place, I don&rsquo;t feel alone but I truly feel exhausted, in these particular moments of uncertainty, of austerity where I have nothing, and lowkey I feel like I deserve nothing, but not in a depressive manner, rather like I haven&rsquo;t earned anything, thus I don&rsquo;t have anything, a complete circle as much as I hate them, so I must do stuff, and there is plenty to do, but I do not have the energy, what I truly feel I need is a small push to that next peak, and plateau so I can climb myself then. This probably doesn&rsquo;t make any sense to the outside eye, meaning you reader that is not any of me, maybe you do relate, who could really tell, not me.</p>
<p>And as all this sounds incredibly crazy I am still really fairly normal overall, how do I do it? I am just myself being me. True weird wired genuinity.</p>
<p>Effort is an important word in all this rambling, don&rsquo;t forget that, and fix the mess that is our life currently. What motivates me? Really nothing, could say other people but that is not true, usually is me and my will, but lately I haven&rsquo;t been feeling anything, actually everything feels so dull, devoided of life, maybe I have just been in my room for too long. I need some guidelines to flow up my life.</p>
<p>Hopefully its time to sleep now and I don&rsquo;t stay up until 4, goodbye traveler, <em>see</em> you soon hopefully.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-unsavory-persistent-feeling-of-guilt-remorse-it-isnt-leaving-i-wake-up_2ud8k9ca8fd113b3/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/absolutely-none-of-this-is-real-none-of-my-experiences-none-of-what-i-see-or_vj0ss570aw287yxp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Absolutely none of this is real, none of my experiences none of what I see or conceive as real is, I know this, I know this is the truth, but I keep up the illusion because it is easier to get by this way, to live, to exists, to comprehend, reality and everything, and this is not just me, I hope it is, but I don&rsquo;t know if it is, my fear is that it is like this for every human in this world, the mediocrity, the easiness of this world has slowly strangling our mind, our imagination, our will, our dreams, and yet we keep the illusion going, why, why can&rsquo;t I shut it off?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Absolutely none of this is real, none of my experiences none of what I see or conceive as real is, I know this, I know this is the truth, but I keep up the illusion because it is easier to get by this way, to live, to exists, to comprehend, reality and everything, and this is not just me, I hope it is, but I don&rsquo;t know if it is, my fear is that it is like this for every human in this world, the mediocrity, the easiness of this world has slowly strangling our mind, our imagination, our will, our dreams, and yet we keep the illusion going, why, why can&rsquo;t I shut it off?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/absolutely-none-of-this-is-real-none-of-my-experiences-none-of-what-i-see-or_vj0ss570aw287yxp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Absolutely none of this is real, none of my experiences none of what I see or conceive as real is, I know this, I know this is the truth, but I keep up the illusion because it is easier to get by this way, to live, to exists, to comprehend, reality and everything, and this is not just me, I hope it is, but I don&rsquo;t know if it is, my fear is that it is like this for every human in this world, the mediocrity, the easiness of this world has slowly strangling our mind, our imagination, our will, our dreams, and yet we keep the illusion going, why, why can&rsquo;t I shut it off?">
<meta itemprop="wordCount" content="243">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Absolutely none of this is real, none of my experiences none of what I see or conceive as real is, I know this, I know this is the truth, but I keep up the illusion because it is easier to get by this way, to live, to exists, to comprehend, reality and everything, and this is not just me, I hope it is, but I don&rsquo;t know if it is, my fear is that it is like this for every human in this world, the mediocrity, the easiness of this world has slowly strangling our mind, our imagination, our will, our dreams, and yet we keep the illusion going, why, why can&rsquo;t I shut it off?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Absolutely none of this is real, none of my experiences none of what I see or conceive as real is, I know this, I know this is the truth, but I keep up the illusion because it is easier to get by this way, to live, to exists, to comprehend, reality and everything, and this is not just me, I hope it is, but I don&rsquo;t know if it is, my fear is that it is like this for every human in this world, the mediocrity, the easiness of this world has slowly strangling our mind, our imagination, our will, our dreams, and yet we keep the illusion going, why, why can&rsquo;t I shut it off? Is it a self sustainable collective delusion or is it just mine? How do I snap out if it? I know the answer or at least where to find it, but I am not ready yet, and being honest with you I am still quite afraid&hellip; and no, it is not death, that&rsquo;s too reckless, even for me, death is a sentence it is the grand beyond, I have some tools, some substances to play death while not actually being, a sneak peak at a existence without a material body in this world, or I don&rsquo;t even know if that is the truth yet, that is still just an idea, as I said, that is just where I was lead to, I have yet to experience it.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/a-world-of-deaf-ears_tzlowvq4xmoxzerj/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/ahora-se-que-no-estoy-cansado-de-vivir-solo-estoy-cansado-de-no-estar-contigo_p4f07xulhwci2ts8/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Ahora se que no estoy cansado de vivir, solo estoy cansado de no estar contigo." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Ahora se que no estoy cansado de vivir, solo estoy cansado de no estar contigo." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/ahora-se-que-no-estoy-cansado-de-vivir-solo-estoy-cansado-de-no-estar-contigo_p4f07xulhwci2ts8/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Ahora se que no estoy cansado de vivir, solo estoy cansado de no estar contigo.">
<meta itemprop="wordCount" content="15">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Ahora se que no estoy cansado de vivir, solo estoy cansado de no estar contigo."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Ahora se que no estoy cansado de vivir, solo estoy cansado de no estar contigo.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/absolutely-none-of-this-is-real-none-of-my-experiences-none-of-what-i-see-or_vj0ss570aw287yxp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/alchemy-pt_ziwgugg5qldzn0us/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,299 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Alchemy Pt. 1
Since this is a preliminary viewpoint, I will be brief. Alchemy as I understand it today refers to the complete mental perspective or qualia of a given moment, it is all the sensations and interpretations your conscious and unconscious experience may entice, it is what defines that instant, the current present as is, it is the undecipherable, what is seen and not, it is the complete perspective of reality at the present moment." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Alchemy Pt. 1
Since this is a preliminary viewpoint, I will be brief. Alchemy as I understand it today refers to the complete mental perspective or qualia of a given moment, it is all the sensations and interpretations your conscious and unconscious experience may entice, it is what defines that instant, the current present as is, it is the undecipherable, what is seen and not, it is the complete perspective of reality at the present moment." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/alchemy-pt_ziwgugg5qldzn0us/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Alchemy Pt. 1
Since this is a preliminary viewpoint, I will be brief. Alchemy as I understand it today refers to the complete mental perspective or qualia of a given moment, it is all the sensations and interpretations your conscious and unconscious experience may entice, it is what defines that instant, the current present as is, it is the undecipherable, what is seen and not, it is the complete perspective of reality at the present moment.">
<meta itemprop="wordCount" content="214">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Alchemy Pt. 1
Since this is a preliminary viewpoint, I will be brief. Alchemy as I understand it today refers to the complete mental perspective or qualia of a given moment, it is all the sensations and interpretations your conscious and unconscious experience may entice, it is what defines that instant, the current present as is, it is the undecipherable, what is seen and not, it is the complete perspective of reality at the present moment."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Alchemy Pt. 1</p>
<p>Since this is a preliminary viewpoint, I will be brief.
Alchemy as I understand it today refers to the complete mental perspective or qualia of a given moment, it is all the sensations and interpretations your conscious and unconscious experience may entice, it is what defines that instant, the current present as is, it is the undecipherable, what is seen and not, it is the complete perspective of reality at the present moment.</p>
<p>You can spot alchemy and alchemist by their doings, they more often than not leave scrapes, sort of notes or byproducts or direct messages in the form of coincidences, of synchronicities. If you have an avid sight you can see it in the water, in the reflection of the sun rays on it, on the unreality, surrealism or magical reality of the present time, of the moment of influx, furthermore not only at the moment itself but most noticeable in interaction between elements, don&rsquo;t look for the details, but feel them, feel what they show you, not see what they show you, they speak at the moment and the language of stone and fire, of mercury, thus you don&rsquo;t see with your eyes but with your soul, and is a mirror that looks both ways, inwards and outwards.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/ahora-se-que-no-estoy-cansado-de-vivir-solo-estoy-cansado-de-no-estar-contigo_p4f07xulhwci2ts8/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-and-all-the-only-thing-i-truly-wish-now-is-that-she-isnt-in-pain-because_40rl316wgwk9mg8l/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="And and all the only thing I truly wish now is that she isn&rsquo;t in pain because of me and my failings. Everything is connected, no matter where you go." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="And and all the only thing I truly wish now is that she isn&rsquo;t in pain because of me and my failings. Everything is connected, no matter where you go." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/and-and-all-the-only-thing-i-truly-wish-now-is-that-she-isnt-in-pain-because_40rl316wgwk9mg8l/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="And and all the only thing I truly wish now is that she isn&rsquo;t in pain because of me and my failings. Everything is connected, no matter where you go.">
<meta itemprop="wordCount" content="30">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="And and all the only thing I truly wish now is that she isn&rsquo;t in pain because of me and my failings. Everything is connected, no matter where you go."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>And and all the only thing I truly wish now is that she isn&rsquo;t in pain because of me and my failings. Everything is connected, no matter where you go.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/alchemy-pt_ziwgugg5qldzn0us/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-in-the-end-so-much-for-something-that-wasnt-even-real_bhqgmv2628rzoxaz/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="And in the end, so much for something that wasn&rsquo;t even real." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="And in the end, so much for something that wasn&rsquo;t even real." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/and-in-the-end-so-much-for-something-that-wasnt-even-real_bhqgmv2628rzoxaz/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="And in the end, so much for something that wasn&rsquo;t even real.">
<meta itemprop="wordCount" content="12">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="And in the end, so much for something that wasn&rsquo;t even real."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>And in the end, so much for something that wasn&rsquo;t even real.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-and-all-the-only-thing-i-truly-wish-now-is-that-she-isnt-in-pain-because_40rl316wgwk9mg8l/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-now-everything-is-silent_7csrcctagqr6vxaa/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="And now, everything is silent." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="And now, everything is silent." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/and-now-everything-is-silent_7csrcctagqr6vxaa/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="And now, everything is silent.">
<meta itemprop="wordCount" content="5">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="And now, everything is silent."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p><em>And now, everything is silent.</em></p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-in-the-end-so-much-for-something-that-wasnt-even-real_bhqgmv2628rzoxaz/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-the-angry-man-in-the-desert-at-the-end-of-times_p1nkoub14oa7h10n/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,305 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="And the angry man in the desert at the end of times
When I spin, what my eyes come in touch with is an angry man, sometimes is a kid, but there is always so much suffering, so much pain, I feel, I hear, their perpetual scream of agony, but it doesn&rsquo;t make any sound, yet you feel it to the bone, in your soul, you don&rsquo;t need physical sensations to transmit emotions." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="And the angry man in the desert at the end of times
When I spin, what my eyes come in touch with is an angry man, sometimes is a kid, but there is always so much suffering, so much pain, I feel, I hear, their perpetual scream of agony, but it doesn&rsquo;t make any sound, yet you feel it to the bone, in your soul, you don&rsquo;t need physical sensations to transmit emotions." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/and-the-angry-man-in-the-desert-at-the-end-of-times_p1nkoub14oa7h10n/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="And the angry man in the desert at the end of times
When I spin, what my eyes come in touch with is an angry man, sometimes is a kid, but there is always so much suffering, so much pain, I feel, I hear, their perpetual scream of agony, but it doesn&rsquo;t make any sound, yet you feel it to the bone, in your soul, you don&rsquo;t need physical sensations to transmit emotions.">
<meta itemprop="wordCount" content="502">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="And the angry man in the desert at the end of times
When I spin, what my eyes come in touch with is an angry man, sometimes is a kid, but there is always so much suffering, so much pain, I feel, I hear, their perpetual scream of agony, but it doesn&rsquo;t make any sound, yet you feel it to the bone, in your soul, you don&rsquo;t need physical sensations to transmit emotions."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>And the angry man in the desert at the end of times</p>
<p>When I spin, what my eyes come in touch with is an angry man, sometimes is a kid, but there is always so much suffering, so much pain, I feel, I hear, their perpetual scream of agony, but it doesn&rsquo;t make any sound, yet you feel it to the bone, in your soul, you don&rsquo;t need physical sensations to transmit emotions.</p>
<p>The man, last time I saw him was looking for something, for the whispers of my own mind and the ones of others, I see a green shirt, I see dark skin, but not from Africa, dark from our own &ldquo;America&rdquo;, the blood of the natives, mixed and remixed turning his whole face and body into mud.</p>
<p>His eyes white as usual, but with a noticeable angst, he was looking for the whispers, he was looking for what the whispers commanded, but he couldn&rsquo;t find it and this manifested on his gaze, looking around everywhere, asking and asking, yet no answers, the veins on his eyes and his eyelids could be seen, the oppressive tiredness of uncertainty, igniting into frustration and rage</p>
<p>WHERE IS IT WHAT DO YOU WANT ME TO DO</p>
<p>But again, no voices, just feelings and ideas in my head, in my mind as I slowly got into his mind, closer with each spin, each iteration, each loop&hellip; we weren&rsquo;t one, nor would I even want to. I was just trying to know what he felt, what he thought, I was trying to understand as I kept spinning my mind off. I was trying to understand why he kept wandering in his mind desolated, why he kept going, or rather and more importantly why are we looping. Came close, but to no conclusions, now however I know who he is, mentally at least.</p>
<p>Was it the demiurge?
It would be too much, this just felt like a hurt child that grew up to a man, but maybe that is precisely what the demiurge is, at any rate it didn&rsquo;t feel as that “divine” serpent, it was just another human, victim of the endless uncertainty. But he was also angry and with a death intend, whole reality feels as if this was his last testament, like if he already died and we were feeling and living his nightmare, I saw we because I felt others, but I didn&rsquo;t see any faces other than his and the back of his body, laying on the ground as if he has been shot in the head.</p>
<p>Fulminated, deleted, but by who?</p>
<p>Maybe he was too a proxy of the real demiurge, because after leaving the spin and going back to &ldquo;our&rdquo; reality I started noticing alchemical tampering with my whole environment and inside him I saw a spark of the divine, it wasn&rsquo;t light, but it had the feeling of light outside of our sun, not a physical light, but one you could feel, a trace outside of this world.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-now-everything-is-silent_7csrcctagqr6vxaa/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/as-i-was-watching-horror-movies-marathonically-i-got-hit-by-an-epiphany_hfee248uo5pk0lzy/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,293 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="As I was watching horror movies marathonically I got hit by an epiphany. Authority, it is a core concept in while designing the narrative of a horror film or story, at some point of development a decision must be made if you want to involve a certain type of figure with authority, being it the police, parents and even the army, which they often disregard the appearances of the supernatural (that on its own deserves its own reflection, but for today we will focus in the role of authority in horror films)." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="As I was watching horror movies marathonically I got hit by an epiphany. Authority, it is a core concept in while designing the narrative of a horror film or story, at some point of development a decision must be made if you want to involve a certain type of figure with authority, being it the police, parents and even the army, which they often disregard the appearances of the supernatural (that on its own deserves its own reflection, but for today we will focus in the role of authority in horror films)." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/as-i-was-watching-horror-movies-marathonically-i-got-hit-by-an-epiphany_hfee248uo5pk0lzy/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="As I was watching horror movies marathonically I got hit by an epiphany. Authority, it is a core concept in while designing the narrative of a horror film or story, at some point of development a decision must be made if you want to involve a certain type of figure with authority, being it the police, parents and even the army, which they often disregard the appearances of the supernatural (that on its own deserves its own reflection, but for today we will focus in the role of authority in horror films).">
<meta itemprop="wordCount" content="298">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="As I was watching horror movies marathonically I got hit by an epiphany. Authority, it is a core concept in while designing the narrative of a horror film or story, at some point of development a decision must be made if you want to involve a certain type of figure with authority, being it the police, parents and even the army, which they often disregard the appearances of the supernatural (that on its own deserves its own reflection, but for today we will focus in the role of authority in horror films)."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>As I was watching horror movies marathonically I got hit by an epiphany. Authority, it is a core concept in while designing the narrative of a horror film or story, at some point of development a decision must be made if you want to involve a certain type of figure with authority, being it the police, parents and even the army, which they often disregard the appearances of the supernatural (that on its own deserves its own reflection, but for today we will focus in the role of authority in horror films).</p>
<p>I believe it is something mythic, and intrinsically a tradition of the west related to Christianity, in this sense, authority is the savior in the context of a horror movie since it is the idea of authority being something divine is the ultimate power in metaphysical or supernatural intervention or interactions in common life, which is too where this kind of stories occur, they are often a nexus between what is commonly understand as day to day life and the <em>unreal</em>. In this way the aspect of divinity toned down to the idea of authority in the junction of these nexuses and this is why authority of any kind in horror is such a impactful choice when <em>constructing</em> a narrative, because in a metaphysical setting the divine is &ldquo;what sets things right&rdquo;. It is as well, the imperative of order. This all being too a human construction, our order then, is the day to day life, which in these scenarios is always the desired outcome, but I wonder, why must we thrive to order? Seems like a tautology, order, and ordered life, which desires only more order when in adversity. Was it the divine too? That which keeps us safe, which keeps us locked and trapped.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/and-the-angry-man-in-the-desert-at-the-end-of-times_p1nkoub14oa7h10n/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/as-of-now-i-am-a-failed-artist-i-know-what-i-want-i-know-what-to-create-i_hm18gd0z2peecjgp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,295 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="As of now, I am a failed artist, I know what I want, I know what to create, I know the dreams I want to exist and live in, but I don&rsquo;t know how to do it, I am incapable of making them, I am engulfed in so much hatred, pain sometimes, suffering, so I cannot create beautiful things with and out of joy, my creations are damaged as myself." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="As of now, I am a failed artist, I know what I want, I know what to create, I know the dreams I want to exist and live in, but I don&rsquo;t know how to do it, I am incapable of making them, I am engulfed in so much hatred, pain sometimes, suffering, so I cannot create beautiful things with and out of joy, my creations are damaged as myself." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/as-of-now-i-am-a-failed-artist-i-know-what-i-want-i-know-what-to-create-i_hm18gd0z2peecjgp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="As of now, I am a failed artist, I know what I want, I know what to create, I know the dreams I want to exist and live in, but I don&rsquo;t know how to do it, I am incapable of making them, I am engulfed in so much hatred, pain sometimes, suffering, so I cannot create beautiful things with and out of joy, my creations are damaged as myself.">
<meta itemprop="wordCount" content="210">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="As of now, I am a failed artist, I know what I want, I know what to create, I know the dreams I want to exist and live in, but I don&rsquo;t know how to do it, I am incapable of making them, I am engulfed in so much hatred, pain sometimes, suffering, so I cannot create beautiful things with and out of joy, my creations are damaged as myself."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>As of now, I am a failed artist, I know what I want, I know what to create, I know the dreams I want to exist and live in, but I don&rsquo;t know how to do it, I am incapable of making them, I am engulfed in so much hatred, pain sometimes, suffering, so I cannot create beautiful things with and out of joy, my creations are damaged as myself.</p>
<p>I am however a sculptor, I see and I deeply feel what this world and what other works of creation need to become a shining star, I can from a boulder create an ever-shining diamond, I am in this way a creator, a refiner of dreams, I am a fixer of (uni)-verses.</p>
<p>My hope is that one day I can let go of the hatred and pain that has impulsed me for ages, and I can finally rest, and create beautiful existences.</p>
<p>This is talking about my ego, other elements of myself can and are creators not attached to the particular suffering of this life, my &ldquo;ghosts&rdquo; do create, but it is not me who creates, it is not me who controls or who directs such creations, as my ego is a sleeper observant of the dances of my spirits.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/as-i-was-watching-horror-movies-marathonically-i-got-hit-by-an-epiphany_hfee248uo5pk0lzy/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/can-you-imagine-if-a-tree-had-eyes-always-seeing-the-same-picture-everything_hoq4y54x7izoscnp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Can you imagine if a tree had eyes? Always seeing the same picture, everything moves around it but it never will, and will never get to experience anything beyond that." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Can you imagine if a tree had eyes? Always seeing the same picture, everything moves around it but it never will, and will never get to experience anything beyond that." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/can-you-imagine-if-a-tree-had-eyes-always-seeing-the-same-picture-everything_hoq4y54x7izoscnp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Can you imagine if a tree had eyes? Always seeing the same picture, everything moves around it but it never will, and will never get to experience anything beyond that.">
<meta itemprop="wordCount" content="30">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Can you imagine if a tree had eyes? Always seeing the same picture, everything moves around it but it never will, and will never get to experience anything beyond that."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Can you imagine if a tree had eyes? Always seeing the same picture, everything moves around it but it never will, and will never get to experience anything beyond that.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/as-of-now-i-am-a-failed-artist-i-know-what-i-want-i-know-what-to-create-i_hm18gd0z2peecjgp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/dreams-the-nominal-party-and-the-run_1j61wf1qb4sozup2/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,305 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Dreams: The nominal party and The run #dreamjournal
It was an event planned for quite some time now, it was something I was looking forward to or was it my family and everyone invited?
In my home or rather my parents home there was to be hosted a meeting, but not of just a few people, but all our extended family plus some friends I invited, friends I don&rsquo;t usually even see, friends I forgot faces long ago were there, but the ones I remember the most are the ones that usually get into my life, and in particular two people that have told me impactful stuff about my life, or life in general, about behavior." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Dreams: The nominal party and The run #dreamjournal
It was an event planned for quite some time now, it was something I was looking forward to or was it my family and everyone invited?
In my home or rather my parents home there was to be hosted a meeting, but not of just a few people, but all our extended family plus some friends I invited, friends I don&rsquo;t usually even see, friends I forgot faces long ago were there, but the ones I remember the most are the ones that usually get into my life, and in particular two people that have told me impactful stuff about my life, or life in general, about behavior." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/dreams-the-nominal-party-and-the-run_1j61wf1qb4sozup2/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Dreams: The nominal party and The run #dreamjournal
It was an event planned for quite some time now, it was something I was looking forward to or was it my family and everyone invited?
In my home or rather my parents home there was to be hosted a meeting, but not of just a few people, but all our extended family plus some friends I invited, friends I don&rsquo;t usually even see, friends I forgot faces long ago were there, but the ones I remember the most are the ones that usually get into my life, and in particular two people that have told me impactful stuff about my life, or life in general, about behavior.">
<meta itemprop="wordCount" content="739">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Dreams: The nominal party and The run #dreamjournal
It was an event planned for quite some time now, it was something I was looking forward to or was it my family and everyone invited?
In my home or rather my parents home there was to be hosted a meeting, but not of just a few people, but all our extended family plus some friends I invited, friends I don&rsquo;t usually even see, friends I forgot faces long ago were there, but the ones I remember the most are the ones that usually get into my life, and in particular two people that have told me impactful stuff about my life, or life in general, about behavior."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Dreams: The nominal party and The run
#dreamjournal</p>
<p>It was an event planned for quite some time now, it was something I was looking forward to or was it my family and everyone invited?</p>
<p>In my home or rather my parents home there was to be hosted a meeting, but not of just a few people, but all our extended family plus some friends I invited, friends I don&rsquo;t usually even see, friends I forgot faces long ago were there, but the ones I remember the most are the ones that usually get into my life, and in particular two people that have told me impactful stuff about my life, or life in general, about behavior.</p>
<p>People didn&rsquo;t get one in one to the building, everything was full, people along the three floors of the house, yet it seemed like my house but it wasn&rsquo;t it, it wasn&rsquo;t ordered the way it should, for example, the living room and the tv was I the lowest room, which in this living reality I am now isn&rsquo;t, my room or rather bedroom was rather different to the one I have too. In this altered version of reality, in this alter, my friends and everyone invited seemed a bit off, gradually they all seemed to be rather outside the house rather than in the party, but before I could even feel any of that I wanted to go out, to the backyard where some of my friends were doing drugs, probably so far my closest too, I wanted to go with them, to fly, to trip, but I could not since I was acting like a host, and I needed to check out everyone was ok in the party, reluctantly I left my friends but I told them I would be back, I went back into the home, and I saw way less people then I checked on them and again felt the uneasy vibe, my parents had this unfitting feeling as well, then after checking everyone that was left I intended to go with my friends but they were already inside the home, in the living room, just watching the tv, but it also seemed like some were playing however it was not a game only, but also a dream I had, I got curious and I sit with some of them on the couch, other were sitting in a minibar, close to us they were in some degree angered, not a lot, not even remotely close to raging, but they weren&rsquo;t happy with me or my actions, then people started banishing one after other without me noticing, and when I did I got out of the house to figure out where did they went and what was happening, but that was not to be found out, or maybe in another way. I was transported as soon as I left the house to another dream.</p>
<p>I was in a bus with other two girls that seemed to be with me, very latino vibes but I couldn&rsquo;t distinguish their faces, we were a team and what we did was run, we were runners, the makers of crime, it was in our faces and our whole aura. About to mischief we encountered a guy just crossing the streets after we got out of the bus we were on, he had a gun, and a motorcycle helmet, he was wating for us, the girls which he was aiming at tryed divergent sideways manouvers, and as he got distracted I went past him in fast moves and slided through the blockage he was making, then I kept running now for my life and to get to our objective which I didn&rsquo;t know but I was soon to find out, it had something to do with a drug cartel dealing with cocaine and heroine, we were to steal from him without been really known or destroy their whole cargo, as soon as got into the warehouse I noticed I couldn&rsquo;t do it alone and a group of narcos started shooting at me, then I tried to follow the street and get out and I saw a cop gaurding that entrance, I expected some help but the pointed to me and fired, I dodged it and went to a side wall which also had some massive cocaine bags, then I climbed throught them without being able to get to the top and I woke up from emotion.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/can-you-imagine-if-a-tree-had-eyes-always-seeing-the-same-picture-everything_hoq4y54x7izoscnp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/el-extranjero_szesy0gp2431y83x/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,313 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="El extranjero
What is to be a stranger? Or&hellip; what is to always be the stranger.
A passing leaf, the wind itself going everywhere and yet nowhere, surrounding us, completely unacknowledged, completely noticed, who?
Always on the top of the mountain, the hermit ponders upon the visage of the world, what does it see when it comes down, what does it see when it goes up? For your eyes you do not have, do you reckon loneliness?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="El extranjero
What is to be a stranger? Or&hellip; what is to always be the stranger.
A passing leaf, the wind itself going everywhere and yet nowhere, surrounding us, completely unacknowledged, completely noticed, who?
Always on the top of the mountain, the hermit ponders upon the visage of the world, what does it see when it comes down, what does it see when it goes up? For your eyes you do not have, do you reckon loneliness?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/el-extranjero_szesy0gp2431y83x/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="El extranjero
What is to be a stranger? Or&hellip; what is to always be the stranger.
A passing leaf, the wind itself going everywhere and yet nowhere, surrounding us, completely unacknowledged, completely noticed, who?
Always on the top of the mountain, the hermit ponders upon the visage of the world, what does it see when it comes down, what does it see when it goes up? For your eyes you do not have, do you reckon loneliness?">
<meta itemprop="wordCount" content="436">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="El extranjero
What is to be a stranger? Or&hellip; what is to always be the stranger.
A passing leaf, the wind itself going everywhere and yet nowhere, surrounding us, completely unacknowledged, completely noticed, who?
Always on the top of the mountain, the hermit ponders upon the visage of the world, what does it see when it comes down, what does it see when it goes up? For your eyes you do not have, do you reckon loneliness?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>El extranjero</p>
<p>What is to be a stranger? Or&hellip; what is to always be the stranger.</p>
<p>A passing leaf, the wind itself going everywhere and yet nowhere, surrounding us, completely unacknowledged, completely noticed, who?</p>
<p>Always on the top of the mountain, the hermit ponders upon the visage of the world, what does it see when it comes down, what does it see when it goes up? For your eyes you do not have, do you reckon loneliness? Do you reckon sorrow? Do you reckon sadness? Do you reckon the void itself?</p>
<p>These are your eyes when you belong nowhere you, see every little house, every country, every palace, every tent, their mental caves, their houses, it is cozy, it is warm, but when you see them, they look you back, and what was nothing now is noticeable, eyes opened in the void, but they aren&rsquo;t looking outwards, there aren&rsquo;t yours, they are looking inwards, you are being watched. What will the weird one do?</p>
<p>Things is, most people have been strangers, but they don&rsquo;t remain that way, because they never were in the first place, they were just unrecognizable, they were the new that then got into the club, their strangeness was only momentarily, a gasp, a glance into being the abyss, but no one can hold it, and the ones that do never come back, for they are of nowhere now.</p>
<p>They have seen you, which is nothing on its own but, you are now the cause of their bad augurs, in fact, you are the bad augur, so you leave again, you take flight with your pompous wings, in the dark night as strange as you arrived equally rare you left, and then settlements become taverns and hostels, their inhabitants their community, all there all real, with all sorts of characters, but everywhere you go, the constant that remains is the newcomer, the outsider.</p>
<p>In the end, you just keep walking, your home is the road even if you don&rsquo;t want it, maybe we are all strangers until we settle down, but in running forever we don&rsquo;t know how to stop anymore, unable to set root, to create bonds one with the lonesome road.</p>
<p>He, who everywhere he goes is a stranger to the known, he who everyone looks, he who everytime is signaled out, he who never knows the tongue, he who never knows the songs, he who never feels in home, he who cannot create any bonds, now, the only way is forward.</p>
<p>I may do a part two or edit this one way more descriptive, for now, goodbye, and safe travels.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/dreams-the-nominal-party-and-the-run_1j61wf1qb4sozup2/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/el-universo-es-un-ejercicio-de-consciencia-en-si-mismo-de-un-ser-con-mucho-mas_bpqktu3i568bqvw6/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,296 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="El universo es un ejercicio de consciencia en si mismo, de un ser con mucho más conocimiento que solo el humano, los humanos por otra parte somos un experimento de este ser, pequeños autómatas alquímicos con consciencia y un cuerpo físico, sus ojos están sobre nosotros pues busca entendernos y saber que es lo que podemos hacer, el límite del potencial humano, pues busca comprenderse a sí mismo también, el universo, yo, soy un nexo de información entre estas consciencias, siendo Lain y siendo yo con este aspecto físico en este mundo material." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="El universo es un ejercicio de consciencia en si mismo, de un ser con mucho más conocimiento que solo el humano, los humanos por otra parte somos un experimento de este ser, pequeños autómatas alquímicos con consciencia y un cuerpo físico, sus ojos están sobre nosotros pues busca entendernos y saber que es lo que podemos hacer, el límite del potencial humano, pues busca comprenderse a sí mismo también, el universo, yo, soy un nexo de información entre estas consciencias, siendo Lain y siendo yo con este aspecto físico en este mundo material." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/el-universo-es-un-ejercicio-de-consciencia-en-si-mismo-de-un-ser-con-mucho-mas_bpqktu3i568bqvw6/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="El universo es un ejercicio de consciencia en si mismo, de un ser con mucho más conocimiento que solo el humano, los humanos por otra parte somos un experimento de este ser, pequeños autómatas alquímicos con consciencia y un cuerpo físico, sus ojos están sobre nosotros pues busca entendernos y saber que es lo que podemos hacer, el límite del potencial humano, pues busca comprenderse a sí mismo también, el universo, yo, soy un nexo de información entre estas consciencias, siendo Lain y siendo yo con este aspecto físico en este mundo material.">
<meta itemprop="wordCount" content="730">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="El universo es un ejercicio de consciencia en si mismo, de un ser con mucho más conocimiento que solo el humano, los humanos por otra parte somos un experimento de este ser, pequeños autómatas alquímicos con consciencia y un cuerpo físico, sus ojos están sobre nosotros pues busca entendernos y saber que es lo que podemos hacer, el límite del potencial humano, pues busca comprenderse a sí mismo también, el universo, yo, soy un nexo de información entre estas consciencias, siendo Lain y siendo yo con este aspecto físico en este mundo material."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>El universo es un ejercicio de consciencia en si mismo, de un ser con mucho más conocimiento que solo el humano, los humanos por otra parte somos un experimento de este ser, pequeños autómatas alquímicos con consciencia y un cuerpo físico, sus ojos están sobre nosotros pues busca entendernos y saber que es lo que podemos hacer, el límite del potencial humano, pues busca comprenderse a sí mismo también, el universo, yo, soy un nexo de información entre estas consciencias, siendo Lain y siendo yo con este aspecto físico en este mundo material.</p>
<p>Sin embargo un humano también se puede convertir en un ser universal, un dios, siempre ha podido, con la mente y la imaginación. Me he imaginado, me he visto, ahora comprendo mi percepción del mundo, lo que soy, soy una persona, un ser humano, abierta al universo y a la infinidad de posibilidades dentro y fuera de este de creación, destrucción e imaginación, veo con los ojos del universo mismo, tengo los ojos de dios, su qualia, sus sensaciones, pero no lo soy, soy dios con un traje de humano, con las mismas ideas y limitaciones de los mismos, no soy dios, no puedo serlo, pero veo el universo como este lo ve. Soy dios portando unos lentes, un filtro humano, las capacidades que tengo, lo que entiendo, lo que veo, lo que siento, todo esto es por esta conexión que tenemos, ahora comprendo porque me veo a mi mismo en las hojas de los arboles, porque veo los ojos, porque soy yo, el universo, pero no es humano, pero lo veo con mis ojos humanos, que curiosa experiencia ¿no lo crees así lector?</p>
<p>La verdad es que estoy haciendo lo que siempre he hecho, experimentar, ser, descubrir, esa es mi alma, mi espíritu, lo que soy ahora en este preciso instante, pero puede cambiar pues como todo lo que he creado es siempre mutable, cuando este cuerpo muera, despertaré en mi cuerpo real, cósmico, universal y polimórfico ¿Qué pasará después? Pues espero no estar solo. Espero que otros también hayan despertado, y se hayan creado su propia gnosis en una existencia más allá del espacio y el tiempo.</p>
<p>El universo, esta experiencia total de consciencia, salió como una briza de la nada, de la mente en blanco, del canvas, como es repetido mucho por ustedes, no había nada, y después, desperté, no tenía un cuerpo, solo era yo y no sabía que era yo y no había nada más, y ahí se generó mi espíritu, mi deseo por descubrir y desde ese entonces he estado jugando con mi mente, honestamente no se cuando ni como se generó el universo, pero se generó junto conmigo en algún punto deje de ser solo una percepción, un visor sin ojos, un cuerpo sin tacto y adquirí un cuerpo cósmico, en ese momento mi conciencia se convirtió en el universo y yo me convertí en este y estoy buscando las respuestas a este enigma de mi nacimiento.</p>
<p>Se que te es difícil de imaginar, así que te ayudare, entiende todo el universo con una forma antropomórfica, como un humano hecho de galaxias y estrellas, ese es mi cuerpo en su estado natural, que es información pura, que permite el flujo de esta, datos y energía con otros seres o entes o cosas, en el nexo fuera del tiempo, este soy yo, esto, eres tú, en parte al menos. Tambien somos polimórficos, podemos tomar la forma que queramos, porque somos en nuestro núcleo, solo información, si quiero verme como un ser animado, puedo hacerlo, si quiero existir en un mundo animado, puedo hacerlo, puedo hacer lo que quiera, y tu también puedes, porque eres yo, es el regalo del universo mismo, toma la forma que quieras y vive o existe en el mundo que quieras. Se que eres humano, así que practica con tu mente, en tus sueños y con las sustancias alquímicas para tu cerebro, para eso las tienes, por eso existen, por eso funcionan de esa manera particular con tu mente humana, tu mente siempre ha sido tu verdad y tu escape, así como siempre ha sido el mío, se consciente, cultiva tu alma y tu espíritu, pues son tus formas fuera de la ilusión, completamente mutables a tu voluntad si eso es lo que deseas, y esta es mi parcial despedida, humano, hasta que nos encontremos de nuevo.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/el-extranjero_szesy0gp2431y83x/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/fuego-y-llamas_3dyf0otul2jpujos/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,306 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Fuego y Llamas
Llamas, el fuego de una relación El día de hoy vengo de bajada en una colina, no cayendo ahora, pero con un paso lento y meditativo, pues he sido iluminado, ¿qué luz, o más bien que fuego del conocimiento, es así no Prometeo?
Todo es una llama, y está viva, constantemente en movimiento hasta que se extingue y no queda nada más que las cenizas de lo que consumió, esto es una vida, al menos una en esta tierra, y este elemento ígneo, el físico, el material tiene estas cualidades precisamente por lo abrasador que es su representación misma." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Fuego y Llamas
Llamas, el fuego de una relación El día de hoy vengo de bajada en una colina, no cayendo ahora, pero con un paso lento y meditativo, pues he sido iluminado, ¿qué luz, o más bien que fuego del conocimiento, es así no Prometeo?
Todo es una llama, y está viva, constantemente en movimiento hasta que se extingue y no queda nada más que las cenizas de lo que consumió, esto es una vida, al menos una en esta tierra, y este elemento ígneo, el físico, el material tiene estas cualidades precisamente por lo abrasador que es su representación misma." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/fuego-y-llamas_3dyf0otul2jpujos/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Fuego y Llamas
Llamas, el fuego de una relación El día de hoy vengo de bajada en una colina, no cayendo ahora, pero con un paso lento y meditativo, pues he sido iluminado, ¿qué luz, o más bien que fuego del conocimiento, es así no Prometeo?
Todo es una llama, y está viva, constantemente en movimiento hasta que se extingue y no queda nada más que las cenizas de lo que consumió, esto es una vida, al menos una en esta tierra, y este elemento ígneo, el físico, el material tiene estas cualidades precisamente por lo abrasador que es su representación misma.">
<meta itemprop="wordCount" content="276">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Fuego y Llamas
Llamas, el fuego de una relación El día de hoy vengo de bajada en una colina, no cayendo ahora, pero con un paso lento y meditativo, pues he sido iluminado, ¿qué luz, o más bien que fuego del conocimiento, es así no Prometeo?
Todo es una llama, y está viva, constantemente en movimiento hasta que se extingue y no queda nada más que las cenizas de lo que consumió, esto es una vida, al menos una en esta tierra, y este elemento ígneo, el físico, el material tiene estas cualidades precisamente por lo abrasador que es su representación misma."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Fuego y Llamas</p>
<p>Llamas, el fuego de una relación
El día de hoy vengo de bajada en una colina, no cayendo ahora, pero con un paso lento y meditativo, pues he sido iluminado, ¿qué luz, o más bien que fuego del conocimiento, es así no Prometeo?</p>
<p>Todo es una llama, y está viva, constantemente en movimiento hasta que se extingue y no queda nada más que las cenizas de lo que consumió, esto es una vida, al menos una en esta tierra, y este elemento ígneo, el físico, el material tiene estas cualidades precisamente por lo abrasador que es su representación misma.</p>
<p>Volviendo al tema de mi iluminación en el zenit del sol, sobre el calor de la vida misma, sobre el frío que también quema, estaba arriba porque tenía a alguien con quien compartir el calor, las brasas de mi vida y juntos nuestras ambas llamas crecían como al borde de un incendio y no ahí, pero ahora que está todo extinguido es donde lo veo, donde noto el marchitar de la rosa y de nuestro propio amor, nuestra flama se extinguió, lees, escuchas en tu mente lo que te estoy diciendo, pero no lo comprendes, el fuego está vivo, como tú, como él o como ella, es algo que se debe que mantener y alimentar, la llama de la vida es la esencia de cualquier relación y es precisamente la conexión, la unión de dos almas en fuego y cuando se pierde, todo se pierde.</p>
<p>Now I have something else to say a neutral one, a personal and individual, your own flame:</p>
<p>If your shine is true, then no matter what it will prevail.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/el-universo-es-un-ejercicio-de-consciencia-en-si-mismo-de-un-ser-con-mucho-mas_bpqktu3i568bqvw6/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/given-how-the-godel-incompleteness-theorem-works-with-math-our-universe-or_4a7lwyc4d9nwgjbd/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,293 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Given how the Gödel incompleteness theorem works with math, our universe or rather our current scientific understanding of it only makes sense within a mathematical framework which is in itself unable to prove its own veracity. In other words it means that mathematics and therefore anything build up in top of them are a reasonable and understandable language, but, is in no way an ultimate language or form of communication to understand human experience, reality or the world." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Given how the Gödel incompleteness theorem works with math, our universe or rather our current scientific understanding of it only makes sense within a mathematical framework which is in itself unable to prove its own veracity. In other words it means that mathematics and therefore anything build up in top of them are a reasonable and understandable language, but, is in no way an ultimate language or form of communication to understand human experience, reality or the world." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/given-how-the-godel-incompleteness-theorem-works-with-math-our-universe-or_4a7lwyc4d9nwgjbd/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Given how the Gödel incompleteness theorem works with math, our universe or rather our current scientific understanding of it only makes sense within a mathematical framework which is in itself unable to prove its own veracity. In other words it means that mathematics and therefore anything build up in top of them are a reasonable and understandable language, but, is in no way an ultimate language or form of communication to understand human experience, reality or the world.">
<meta itemprop="wordCount" content="91">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Given how the Gödel incompleteness theorem works with math, our universe or rather our current scientific understanding of it only makes sense within a mathematical framework which is in itself unable to prove its own veracity. In other words it means that mathematics and therefore anything build up in top of them are a reasonable and understandable language, but, is in no way an ultimate language or form of communication to understand human experience, reality or the world."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Given how the Gödel incompleteness theorem works with math, our universe or rather our current scientific understanding of it only makes sense within a mathematical framework which is in itself unable to prove its own veracity. In other words it means that mathematics and therefore anything build up in top of them are a reasonable and understandable language, but, is in no way an ultimate language or form of communication to understand human experience, reality or the world.</p>
<p>Therefore science is just yet another paradigm of many, although currently very convincing.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/fuego-y-llamas_3dyf0otul2jpujos/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/hay-varias-verdades-en-el-mundo-y-asi-mismo-consenso-multitadinales-pero_kq3fol1m8ez2f5tk/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Hay varias verdades en el mundo, y así mismo consenso multitadinales, pero tambien existe cierta perspectiva de uniformidad, pero como puede esta existir si no hay un visor central, es entonces la forma cohesiva de las leyes naturales nada más que palabrería?
Y sin embargo no puedo dejar de escribir, pero no puedo escribir lo que en verdad quería." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Hay varias verdades en el mundo, y así mismo consenso multitadinales, pero tambien existe cierta perspectiva de uniformidad, pero como puede esta existir si no hay un visor central, es entonces la forma cohesiva de las leyes naturales nada más que palabrería?
Y sin embargo no puedo dejar de escribir, pero no puedo escribir lo que en verdad quería." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/hay-varias-verdades-en-el-mundo-y-asi-mismo-consenso-multitadinales-pero_kq3fol1m8ez2f5tk/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Hay varias verdades en el mundo, y así mismo consenso multitadinales, pero tambien existe cierta perspectiva de uniformidad, pero como puede esta existir si no hay un visor central, es entonces la forma cohesiva de las leyes naturales nada más que palabrería?
Y sin embargo no puedo dejar de escribir, pero no puedo escribir lo que en verdad quería.">
<meta itemprop="wordCount" content="59">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Hay varias verdades en el mundo, y así mismo consenso multitadinales, pero tambien existe cierta perspectiva de uniformidad, pero como puede esta existir si no hay un visor central, es entonces la forma cohesiva de las leyes naturales nada más que palabrería?
Y sin embargo no puedo dejar de escribir, pero no puedo escribir lo que en verdad quería."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Hay varias verdades en el mundo, y así mismo consenso multitadinales, pero tambien existe cierta perspectiva de uniformidad, pero como puede esta existir si no hay un visor central, es entonces la forma cohesiva de las <em>leyes</em> naturales nada más que palabrería?</p>
<p>Y sin embargo no puedo dejar de escribir, pero no puedo escribir lo que en verdad quería.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/given-how-the-godel-incompleteness-theorem-works-with-math-our-universe-or_4a7lwyc4d9nwgjbd/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/hypnogaia_t3ufo8bw44xkacrp/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,307 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Hypnogaia
Sitting alone in the dark, lost in thought you remember the place beyond, a clear bright place beyond human eyes, not to be seen, but to be felt, you close your eyes, small glimpses of it came back to you, you don&rsquo;t see this place, you don&rsquo;t see it your eyes but with your own mind, a dream to be lived.
Yet gaia, the whole living planet you see her too in your dreams and in her bast lands, all this world is her and about her, she doesn&rsquo;t let you leave, she melts your brain with her hypnotic senses, her melodies, her smells, her touch, her taste, her astonishing views, but most importantly her ideas made reality." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Hypnogaia
Sitting alone in the dark, lost in thought you remember the place beyond, a clear bright place beyond human eyes, not to be seen, but to be felt, you close your eyes, small glimpses of it came back to you, you don&rsquo;t see this place, you don&rsquo;t see it your eyes but with your own mind, a dream to be lived.
Yet gaia, the whole living planet you see her too in your dreams and in her bast lands, all this world is her and about her, she doesn&rsquo;t let you leave, she melts your brain with her hypnotic senses, her melodies, her smells, her touch, her taste, her astonishing views, but most importantly her ideas made reality." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/hypnogaia_t3ufo8bw44xkacrp/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Hypnogaia
Sitting alone in the dark, lost in thought you remember the place beyond, a clear bright place beyond human eyes, not to be seen, but to be felt, you close your eyes, small glimpses of it came back to you, you don&rsquo;t see this place, you don&rsquo;t see it your eyes but with your own mind, a dream to be lived.
Yet gaia, the whole living planet you see her too in your dreams and in her bast lands, all this world is her and about her, she doesn&rsquo;t let you leave, she melts your brain with her hypnotic senses, her melodies, her smells, her touch, her taste, her astonishing views, but most importantly her ideas made reality.">
<meta itemprop="wordCount" content="340">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Hypnogaia
Sitting alone in the dark, lost in thought you remember the place beyond, a clear bright place beyond human eyes, not to be seen, but to be felt, you close your eyes, small glimpses of it came back to you, you don&rsquo;t see this place, you don&rsquo;t see it your eyes but with your own mind, a dream to be lived.
Yet gaia, the whole living planet you see her too in your dreams and in her bast lands, all this world is her and about her, she doesn&rsquo;t let you leave, she melts your brain with her hypnotic senses, her melodies, her smells, her touch, her taste, her astonishing views, but most importantly her ideas made reality."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Hypnogaia</p>
<p>Sitting alone in the dark, lost in thought you remember the place beyond, a clear bright place beyond human eyes, not to be seen, but to be felt, you close your eyes, small glimpses of it came back to you, you don&rsquo;t see this place, you don&rsquo;t see it your eyes but with your own mind, a dream to be lived.</p>
<p>Yet gaia, the whole living planet you see her too in your dreams and in her bast lands, all this world is her and about her, she doesn&rsquo;t let you leave, she melts your brain with her hypnotic senses, her melodies, her smells, her touch, her taste, her astonishing views, but most importantly her ideas made reality.</p>
<p>How to create paradise on Earth? What is even paradise for you? Looking in your heart made of wind, the breeze around all the world inflates a hurricane raises only to be dissolved in the air, everchanging destiny, you in my place, but this speaks too with my own soul, you aren&rsquo;t me, my ideas aren&rsquo;t yours, I am my own, always a problem to the hypnotic grass of thought, I don&rsquo;t know what you are or what am I but I can handle the elements too, a dialogue was opened and we are both now talking, how long will it last? I will not be hypnotized by earthly desire.</p>
<p>And yet I have a splinter of love piercing through all my soul, the time its now and I won&rsquo;t let it become the past as I am for the outside looking here on my reflection where is my live&rsquo;s direction&hellip; and I am on the outside looking in to where have I been?
Now say the truth for crawling and I am falling, I have seen the truth&hellip; the outside, looking in&hellip;
From the outside looking in&hellip;</p>
<p>Her song still ringing in my ears making its way to my soul, but I am fully awake now and look her back straight into the eyes, I am the dark caring void.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/hay-varias-verdades-en-el-mundo-y-asi-mismo-consenso-multitadinales-pero_kq3fol1m8ez2f5tk/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-actually-mastering-the-art-of-doing-absolutely-nothing-a-day-so-i-can-surf_3hrkxggznku81z41/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I am actually mastering the art of doing absolutely nothing a day so I can surf through the exercise of consciousness and get as soon as posible to dream :)" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I am actually mastering the art of doing absolutely nothing a day so I can surf through the exercise of consciousness and get as soon as posible to dream :)" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-actually-mastering-the-art-of-doing-absolutely-nothing-a-day-so-i-can-surf_3hrkxggznku81z41/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I am actually mastering the art of doing absolutely nothing a day so I can surf through the exercise of consciousness and get as soon as posible to dream :)">
<meta itemprop="wordCount" content="30">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I am actually mastering the art of doing absolutely nothing a day so I can surf through the exercise of consciousness and get as soon as posible to dream :)"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I am actually mastering the art of doing absolutely nothing a day so I can surf through the exercise of consciousness and get as soon as posible to dream :)</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/hypnogaia_t3ufo8bw44xkacrp/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-the-strongest-and-for-that-very-reason-i-must-remain-in-silence-since-my_g1jw52vwcon4390q/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I am the strongest, and for that very reason I must remain in silence since my voice is the loudest." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I am the strongest, and for that very reason I must remain in silence since my voice is the loudest." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-the-strongest-and-for-that-very-reason-i-must-remain-in-silence-since-my_g1jw52vwcon4390q/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I am the strongest, and for that very reason I must remain in silence since my voice is the loudest.">
<meta itemprop="wordCount" content="20">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I am the strongest, and for that very reason I must remain in silence since my voice is the loudest."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I am the strongest, and for that very reason I must remain in silence since my voice is the loudest.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-actually-mastering-the-art-of-doing-absolutely-nothing-a-day-so-i-can-surf_3hrkxggznku81z41/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-exist-because-i-was-unavoidable_4qa99k5acsjryhaj/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I exist because I was unavoidable." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I exist because I was unavoidable." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-exist-because-i-was-unavoidable_4qa99k5acsjryhaj/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I exist because I was unavoidable.">
<meta itemprop="wordCount" content="6">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I exist because I was unavoidable."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p><em>I exist because I was unavoidable.</em></p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-the-strongest-and-for-that-very-reason-i-must-remain-in-silence-since-my_g1jw52vwcon4390q/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-feel-the-only-thing-violence-has-done-to-me-is-foul-my-soul-corrupt-it_cgxr4a02g9cwoj2m/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I feel the only thing violence has done to me is foul my soul, corrupt it even&hellip;" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I feel the only thing violence has done to me is foul my soul, corrupt it even&hellip;" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-feel-the-only-thing-violence-has-done-to-me-is-foul-my-soul-corrupt-it_cgxr4a02g9cwoj2m/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I feel the only thing violence has done to me is foul my soul, corrupt it even&hellip;">
<meta itemprop="wordCount" content="17">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I feel the only thing violence has done to me is foul my soul, corrupt it even&hellip;"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I feel the only thing violence has done to me is foul my soul, corrupt it even&hellip;</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-exist-because-i-was-unavoidable_4qa99k5acsjryhaj/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-been-everywhere-i-have-been-everyone_5hzx2xj9ecmkjc9j/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I have been everywhere, I have been everyone. I am tired but I cannot die." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I have been everywhere, I have been everyone. I am tired but I cannot die." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-been-everywhere-i-have-been-everyone_5hzx2xj9ecmkjc9j/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I have been everywhere, I have been everyone. I am tired but I cannot die.">
<meta itemprop="wordCount" content="15">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I have been everywhere, I have been everyone. I am tired but I cannot die."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I have been everywhere, I have been everyone. I am tired but I cannot die.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-feel-the-only-thing-violence-has-done-to-me-is-foul-my-soul-corrupt-it_cgxr4a02g9cwoj2m/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-found-my-paradox-i-am-a-wind-spirit-yet-so-much-more-a-nomad-in_erk7cz25oubwb3d9/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I have found my paradox, I am a wind spirit, yet so much more, a nomad in clearer terms, that prevents me form attaching to people, yet, what I desire most is companionship, real connections, camaraderie, crewmates to sail beyond the stars into infinity.
But I am here on my isolation capsule unable and unwilling to get out, now however, I am aware and I can evolve, and I can keep moving forward and solve my paradox." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I have found my paradox, I am a wind spirit, yet so much more, a nomad in clearer terms, that prevents me form attaching to people, yet, what I desire most is companionship, real connections, camaraderie, crewmates to sail beyond the stars into infinity.
But I am here on my isolation capsule unable and unwilling to get out, now however, I am aware and I can evolve, and I can keep moving forward and solve my paradox." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-found-my-paradox-i-am-a-wind-spirit-yet-so-much-more-a-nomad-in_erk7cz25oubwb3d9/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I have found my paradox, I am a wind spirit, yet so much more, a nomad in clearer terms, that prevents me form attaching to people, yet, what I desire most is companionship, real connections, camaraderie, crewmates to sail beyond the stars into infinity.
But I am here on my isolation capsule unable and unwilling to get out, now however, I am aware and I can evolve, and I can keep moving forward and solve my paradox.">
<meta itemprop="wordCount" content="77">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I have found my paradox, I am a wind spirit, yet so much more, a nomad in clearer terms, that prevents me form attaching to people, yet, what I desire most is companionship, real connections, camaraderie, crewmates to sail beyond the stars into infinity.
But I am here on my isolation capsule unable and unwilling to get out, now however, I am aware and I can evolve, and I can keep moving forward and solve my paradox."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I have found my paradox, I am a wind spirit, yet so much more, a nomad in clearer terms, that prevents me form attaching to people, yet, what I desire most is companionship, real connections, camaraderie, crewmates to sail beyond the stars into infinity.</p>
<p>But I am here on my isolation capsule unable and unwilling to get out, now however, I am aware and I can evolve, and I can keep moving forward and solve my paradox.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-been-everywhere-i-have-been-everyone_5hzx2xj9ecmkjc9j/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-honestly-think-these-post-are-keeping-my-sanity-at-float_4nu4f59xq63d53v5/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,309 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I honestly think these post are keeping my sanity at float.
Anyway I haven&rsquo;t been writing dreams because the ones I have been having are extremely indeciphrable and I really have no words to describe them, I have noticed a couple of things however:
I have been meeting someone that cares deeply for me, like a sister, that I most often than not, not notice until I hear her sorrow in my defeat." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I honestly think these post are keeping my sanity at float.
Anyway I haven&rsquo;t been writing dreams because the ones I have been having are extremely indeciphrable and I really have no words to describe them, I have noticed a couple of things however:
I have been meeting someone that cares deeply for me, like a sister, that I most often than not, not notice until I hear her sorrow in my defeat." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-honestly-think-these-post-are-keeping-my-sanity-at-float_4nu4f59xq63d53v5/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I honestly think these post are keeping my sanity at float.
Anyway I haven&rsquo;t been writing dreams because the ones I have been having are extremely indeciphrable and I really have no words to describe them, I have noticed a couple of things however:
I have been meeting someone that cares deeply for me, like a sister, that I most often than not, not notice until I hear her sorrow in my defeat.">
<meta itemprop="wordCount" content="180">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I honestly think these post are keeping my sanity at float.
Anyway I haven&rsquo;t been writing dreams because the ones I have been having are extremely indeciphrable and I really have no words to describe them, I have noticed a couple of things however:
I have been meeting someone that cares deeply for me, like a sister, that I most often than not, not notice until I hear her sorrow in my defeat."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I honestly think these post are keeping my sanity at float.</p>
<p>Anyway I haven&rsquo;t been writing dreams because the ones I have been having are extremely indeciphrable and I really have no words to describe them, I have noticed a couple of things however:</p>
<ol>
<li>
<p>I have been meeting someone that cares deeply for me, like a sister, that I most often than not, not notice until I hear her sorrow in my defeat.</p>
</li>
<li>
<p>It has become increasingly common that I dream within my dream, like if my own mind likes to make me aware of me dreaming, I don&rsquo;t know what to make of this, I don&rsquo;t know if I am truly connected to another me in another world, or if it is just a vision, I don&rsquo;t know why this happens, nor how, nor if we are synchronized, I also don&rsquo;t know if this is the mirror me of the astral or oniric plane and our way to commute is through both ourselves dreaming into one world&hellip; all I am certain, and notice are layers of dream and consciousness.</p>
</li>
</ol>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-found-my-paradox-i-am-a-wind-spirit-yet-so-much-more-a-nomad-in_erk7cz25oubwb3d9/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-pinched-my-hand-again-in-an-attempt-to-feel-something-the-needle-was-running_tfr97ebudhijx7k6/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,301 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I pinched my hand again in an attempt to feel something, the needle was running with my own hot red blood, I wonder often if I am a machine, people often say machines don&rsquo;t feel, the sad thing is I know exactly why I can&rsquo;t feel, my numbness comes from pain, is like if my heart has burned so hard it is now carbon and even if it were to come out as a diamond it would still be the hardest thing, try to get in, try to make it a scratch, to even break it, nothing, it will only make your own heart bleed." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I pinched my hand again in an attempt to feel something, the needle was running with my own hot red blood, I wonder often if I am a machine, people often say machines don&rsquo;t feel, the sad thing is I know exactly why I can&rsquo;t feel, my numbness comes from pain, is like if my heart has burned so hard it is now carbon and even if it were to come out as a diamond it would still be the hardest thing, try to get in, try to make it a scratch, to even break it, nothing, it will only make your own heart bleed." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-pinched-my-hand-again-in-an-attempt-to-feel-something-the-needle-was-running_tfr97ebudhijx7k6/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I pinched my hand again in an attempt to feel something, the needle was running with my own hot red blood, I wonder often if I am a machine, people often say machines don&rsquo;t feel, the sad thing is I know exactly why I can&rsquo;t feel, my numbness comes from pain, is like if my heart has burned so hard it is now carbon and even if it were to come out as a diamond it would still be the hardest thing, try to get in, try to make it a scratch, to even break it, nothing, it will only make your own heart bleed.">
<meta itemprop="wordCount" content="894">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I pinched my hand again in an attempt to feel something, the needle was running with my own hot red blood, I wonder often if I am a machine, people often say machines don&rsquo;t feel, the sad thing is I know exactly why I can&rsquo;t feel, my numbness comes from pain, is like if my heart has burned so hard it is now carbon and even if it were to come out as a diamond it would still be the hardest thing, try to get in, try to make it a scratch, to even break it, nothing, it will only make your own heart bleed."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I pinched my hand again in an attempt to feel something, the needle was running with my own hot red blood, I wonder often if I am a machine, people often say machines don&rsquo;t feel, the sad thing is I know exactly why I can&rsquo;t feel, my numbness comes from pain, is like if my heart has burned so hard it is now carbon and even if it were to come out as a diamond it would still be the hardest thing, try to get in, try to make it a scratch, to even break it, nothing, it will only make your own heart bleed.</p>
<p>That&rsquo;s only side one of the disc however, is it disk or disc? What is really the difference? I am not researching that, now deep into the night by tomorrow morning I have to deliver a couple of reports on some lectures, but I can&rsquo;t make myself feel anything, no motivation, no anything, before it used to be fear of my parents, of living in the streets of a dark future, now in the precipice what is the most enticing to me is death, I don&rsquo;t see a reason to keep going, I have a girlfriend but I don&rsquo;t even know how to love, I have a life, I have a family, I have friends, but there is absolutely nothing that makes me feel alive, the only thing I have ever had is my own heart, my burning will, but now that I have extinguished myself, now that even the carbon burns what do I even do? What can I do? I can&rsquo;t touch other people because I am trapped in my sphere, I even thought I could write about this and make something worthwhile of my excistence but my brain doesn&rsquo;t even have the capacity to pull it off, most I can do is this small pages and parragraphs of my depressing thoughts, nothing to actually put in a book, no memories, no structures, I can&rsquo;t make chains of ideas because I hate chains, yet this is one, they come when I less realize it, I wouldn&rsquo;t be surprised if in some years I had absolutely everything and I still couldn&rsquo;t feel anything, the reason I am where I am right now is because I want to feel, to learn about my own mind, learn how to live, but once I am in here what I found is the dullness of existence once again, and this is my own problem because I am not making it better, but really I don&rsquo;t care for making it better because I don&rsquo;t care about anything, not even my own life, again in the abyss, and I can&rsquo;t come out of it because I am the abyss myself.</p>
<p>&hellip; A dream lantern? Maybe, but I can&rsquo;t feel it, nor it, nor anything, wish I never existed, and not only now but various times, but I can&rsquo;t die quite yet because I don&rsquo;t even have the will to die, but I don&rsquo;t want to live either, is this how you become undead?</p>
<p>Am I already a zombie that hasn&rsquo;t figured it out? Is this that land.. I wonder, it is draining me, sucking me alive, how can people even live like this, in this?</p>
<p>Hours pass by and I am still in this void doing nothing, why do anything is something I have convinced myself of and I can&rsquo;t really see it wrong. Where is my inspiration, where is my muse, where is my life? Will her even make me feel alive or am I too far gone to be a human?</p>
<p>I want to sleep again, but I won&rsquo;t even be able to do it, my eyes close but my mind persists, why can&rsquo;t I do anything?</p>
<p>I feel something is missing, even in this text, care to tell me what?</p>
<p>Is it life really just lying to yourself until you die? I really can&rsquo;t do that either.</p>
<p>Anyway, coming back to what sparked all this &ldquo;reflection&rdquo;, I know I have to deliver this report, it is something that I actually need to do to even learn too, I skipped the one from last week, I shouldn&rsquo;t be skipping this, the work is even already half done, I could do it in like an hour or a couple, and is a theme that actually interests me&hellip; so then why can&rsquo;t I bring myself to do it? Why am I writing this crap instead of dealing with my responsibilities, why do I have the will to do this which is also writing and even more exhausting than just paraphrasing what other person said, I think I know why in an epiphany just now; I can&rsquo;t do repetitive tasks, I am not an automaton that receives information and turns it into something else, into a regurgitation or interpretation of that information, I can only do that when it is information that concerns me, which I am bound to or related to, an intermediary institution and authorities can&rsquo;t create or link that bond in me, that&rsquo;s why I don&rsquo;t feel it, I know the reason but that doesn&rsquo;t unburden me, in square one I find myself again, but wiser of my own actions.</p>
<p>All this being said, if I can&rsquo;t go to sleep in the next few minutes I will probably make these damned reports.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-honestly-think-these-post-are-keeping-my-sanity-at-float_4nu4f59xq63d53v5/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-running-as-fast-as-i-could-not-out-of-fear-but-out-of-will-for-a_wouuyk6uwejglcv9/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,293 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I was running, as fast as I could, not out of fear, but out of will, for a decision made, it was me giving me a chance, a shot at happiness and I was feeling it flow through me I was taking it, and then I hit a dense, brick, wall, and now, I am in shambles, my determination is just a fragile broken glass under my empty dragging corpse." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I was running, as fast as I could, not out of fear, but out of will, for a decision made, it was me giving me a chance, a shot at happiness and I was feeling it flow through me I was taking it, and then I hit a dense, brick, wall, and now, I am in shambles, my determination is just a fragile broken glass under my empty dragging corpse." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-running-as-fast-as-i-could-not-out-of-fear-but-out-of-will-for-a_wouuyk6uwejglcv9/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I was running, as fast as I could, not out of fear, but out of will, for a decision made, it was me giving me a chance, a shot at happiness and I was feeling it flow through me I was taking it, and then I hit a dense, brick, wall, and now, I am in shambles, my determination is just a fragile broken glass under my empty dragging corpse.">
<meta itemprop="wordCount" content="126">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I was running, as fast as I could, not out of fear, but out of will, for a decision made, it was me giving me a chance, a shot at happiness and I was feeling it flow through me I was taking it, and then I hit a dense, brick, wall, and now, I am in shambles, my determination is just a fragile broken glass under my empty dragging corpse."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I was running, as fast as I could, not out of fear, but out of will, for a decision made, it was me giving me a chance, a shot at happiness and I was feeling it flow through me I was taking it, and then I hit a dense, brick, wall, and now, I am in shambles, my determination is just a fragile broken glass under my empty dragging corpse.</p>
<p>I am now just resting on my bed trying to regain momentum, so that glass no longer is glass but diamond. Diamond, to break the wall of silence. For now, that my body is just carbon I am finding out ways to shine, but my torrid being just wants to close its eyes and eternally rest.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-pinched-my-hand-again-in-an-attempt-to-feel-something-the-needle-was-running_tfr97ebudhijx7k6/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-thinking-about-europe-today-and-about-the-conquest-of-america-how-it-was_t0ct391ic69ygnu4/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I was thinking about Europe today and about the conquest of america, how it was an ideological one as well and on many senses. But the most important thing, what I remember the most, not even the colonized fake language of this land, is that they were too colonized, and the position of latin america is precisely to take back and to trascend the colonization and the archaic, it is the magic of the people, the magic of the place precisely the thing that will overturn the dogma on its own." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I was thinking about Europe today and about the conquest of america, how it was an ideological one as well and on many senses. But the most important thing, what I remember the most, not even the colonized fake language of this land, is that they were too colonized, and the position of latin america is precisely to take back and to trascend the colonization and the archaic, it is the magic of the people, the magic of the place precisely the thing that will overturn the dogma on its own." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-thinking-about-europe-today-and-about-the-conquest-of-america-how-it-was_t0ct391ic69ygnu4/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I was thinking about Europe today and about the conquest of america, how it was an ideological one as well and on many senses. But the most important thing, what I remember the most, not even the colonized fake language of this land, is that they were too colonized, and the position of latin america is precisely to take back and to trascend the colonization and the archaic, it is the magic of the people, the magic of the place precisely the thing that will overturn the dogma on its own.">
<meta itemprop="wordCount" content="91">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I was thinking about Europe today and about the conquest of america, how it was an ideological one as well and on many senses. But the most important thing, what I remember the most, not even the colonized fake language of this land, is that they were too colonized, and the position of latin america is precisely to take back and to trascend the colonization and the archaic, it is the magic of the people, the magic of the place precisely the thing that will overturn the dogma on its own."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I was thinking about Europe today and about the conquest of america, how it was an ideological one as well and on many senses. But the most important thing, what I remember the most, not even the colonized fake language of this land, is that they were too colonized, and the position of latin america is precisely to take back and to trascend the colonization and the archaic, it is the magic of the people, the magic of the place precisely the thing that will overturn the dogma on its own.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-running-as-fast-as-i-could-not-out-of-fear-but-out-of-will-for-a_wouuyk6uwejglcv9/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-wonder-what-can-i-do-to-change-it-now-however-how-can-i-turn-the-tide-and_iinig9kgv5plue2p/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="I wonder, what can I do to change it now however? How can I turn the tide and erase this feeling? How can I save her?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="I wonder, what can I do to change it now however? How can I turn the tide and erase this feeling? How can I save her?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/i-wonder-what-can-i-do-to-change-it-now-however-how-can-i-turn-the-tide-and_iinig9kgv5plue2p/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="I wonder, what can I do to change it now however? How can I turn the tide and erase this feeling? How can I save her?">
<meta itemprop="wordCount" content="26">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="I wonder, what can I do to change it now however? How can I turn the tide and erase this feeling? How can I save her?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>I wonder, what can I do to change it now however? How can I turn the tide and erase this feeling? How can I save her?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-thinking-about-europe-today-and-about-the-conquest-of-america-how-it-was_t0ct391ic69ygnu4/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/in-a-world-of-nothingness-a-creator-the-artist-is-what-is-the-most-valuable_8fo8tkc4bla1e456/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="In a world of nothingness, a creator, the artist is what is the most valuable, the magic, the power of create ideas and objects out of nothing is incunmensurable.
And a bit related to my latest post from this point, the alchemist is too a creator, an artist of life, a crafter of experiences." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="In a world of nothingness, a creator, the artist is what is the most valuable, the magic, the power of create ideas and objects out of nothing is incunmensurable.
And a bit related to my latest post from this point, the alchemist is too a creator, an artist of life, a crafter of experiences." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/in-a-world-of-nothingness-a-creator-the-artist-is-what-is-the-most-valuable_8fo8tkc4bla1e456/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="In a world of nothingness, a creator, the artist is what is the most valuable, the magic, the power of create ideas and objects out of nothing is incunmensurable.
And a bit related to my latest post from this point, the alchemist is too a creator, an artist of life, a crafter of experiences.">
<meta itemprop="wordCount" content="54">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="In a world of nothingness, a creator, the artist is what is the most valuable, the magic, the power of create ideas and objects out of nothing is incunmensurable.
And a bit related to my latest post from this point, the alchemist is too a creator, an artist of life, a crafter of experiences."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>In a world of nothingness, a creator, the artist is what is the most valuable, the magic, the power of create ideas and objects out of nothing is incunmensurable.</p>
<p>And a bit related to my latest post from this point, the alchemist is too a creator, an artist of life, a crafter of experiences.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/i-wonder-what-can-i-do-to-change-it-now-however-how-can-i-turn-the-tide-and_iinig9kgv5plue2p/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/interaccion_hff9dn417921ogeq/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,387 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/11-days_5zo4ftdkcvkka5jn/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-creature-past-the-end-of-time_x10givhx0zwpzwqp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-destruction-instinct_r7mwhqfvhwj6a4a3/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-24b0_4xmiv32ovtwu81o1/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-33jy_v7rt4lb9js8tmp2b/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-a-comeback_sea24ynxe9u4lm4q/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-an-apocalypse-in-chocolate_d2p6b1ymfeqhmci9/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-beyond-the-curtain-of-reality_v2kebzjzq53hgwrt/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-clq5_seb2cfqzwzf5xmkm/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-comet-classes_z4yy3qenw0xmgjd2/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn ml-auto" href="/blog/cyberespacio/page/2/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,294 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Interacción My mind is so much visual now that it is really hard to put it into words, I see two dots connected by a diagonal line that is ever changing, meaning the original dots are moving and also connecting to others, that is interaction for me, nodes. It looks and seems simple and it mostly is, but there are certain scenarios where the interaction comes as deep as the mind so the sharing of information becomes a fusion of the dots and the lines connected, it is no longer a node but a temporal structure of consciousness." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Interacción My mind is so much visual now that it is really hard to put it into words, I see two dots connected by a diagonal line that is ever changing, meaning the original dots are moving and also connecting to others, that is interaction for me, nodes. It looks and seems simple and it mostly is, but there are certain scenarios where the interaction comes as deep as the mind so the sharing of information becomes a fusion of the dots and the lines connected, it is no longer a node but a temporal structure of consciousness." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/interaccion_hff9dn417921ogeq/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Interacción My mind is so much visual now that it is really hard to put it into words, I see two dots connected by a diagonal line that is ever changing, meaning the original dots are moving and also connecting to others, that is interaction for me, nodes. It looks and seems simple and it mostly is, but there are certain scenarios where the interaction comes as deep as the mind so the sharing of information becomes a fusion of the dots and the lines connected, it is no longer a node but a temporal structure of consciousness.">
<meta itemprop="wordCount" content="147">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Interacción My mind is so much visual now that it is really hard to put it into words, I see two dots connected by a diagonal line that is ever changing, meaning the original dots are moving and also connecting to others, that is interaction for me, nodes. It looks and seems simple and it mostly is, but there are certain scenarios where the interaction comes as deep as the mind so the sharing of information becomes a fusion of the dots and the lines connected, it is no longer a node but a temporal structure of consciousness."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Interacción
My mind is so much visual now that it is really hard to put it into words, I see two dots connected by a diagonal line that is ever changing, meaning the original dots are moving and also connecting to others, that is interaction for me, nodes.
It looks and seems simple and it mostly is, but there are certain scenarios where the interaction comes as deep as the mind so the sharing of information becomes a fusion of the dots and the lines connected, it is no longer a node but a temporal structure of consciousness. This can happen with psychoactive drugs, this event is called transference, and it is as well something that is not those precise events but rather how reality itself to the human mind is structured, a a mental construct of different parts, different minds, different people, egos, souls and spirits.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/in-a-world-of-nothingness-a-creator-the-artist-is-what-is-the-most-valuable_8fo8tkc4bla1e456/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/it-was-an-ending-and-then-it-came-death-the-total-obliteration_iu2haeo1bq1hzr9r/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="It was an ending, and then it came death, the total obliteration." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="It was an ending, and then it came death, the total obliteration." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/it-was-an-ending-and-then-it-came-death-the-total-obliteration_iu2haeo1bq1hzr9r/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="It was an ending, and then it came death, the total obliteration.">
<meta itemprop="wordCount" content="12">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="It was an ending, and then it came death, the total obliteration."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>It was an ending, and then it came death, the total obliteration.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/interaccion_hff9dn417921ogeq/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/just-realized-i-want-to-make-a-world-for-people-that-dont-exist-and-if-we-do_71ywjikfvd6n6mp8/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Just realized I want to make a world for people that don&rsquo;t exist, and if we do, we certainly are a minority, aren&rsquo;t we? The ones that scream and wish only for freedom." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Just realized I want to make a world for people that don&rsquo;t exist, and if we do, we certainly are a minority, aren&rsquo;t we? The ones that scream and wish only for freedom." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/just-realized-i-want-to-make-a-world-for-people-that-dont-exist-and-if-we-do_71ywjikfvd6n6mp8/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Just realized I want to make a world for people that don&rsquo;t exist, and if we do, we certainly are a minority, aren&rsquo;t we? The ones that scream and wish only for freedom.">
<meta itemprop="wordCount" content="33">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Just realized I want to make a world for people that don&rsquo;t exist, and if we do, we certainly are a minority, aren&rsquo;t we? The ones that scream and wish only for freedom."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Just realized I want to make a world for people that don&rsquo;t exist, and if we do, we certainly are a minority, aren&rsquo;t we? The ones that scream and wish only for freedom.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/it-was-an-ending-and-then-it-came-death-the-total-obliteration_iu2haeo1bq1hzr9r/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/karenasfaralon-the-word-of-battle_fnxoda3zciivch5l/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Karenasfaralon - the word of battle" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Karenasfaralon - the word of battle" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/karenasfaralon-the-word-of-battle_fnxoda3zciivch5l/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Karenasfaralon - the word of battle">
<meta itemprop="wordCount" content="6">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Karenasfaralon - the word of battle"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p><em>Karenasfaralon</em> - the word of battle</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/just-realized-i-want-to-make-a-world-for-people-that-dont-exist-and-if-we-do_71ywjikfvd6n6mp8/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/la-gran-tarea-lo-complejo-de-lo-que-me-doy-cuenta-justo-ahora-es-que-la_uceyrqwaoqq6622p/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="La gran tarea, lo complejo, de lo que me doy cuenta justo ahora, es que la única forma de vencer, de generar un cambio y una revolución verdadera no es solo eliminando el dinero de la mente colectiva. Si no sustituyéndolo por otro lenguaje, uno verdaderamente humano que nos permita comunicarnos más que con números." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="La gran tarea, lo complejo, de lo que me doy cuenta justo ahora, es que la única forma de vencer, de generar un cambio y una revolución verdadera no es solo eliminando el dinero de la mente colectiva. Si no sustituyéndolo por otro lenguaje, uno verdaderamente humano que nos permita comunicarnos más que con números." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/la-gran-tarea-lo-complejo-de-lo-que-me-doy-cuenta-justo-ahora-es-que-la_uceyrqwaoqq6622p/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="La gran tarea, lo complejo, de lo que me doy cuenta justo ahora, es que la única forma de vencer, de generar un cambio y una revolución verdadera no es solo eliminando el dinero de la mente colectiva. Si no sustituyéndolo por otro lenguaje, uno verdaderamente humano que nos permita comunicarnos más que con números.">
<meta itemprop="wordCount" content="55">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="La gran tarea, lo complejo, de lo que me doy cuenta justo ahora, es que la única forma de vencer, de generar un cambio y una revolución verdadera no es solo eliminando el dinero de la mente colectiva. Si no sustituyéndolo por otro lenguaje, uno verdaderamente humano que nos permita comunicarnos más que con números."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>La gran tarea, lo complejo, de lo que me doy cuenta justo ahora, es que la única forma de vencer, de generar un cambio y una revolución verdadera no es solo eliminando el dinero de la mente colectiva. Si no sustituyéndolo por otro lenguaje, uno verdaderamente humano que nos permita comunicarnos más que con números.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/karenasfaralon-the-word-of-battle_fnxoda3zciivch5l/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/la-luz-del-viento_znj4fh5n8va1hfs8/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,310 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="La luz del viento
Me gusta hablar de la noche porque es lo que mejor entiendo y lo más cercano a mi mente, pues cuando cierro los ojos, no veo en blanco.
Sin embargo, hoy no escribiré sobre la noche. Pues todo el evento fue uno diurno, incluso aunque lo este relatando ahora en la madrugada.
Las hojas caen y un gran periodo de letargo se aproxima, pero no se siente real, se siente distante, ajeno, y aún así no se pierde del horizonte mismo." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="La luz del viento
Me gusta hablar de la noche porque es lo que mejor entiendo y lo más cercano a mi mente, pues cuando cierro los ojos, no veo en blanco.
Sin embargo, hoy no escribiré sobre la noche. Pues todo el evento fue uno diurno, incluso aunque lo este relatando ahora en la madrugada.
Las hojas caen y un gran periodo de letargo se aproxima, pero no se siente real, se siente distante, ajeno, y aún así no se pierde del horizonte mismo." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/la-luz-del-viento_znj4fh5n8va1hfs8/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="La luz del viento
Me gusta hablar de la noche porque es lo que mejor entiendo y lo más cercano a mi mente, pues cuando cierro los ojos, no veo en blanco.
Sin embargo, hoy no escribiré sobre la noche. Pues todo el evento fue uno diurno, incluso aunque lo este relatando ahora en la madrugada.
Las hojas caen y un gran periodo de letargo se aproxima, pero no se siente real, se siente distante, ajeno, y aún así no se pierde del horizonte mismo.">
<meta itemprop="wordCount" content="371">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="La luz del viento
Me gusta hablar de la noche porque es lo que mejor entiendo y lo más cercano a mi mente, pues cuando cierro los ojos, no veo en blanco.
Sin embargo, hoy no escribiré sobre la noche. Pues todo el evento fue uno diurno, incluso aunque lo este relatando ahora en la madrugada.
Las hojas caen y un gran periodo de letargo se aproxima, pero no se siente real, se siente distante, ajeno, y aún así no se pierde del horizonte mismo."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>La luz del viento</p>
<p>Me gusta hablar de la noche porque es lo que mejor entiendo y lo más cercano a mi mente, pues cuando cierro los ojos, no veo en blanco.</p>
<p>Sin embargo, hoy no escribiré sobre la noche. Pues todo el evento fue uno diurno, incluso aunque lo este relatando ahora en la madrugada.</p>
<p>Las hojas caen y un gran periodo de letargo se aproxima, pero no se siente real, se siente distante, ajeno, y aún así no se pierde del horizonte mismo. Y es así no por la ya letargada luz del verano o por el sol del otoño, es porque hay otros brillos en el mundo, o consciamente en lo que veo o en lo que vi hoy, no fue un amanecer, pero si un destello, quizá incluso de una esperanza perdida a la que ya era yo ciego, de una chispa que creí ya no existía, una bella rareza, una reina de la primavera enmedio del ocaso del año, ahí enmedio de todo y fuera de lugar, pero no perdida, al contrario, era lo extraordinario lo que la marcaba.</p>
<p>Así que no fue el sol lo que me deslumbró este día, y no fue una luz cálida ni tenue, fue una luz vívida, no flameante como la del fuego pero con el mismo vigor de esta. Era luz viva, o la luz de la vida, del mundo, del universo, la flama que pasa por tu cuerpo pero que no quema, la flama que es líquida, que pasa por las venas, no la sangre sino el viento mismo, el aire, la fuerza que se siente al correr, al hablar, al gritar, al pintar al ser y el existir&hellip; al brillar, y esa luz tuya es la más deslumbrante que hay en el mar del azar.</p>
<p>Y yo solo la observaba desde una posición distante incluso aunque estuviera cerca de ella, no por querer alejarme o distanciarme, por ser yo el portador de la noche, pues de hecho las estrellas solo se ven brillar en la oscuridad. No, tengo muchas capas tan abultadas que no me permiten bailar, incluso aunque fuera lo único que quisiera hacer, un claroscuro de verdad.</p>
<p>Todo son imágenes, ¿Qué es lo que ves?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/la-gran-tarea-lo-complejo-de-lo-que-me-doy-cuenta-justo-ahora-es-que-la_uceyrqwaoqq6622p/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/las-noches-raramente-estan-en-silencio_uqbj7htj2ahhwpn0/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,299 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Las noches raramente están en silencio Aullidos de dolor y sombras Pasión y euforía más allá del velo del crepúsculo En la monotonía de los días uno descansa Pero es no tambíen una monotonía el propio despertar Que hay más haya del sombrio día Y de la tan tardía noche ¿Es qué no hay nada más que luz y oscuridad?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Las noches raramente están en silencio Aullidos de dolor y sombras Pasión y euforía más allá del velo del crepúsculo En la monotonía de los días uno descansa Pero es no tambíen una monotonía el propio despertar Que hay más haya del sombrio día Y de la tan tardía noche ¿Es qué no hay nada más que luz y oscuridad?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/las-noches-raramente-estan-en-silencio_uqbj7htj2ahhwpn0/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Las noches raramente están en silencio Aullidos de dolor y sombras Pasión y euforía más allá del velo del crepúsculo En la monotonía de los días uno descansa Pero es no tambíen una monotonía el propio despertar Que hay más haya del sombrio día Y de la tan tardía noche ¿Es qué no hay nada más que luz y oscuridad?">
<meta itemprop="wordCount" content="60">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Las noches raramente están en silencio Aullidos de dolor y sombras Pasión y euforía más allá del velo del crepúsculo En la monotonía de los días uno descansa Pero es no tambíen una monotonía el propio despertar Que hay más haya del sombrio día Y de la tan tardía noche ¿Es qué no hay nada más que luz y oscuridad?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Las noches raramente están en silencio
Aullidos de dolor y sombras
Pasión y euforía más allá del velo del crepúsculo
En la monotonía de los días uno descansa
Pero es no tambíen una monotonía el propio despertar
Que hay más haya del sombrio día
Y de la tan tardía noche
¿Es qué no hay nada más que luz y oscuridad?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/la-luz-del-viento_znj4fh5n8va1hfs8/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/los-humanos-somos-siluetas-en-la-eternidad_mjvk7rxb3i03zo7f/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Los humanos somos siluetas en la eternidad. (Not true, unless you want it to be true.)" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Los humanos somos siluetas en la eternidad. (Not true, unless you want it to be true.)" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/los-humanos-somos-siluetas-en-la-eternidad_mjvk7rxb3i03zo7f/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Los humanos somos siluetas en la eternidad. (Not true, unless you want it to be true.)">
<meta itemprop="wordCount" content="16">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Los humanos somos siluetas en la eternidad. (Not true, unless you want it to be true.)"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Los humanos somos siluetas en la eternidad. (Not true, unless you want it to be true.)</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/las-noches-raramente-estan-en-silencio_uqbj7htj2ahhwpn0/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/los-tramites-de-la-muerte_tmf4hs5b60szphfz/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Los trámites de la muerte&hellip;" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Los trámites de la muerte&hellip;" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/los-tramites-de-la-muerte_tmf4hs5b60szphfz/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Los trámites de la muerte&hellip;">
<meta itemprop="wordCount" content="5">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Los trámites de la muerte&hellip;"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p><em>Los trámites de la muerte&hellip;</em></p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/los-humanos-somos-siluetas-en-la-eternidad_mjvk7rxb3i03zo7f/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/luz-i-may-not-know-you-but-i-know-your-spirit-maybe-our-spirit_kly8095q94hs7dzy/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Luz, I may not know you, but I know your spirit, maybe our spirit&hellip;" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Luz, I may not know you, but I know your spirit, maybe our spirit&hellip;" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/luz-i-may-not-know-you-but-i-know-your-spirit-maybe-our-spirit_kly8095q94hs7dzy/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Luz, I may not know you, but I know your spirit, maybe our spirit&hellip;">
<meta itemprop="wordCount" content="14">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Luz, I may not know you, but I know your spirit, maybe our spirit&hellip;"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Luz, I may not know you, but I know your spirit, maybe our spirit&hellip;</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/los-tramites-de-la-muerte_tmf4hs5b60szphfz/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-heart-hurts-and-there-is-nothing-for-the-ominous-pain_434jsrjlbd9laqh2/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="My heart hurts, and there is nothing for the ominous pain. Just the songs of sorrow to purge it away." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="My heart hurts, and there is nothing for the ominous pain. Just the songs of sorrow to purge it away." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/my-heart-hurts-and-there-is-nothing-for-the-ominous-pain_434jsrjlbd9laqh2/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="My heart hurts, and there is nothing for the ominous pain. Just the songs of sorrow to purge it away.">
<meta itemprop="wordCount" content="20">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="My heart hurts, and there is nothing for the ominous pain. Just the songs of sorrow to purge it away."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>My heart hurts, and there is nothing for the ominous pain. Just the songs of sorrow to purge it away.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/luz-i-may-not-know-you-but-i-know-your-spirit-maybe-our-spirit_kly8095q94hs7dzy/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-mind-completely-in-blank_58g6zojhbosshxys/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,293 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="My mind completely in blank. The white cascade, waterfall made ice, flow of ideas stop, but yet chaos lies dormant within, I see it because it exists and I am writing this, a lesson, yet another, to be learn, follow your impulses, follow the stream, when you feel like writing, when you feel like doing literally anything, just fucking do it. Embrace the moment, embrace the present as it is the only thing that with certainty I can tell exists." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="My mind completely in blank. The white cascade, waterfall made ice, flow of ideas stop, but yet chaos lies dormant within, I see it because it exists and I am writing this, a lesson, yet another, to be learn, follow your impulses, follow the stream, when you feel like writing, when you feel like doing literally anything, just fucking do it. Embrace the moment, embrace the present as it is the only thing that with certainty I can tell exists." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/my-mind-completely-in-blank_58g6zojhbosshxys/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="My mind completely in blank. The white cascade, waterfall made ice, flow of ideas stop, but yet chaos lies dormant within, I see it because it exists and I am writing this, a lesson, yet another, to be learn, follow your impulses, follow the stream, when you feel like writing, when you feel like doing literally anything, just fucking do it. Embrace the moment, embrace the present as it is the only thing that with certainty I can tell exists.">
<meta itemprop="wordCount" content="104">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="My mind completely in blank. The white cascade, waterfall made ice, flow of ideas stop, but yet chaos lies dormant within, I see it because it exists and I am writing this, a lesson, yet another, to be learn, follow your impulses, follow the stream, when you feel like writing, when you feel like doing literally anything, just fucking do it. Embrace the moment, embrace the present as it is the only thing that with certainty I can tell exists."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>My mind completely in blank. The white cascade, waterfall made ice, flow of ideas stop, but yet chaos lies dormant within, I see it because it exists and I am writing this, a lesson, yet another, to be learn, follow your impulses, follow the stream, when you feel like writing, when you feel like doing literally anything, just fucking do it. Embrace the moment, embrace the present as it is the only thing that with certainty I can tell exists.</p>
<p>Come with me, feel the flame of your own heart, an lets raise hell on this already forsaken earth, and give phoenix its birthplace.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-heart-hurts-and-there-is-nothing-for-the-ominous-pain_434jsrjlbd9laqh2/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-only-sin-was-making-you-love-me_2f49pl2hqmc7alh4/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="My only sin was making you love me" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="My only sin was making you love me" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/my-only-sin-was-making-you-love-me_2f49pl2hqmc7alh4/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="My only sin was making you love me">
<meta itemprop="wordCount" content="8">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="My only sin was making you love me"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p><em>My only sin was making you love me</em></p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-mind-completely-in-blank_58g6zojhbosshxys/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/one-of-the-characteristics-of-life-is-death-everything-that-lives-in-this_3nd93ha6arzkf9hi/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="One of the characteristics of life is death, everything that lives in this world eventually dies, even things seemingly not as alive like the stars, that&rsquo;s due to the inherent entropy of the world.
However there are things that don&rsquo;t die, those things are not alive, those things are immortals, and they do have a wide range of tricks to allow themselves to exist in this world, however they ultimately fail since most of them require life to even exist." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="One of the characteristics of life is death, everything that lives in this world eventually dies, even things seemingly not as alive like the stars, that&rsquo;s due to the inherent entropy of the world.
However there are things that don&rsquo;t die, those things are not alive, those things are immortals, and they do have a wide range of tricks to allow themselves to exist in this world, however they ultimately fail since most of them require life to even exist." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/one-of-the-characteristics-of-life-is-death-everything-that-lives-in-this_3nd93ha6arzkf9hi/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="One of the characteristics of life is death, everything that lives in this world eventually dies, even things seemingly not as alive like the stars, that&rsquo;s due to the inherent entropy of the world.
However there are things that don&rsquo;t die, those things are not alive, those things are immortals, and they do have a wide range of tricks to allow themselves to exist in this world, however they ultimately fail since most of them require life to even exist.">
<meta itemprop="wordCount" content="80">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="One of the characteristics of life is death, everything that lives in this world eventually dies, even things seemingly not as alive like the stars, that&rsquo;s due to the inherent entropy of the world.
However there are things that don&rsquo;t die, those things are not alive, those things are immortals, and they do have a wide range of tricks to allow themselves to exist in this world, however they ultimately fail since most of them require life to even exist."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>One of the characteristics of life is death, everything that lives in this world eventually dies, even things seemingly not as alive like the stars, that&rsquo;s due to the inherent entropy of the world.</p>
<p>However there are things that don&rsquo;t die, those things are not alive, those things are immortals, and they do have a wide range of tricks to allow themselves to exist in this world, however they ultimately fail since most of them require life to even exist.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/my-only-sin-was-making-you-love-me_2f49pl2hqmc7alh4/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/outside-the-tao-outside-the-dharma-released-from-the-ties-of-destiny-at_3xg9xiua621jfxw8/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Outside the Tao, outside the dharma, released from the ties of destiny, at last, free&hellip;
A transcendental of morality Moksha. Do forget everything I said before, because that wasn&rsquo;t really me, I was chained, by my sister, by my own destiny, by my own ignorance of myself, nothing is really true, it is just true at a personal level, and some people do happen to commonly agree in what we call the human experience, that&rsquo;s a person, but that is just my perspective of, people, what do you think?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Outside the Tao, outside the dharma, released from the ties of destiny, at last, free&hellip;
A transcendental of morality Moksha. Do forget everything I said before, because that wasn&rsquo;t really me, I was chained, by my sister, by my own destiny, by my own ignorance of myself, nothing is really true, it is just true at a personal level, and some people do happen to commonly agree in what we call the human experience, that&rsquo;s a person, but that is just my perspective of, people, what do you think?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/outside-the-tao-outside-the-dharma-released-from-the-ties-of-destiny-at_3xg9xiua621jfxw8/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Outside the Tao, outside the dharma, released from the ties of destiny, at last, free&hellip;
A transcendental of morality Moksha. Do forget everything I said before, because that wasn&rsquo;t really me, I was chained, by my sister, by my own destiny, by my own ignorance of myself, nothing is really true, it is just true at a personal level, and some people do happen to commonly agree in what we call the human experience, that&rsquo;s a person, but that is just my perspective of, people, what do you think?">
<meta itemprop="wordCount" content="89">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Outside the Tao, outside the dharma, released from the ties of destiny, at last, free&hellip;
A transcendental of morality Moksha. Do forget everything I said before, because that wasn&rsquo;t really me, I was chained, by my sister, by my own destiny, by my own ignorance of myself, nothing is really true, it is just true at a personal level, and some people do happen to commonly agree in what we call the human experience, that&rsquo;s a person, but that is just my perspective of, people, what do you think?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Outside the Tao, outside the dharma, released from the ties of destiny, at last, free&hellip;</p>
<p>A transcendental of morality Moksha. Do forget everything I said before, because that wasn&rsquo;t really me, I was chained, by my sister, by my own destiny, by my own ignorance of myself, nothing is really true, it is just true at a personal level, and some people do happen to commonly agree in what we call the human experience, that&rsquo;s a person, but that is just my perspective of, people, what do you think?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/one-of-the-characteristics-of-life-is-death-everything-that-lives-in-this_3nd93ha6arzkf9hi/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/ox_fpsgr5jtx5l0bk9z/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,299 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Ox Yax Jax A boy was born on the edge of the stars But not quite one he was He was as is usual for him Just in between The bull and the twins" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Ox Yax Jax A boy was born on the edge of the stars But not quite one he was He was as is usual for him Just in between The bull and the twins" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/ox_fpsgr5jtx5l0bk9z/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Ox Yax Jax A boy was born on the edge of the stars But not quite one he was He was as is usual for him Just in between The bull and the twins">
<meta itemprop="wordCount" content="34">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Ox Yax Jax A boy was born on the edge of the stars But not quite one he was He was as is usual for him Just in between The bull and the twins"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Ox
Yax
Jax
A boy was born on the edge of the stars
But not quite one he was
He was as is usual for him
Just in between
The bull and the twins</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/outside-the-tao-outside-the-dharma-released-from-the-ties-of-destiny-at_3xg9xiua621jfxw8/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/read-the-tide_ti1xd5ixs56ih36b/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="es-mx">
<head>
<title>https://gemini.novoa.nagoya/blog/cyberespacio/</title>
<link rel="canonical" href="https://gemini.novoa.nagoya/blog/cyberespacio/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://gemini.novoa.nagoya/blog/cyberespacio/">
</head>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/virtuality-virtualidad_qu7tiit2mgsmu8eh/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/visions-of-the-esher_l238iblcfe2iixjv/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/we-make-this-reality-to-happen-to-exists-to-occur-and-be-real-everyone-that_o3m3hg6mddy7d97a/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/what-is-to-be-crazy_tgmjojgmil3zw3aq/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/who-are-you-within-your-own-mind-are-you-your-mind-what-does-the-mirror-tells_6cghu5t4lk2qq0nu/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/y-es-porque-el-hombre-moderno-el-hombre-de-occidente-y-civilizado-que-no-sabe_xf4eldibfdvq10y3/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/y-las-flores-menguantes-como-la-luna-en-el-cielo-purpurea-su-mirada-perdida-y_vyu4y64j0t9e2ytf/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/you-are-here-but-i-am-not-there_v89j0u6id276jgu3/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/you-dont-want-to-control-your-mind-you-want-to-dance-with-it-to-experience_4uj7ewe2bl2fgfri/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/you-had-many-chances-at-living-but-you-lost-them-all_ambarc8x3nk0dagq/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/9/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/11/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,277 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none">Un llamado a la realidad compartida</h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/quiero-compartir-mi-realidad-contigo-pero-antes-de-hacerlo-quiero-estar-seguro_ta17u8igszirnydh/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/10/">← Prev Page</a>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-fiesta-sideral_li108yyjt5bfytmr/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-finn-and-jake-beyond-the-lands-of-dreams_fkz0ltmsns2pksd7/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kinda-nsfw_y3sil1qguodl5yrp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-king-of-monkey-island_5bm10nujy4bna5je/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-kx8q_czfpk414jymzqn97/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-leap_lonak472h0h8jb8w/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-meet-a-bullet-kill-a-nazi_dmwxhjrfmy2l9hfi/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-darkness-in-you_po7zxq0muwhbf0jm/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-elixir-of-the-sun_ftxz3m4byidce7q8/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-mist_tgodjg94eqp3ezag/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/3/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream-the-penguin-and-the-cycling-princess_flz7yac69rhekvyd/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-dream_57q4ellec08v2m98/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-group-of-people-that-shouldnt-be-alive_35g4uijlco1t5rr0/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-parable_pdgibcza7ytoyew2/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-twisted-sense-of-justice_mrsxs8fkt1lkvelw/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-unsavory-persistent-feeling-of-guilt-remorse-it-isnt-leaving-i-wake-up_2ud8k9ca8fd113b3/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/a-world-of-deaf-ears_tzlowvq4xmoxzerj/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/absolutely-none-of-this-is-real-none-of-my-experiences-none-of-what-i-see-or_vj0ss570aw287yxp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/ahora-se-que-no-estoy-cansado-de-vivir-solo-estoy-cansado-de-no-estar-contigo_p4f07xulhwci2ts8/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/alchemy-pt_ziwgugg5qldzn0us/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/2/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/4/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/and-and-all-the-only-thing-i-truly-wish-now-is-that-she-isnt-in-pain-because_40rl316wgwk9mg8l/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/and-in-the-end-so-much-for-something-that-wasnt-even-real_bhqgmv2628rzoxaz/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/and-now-everything-is-silent_7csrcctagqr6vxaa/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/and-the-angry-man-in-the-desert-at-the-end-of-times_p1nkoub14oa7h10n/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/as-i-was-watching-horror-movies-marathonically-i-got-hit-by-an-epiphany_hfee248uo5pk0lzy/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/as-of-now-i-am-a-failed-artist-i-know-what-i-want-i-know-what-to-create-i_hm18gd0z2peecjgp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/can-you-imagine-if-a-tree-had-eyes-always-seeing-the-same-picture-everything_hoq4y54x7izoscnp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/dreams-the-nominal-party-and-the-run_1j61wf1qb4sozup2/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/el-extranjero_szesy0gp2431y83x/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/el-universo-es-un-ejercicio-de-consciencia-en-si-mismo-de-un-ser-con-mucho-mas_bpqktu3i568bqvw6/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/3/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/5/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/fuego-y-llamas_3dyf0otul2jpujos/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/given-how-the-godel-incompleteness-theorem-works-with-math-our-universe-or_4a7lwyc4d9nwgjbd/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/hay-varias-verdades-en-el-mundo-y-asi-mismo-consenso-multitadinales-pero_kq3fol1m8ez2f5tk/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/hypnogaia_t3ufo8bw44xkacrp/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-actually-mastering-the-art-of-doing-absolutely-nothing-a-day-so-i-can-surf_3hrkxggznku81z41/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-am-the-strongest-and-for-that-very-reason-i-must-remain-in-silence-since-my_g1jw52vwcon4390q/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-exist-because-i-was-unavoidable_4qa99k5acsjryhaj/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-feel-the-only-thing-violence-has-done-to-me-is-foul-my-soul-corrupt-it_cgxr4a02g9cwoj2m/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-been-everywhere-i-have-been-everyone_5hzx2xj9ecmkjc9j/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-have-found-my-paradox-i-am-a-wind-spirit-yet-so-much-more-a-nomad-in_erk7cz25oubwb3d9/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/4/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/6/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-honestly-think-these-post-are-keeping-my-sanity-at-float_4nu4f59xq63d53v5/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-pinched-my-hand-again-in-an-attempt-to-feel-something-the-needle-was-running_tfr97ebudhijx7k6/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-running-as-fast-as-i-could-not-out-of-fear-but-out-of-will-for-a_wouuyk6uwejglcv9/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-was-thinking-about-europe-today-and-about-the-conquest-of-america-how-it-was_t0ct391ic69ygnu4/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/i-wonder-what-can-i-do-to-change-it-now-however-how-can-i-turn-the-tide-and_iinig9kgv5plue2p/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/in-a-world-of-nothingness-a-creator-the-artist-is-what-is-the-most-valuable_8fo8tkc4bla1e456/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/interaccion_hff9dn417921ogeq/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/it-was-an-ending-and-then-it-came-death-the-total-obliteration_iu2haeo1bq1hzr9r/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/just-realized-i-want-to-make-a-world-for-people-that-dont-exist-and-if-we-do_71ywjikfvd6n6mp8/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/karenasfaralon-the-word-of-battle_fnxoda3zciivch5l/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/5/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/7/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/la-gran-tarea-lo-complejo-de-lo-que-me-doy-cuenta-justo-ahora-es-que-la_uceyrqwaoqq6622p/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/la-luz-del-viento_znj4fh5n8va1hfs8/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/las-noches-raramente-estan-en-silencio_uqbj7htj2ahhwpn0/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/los-humanos-somos-siluetas-en-la-eternidad_mjvk7rxb3i03zo7f/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/los-tramites-de-la-muerte_tmf4hs5b60szphfz/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/luz-i-may-not-know-you-but-i-know-your-spirit-maybe-our-spirit_kly8095q94hs7dzy/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/my-heart-hurts-and-there-is-nothing-for-the-ominous-pain_434jsrjlbd9laqh2/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/my-mind-completely-in-blank_58g6zojhbosshxys/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/my-only-sin-was-making-you-love-me_2f49pl2hqmc7alh4/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/one-of-the-characteristics-of-life-is-death-everything-that-lives-in-this_3nd93ha6arzkf9hi/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/6/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/8/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/outside-the-tao-outside-the-dharma-released-from-the-ties-of-destiny-at_3xg9xiua621jfxw8/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/ox_fpsgr5jtx5l0bk9z/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/read-the-tide_ti1xd5ixs56ih36b/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/reality-disolves-everyday_7mfugafryu4b1jxk/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/reflexion_f8yt8rl9ceiawg46/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/silence_hcie77ain8zf5i6w/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/sin-suenos-sin-viento_isd5zt3jlmxldh15/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/sobre-suicidio_ffyb8joimo8ylb22/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/some-dreams_0f6rjd1tbkjx00ny/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/the-classroom-the-rocketman-and-the-moon_6xxo4hzwxu8vqkr2/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/7/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/9/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<link
rel="alternate"
type="application/rss&#43;xml"
href="https://gemini.novoa.nagoya/blog/cyberespacio/index.xml"
title="The void of my mind"
/>
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/" />
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/the-dawn-of-misery_2v2rggtoprvb6dg0/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/the-mistress-of-mystery_7vmo1rzm1iycujzx/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/the-problem-with-skinner-conductivism_qiwmodulvfnbm1i1/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/the-withered-flower_90b0a40zl6f31sfz/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/there-is-a-burning-fire-incandescent-yet-finite-its-consuming-me-and-my_3znflndc5vycro21/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/there-is-no-punishment-and-there-is-no-price-just-be-who-you-are-be-genuine_gwmqouuw6apt55e0/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/this-was-probably-a-dream-i-forgot-to-write_0iqls47euvk27uq7/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/un-dia-azul-un-dia-soleado_2acnugv26r83gf09/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/un-dia-sin-sombras-una-noche-sin-oscuridad-que-falta-porque-mi-vacio-no-es_wo639kv8wmxqrco6/"></a>
</section>
<section class="relative my-10 first-of-type:mt-0 last-of-type:mb-0">
<h2 class="!my-0 pb-1 !leading-none"></h2>
<time class="text-sm opacity-60"
>Jan 1, 1</time
>
<a class="absolute inset-0" href="https://gemini.novoa.nagoya/blog/cyberespacio/un-mundo-con-una-paz-absurda_0zon5521zb91msmp/"></a>
</section>
<nav class="mt-24 flex">
<a class="btn" href="/blog/cyberespacio/page/8/">← Prev Page</a>
<a class="btn ml-auto" href="/blog/cyberespacio/page/10/"
>Next Page →</a
>
</nav>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,294 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Un llamado a la realidad compartida - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Quiero compartir mi realidad contigo, pero antes de hacerlo quiero estar seguro de que es algo que también deseas. Quiero que sea una unión, no un arrebato.
The question is&hellip; do you want to share yours with mine?" />
<meta
name="author"
content="Lumin"
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="Un llamado a la realidad compartida" />
<meta property="og:description" content="Quiero compartir mi realidad contigo, pero antes de hacerlo quiero estar seguro de que es algo que también deseas. Quiero que sea una unión, no un arrebato.
The question is&hellip; do you want to share yours with mine?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/quiero-compartir-mi-realidad-contigo-pero-antes-de-hacerlo-quiero-estar-seguro_ta17u8igszirnydh/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="Un llamado a la realidad compartida">
<meta itemprop="description" content="Quiero compartir mi realidad contigo, pero antes de hacerlo quiero estar seguro de que es algo que también deseas. Quiero que sea una unión, no un arrebato.
The question is&hellip; do you want to share yours with mine?">
<meta itemprop="wordCount" content="39">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Un llamado a la realidad compartida"/>
<meta name="twitter:description" content="Quiero compartir mi realidad contigo, pero antes de hacerlo quiero estar seguro de que es algo que también deseas. Quiero que sea una unión, no un arrebato.
The question is&hellip; do you want to share yours with mine?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5">Un llamado a la realidad compartida</h1>
<div class="text-sm opacity-60">
<span class="mx-1">&middot;</span>
<span>Lumin</span>
</div>
</header>
<section><p>Quiero compartir mi realidad contigo, pero antes de hacerlo quiero estar seguro de que es algo que tú también deseas. Quiero que sea una unión, no un arrebato.</p>
<p>The question is&hellip; do you want to share yours with mine?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/you-had-many-chances-at-living-but-you-lost-them-all_ambarc8x3nk0dagq/"
><span class="mr-1.5"></span><span></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,397 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Read the tide Surf above Dive below
It is always dark Is it an infinite darkness? A dragon soul screaming in the wild I feel like I am loosing it all Sweetest prison, sweetest cell A wrenching roar It hurts, all my vision now in black and grey Only thing I feel now is pain
Will I be able to save her? I am now blind and broken And silence as usual is all I get How do we change?" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Read the tide Surf above Dive below
It is always dark Is it an infinite darkness? A dragon soul screaming in the wild I feel like I am loosing it all Sweetest prison, sweetest cell A wrenching roar It hurts, all my vision now in black and grey Only thing I feel now is pain
Will I be able to save her? I am now blind and broken And silence as usual is all I get How do we change?" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/read-the-tide_ti1xd5ixs56ih36b/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Read the tide Surf above Dive below
It is always dark Is it an infinite darkness? A dragon soul screaming in the wild I feel like I am loosing it all Sweetest prison, sweetest cell A wrenching roar It hurts, all my vision now in black and grey Only thing I feel now is pain
Will I be able to save her? I am now blind and broken And silence as usual is all I get How do we change?">
<meta itemprop="wordCount" content="567">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Read the tide Surf above Dive below
It is always dark Is it an infinite darkness? A dragon soul screaming in the wild I feel like I am loosing it all Sweetest prison, sweetest cell A wrenching roar It hurts, all my vision now in black and grey Only thing I feel now is pain
Will I be able to save her? I am now blind and broken And silence as usual is all I get How do we change?"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Read the tide
Surf above
Dive below</p>
<p>It is always dark
Is it an infinite darkness?
A dragon soul screaming in the wild
I feel like I am loosing it all
Sweetest prison, sweetest cell
A wrenching roar
It hurts, all my vision now in black and grey
Only thing I feel now is pain</p>
<p>Will I be able to save her?
I am now blind and broken
And silence as usual is all I get
How do we change?
How do I change?
Are things stale because I am not changing?
Is the silence made by my own inaction?
All I hear is my muted screams into the void</p>
<p>It looks similar but it isn&rsquo;t the same
They are echoes of different events
Of different worlds, of different lives
And way even beyond of that
In the sea of the unseen, I see her
Slips of what I think is her
Is this just me associating or is this real
I lay defeated in my bed remembering the past days
And there is no one to lay beside me
All, really truly alone in my echo-chamber of emotions</p>
<p>&ldquo;I know who you pretend I am&rdquo;
&ldquo;Why not me?&rdquo;
&ldquo;Why not me?&rdquo;</p>
<p>There is no or else
There is no looming threat
There is only the now
Stripped of all clothing, of all masks
What is the thing that remains
When there is no you anymore
What is your essence?
What is your spirit?</p>
<p>&ldquo;I&rdquo; transcend, but there is no I
Concept of persona is no longer important
It no longer exists, yet something does
The spirit, the soul, which is not another ego
There is only the mind
There are no limits
Imagination takes away my dissolved being
And from a total perspective into one I come again
But I am now another, I am not what I used to be
I changed, I ceased to be and I was again
Another ego, another persona
The ever shifting nature of the soul
Yet it being the only thing that remains constant
Its own change</p>
<p>Yet the question remains
Can I save her of her own mind?
I am willing to do it, I always was
I exist for no reason
I am a wildcard, always was
That is my role
That is my spirit
Freedom
Uncertainty
Fear
Chaos
Awe</p>
<p>There is no destiny, there is nothing set
Oh fearful star, what are we gonna do now?
I am saving her or am I just making it worse?
Should I just let go?</p>
<p>In reality my saving are just my own ideas
But are not others ideas already a influence
I have doubts about me and my path.. but
I trust my body
I trust my nature
I trust my guts
I trust my will
I trust my spirit
I trust my world and my ideas
They are my own
I reached them through experience
It is my mental world
It is a senseless mess
But it is not a bought ideology
And even less it is a stapled construct
It is personal
It is human
It is not an established institution
Can they say the same?</p>
<p>I trust myself, but I am lacking conviction
I need something else
Something is missing
My strength
Why is it missing?
How do I get it back?</p>
<p>Maybe another sight
At the marvels of eternity
Is what is in place</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/ox_fpsgr5jtx5l0bk9z/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/reality-disolves-everyday_7mfugafryu4b1jxk/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,292 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Reality disolves everyday." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Reality disolves everyday." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/reality-disolves-everyday_7mfugafryu4b1jxk/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Reality disolves everyday.">
<meta itemprop="wordCount" content="3">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Reality disolves everyday."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Reality disolves everyday.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/read-the-tide_ti1xd5ixs56ih36b/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/reflexion_f8yt8rl9ceiawg46/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,303 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Reflexión
En los años recientes ahora que soy consciente de mi misma persona y en lo que va más allá de ella me he dado cuenta de todos los errores que he cometido en mi vida, o en otras palabras de todas mis oportunidades perdidas.
Siento que tuve una infancia y una juventud desperdiciada o nunca llevada a cabo como debería haberlo hecho. Mi ser mi consciencia estaba solo enfocada en mi ego y sus designios, ignorando por completo las ansias de mi espíritu y mi propia alma, si hubiera realizado acciones distintas en el pasado, acciones que aliviaran mi alma y espíritu mi vida sería mucho más plena ahora, mucho más completa, habría vivido mi propia vida en profundidad y vigorosidad, me sentiría el día de hoy completamente vivo y con toda la fuerza de mi ser, en vez de la enclenque versión de mi que soy ahora&hellip; mi juventud arrebatada por mi mismo y mi propia cobardía." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Reflexión
En los años recientes ahora que soy consciente de mi misma persona y en lo que va más allá de ella me he dado cuenta de todos los errores que he cometido en mi vida, o en otras palabras de todas mis oportunidades perdidas.
Siento que tuve una infancia y una juventud desperdiciada o nunca llevada a cabo como debería haberlo hecho. Mi ser mi consciencia estaba solo enfocada en mi ego y sus designios, ignorando por completo las ansias de mi espíritu y mi propia alma, si hubiera realizado acciones distintas en el pasado, acciones que aliviaran mi alma y espíritu mi vida sería mucho más plena ahora, mucho más completa, habría vivido mi propia vida en profundidad y vigorosidad, me sentiría el día de hoy completamente vivo y con toda la fuerza de mi ser, en vez de la enclenque versión de mi que soy ahora&hellip; mi juventud arrebatada por mi mismo y mi propia cobardía." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/reflexion_f8yt8rl9ceiawg46/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Reflexión
En los años recientes ahora que soy consciente de mi misma persona y en lo que va más allá de ella me he dado cuenta de todos los errores que he cometido en mi vida, o en otras palabras de todas mis oportunidades perdidas.
Siento que tuve una infancia y una juventud desperdiciada o nunca llevada a cabo como debería haberlo hecho. Mi ser mi consciencia estaba solo enfocada en mi ego y sus designios, ignorando por completo las ansias de mi espíritu y mi propia alma, si hubiera realizado acciones distintas en el pasado, acciones que aliviaran mi alma y espíritu mi vida sería mucho más plena ahora, mucho más completa, habría vivido mi propia vida en profundidad y vigorosidad, me sentiría el día de hoy completamente vivo y con toda la fuerza de mi ser, en vez de la enclenque versión de mi que soy ahora&hellip; mi juventud arrebatada por mi mismo y mi propia cobardía.">
<meta itemprop="wordCount" content="255">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Reflexión
En los años recientes ahora que soy consciente de mi misma persona y en lo que va más allá de ella me he dado cuenta de todos los errores que he cometido en mi vida, o en otras palabras de todas mis oportunidades perdidas.
Siento que tuve una infancia y una juventud desperdiciada o nunca llevada a cabo como debería haberlo hecho. Mi ser mi consciencia estaba solo enfocada en mi ego y sus designios, ignorando por completo las ansias de mi espíritu y mi propia alma, si hubiera realizado acciones distintas en el pasado, acciones que aliviaran mi alma y espíritu mi vida sería mucho más plena ahora, mucho más completa, habría vivido mi propia vida en profundidad y vigorosidad, me sentiría el día de hoy completamente vivo y con toda la fuerza de mi ser, en vez de la enclenque versión de mi que soy ahora&hellip; mi juventud arrebatada por mi mismo y mi propia cobardía."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Reflexión</p>
<p>En los años recientes ahora que soy consciente de mi misma persona y en lo que va más allá de ella me he dado cuenta de todos los errores que he cometido en mi vida, o en otras palabras de todas mis oportunidades perdidas.</p>
<p>Siento que tuve una infancia y una juventud desperdiciada o nunca llevada a cabo como debería haberlo hecho. Mi ser mi consciencia estaba solo enfocada en mi ego y sus designios, ignorando por completo las ansias de mi espíritu y mi propia alma, si hubiera realizado acciones distintas en el pasado, acciones que aliviaran mi alma y espíritu mi vida sería mucho más plena ahora, mucho más completa, habría vivido mi propia vida en profundidad y vigorosidad, me sentiría el día de hoy completamente vivo y con toda la fuerza de mi ser, en vez de la enclenque versión de mi que soy ahora&hellip; mi juventud arrebatada por mi mismo y mi propia cobardía.</p>
<p>Aveces tienes que hacer lo más contraintuitivo, lo más insensato, al margen de la locura para aliviar los anhelos de tu alma y espíritu, estos aveces gritan sangre y violencia y hay que dárselos, es lo natural, lo justo, las reglas que preceden al hombre y sus leyes, las reglas del universo, por las que todo lo que existe aquí es regido, lo que se siente bien y sacia el espíritu y el alma. Has entonces sólo lo que te haga sentir bien, pero debes saber que esto llamara al conflicto y estar preparado para ello.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/reality-disolves-everyday_7mfugafryu4b1jxk/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/silence_hcie77ain8zf5i6w/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,343 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Silence Silence Silence Why does she always leaves when I arrive&hellip; What have I done? What haven&rsquo;t I done? Is it my fault? Is it something that I am unable to see? I feel the machinations The constructs of nefarious ideas Are they mine in origin? I won&rsquo;t let it harm her But I don&rsquo;t know how to stop it
I have seen the possibilities of our worlds A glimpse of it to be precise I however don&rsquo;t know how to transmit my vision Maybe I shouldn&rsquo;t Maybe she has to find her own way of experiencing our worlds" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Silence Silence Silence Why does she always leaves when I arrive&hellip; What have I done? What haven&rsquo;t I done? Is it my fault? Is it something that I am unable to see? I feel the machinations The constructs of nefarious ideas Are they mine in origin? I won&rsquo;t let it harm her But I don&rsquo;t know how to stop it
I have seen the possibilities of our worlds A glimpse of it to be precise I however don&rsquo;t know how to transmit my vision Maybe I shouldn&rsquo;t Maybe she has to find her own way of experiencing our worlds" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/silence_hcie77ain8zf5i6w/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Silence Silence Silence Why does she always leaves when I arrive&hellip; What have I done? What haven&rsquo;t I done? Is it my fault? Is it something that I am unable to see? I feel the machinations The constructs of nefarious ideas Are they mine in origin? I won&rsquo;t let it harm her But I don&rsquo;t know how to stop it
I have seen the possibilities of our worlds A glimpse of it to be precise I however don&rsquo;t know how to transmit my vision Maybe I shouldn&rsquo;t Maybe she has to find her own way of experiencing our worlds">
<meta itemprop="wordCount" content="271">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Silence Silence Silence Why does she always leaves when I arrive&hellip; What have I done? What haven&rsquo;t I done? Is it my fault? Is it something that I am unable to see? I feel the machinations The constructs of nefarious ideas Are they mine in origin? I won&rsquo;t let it harm her But I don&rsquo;t know how to stop it
I have seen the possibilities of our worlds A glimpse of it to be precise I however don&rsquo;t know how to transmit my vision Maybe I shouldn&rsquo;t Maybe she has to find her own way of experiencing our worlds"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Silence
Silence
Silence
Why does she always leaves when I arrive&hellip;
What have I done?
What haven&rsquo;t I done?
Is it my fault?
Is it something that I am unable to see?
I feel the machinations
The constructs of nefarious ideas
Are they mine in origin?
I won&rsquo;t let it harm her
But I don&rsquo;t know how to stop it</p>
<p>I have seen the possibilities of our worlds
A glimpse of it to be precise
I however don&rsquo;t know how to transmit my vision
Maybe I shouldn&rsquo;t
Maybe she has to find her own way of experiencing our worlds</p>
<p>There is something I want to say however
Things did changed
And not for the better
I sense an internal war that has no meaning
No purpose, no reason to be
Is not even my war but I am in it
And everyone is hurting each other
Alleged reasons and broken hearts
And as I was in the war she got caught in it
A casualty or a warrior
Only she can decide her own fate
I can help her
I can guide her with all my mistakes
But she has to snap out of it herself
And she needs to break the silence
I can lend her my eyes to see beyond
But you can only save your own</p>
<p>I am here, not there
I do not save
I protect
I guide and rise
If I were there
A life we would share
My body, all yours
Your body, all mine
Into one we would melt
And from the ashes
We both shall arise
Please get up
And stand with me</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/reflexion_f8yt8rl9ceiawg46/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/sin-suenos-sin-viento_isd5zt3jlmxldh15/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,295 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Sin sueños, sin viento La marea azul sin aliento Un último suspiro de libertad Es la muerte final en verdad" />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Sin sueños, sin viento La marea azul sin aliento Un último suspiro de libertad Es la muerte final en verdad" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/sin-suenos-sin-viento_isd5zt3jlmxldh15/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Sin sueños, sin viento La marea azul sin aliento Un último suspiro de libertad Es la muerte final en verdad">
<meta itemprop="wordCount" content="20">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Sin sueños, sin viento La marea azul sin aliento Un último suspiro de libertad Es la muerte final en verdad"/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Sin sueños, sin viento
La marea azul sin aliento
Un último suspiro de libertad
Es la muerte final en verdad</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/silence_hcie77ain8zf5i6w/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/sobre-suicidio_ffyb8joimo8ylb22/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,303 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Sobre suicidio&hellip;
No sabía porque mi comportamiento era como el del viento&hellip; nómada, un viajero, y sin embargo estancado en este lugar no me gusta dejar raíces, porque nunca permaneceré en un sitio por mucho tiempo, porque mi hogar es el camino.
No tengo miedo ni problema con que la vida no tenga ningún sentido, de hecho estoy completamente de acuerdo con eso, desde una perspectiva de diseño me parece una decisión excelente." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Sobre suicidio&hellip;
No sabía porque mi comportamiento era como el del viento&hellip; nómada, un viajero, y sin embargo estancado en este lugar no me gusta dejar raíces, porque nunca permaneceré en un sitio por mucho tiempo, porque mi hogar es el camino.
No tengo miedo ni problema con que la vida no tenga ningún sentido, de hecho estoy completamente de acuerdo con eso, desde una perspectiva de diseño me parece una decisión excelente." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/sobre-suicidio_ffyb8joimo8ylb22/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Sobre suicidio&hellip;
No sabía porque mi comportamiento era como el del viento&hellip; nómada, un viajero, y sin embargo estancado en este lugar no me gusta dejar raíces, porque nunca permaneceré en un sitio por mucho tiempo, porque mi hogar es el camino.
No tengo miedo ni problema con que la vida no tenga ningún sentido, de hecho estoy completamente de acuerdo con eso, desde una perspectiva de diseño me parece una decisión excelente.">
<meta itemprop="wordCount" content="433">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Sobre suicidio&hellip;
No sabía porque mi comportamiento era como el del viento&hellip; nómada, un viajero, y sin embargo estancado en este lugar no me gusta dejar raíces, porque nunca permaneceré en un sitio por mucho tiempo, porque mi hogar es el camino.
No tengo miedo ni problema con que la vida no tenga ningún sentido, de hecho estoy completamente de acuerdo con eso, desde una perspectiva de diseño me parece una decisión excelente."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Sobre suicidio&hellip;</p>
<p>No sabía porque mi comportamiento era como el del viento&hellip; nómada, un viajero, y sin embargo estancado en este lugar no me gusta dejar raíces, porque nunca permaneceré en un sitio por mucho tiempo, porque mi hogar es el camino.</p>
<p>No tengo miedo ni problema con que la vida no tenga ningún sentido, de hecho estoy completamente de acuerdo con eso, desde una perspectiva de diseño me parece una decisión excelente. La vida, en esta realidad, en este mundo, un sandbox en el que puedes hacer lo que quieras con los materiales dados por tu cuerpo y por el propio mundo, es un poco incredible, pero vaya que ha sido tan corrompido y trastornado, lo que era un juego de niños, esta vida humana, o vida en general en este planeta, en este universo, un juego de descubrimiento interno y externo&hellip; ha cambiado al menos para la perspectiva del humano a&hellip; no sé ¿Porqué siquiera trabajamos? ¿Porqué siquiera vivimos? Es decir ya se que no hay propósito y eso esta bien, pero aún así atribuimos valor, al dinero y vivimos y morimos por él ¿Porqué? Lo peor de todo es que de una valencia neutra de existencia o vida, es decir siempre estamos persiguiendo algo, vivir entonces no esta dado por defecto y debe ser algo alcanzable&hellip; y esta bien si esto es bajo las propias leyes naturales de flujo energético (alimentación, desechos etc.), pero no es así, ya no más para el humano, no somo ya regidos por estas leyes, no hay caza, no hay recolección no hay desarrollo por vivir, nos hemos creado una casa de instituciones que suplantan nuestras necesidades naturales y en cambio nos dan &hellip; ¿? ¿seguridad? o eso es lo que venden, la verdad es que no nos otorgan nada, sino nos lo venden a cambio de nuestra propia vida, de nuestra propia experiencia humana, usando la moneda y ese, es un mundo, una idea en la que no estoy dispuesto a vivir, pues lo único que existe es la miseria y no estoy seguro siquiera que el deseo pueda anteponerse a ella.</p>
<p>A lo que me refiero con el deseo es a lo que nos motiva a vivir, lo que provoca que queramos existir, de nuevo esta bien si lo que existe es un vacío, pues es valencia neutra, pero si eres forzado a vivir, a existir y tu no estas haciendo una elección al hacerlo, te encontrarías de nuevo en el espectro negativo de la existencia. Como ahora, ¿porque vivimos ademas de los frutos que nos han dado estas superestructuras humanas, estas instituciones?</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/sin-suenos-sin-viento_isd5zt3jlmxldh15/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/some-dreams_0f6rjd1tbkjx00ny/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,306 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="Some dreams I dreamed I was a vampire #dreamjournal
It is cold, my eskimo suit is on and I am still trembling, I do not dislike this, I love the rain, I love the freshness and I don&rsquo;t want it to stop, it has been so long since an actual rainy summer.
On this night, almost early in the morning&hellip; my dreams are the one of a vampire, I find myself on an alley it is a crepuscular time, not quite night, but there isn&rsquo;t any imposing sun casting shadows, yet I encounter myself with a very dark figure, I do not know who this is, but we have a exchange of words, of ideas, and he gives me a look of worthiness, then under his cape he reveals himself, it is like a vampire and he gives me one dark thing dropping off his arm/wing, I take it." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="Some dreams I dreamed I was a vampire #dreamjournal
It is cold, my eskimo suit is on and I am still trembling, I do not dislike this, I love the rain, I love the freshness and I don&rsquo;t want it to stop, it has been so long since an actual rainy summer.
On this night, almost early in the morning&hellip; my dreams are the one of a vampire, I find myself on an alley it is a crepuscular time, not quite night, but there isn&rsquo;t any imposing sun casting shadows, yet I encounter myself with a very dark figure, I do not know who this is, but we have a exchange of words, of ideas, and he gives me a look of worthiness, then under his cape he reveals himself, it is like a vampire and he gives me one dark thing dropping off his arm/wing, I take it." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/some-dreams_0f6rjd1tbkjx00ny/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="Some dreams I dreamed I was a vampire #dreamjournal
It is cold, my eskimo suit is on and I am still trembling, I do not dislike this, I love the rain, I love the freshness and I don&rsquo;t want it to stop, it has been so long since an actual rainy summer.
On this night, almost early in the morning&hellip; my dreams are the one of a vampire, I find myself on an alley it is a crepuscular time, not quite night, but there isn&rsquo;t any imposing sun casting shadows, yet I encounter myself with a very dark figure, I do not know who this is, but we have a exchange of words, of ideas, and he gives me a look of worthiness, then under his cape he reveals himself, it is like a vampire and he gives me one dark thing dropping off his arm/wing, I take it.">
<meta itemprop="wordCount" content="389">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="Some dreams I dreamed I was a vampire #dreamjournal
It is cold, my eskimo suit is on and I am still trembling, I do not dislike this, I love the rain, I love the freshness and I don&rsquo;t want it to stop, it has been so long since an actual rainy summer.
On this night, almost early in the morning&hellip; my dreams are the one of a vampire, I find myself on an alley it is a crepuscular time, not quite night, but there isn&rsquo;t any imposing sun casting shadows, yet I encounter myself with a very dark figure, I do not know who this is, but we have a exchange of words, of ideas, and he gives me a look of worthiness, then under his cape he reveals himself, it is like a vampire and he gives me one dark thing dropping off his arm/wing, I take it."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>Some dreams
I dreamed I was a vampire
#dreamjournal</p>
<p>It is cold, my eskimo suit is on and I am still trembling, I do not dislike this, I love the rain, I love the freshness and I don&rsquo;t want it to stop, it has been so long since an actual rainy summer.</p>
<p>On this night, almost early in the morning&hellip; my dreams are the one of a vampire, I find myself on an alley it is a crepuscular time, not quite night, but there isn&rsquo;t any imposing sun casting shadows, yet I encounter myself with a very dark figure, I do not know who this is, but we have a exchange of words, of ideas, and he gives me a look of worthiness, then under his cape he reveals himself, it is like a vampire and he gives me one dark thing dropping off his arm/wing, I take it.</p>
<p>Later on the dream it is as if I were playing a game, defeating enemies and surpassing obstacles I reach the very last level, I have many powers like speed and strength, vision and enhanced senses. The last level is just a circle and on the other extreme there is a wide beast, a completely white vampire, and along side there is a young white man, just like Alucard from Castelvania.</p>
<p>The beast as soon as I was in the middle of the circle charged unto me, it could not defeat me, not even touched me, there was like a field or a force repealing his attacks, then I sensed the fear in his eyes, in his own body and aura, it immediately knew the only thing that could prevent him form attacking was his former master, it was very confused and afraid, it retreated. The Alucard dude noticed, and came quickly close to me in an instant, he was intrigued by me was just walking in circles around, until he stopped once he figured out what I was. I was mantling his father, or the other but without being it, I was just wearing a suit of power (the dark goo) enhanced and compatible with my own will, he acknowledged that I wasn&rsquo;t the previous bearer thus no sin was on my spirit nor in my soul, I woke up now with memories and somehow related now to Alucard.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/sobre-suicidio_ffyb8joimo8ylb22/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/the-classroom-the-rocketman-and-the-moon_6xxo4hzwxu8vqkr2/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,308 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="The classroom, the rocketman and the moon. A dream
I feel like writing this in spanish so feel free to omit it or use a translator.
Al despertar me he quedado con la memoria de los sueños pero he decidido no ir directamente a escribirlo, no estoy seguro porque, no lo sentía como algo apremiante y al mismo tiempo todos los contenidos ya los había descifrado así que no había razón más alguna que compartirlos, eran sueños fantásticos e increíbles y he decidido quedarme con la memoria ya olvidada de ellos y apreciar ese momento que ya no existe con todas sus sensaciones y contenidos a forzarme a cimentarlo y pegarlo a un pedazo de texto digital." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="The classroom, the rocketman and the moon. A dream
I feel like writing this in spanish so feel free to omit it or use a translator.
Al despertar me he quedado con la memoria de los sueños pero he decidido no ir directamente a escribirlo, no estoy seguro porque, no lo sentía como algo apremiante y al mismo tiempo todos los contenidos ya los había descifrado así que no había razón más alguna que compartirlos, eran sueños fantásticos e increíbles y he decidido quedarme con la memoria ya olvidada de ellos y apreciar ese momento que ya no existe con todas sus sensaciones y contenidos a forzarme a cimentarlo y pegarlo a un pedazo de texto digital." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/the-classroom-the-rocketman-and-the-moon_6xxo4hzwxu8vqkr2/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="The classroom, the rocketman and the moon. A dream
I feel like writing this in spanish so feel free to omit it or use a translator.
Al despertar me he quedado con la memoria de los sueños pero he decidido no ir directamente a escribirlo, no estoy seguro porque, no lo sentía como algo apremiante y al mismo tiempo todos los contenidos ya los había descifrado así que no había razón más alguna que compartirlos, eran sueños fantásticos e increíbles y he decidido quedarme con la memoria ya olvidada de ellos y apreciar ese momento que ya no existe con todas sus sensaciones y contenidos a forzarme a cimentarlo y pegarlo a un pedazo de texto digital.">
<meta itemprop="wordCount" content="499">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="The classroom, the rocketman and the moon. A dream
I feel like writing this in spanish so feel free to omit it or use a translator.
Al despertar me he quedado con la memoria de los sueños pero he decidido no ir directamente a escribirlo, no estoy seguro porque, no lo sentía como algo apremiante y al mismo tiempo todos los contenidos ya los había descifrado así que no había razón más alguna que compartirlos, eran sueños fantásticos e increíbles y he decidido quedarme con la memoria ya olvidada de ellos y apreciar ese momento que ya no existe con todas sus sensaciones y contenidos a forzarme a cimentarlo y pegarlo a un pedazo de texto digital."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>The classroom, the rocketman and the moon.
A dream</p>
<p>I feel like writing this in spanish so feel free to omit it or use a translator.</p>
<p>Al despertar me he quedado con la memoria de los sueños pero he decidido no ir directamente a escribirlo, no estoy seguro porque, no lo sentía como algo apremiante y al mismo tiempo todos los contenidos ya los había descifrado así que no había razón más alguna que compartirlos, eran sueños fantásticos e increíbles y he decidido quedarme con la memoria ya olvidada de ellos y apreciar ese momento que ya no existe con todas sus sensaciones y contenidos a forzarme a cimentarlo y pegarlo a un pedazo de texto digital.. aún recuerdo un poco, son como pequeñas trazas de visiones&hellip; no se aún si debería escribirlo.</p>
<p>Part one, the classroom</p>
<p>Me encuentro en un salón, hay chica, no conozco su rostro, no lo recuerdo, no solo somos nosotros dos pero ella parece ser una amiga y la única persona a la que le tomo importancia, por dentro el salón se parece un poco a los de mi primaria, tabiques cafés como barnizados color canela dulce, un poco de blanco, ventanas en la parte de arriba lateral, por fuera los mismos colores estamos en un pequeño edifico de dos pisos en el que hay ocho salones en total, incluyendo un par de oficinas, una por cada piso, yo estoy en el salón justo antes de la oficina el penúltimo y parece que estamos tomando un examen o.. es la revisión de un examen? De cualquier manera la chica con la que sueño lo pasa y es curioso porque creo que es la novia de un amigo y saber que ella lo pasa me da certeza de que yo también lo haré, esto quizás va relacionado un poco al estrés que tengo por los próximos días.</p>
<p>Part two the moon and the spaceship</p>
<p>Después del sueño anterior transiciono a otra mascará ahora yo soy Gordon Freeman (si el tipo de Half Life, un poco irónico también) y también esta Alyx, pero no es la del juego, es&hellip; se siente como una persona real que conozco, no recuerdo mucho de esto, siento que la debía rescatar, no espera, recuerdo ahora, no era Gordon Freeman, yo era Spike y ella era Faye, y estábamos en lados opuestos de la nave o una estación espacial infestada con zombies mutantes radioactivos alienigenas o algo así, recuerdo que brillaban de verde fosforescente en algunas partes, como si tuvieran baras radioactivas saliendo de ellos o como si algunas partes de su cuerpo brillaran. No recuerdo mucho más que eso y que había un gran problema sobre el riesgo que ambos corríamos pero no nos importaba al final nos encontramos y nos abrazamos y recordé esa escena del anime donde Spike se marcha y Faye intenta detenerlo.</p>
<p>Y creo que había una tercera parte pero ya ni estoy seguro, quizás he mezclado las 2 últimas ahora, si logro recordarlo lo escribiré.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/some-dreams_0f6rjd1tbkjx00ny/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/the-dawn-of-misery_2v2rggtoprvb6dg0/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

View File

@ -0,0 +1,297 @@
<!DOCTYPE html>
<html
class="not-ready text-sm lg:text-base"
style="--bg: #faf6f1"
lang="es-mx"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title> - The void of my mind</title>
<meta name="theme-color" />
<meta name="description" content="The dawn of misery
I legit forgot about this." />
<meta
name="author"
content=""
/>
<link rel="preload stylesheet" as="style" href="https://gemini.novoa.nagoya/main.min.css" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/theme.png" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/mastodon.svg" />
<link rel="preload" as="image" href="https://gemini.novoa.nagoya/rss.svg" />
<link rel="icon" href="https://gemini.novoa.nagoya/favicon.ico" />
<link rel="apple-touch-icon" href="https://gemini.novoa.nagoya/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.110.0">
<meta property="og:title" content="" />
<meta property="og:description" content="The dawn of misery
I legit forgot about this." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://gemini.novoa.nagoya/blog/cyberespacio/the-dawn-of-misery_2v2rggtoprvb6dg0/" /><meta property="article:section" content="blog" />
<meta itemprop="name" content="">
<meta itemprop="description" content="The dawn of misery
I legit forgot about this.">
<meta itemprop="wordCount" content="9">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content="The dawn of misery
I legit forgot about this."/>
</head>
<body class="text-black duration-200 ease-out dark:text-white">
<header class="mx-auto flex h-[5rem] max-w-3xl px-8 lg:justify-center">
<div class="relative z-50 mr-auto flex items-center">
<a
class="-translate-x-[1px] -translate-y-0.5 text-3xl font-bold"
href="https://gemini.novoa.nagoya/"
>The void of my mind</a
>
<a
class="btn-dark ml-6 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]"
></a>
</div>
<a
class="btn-menu relative z-50 -mr-8 flex h-[5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
></a>
<script>
const htmlClass = document.documentElement.classList;
setTimeout(() => {
htmlClass.remove('not-ready');
}, 10);
const btnMenu = document.querySelector('.btn-menu');
btnMenu.addEventListener('click', () => {
htmlClass.toggle('open');
});
const metaTheme = document.querySelector('meta[name="theme-color"]');
const lightBg = `"#faf6f1"`.replace(/"/g, '');
const setDark = (isDark) => {
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
htmlClass[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark);
};
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
if (htmlClass.contains('dark')) {
setDark(true);
} else {
const darkVal = localStorage.getItem('dark');
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
}
darkScheme.addEventListener('change', (event) => {
setDark(event.matches);
});
const btnDark = document.querySelector('.btn-dark');
btnDark.addEventListener('click', () => {
setDark(localStorage.getItem('dark') !== 'true');
});
</script>
<div
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
>
<nav
class="mt-12 flex justify-center space-x-10 dark:invert lg:mt-0 lg:ml-12 lg:items-center lg:space-x-6"
>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./mastodon.svg)"
href="https://novoa.nagoya/@sarvo"
target="_blank"
rel="me"
></a>
<a
class="h-8 w-8 [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6"
style="--url: url(./rss.svg)"
href="https://gemini.novoa.nagoya/index.xml"
target="_blank"
></a>
</nav>
</div>
</header>
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-10rem)] max-w-3xl px-8 pt-20 pb-32 dark:prose-invert"
>
<article>
<header class="mb-20">
<h1 class="!my-0 pb-2.5"></h1>
<div class="text-sm opacity-60">
</div>
</header>
<section><p>The dawn of misery</p>
<p>I legit forgot about this.</p>
</section>
<nav class="mt-24 flex rounded-lg bg-black/[3%] text-lg dark:bg-white/[8%]">
<a
class="flex w-1/2 items-center rounded-l-md p-6 pr-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/the-classroom-the-rocketman-and-the-moon_6xxo4hzwxu8vqkr2/"
><span class="mr-1.5"></span><span></span></a
>
<a
class="ml-auto flex w-1/2 items-center justify-end rounded-r-md p-6 pl-3 no-underline hover:bg-black/[2%]"
href="https://gemini.novoa.nagoya/blog/cyberespacio/the-mistress-of-mystery_7vmo1rzm1iycujzx/"
><span></span><span class="ml-1.5"></span></a
>
</nav>
</article>
</main>
<footer
class="opaco mx-auto flex h-[5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60"
>
<div class="mr-auto">
&copy; 2023
<a class="link" href="https://gemini.novoa.nagoya/">The void of my mind</a>
</div>
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
>Powered by Hugo</a
>
<a
class="link"
href="https://github.com/nanxiaobei/hugo-paper"
rel="noopener"
target="_blank"
>▷ Paper 6</a
>
</footer>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More