From 9ca0faa29d87637831dc99a3c3e93bac8b77a15b Mon Sep 17 00:00:00 2001 From: kurets Date: Sat, 1 Apr 2023 15:39:34 +0300 Subject: [PATCH] add table of contents (premable "toc: true", scuffed --- new-site/config.toml | 5 +- .../content/blog/meta-description-in-hugo.md | 8 +-- .../blog/multiple-index-pages-in-hugo.md | 13 +++-- .../content/blog/recover-lost-anki-streak.md | 2 +- new-site/content/helloworld.md | 4 +- .../hackbook/00-00-HackbookEasyPeasy.md | 2 +- new-site/content/library/hackbook/_index.md | 4 +- ...echnological_System_Will_Destroy_Itself.md | 5 +- .../industrial-society-and-its-future.md | 2 +- new-site/public/blog/index.xml | 56 +++++++++---------- .../blog/meta-description-in-hugo/index.html | 16 +++--- .../multiple-index-pages-in-hugo/index.html | 21 ++++--- .../blog/recover-lost-anki-streak/index.html | 4 +- new-site/public/categories/index.xml | 56 +++++++++---------- new-site/public/helloworld/index.html | 8 +-- new-site/public/index.xml | 56 +++++++++---------- .../00-00-hackbookeasypeasy/index.html | 4 +- new-site/public/library/hackbook/index.html | 6 +- new-site/public/library/hackbook/index.xml | 56 +++++++++---------- new-site/public/library/index.xml | 56 +++++++++---------- .../public/library/ted-kaczynski/index.xml | 56 +++++++++---------- .../index.html | 36 +++++++++++- .../index.html | 13 +++-- new-site/public/tags/blog/index.xml | 56 +++++++++---------- new-site/public/tags/index.xml | 56 +++++++++---------- new-site/public/tags/updates/index.xml | 56 +++++++++---------- .../themes/lugo/layouts/_default/baseof.html | 1 + .../themes/lugo/layouts/shortcodes/toc.html | 1 + 28 files changed, 325 insertions(+), 334 deletions(-) create mode 100644 new-site/themes/lugo/layouts/shortcodes/toc.html diff --git a/new-site/config.toml b/new-site/config.toml index 460d8934..a834ded5 100644 --- a/new-site/config.toml +++ b/new-site/config.toml @@ -14,4 +14,7 @@ pluralizelisttitles = false [markup] [markup.goldmark] [markup.goldmark.renderer] - unsafe = true \ No newline at end of file + unsafe = true + [markup.tableOfContents] + endLevel = 4 + startLevel = 2 \ No newline at end of file diff --git a/new-site/content/blog/meta-description-in-hugo.md b/new-site/content/blog/meta-description-in-hugo.md index 6dec418e..7f697c5d 100644 --- a/new-site/content/blog/meta-description-in-hugo.md +++ b/new-site/content/blog/meta-description-in-hugo.md @@ -6,11 +6,11 @@ description: "This step by step guide will show you how to add meta description tags: ['blog'] --- -# Adding meta description in Hugo +## Adding meta description in Hugo I assume you are using Luke Smith's theme - Lugo, if you are not, you'd have to find these files yourself (e.g. search using vscode). -## Setting a global meta description +### Setting a global meta description 1. Locate your config.toml or config.yaml file @@ -30,7 +30,7 @@ params: It won't work just yet because you have to update the ```baseof.html``` file. -## Updating the baseof.html file +### Updating the baseof.html file 1. Locate baseof.html 2. Add or change the meta description line with the following @@ -40,7 +40,7 @@ It won't work just yet because you have to update the ```baseof.html``` file. And now if you start your Hugo server locally with ```hugo serve --noHTTPCache``` and you right click on your page -> View Page Source -> Search for the meta description tag. It should match what you left in the config file. -## Replacing the global description with a custom one +### Replacing the global description with a custom one 1. Have a markdown file ready 2. In the preamble, add diff --git a/new-site/content/blog/multiple-index-pages-in-hugo.md b/new-site/content/blog/multiple-index-pages-in-hugo.md index 8e6e2e9d..dbd2ad16 100644 --- a/new-site/content/blog/multiple-index-pages-in-hugo.md +++ b/new-site/content/blog/multiple-index-pages-in-hugo.md @@ -3,10 +3,11 @@ title: "Multiple Index Pages in Hugo" date: 2023-01-03T22:36:03+02:00 draft: false tags: ["blog"] +toc: true --- -{{% center %}} + ## This is how to create multiple index pages in Hugo -{{% /center %}} + I wanted to order [Hackbook](/hackbook) in reverse (i.e. oldest to newest) so that it's easier for the reader to start at the correct page. @@ -48,13 +49,13 @@ I named my file order by oldest because I plan on reusing it in other places. Th {{- end }} ``` -#### if you want to display the date on the left of the titles, you have to add **```datesinlist=true```** in your config.toml or **```datesinlist: true```** in your config.yaml +If you want to display the date on the left of the titles, you have to add **```datesinlist=true```** in your config.toml or **```datesinlist: true```** in your config.yaml + + +You probably don't need **```enableGitInfo = true```** as that will crash your website, I have no idea what it does, you don't need it. -##### You probably don't need **```enableGitInfo = true```** as that will crash your website, I have no idea what it does, you don't need it. -{{% center %}} ## Using your custom _index.html -{{% /center %}} After creating your custom _index.html you'd use it as follows: diff --git a/new-site/content/blog/recover-lost-anki-streak.md b/new-site/content/blog/recover-lost-anki-streak.md index 7c7ce6b6..f2dd8199 100644 --- a/new-site/content/blog/recover-lost-anki-streak.md +++ b/new-site/content/blog/recover-lost-anki-streak.md @@ -5,7 +5,7 @@ draft: false tags: ['blog'] --- -# How to recover a lost anki streak +## How to recover a lost anki streak Word for word copy paste of what fixed my issue. [Original post](https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&utm_medium=web2x&context=3) diff --git a/new-site/content/helloworld.md b/new-site/content/helloworld.md index b65f8af1..63c2688b 100644 --- a/new-site/content/helloworld.md +++ b/new-site/content/helloworld.md @@ -5,13 +5,13 @@ draft: false tags: ['updates'] --- -# Obligatory Hello World! +## Obligatory Hello World! trying to see which hugo theme i like best had some issues with papermod and their css not working so for now i'll use lugo -## stuff i like +### stuff i like - touching grass and nature in general (wannabe farmer) - にっぽんese diff --git a/new-site/content/library/hackbook/00-00-HackbookEasyPeasy.md b/new-site/content/library/hackbook/00-00-HackbookEasyPeasy.md index 4f4165fa..64f89765 100644 --- a/new-site/content/library/hackbook/00-00-HackbookEasyPeasy.md +++ b/new-site/content/library/hackbook/00-00-HackbookEasyPeasy.md @@ -6,7 +6,7 @@ draft: false {{% center %}} -# Click to download HackBookEasyPeasy (original pdf) +## Click to download HackBookEasyPeasy (original pdf) ### EasyPeasyWay #### [https://sites.google.com/site/hackbookeasypeasy/home](https://sites.google.com/site/hackbookeasypeasy/home) diff --git a/new-site/content/library/hackbook/_index.md b/new-site/content/library/hackbook/_index.md index d356e264..ed9d97f2 100644 --- a/new-site/content/library/hackbook/_index.md +++ b/new-site/content/library/hackbook/_index.md @@ -6,6 +6,6 @@ layout: "hackbook/order-by-oldest" --- {{% center %}} -# ![](/img/new_turning.gif) Click to download the original pdf ![](/img/new_turning.gif) -# ![](/img/new_turning.gif) Archive of the original google sites webpage ![](/img/new_turning.gif) +## ![](/img/new_turning.gif) Click to download the original pdf ![](/img/new_turning.gif) +## ![](/img/new_turning.gif) Archive of the original google sites webpage ![](/img/new_turning.gif) {{% /center %}} \ No newline at end of file diff --git a/new-site/content/library/ted-kaczynski/Why_the_Technological_System_Will_Destroy_Itself.md b/new-site/content/library/ted-kaczynski/Why_the_Technological_System_Will_Destroy_Itself.md index ac3602c1..31b08900 100644 --- a/new-site/content/library/ted-kaczynski/Why_the_Technological_System_Will_Destroy_Itself.md +++ b/new-site/content/library/ted-kaczynski/Why_the_Technological_System_Will_Destroy_Itself.md @@ -3,9 +3,10 @@ title: "Why the Technological System Will Destroy Itself" date: 2023-04-01T14:24:10+03:00 draft: false slug: "Why-the-Technological-System-Will-Destroy-Itself" +toc: true --- -# I. +## I. Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits. @@ -113,7 +114,7 @@ According to Ray Kurzweil, one common explanation of the Fermi Paradox is “tha Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process. -# II. +## II. Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.[^15] The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,[^16] let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies. diff --git a/new-site/content/library/ted-kaczynski/industrial-society-and-its-future.md b/new-site/content/library/ted-kaczynski/industrial-society-and-its-future.md index 98912947..00d7c5bb 100644 --- a/new-site/content/library/ted-kaczynski/industrial-society-and-its-future.md +++ b/new-site/content/library/ted-kaczynski/industrial-society-and-its-future.md @@ -2,7 +2,7 @@ title: "Industrial Society and Its Future " date: 2023-03-23T18:06:34+02:00 draft: false -nextprev: false +toc: true --- diff --git a/new-site/public/blog/index.xml b/new-site/public/blog/index.xml index f53c0168..9b71ef5f 100644 --- a/new-site/public/blog/index.xml +++ b/new-site/public/blog/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/blog/meta-description-in-hugo/index.html b/new-site/public/blog/meta-description-in-hugo/index.html index d6c76a62..158c4e74 100644 --- a/new-site/public/blog/meta-description-in-hugo/index.html +++ b/new-site/public/blog/meta-description-in-hugo/index.html @@ -17,12 +17,12 @@

Meta Description in Hugo

-

Adding meta description in Hugo +

Adding meta description in Hugo # -

I assume you are using Luke Smith’s theme - Lugo, if you are not, you’d have to find these files yourself (e.g. search using vscode).

-

Setting a global meta description +

I assume you are using Luke Smith’s theme - Lugo, if you are not, you’d have to find these files yourself (e.g. search using vscode).

+

Setting a global meta description # -

    +
    1. Locate your config.toml or config.yaml file
    2. Add the following line inside it
    @@ -33,17 +33,17 @@
    params:
       description: The global meta description of your website
     

    It won’t work just yet because you have to update the baseof.html file.

    -

    Updating the baseof.html file +

    Updating the baseof.html file # -

      +

    1. Locate baseof.html
    2. Add or change the meta description line with the following
    <meta name="description" content="{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}"/>
     

    And now if you start your Hugo server locally with hugo serve --noHTTPCache and you right click on your page -> View Page Source -> Search for the meta description tag. It should match what you left in the config file.

    -

    Replacing the global description with a custom one +

    Replacing the global description with a custom one # -

      +

    1. Have a markdown file ready
    2. In the preamble, add
    diff --git a/new-site/public/blog/multiple-index-pages-in-hugo/index.html b/new-site/public/blog/multiple-index-pages-in-hugo/index.html index 0862baf9..17350a24 100644 --- a/new-site/public/blog/multiple-index-pages-in-hugo/index.html +++ b/new-site/public/blog/multiple-index-pages-in-hugo/index.html @@ -20,11 +20,14 @@ layouts |----**_default** |-------**hackbook** |-----------**order-by-oldest."/>

    Multiple Index Pages in Hugo

    -
    -

    This is how to create multiple index pages in Hugo +Table Of Contents

    This is how to create multiple index pages in Hugo # -

    -

    I wanted to order Hackbook in reverse (i.e. oldest to newest) so that it’s easier for the reader to start at the correct page.

    +

    I wanted to order Hackbook in reverse (i.e. oldest to newest) so that it’s easier for the reader to start at the correct page.

    I ran into the following problem - the default list.html does them from newest to oldest.

    So I found this forum post and I created a file in the _default directory as follows:

    layouts
    @@ -56,15 +59,11 @@ layouts |----**_default** |-------**hackbook** |-----------**order-by-oldest."/>
     {{- end }}
     </ul>
     {{- end }}
    -

    if you want to display the date on the left of the titles, you have to add datesinlist=true in your config.toml or datesinlist: true in your config.yaml - # -

    You probably don’t need enableGitInfo = true as that will crash your website, I have no idea what it does, you don’t need it. - # -
    +

    If you want to display the date on the left of the titles, you have to add datesinlist=true in your config.toml or datesinlist: true in your config.yaml

    +

    You probably don’t need enableGitInfo = true as that will crash your website, I have no idea what it does, you don’t need it.

    Using your custom _index.html # -

    -

    After creating your custom _index.html you’d use it as follows:

    +

    After creating your custom _index.html you’d use it as follows:

    1. Create an _index.md file in your desired directory
    2. Add layout: "hackbook/order-by-oldest" to your preamble (if you named your folder and or file something else, you have to change it here)
    3. diff --git a/new-site/public/blog/recover-lost-anki-streak/index.html b/new-site/public/blog/recover-lost-anki-streak/index.html index 1f9daace..b17d5bca 100644 --- a/new-site/public/blog/recover-lost-anki-streak/index.html +++ b/new-site/public/blog/recover-lost-anki-streak/index.html @@ -20,9 +20,9 @@ Check what was the date when you broke your streak, aka the date of that day whe

      Recover Lost Anki Streak

      -

      How to recover a lost anki streak +

      How to recover a lost anki streak # -

      Word for word copy paste of what fixed my issue. Original post

      +

      Word for word copy paste of what fixed my issue. Original post

      btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7

      Happened to me as well, idk why. But there is a way to cheat streaks:

        diff --git a/new-site/public/categories/index.xml b/new-site/public/categories/index.xml index e6143c43..d8d727f9 100644 --- a/new-site/public/categories/index.xml +++ b/new-site/public/categories/index.xml @@ -771,9 +771,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -826,9 +826,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1831,9 +1831,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1855,12 +1855,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1871,17 +1871,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1898,11 +1898,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1934,15 +1932,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4017,9 +4011,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4068,13 +4062,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/helloworld/index.html b/new-site/public/helloworld/index.html index ad6b6d4c..42ae1246 100644 --- a/new-site/public/helloworld/index.html +++ b/new-site/public/helloworld/index.html @@ -20,13 +20,13 @@ im adding this bit in just to check if the scuffed shell script i made actually

        Hello world

        -

        Obligatory Hello World! +

        Obligatory Hello World! # -

        trying to see which hugo theme i like best

        +

        trying to see which hugo theme i like best

        had some issues with papermod and their css not working so for now i’ll use lugo

        -

        stuff i like +

        stuff i like # -

          +

        • touching grass and nature in general (wannabe farmer)
        • にっぽんese
            diff --git a/new-site/public/index.xml b/new-site/public/index.xml index 13b2c308..2e826df1 100644 --- a/new-site/public/index.xml +++ b/new-site/public/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/library/hackbook/00-00-hackbookeasypeasy/index.html b/new-site/public/library/hackbook/00-00-hackbookeasypeasy/index.html index 23e242dd..5a905fee 100644 --- a/new-site/public/library/hackbook/00-00-hackbookeasypeasy/index.html +++ b/new-site/public/library/hackbook/00-00-hackbookeasypeasy/index.html @@ -18,9 +18,9 @@ I hacked Allen Carr’s book and his method of de-addiction to adapt it for PMO.
            • 00-00 HackBook EasyPeasy
            • 01-01 Preface
            • diff --git a/new-site/public/library/hackbook/index.xml b/new-site/public/library/hackbook/index.xml index 2768bf99..f8015084 100644 --- a/new-site/public/library/hackbook/index.xml +++ b/new-site/public/library/hackbook/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/library/index.xml b/new-site/public/library/index.xml index 62c579e7..14c26a8d 100644 --- a/new-site/public/library/index.xml +++ b/new-site/public/library/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/library/ted-kaczynski/index.xml b/new-site/public/library/ted-kaczynski/index.xml index 21bb9bde..4b47e74b 100644 --- a/new-site/public/library/ted-kaczynski/index.xml +++ b/new-site/public/library/ted-kaczynski/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/library/ted-kaczynski/industrial-society-and-its-future/index.html b/new-site/public/library/ted-kaczynski/industrial-society-and-its-future/index.html index 1dac1690..22da3eef 100644 --- a/new-site/public/library/ted-kaczynski/industrial-society-and-its-future/index.html +++ b/new-site/public/library/ted-kaczynski/industrial-society-and-its-future/index.html @@ -16,7 +16,37 @@

              Industrial Society and Its Future

              -

              Introduction +Table Of Contents

              Introduction #

              1. @@ -938,6 +968,10 @@ +

              diff --git a/new-site/public/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/index.html b/new-site/public/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/index.html index cc7c18e2..a0cf508c 100644 --- a/new-site/public/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/index.html +++ b/new-site/public/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/index.html @@ -17,9 +17,14 @@ The most obvious examples of self-propagating systems are biological organisms."

              Why the Technological System Will Destroy Itself

              -

              I. +Table Of Contents

              I. # -

              Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.

              +

              Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.

              The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.

              If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.

              The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:

              @@ -72,9 +77,9 @@ The most obvious examples of self-propagating systems are biological organisms."

              The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.13

              According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”14

              Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.

              -

              II. +

              II. # -

              Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.15 The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,16 let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.

              +

              Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.15 The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,16 let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.

              The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.

              Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.

              It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.

              diff --git a/new-site/public/tags/blog/index.xml b/new-site/public/tags/blog/index.xml index b224551d..7175f6ef 100644 --- a/new-site/public/tags/blog/index.xml +++ b/new-site/public/tags/blog/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/tags/index.xml b/new-site/public/tags/index.xml index 40f0cd61..05481961 100644 --- a/new-site/public/tags/index.xml +++ b/new-site/public/tags/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/public/tags/updates/index.xml b/new-site/public/tags/updates/index.xml index 821d37fb..67bfb242 100644 --- a/new-site/public/tags/updates/index.xml +++ b/new-site/public/tags/updates/index.xml @@ -772,9 +772,9 @@ Wired magazine. Sat, 01 Apr 2023 14:24:10 +0300 https://vodoraslo.xyz/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/ - <h1 id="i">I. <a class="anchor" href="#i"> + <h2 id="i">I. <a class="anchor" href="#i"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> +</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (‘self-prop system’ for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p> <p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p> <p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p> <p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p> @@ -827,9 +827,9 @@ Wired magazine. <p>The theory we’ve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p> <p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p> <p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p> -<h1 id="ii">II. <a class="anchor" href="#ii"> +<h2 id="ii">II. <a class="anchor" href="#ii"> <span class="spanForHeader">#</span> -</a></h1><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> +</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. That’s why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earth’s resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p> <p>The purpose of describing the process in general and abstract terms, as we’ve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p> <p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p> <p>It seems amazing that those who advocate energy conservation haven’t noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p> @@ -1832,9 +1832,9 @@ Wired magazine. Thu, 12 Jan 2023 21:34:30 +0200 https://vodoraslo.xyz/blog/recover-lost-anki-streak/ - <h1 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> + <h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak"> <span class="spanForHeader">#</span> -</a></h1><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> +</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p> <p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p> <p>Happened to me as well, idk why. But there is a way to cheat streaks:</p> <ol> @@ -1856,12 +1856,12 @@ Wired magazine. Wed, 04 Jan 2023 22:52:24 +0200 https://vodoraslo.xyz/blog/meta-description-in-hugo/ - <h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> + <h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo"> <span class="spanForHeader">#</span> -</a></h1><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> -<h2 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> +</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p> +<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate your config.toml or config.yaml file</li> <li>Add the following line inside it</li> </ol> @@ -1872,17 +1872,17 @@ Wired magazine. <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>: </span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span> </span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p> -<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> +<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Locate baseof.html</li> <li>Add or change the meta description line with the following</li> </ol> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt; </span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p> -<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> +<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one"> <span class="spanForHeader">#</span> -</a></h2><ol> +</a></h3><ol> <li>Have a markdown file ready</li> <li>In the preamble, add</li> </ol> @@ -1899,11 +1899,9 @@ Wired magazine. Tue, 03 Jan 2023 22:36:03 +0200 https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/ - <div style="text-align: center;"> -<h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> + <h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> +</a></h2><p>I wanted to order <a href="https://vodoraslo.xyz/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p> <p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p> <p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p> <pre tabindex="0"><code>layouts @@ -1935,15 +1933,11 @@ Wired magazine. {{- end }} &lt;/ul&gt; {{- end }} -</code></pre><h4 id="if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml">if you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml <a class="anchor" href="#if-you-want-to-display-the-date-on-the-left-of-the-titles-you-have-to-add-datesinlisttrue-in-your-configtoml-or-datesinlist-true-in-your-configyaml"> - <span class="spanForHeader">#</span> -</a></h4><h5 id="you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it">You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it. <a class="anchor" href="#you-probably-dont-need-enablegitinfo--true-as-that-will-crash-your-website-i-have-no-idea-what-it-does-you-dont-need-it"> - <span class="spanForHeader">#</span> -</a></h5><div style="text-align: center;"> +</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p> +<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p> <h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml"> <span class="spanForHeader">#</span> -</a></h2></div> -<p>After creating your custom _index.html you&rsquo;d use it as follows:</p> +</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p> <ol> <li>Create an _index.md file in your desired directory</li> <li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li> @@ -4018,9 +4012,9 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footn https://vodoraslo.xyz/library/hackbook/00-00-hackbookeasypeasy/ <div style="text-align: center;"> -<h1 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> +<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="https://vodoraslo.xyz/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"> <span class="spanForHeader">#</span> -</a></h1><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> +</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway"> <span class="spanForHeader">#</span> </a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"> <span class="spanForHeader">#</span> @@ -4069,13 +4063,13 @@ formed does not list Internet pornography as one of the addictions that it provi Sat, 17 Dec 2022 17:20:18 +0200 https://vodoraslo.xyz/helloworld/ - <h1 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> + <h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world"> <span class="spanForHeader">#</span> -</a></h1><p>trying to see which hugo theme i like best</p> +</a></h2><p>trying to see which hugo theme i like best</p> <p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> -<h2 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> +<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like"> <span class="spanForHeader">#</span> -</a></h2><ul> +</a></h3><ul> <li>touching grass and nature in general (wannabe farmer)</li> <li>にっぽんese <ul> diff --git a/new-site/themes/lugo/layouts/_default/baseof.html b/new-site/themes/lugo/layouts/_default/baseof.html index 8acdacf9..2cdbbf06 100644 --- a/new-site/themes/lugo/layouts/_default/baseof.html +++ b/new-site/themes/lugo/layouts/_default/baseof.html @@ -20,6 +20,7 @@

              {{ block "title" . }}{{ end }}

              {{ block "main" . }} +{{ if .Params.toc }}Table Of Contents{{ .TableOfContents }}{{end -}} {{ .Content }} {{ end }} {{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}} diff --git a/new-site/themes/lugo/layouts/shortcodes/toc.html b/new-site/themes/lugo/layouts/shortcodes/toc.html new file mode 100644 index 00000000..115df60b --- /dev/null +++ b/new-site/themes/lugo/layouts/shortcodes/toc.html @@ -0,0 +1 @@ + \ No newline at end of file