<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="https://eternodevir.com/feed.xsl" type="text/xsl"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Eterno Devir</title><link>https://eternodevir.com/</link><description>Recent content on Eterno Devir</description><generator>Hugo</generator><language>en</language><managingEditor>vinicius.moraes@eternodevir.com (Vinícius Moraes)</managingEditor><webMaster>vinicius.moraes@eternodevir.com (Vinícius Moraes)</webMaster><copyright>CC BY-SA 4.0</copyright><lastBuildDate>Sat, 25 Apr 2026 23:08:11 -0300</lastBuildDate><atom:link href="https://eternodevir.com/feed.xml" rel="self" type="application/rss+xml"/><item><title>Logs: Fatboy Slim at Elevator Music</title><link>https://eternodevir.com/palimpsests/logs/fatboy-slim-at-elevator-music/</link><pubDate>Sat, 27 Dec 2025 22:37:16 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Logs</category><guid>https://eternodevir.com/palimpsests/logs/fatboy-slim-at-elevator-music/</guid><description> Although I&amp;#39;m pretty eclectic with music, I can count on one hand the DJs I care enough to pay closer attention. Fatboy Slim is certainly one of them. As someone who grew up with a PlayStation in the &amp;#39;00s, Rockafeller Skank has a very special place in my memories.
A few months ago, this set popped up in my feed, but I forgot to add it to the music video collection back then. I really enjoyed the opening and the dynamic format with the audience interacting and dancing in turns. Such a great mood.</description><content:encoded><![CDATA[<p>
Although I&#39;m pretty eclectic with music, I can count on one hand the DJs I care enough to pay closer attention.
Fatboy Slim is certainly one of them.
As someone who grew up with a PlayStation in the &#39;00s, <a href="https://www.youtube.com/watch?v=FMrIy9zm7QY">Rockafeller Skank</a> has a very special place in my memories.</p>
<p>
A few months ago, this set popped up in my feed, but I forgot to add it to the music video collection back then.
I really enjoyed the opening and the dynamic format with the audience interacting and dancing in turns.
Such a great mood.</p>
<div class="responsive-embed ratio-16-9">
  
</div>

<noscript>
  <p><b>INFO</b>: Your browser has JavaScript disabled. Here is the raw URL:<br>
    <a href="https://www.youtube.com/watch?v=kTuLj0Nyhs4">https://www.youtube.com/watch?v=kTuLj0Nyhs4</a></p>
</noscript>


<div class="src src-text">
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-text" data-lang="text"><span class="line"><span class="cl">Smiles on everyone&#39;s faces as we dance around and sing to our favorite
</span></span><span class="line"><span class="cl">song... It&#39;s a secret society of misfits, artists, creative people who
</span></span><span class="line"><span class="cl">are not considered normal. We are our own community. We share joy, we
</span></span><span class="line"><span class="cl">share pain, we share love. For that one moment, the music connects us.
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">It&#39;s amazing how music can turn strangers into friends, turn anger
</span></span><span class="line"><span class="cl">into happiness, and fear into power. This is truly amazing because we
</span></span><span class="line"><span class="cl">are the night life.</span></span></code></pre></div>
</div>
<p>
Happy new year everyone! <em>Do not forget to dance.</em></p>
]]></content:encoded></item><item><title>Logs: Categories in RSS feed titles</title><link>https://eternodevir.com/palimpsests/logs/categories-in-rss-feed-titles/</link><pubDate>Sun, 14 Dec 2025 22:47:55 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Logs</category><guid>https://eternodevir.com/palimpsests/logs/categories-in-rss-feed-titles/</guid><description> As someone who follows many RSS feeds via NNTP in Gnus, I often find myself opening some entries just to skim them and understand what they are about. This happens because some item titles alone do not provide enough context so I can act accordingly. A matter exacerbated by the fact that these entries normally fall outside my scoring rules.
In contrast, some websites prepend their content types to the article titles, helping a lot with that initial action. Rather than modifying the article titles though, this technique can be applied directly to the RSS entries. In fact, feed entries can not only differ but also be independent of the website content, which enables things like RSS-only posts.</description><content:encoded><![CDATA[<p>
As someone who follows many RSS feeds via NNTP in Gnus, I often find myself opening some entries just to skim them and understand what they are about.
This happens because some item titles alone do not provide enough context so I can act accordingly.
A matter exacerbated by the fact that these entries normally fall outside my scoring rules.</p>
<p>
In contrast, some websites prepend their content types to the article titles, helping a lot with that initial action.
Rather than modifying the article titles though, this technique can be applied directly to the RSS entries.
In fact, feed entries can not only differ but also be independent of the website content, which enables things like RSS-only posts.</p>
<p>
Since I already <a href="https://eternodevir.com/#taxonomies">categorize</a> all the content here, I decided to prepend this information to the RSS item titles, leaving the article pages intact.
While editing the template, I also added the <code>&lt;category&gt;</code> element as some feed readers support it.
In Hugo, this was just two one-liners (formatted here for readability):</p>
<div class="src src-html">
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="line"><span class="cl"><span class="c">&lt;!-- layouts/_default/rss.xml --&gt;</span>
</span></span><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">title</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  {{ with .Params.categories }}
</span></span><span class="line"><span class="cl">    {{ index . 0 | lower | i18n }}:
</span></span><span class="line"><span class="cl">  {{ end }}
</span></span><span class="line"><span class="cl">  {{ .Title }}
</span></span><span class="line"><span class="cl"><span class="p">&lt;/</span><span class="nt">title</span><span class="p">&gt;</span></span></span></code></pre></div>
</div>
<div class="src src-html">
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="line"><span class="cl"><span class="c">&lt;!-- layouts/_default/rss.xml --&gt;</span>
</span></span><span class="line"><span class="cl">{{ with .Params.categories }}
</span></span><span class="line"><span class="cl">  <span class="p">&lt;</span><span class="nt">category</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  {{ index . 0 | lower | i18n }}
</span></span><span class="line"><span class="cl">  <span class="p">&lt;/</span><span class="nt">category</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">{{ end }}</span></span></code></pre></div>
</div>
<p>
I really liked how much more readable and organized the <a href="https://eternodevir.com/feed.xml">feed</a> became with this change.
It makes reasoning and acting on the entries much simpler.</p>
<p>
For example, compare <strong>Balcony</strong> with <strong>Projects: Balcony</strong>, <strong>Essays: Balcony</strong>, or <strong>Photographs: Balcony</strong>.
There is nothing wrong with the article title per se, but the labeled versions are far more informative at a glance in a feed context.</p>
<p>
So if your website also has different post categories, go ahead and prepend them to your RSS feed titles as well.
As a potential reader of your feed, I will thank you.</p>
<p>
<em>P.S.: Chromium users <a href="https://github.com/NixOS/nixpkgs/issues/430666">may need</a> a different browser or, even better, a dedicated feed reader to check the results out.</em></p>
]]></content:encoded></item><item><title>Projects: Pipelines</title><link>https://eternodevir.com/projects/pipelines/</link><pubDate>Mon, 03 Nov 2025 20:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/pipelines/</guid><description>Centralized repository of reusable automation components for Git forges. Project page https://eternodevir.com/projects/pipelines Area Infrastructure Domain CI/CD Role Author Launched November 1, 2025 Status Core YAML, JavaScript License GPL-3.0 Repository GitHub, Sourcehut Centralized repository of reusable automation components for Git forges. It provides reusable CI/CD pipelines, quality checks, and configuration patterns to enforce security, reduce duplication, and ease maintenance across multiple repositories.
Check the README.md file to find out more.</description><content:encoded><![CDATA[
<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/pipelines">https://eternodevir.com/projects/pipelines</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Infrastructure</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">CI/CD</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          November 1, 2025
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            
              
              
            
            <a href="https://github.com/ttybitnik/pipelines/actions/workflows/cd.yaml" class="text-decoration-none"><img alt="CI/CD" src="https://img.shields.io/github/actions/workflow/status/ttybitnik/pipelines/cd.yaml?label="></a> <a href="https://github.com/ttybitnik/pipelines/releases/latest" class="text-decoration-none"><img alt="Release Version" src="https://img.shields.io/github/v/release/ttybitnik/pipelines"></a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          YAML, JavaScript
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/pipelines">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/pipelines">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
Centralized repository of reusable automation components for Git forges.
It provides reusable CI/CD pipelines, quality checks, and configuration patterns to <strong>enforce security</strong>, <strong>reduce duplication</strong>, and <strong>ease maintenance</strong> across multiple repositories.</p>
<p>
Check the <a href="https://github.com/ttybitnik/pipelines"><code class="verbatim">README.md</code></a> file to find out more.</p>
]]></content:encoded></item><item><title>Projects: Diego</title><link>https://eternodevir.com/projects/diego/</link><pubDate>Tue, 15 Apr 2025 22:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/diego/</guid><description>CLI tool for importing and utilizing exported social media data from popular services on Hugo websites. Project page https://eternodevir.com/projects/diego Area Application Domain IndieWeb Role Author Launched February 27, 2024 Status Core Golang License GPL-3.0 Repository GitHub, Sourcehut Diego integrates with Hugo as a CLI tool to assist in importing and utilizing exported social media data from various services on Hugo websites.
Overview diego is a CLI tool designed to import official CSV and JSON data files from popular services like Goodreads, IMDb, Instapaper, Letterboxd, Spotify, and YouTube into Hugo.</description><content:encoded><![CDATA[

<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/diego">https://eternodevir.com/projects/diego</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Application</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">IndieWeb</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          February 27, 2024
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            
              
              
            
            
              
              
            
            <a href="https://github.com/ttybitnik/diego/actions/workflows/cd.yaml" class="text-decoration-none"><img alt="CI/CD" src="https://img.shields.io/github/actions/workflow/status/ttybitnik/diego/cd.yaml?label="></a> <a href="https://github.com/ttybitnik/diego/releases/latest" class="text-decoration-none"><img alt="Release Version" src="https://img.shields.io/github/v/release/ttybitnik/diego"></a> <a href="https://goreportcard.com/report/github.com/ttybitnik/diego" class="text-decoration-none"><img alt="Go Report" src="https://goreportcard.com/badge/github.com/ttybitnik/diego"></a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Golang
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/diego">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/diego">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
Diego integrates with <a href="https://gohugo.io/">Hugo</a> as a CLI tool to assist in importing and utilizing exported social media data from various services on Hugo websites.</p>
<div id="outline-container-overview" class="outline-2">
<h2 id="overview">
Overview
</h2>
<div id="outline-text-overview" class="outline-text-2">
<p>
<code class="verbatim">diego</code> is a CLI tool designed to import official <code class="verbatim">CSV</code> and <code class="verbatim">JSON</code> data files from popular services like <strong>Goodreads</strong>, <strong>IMDb</strong>, <strong>Instapaper</strong>, <strong>Letterboxd</strong>, <strong>Spotify</strong>, and <strong>YouTube</strong> into <strong>Hugo</strong>.</p>
<p>
<code class="verbatim">diego</code> provides:</p>
<ul>
<li>Automatic <code class="verbatim">CSV</code> and <code class="verbatim">JSON</code> conversion into <a href="https://gohugo.io/methods/site/data/">Hugo data files</a></li>
<li>Support for all Hugo data file formats</li>
<li>Easy data management in a human-readable format (<code class="verbatim">YAML</code>)</li>
<li>Automatic generation of Hugo shortcodes for imported data</li>
<li>Optional scrape capabilities for fetching missing fields</li>
<li>Flags suited for scripting and pipelines</li>
<li>Persistent configuration</li>
</ul>
<p>Check the <a href="https://github.com/ttybitnik/diego"><code class="verbatim">README.md</code></a> file to find out more.</p>
</div>
</div>
]]></content:encoded></item><item><title>Projects: Easy Hugo</title><link>https://eternodevir.com/projects/easy-hugo/</link><pubDate>Tue, 15 Apr 2025 21:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/easy-hugo/</guid><description>GNU Emacs major mode designed for writing Hugo-powered blogs using various markup formats. Project page https://github.com/masasam/emacs-easy-hugo Area Application Domain Text Editor Role Contributor Launched February 7, 2017 Status Core Emacs Lisp License GPL-3.0 Repository GitHub GNU Emacs major mode designed for writing Hugo-powered blogs using various markup formats.
Overview easy-hugo is a major mode designed for writing Hugo-powered blogs using various markup formats, including Markdown, org‑mode, AsciiDoc, reStructuredText, mmark, and HTML. It enhances the blogging experience within Emacs, making it easier to manage and create content.</description><content:encoded><![CDATA[

<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://github.com/masasam/emacs-easy-hugo">https://github.com/masasam/emacs-easy-hugo</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Application</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">Text Editor</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Contributor</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          February 7, 2017
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            
              
              
            
            
              
              
            
            <a href="https://github.com/masasam/emacs-easy-hugo" class="text-decoration-none">Project Status</a> <a href="https://melpa.org/#/easy-hugo" class="text-decoration-none"><img alt="Melpa (Unstable)" src="https://melpa.org/packages/easy-hugo-badge.svg"></a> <a href="https://stable.melpa.org/#/easy-hugo" class="text-decoration-none"><img alt="Melpa (Stable)" src="https://stable.melpa.org/packages/easy-hugo-badge.svg"></a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Emacs Lisp
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            <a href="https://github.com/masasam/emacs-easy-hugo">GitHub</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
<a href="https://www.gnu.org/software/emacs/">GNU Emacs</a> major mode designed for writing Hugo-powered blogs using various markup formats.</p>
<div id="outline-container-overview" class="outline-2">
<h2 id="overview">
Overview
</h2>
<div id="outline-text-overview" class="outline-text-2">
<p>
<code>easy-hugo</code> is a major mode designed for writing Hugo-powered blogs using various markup formats, including <strong>Markdown</strong>, <strong>org‑mode</strong>, <strong>AsciiDoc</strong>, <strong>reStructuredText</strong>, <strong>mmark</strong>, and <strong>HTML</strong>. It enhances the blogging experience within Emacs, making it easier to manage and create content.</p>
<p>
Check the <a href="https://github.com/masasam/emacs-easy-hugo"><code class="verbatim">README.md</code></a> file to find out more.</p>
</div>
</div>
]]></content:encoded></item><item><title>Projects: Mkdev</title><link>https://eternodevir.com/projects/mkdev/</link><pubDate>Tue, 15 Apr 2025 20:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/mkdev/</guid><description>OCI-compliant container image boilerplates for managing isolated development environments with GNU Make. Project page https://eternodevir.com/projects/mkdev Area Infrastructure Domain Containerization Role Author Launched January 10, 2025 Status Core Containerfile, Makefile License GPL-3.0 Repository GitHub, Sourcehut mkdev is a personal collection of OCI-compliant container image boilerplates for managing isolated development environments using GNU Make.
It enables a consistent, open, and extensible workflow by using Containerfile and Makefile as the standard points of entry. Dependencies and tools are packaged in a custom container, providing isolation and replicability of the development environment while still integrating with the $EDITOR on the host system.</description><content:encoded><![CDATA[

<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/mkdev">https://eternodevir.com/projects/mkdev</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Infrastructure</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">Containerization</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          January 10, 2025
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            
              
              
            
            <a href="https://github.com/ttybitnik/mkdev/actions/workflows/cd.yaml" class="text-decoration-none"><img alt="CI/CD" src="https://img.shields.io/github/actions/workflow/status/ttybitnik/mkdev/cd.yaml?label="></a> <a href="https://github.com/ttybitnik/mkdev/releases/latest" class="text-decoration-none"><img alt="Release Version" src="https://img.shields.io/github/v/release/ttybitnik/mkdev"></a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Containerfile, Makefile
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/mkdev">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/mkdev">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
<code>mkdev</code> is a personal collection of OCI-compliant container image boilerplates for managing isolated development environments using GNU Make.</p>
<p>
It enables a <strong>consistent</strong>, <strong>open</strong>, and <strong>extensible</strong> workflow by using <code class="verbatim">Containerfile</code> and <code class="verbatim">Makefile</code> as the standard points of entry. Dependencies and tools are packaged in a custom container, providing isolation and replicability of the development environment while still integrating with the <code class="verbatim">$EDITOR</code> on the host system.</p>
<blockquote>
<p>Don&#39;t let the development dependency hell mess with your files and processes. Containerize the development environment!</p>
<p>
<span class="style-normal">— <a href="https://imgflip.com/i/9gc41r">Tower Guardian</a>, in a new take.</span></p>
</blockquote>
<div id="outline-container-workflow" class="outline-2">
<h2 id="workflow">
Workflow
</h2>
<div id="outline-text-workflow" class="outline-text-2">
<a href="https://asciinema.org/a/697869" target="_blank"><img src="https://asciinema.org/a/697869.svg" loading="eager" /></a>
<p>
Check the <a href="https://github.com/ttybitnik/mkdev"><code class="verbatim">README.md</code></a> file to find out more.</p>
</div>
</div>
]]></content:encoded></item><item><title>Projects: Dotfiles</title><link>https://eternodevir.com/projects/dotfiles/</link><pubDate>Tue, 15 Apr 2025 19:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/dotfiles/</guid><description>UN*X environment setup, including automation scripts and configuration files for a variety of tools. Project page https://eternodevir.com/projects/dotfiles Area Utility Domain System Environment Role Author Launched March 21, 2023 Status Core Shell License GPL-3.0 Repository GitHub, Sourcehut My UN*X environment setup, including automation scripts and configuration files for a variety of tools.
The repository is structured around the custom environments I run, including:
a FreeBSD headless laptop (tty environment) a Fedora desktop with Sway (wayland environment) a Debian desktop with Dwm (xorg environment). Note that the TTY tools are employed across all environments.</description><content:encoded><![CDATA[
<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/dotfiles">https://eternodevir.com/projects/dotfiles</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Utility</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">System Environment</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          March 21, 2023
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            <a href="https://github.com/ttybitnik/dotfiles" class="text-decoration-none">Status</a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Shell
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/dotfiles">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/dotfiles">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
My <a href="https://en.wikipedia.org/wiki/Unix-like">UN*X</a> environment setup, including automation scripts and configuration files for a variety of tools.</p>
<p>
The repository is structured around the custom environments I run, including:</p>
<ul>
<li>a <strong>FreeBSD</strong> headless laptop (<code class="verbatim">tty</code> environment)</li>
<li>a <strong>Fedora</strong> desktop with Sway (<code class="verbatim">wayland</code> environment)</li>
<li>a <strong>Debian</strong> desktop with Dwm (<code class="verbatim">xorg</code> environment).</li>
</ul>
<p>Note that the TTY tools are employed across all environments.</p>
<figure><picture>
      <source srcset="https://eternodevir.com/images/projects/switcher-demo-b7946c397292e3f0.avif" type="image/avif">
      <img src="https://eternodevir.com/images/projects/switcher-demo-b7946c397292e3f0.gif"
           alt="Switcher demo"
            loading="eager">
    </picture></figure>

<p>
Check the <a href="https://github.com/ttybitnik/dotfiles"><code class="verbatim">README.org</code></a> file to find out more.</p>
]]></content:encoded></item><item><title>Projects: Emacs.d</title><link>https://eternodevir.com/projects/emacs.d/</link><pubDate>Tue, 15 Apr 2025 18:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/emacs.d/</guid><description>GNU Emacs configuration along with an in-depth chronicle of my crafting and managing processes. Project page https://eternodevir.com/projects/emacs.d Area Utility Domain Text Editor Role Author Launched March 20, 2023 Status Core Emacs Lisp License GPL-3.0 Repository GitHub, Sourcehut This repository contains my GNU Emacs configuration files along with an in-depth chronicle of my crafting and managing workflows. It includes links to valuable resources, in code, text and video, that have been important throughout my trajectory. Inspired by Munen&amp;#39;s insightful presentation Play Emacs like an instrument, I have decided to expand his playful yet thoughtful metaphor into this digitally handmade process. A journey to craft emacs.d like a luthier.</description><content:encoded><![CDATA[

<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/emacs.d">https://eternodevir.com/projects/emacs.d</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Utility</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">Text Editor</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          March 20, 2023
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            <a href="https://github.com/ttybitnik/emacs.d" class="text-decoration-none">Status</a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Emacs Lisp
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/emacs.d">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/emacs.d">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
This repository contains my <strong>GNU Emacs</strong> configuration files along with an in-depth chronicle of my crafting and managing workflows. It includes links to valuable resources, in code, text and video, that have been important throughout my trajectory. Inspired by <a href="https://github.com/munen">Munen</a>&#39;s insightful presentation <a href="https://www.youtube.com/watch?v=gfZDwYeBlO4">Play Emacs like an instrument</a>, I have decided to expand his playful yet thoughtful metaphor into this digitally handmade process. A journey to <strong>craft emacs.d like a luthier</strong>.</p>
<div id="outline-container-files-structure" class="outline-2">
<h2 id="files-structure">
Files structure
</h2>
<div id="outline-text-files-structure" class="outline-text-2">
<figure><picture><source srcset="https://eternodevir.com/images/projects/emacs-diagram-dark-c29ac2f94288de6e.avif" type="image/avif" media="(prefers-color-scheme: dark)"><source srcset="https://eternodevir.com/images/projects/emacs-diagram-light-1abdf7fb325fbda2.avif" type="image/avif" media="(prefers-color-scheme: light)"><source srcset="https://eternodevir.com/images/projects/emacs-diagram-dark-c29ac2f94288de6e.png" media="(prefers-color-scheme: dark)">
      <source srcset="https://eternodevir.com/images/projects/emacs-diagram-light-1abdf7fb325fbda2.png" media="(prefers-color-scheme: light)">
      <img src="https://eternodevir.com/images/projects/emacs-diagram-light-1abdf7fb325fbda2.png"
           alt="Core Emacs files and directory structure in loading sequence" loading="eager">
    </picture></figure>

<p>
Check the <a href="https://github.com/ttybitnik/emacs.d"><code class="verbatim">README.org</code></a> file to find out more.</p>
</div>
</div>
]]></content:encoded></item><item><title>Projects: 99 Problems</title><link>https://eternodevir.com/projects/99-problems/</link><pubDate>Tue, 15 Apr 2025 17:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/99-problems/</guid><description>Programming practice in different languages of the classic Ninety-Nine Prolog Problems crafted by Werner Hett. Project page https://eternodevir.com/projects/99-problems Area Laboratory Domain Programming Logic Role Author Launched November 14, 2023 Status Core Multi-language License GPL-3.0 Repository GitHub, Sourcehut This repository contains my programming practice of the classic &amp;#34;Ninety-Nine Prolog Problems&amp;#34; crafted by Werner Hett at the Berne University of Applied Sciences in Berne, Switzerland. I plan to explore these problems in different programming languages.
The purpose of this problem collection is to give you the opportunity to practice your skills in logic programming. Your goal should be to find the most elegant solution of the given problems. Efficiency is important, but logical clarity is even more crucial. Some of the (easy) problems can be trivially solved using built-in predicates. However, in these cases, you learn more if you try to find your own solution.</description><content:encoded><![CDATA[
<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/99-problems">https://eternodevir.com/projects/99-problems</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Laboratory</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">Programming Logic</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          November 14, 2023
        </td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            <a href="https://github.com/ttybitnik/lab.99-problems" class="text-decoration-none">Status</a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          Multi-language
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">GPL-3.0</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/lab.99-problems">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/99-problems">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
This repository contains my programming practice of the classic &#34;Ninety-Nine Prolog Problems&#34; crafted by Werner Hett at the Berne University of Applied Sciences in Berne, Switzerland. I plan to explore these problems in different programming languages.</p>
<blockquote>
<p>The purpose of this problem collection is to give you the opportunity to practice your skills in logic programming. Your goal should be to find the most elegant solution of the given problems. Efficiency is important, but logical clarity is even more crucial. Some of the (easy) problems can be trivially solved using built-in predicates. However, in these cases, you learn more if you try to find your own solution.</p>
<p>
The problems have different levels of difficulty. Those marked with a single asterisk (<code class="verbatim">*</code>) are easy. If you have successfully solved the preceeding problems you should be able to solve them within a few (say 15) minutes. Problems marked with two asterisks (<code class="verbatim">**</code>) are of intermediate difficulty. If you are a skilled Prolog programmer it shouldn&#39;t take you more than 30-90 minutes to solve them. Problems marked with three asterisks (<code class="verbatim">***</code>) are more difficult. You may need more time (i.e. a few hours or more) to find a good solution.</p>
<p>
<span class="style-normal">— <strong>Werner Hett</strong> </span></p>
</blockquote>
<p>
Check the <a href="https://github.com/ttybitnik/lab.99-problems"><code class="verbatim">README.org</code></a> file to find out more.</p>
]]></content:encoded></item><item><title>Projects: Suckless</title><link>https://eternodevir.com/projects/suckless/</link><pubDate>Tue, 15 Apr 2025 16:07:53 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Projects</category><guid>https://eternodevir.com/projects/suckless/</guid><description>Source code and configuration files for my suckless builds of dwm, dmenu, dwmblocks, st, and slock. Project page https://eternodevir.com/projects/suckless Area Utility Domain Unix Tools Role Author Launched May 3, 2023 Archived January 28, 2025 Status Core C License MIT Repository GitHub, Sourcehut This repository contains the source code and configuration files for my suckless dwm, dmenu, dwmblocks, st, and slock builds. These are minimalist and lightweight tools designed for users who want a customizable and efficient system.
Check the README.org file to find out more.</description><content:encoded><![CDATA[
<div class="card">
  <table>
    <tbody>
      <tr>
        <th>Project page</th>
        <td data-cell="Page">
          <a href="https://eternodevir.com/projects/suckless">https://eternodevir.com/projects/suckless</a>
        </td>
      </tr>
      <tr>
        <th>Area</th>
        <td data-cell="Area">Utility</td>
      </tr>
      <tr>
        <th>Domain</th>
        <td data-cell="Domain">Unix Tools</td>
      </tr>
      <tr>
        <th>Role</th>
        <td data-cell="Role">Author</td>
      </tr>
      <tr>
        
        
        <th>Launched</th>
        <td data-cell="Launched">
          May 3, 2023
        </td>
      </tr>
      
      <tr>
        <th>Archived</th>
        <td data-cell="Archived">January 28, 2025</td>
      </tr>
      
      <tr>
        <th>Status</th>
        <td data-cell="Status">
          <span>
            
            
            
              
              
            
            <a href="https://github.com/ttybitnik/suckless" class="text-decoration-none">Status</a>
          </span>
        </td>
      </tr>
      
      <tr>
        <th>Core</th>
        <td data-cell="Core">
          C
        </td>
      </tr>
      
      
      <tr>
        <th>License</th>
        <td data-cell="License">MIT</td>
      </tr>
      
      
      <tr>
        <th>Repository</th>
        <td data-cell="Repo">
          <span>
            
            
            
            
            
            
            <a href="https://github.com/ttybitnik/suckless">GitHub</a>, <a href="https://git.sr.ht/~ttybitnik/suckless">Sourcehut</a>
          </span>
        </td>
      </tr>
      
    </tbody>
  </table>
  <hr class="inner-hr">
</div>


<p>
This repository contains the source code and configuration files for my <a href="https://suckless.org/">suckless</a> <strong>dwm</strong>, <strong>dmenu</strong>, <strong>dwmblocks</strong>, <strong>st</strong>, and <strong>slock</strong> builds. These are minimalist and lightweight tools designed for users who want a customizable and efficient system.</p>
<p>
Check the <a href="https://github.com/ttybitnik/suckless"><code class="verbatim">README.org</code></a> file to find out more.</p>
]]></content:encoded></item><item><title>Collections: Watching</title><link>https://eternodevir.com/palimpsests/watching/</link><pubDate>Fri, 06 Sep 2024 19:18:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/watching/</guid><description>Recent watching activities. Latest watched Stop Making Sense Recently watched Logs Watching Title Director Year Basic Sanitation, the Movie Jorge Furtado 2007 Cold War Paweł Pawlikowski 2018 TRON: Ares Joachim Rønning 2025 Bugonia Yorgos Lanthimos 2025 The Secret Agent Kleber Mendonça Filho 2025 The Battle of Chile: Part III Patricio Guzmán 1979 The Eternaut 1x06 Bruno Stagnaro 2025 The Eternaut 1x05 Bruno Stagnaro 2025 The Eternaut 1x04 Bruno Stagnaro 2025</description><content:encoded><![CDATA[
<div id="outline-container-latest-watched" class="outline-2">
<h2 id="latest-watched">
Latest watched
</h2>
<div id="outline-text-latest-watched" class="outline-text-2">
<div class="grid grid--poster">
  
  
  <div class="grid__item">
    <figure class="margin-0 padding-0">
      
      
       

      
      
      

      
      
      

      <img src="https://m.media-amazon.com/images/M/MV5BOTY2Y2EzMTctYTZiMC00YzEzLWIwMDItODQyYWUyY2U2MTk4XkEyXkFqcGc@._V1_SX300.jpg"
	   alt="Stop Making Sense"
	   class="grid__img grid__img-poster"
	   width="144"
	   height="216"
       loading="eager"> 
      <figcaption class="grid__caption">
	<small>
	  
	  <a href="https://www.themoviedb.org/movie/24128">
	    Stop Making Sense
	  </a>
	  
	</small>
      </figcaption>
    </figure>
  </div>
  
</div>

</div>
</div>
<div id="outline-container-recently-watched" class="outline-2">
<h2 id="recently-watched">
Recently watched
</h2>
<div id="outline-text-recently-watched" class="outline-text-2">
<table class="width-100">
  <caption class="sr-only">
    Logs Watching
  </caption>
  <thead>
    <tr>
      <th>Title</th>
      <th>Director</th>
      <th class="align-right">Year</th>
    </tr>
  </thead>
  <tbody>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/64397">
          Basic Sanitation, the Movie
        </a>
        
      </td>
      <td data-cell="Director">
        
        Jorge Furtado
        
      </td>
      <td data-cell="Year" class="align-right">
	
	2007
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/440298">
          Cold War
        </a>
        
      </td>
      <td data-cell="Director">
        
        Paweł Pawlikowski
        
      </td>
      <td data-cell="Year" class="align-right">
	
	2018
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/533533">
          TRON: Ares
        </a>
        
      </td>
      <td data-cell="Director">
        
        Joachim Rønning
        
      </td>
      <td data-cell="Year" class="align-right">
	
	2025
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/701387">
          Bugonia
        </a>
        
      </td>
      <td data-cell="Director">
        
        Yorgos Lanthimos
        
      </td>
      <td data-cell="Year" class="align-right">
	
	2025
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/1220564">
          The Secret Agent
        </a>
        
      </td>
      <td data-cell="Director">
        
        Kleber Mendonça Filho
        
      </td>
      <td data-cell="Year" class="align-right">
	
	2025
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/movie/132150">
          The Battle of Chile: Part III
        </a>
        
      </td>
      <td data-cell="Director">
        
        Patricio Guzmán
        
      </td>
      <td data-cell="Year" class="align-right">
	
	1979
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/tv/226362">
          The Eternaut 1x06
	</a>
        
      </td>
      <td data-cell="Director">
        
	
	Bruno Stagnaro
	
      </td>
      <td data-cell="Year" class="align-right">
	
	
	2025
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/tv/226362">
          The Eternaut 1x05
	</a>
        
      </td>
      <td data-cell="Director">
        
	
	Bruno Stagnaro
	
      </td>
      <td data-cell="Year" class="align-right">
	
	
	2025
	
      </td>
    </tr>
    
    <tr>
      <td data-cell="Title">
        
        <a href="https://www.themoviedb.org/tv/226362">
          The Eternaut 1x04
	</a>
        
      </td>
      <td data-cell="Director">
        
	
	Bruno Stagnaro
	
      </td>
      <td data-cell="Year" class="align-right">
	
	
	2025
	
      </td>
    </tr>
    
  </tbody>
</table>

</div>
</div>
]]></content:encoded></item><item><title>Collections: Listening</title><link>https://eternodevir.com/palimpsests/listening/</link><pubDate>Thu, 06 Jun 2024 19:18:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/listening/</guid><description>Recent listening activities. Latest played As Vitrines Recently played Logs Listening Song Artist Year Odara Gal Costa 1995 Atrás da Porta Gal Costa 1995 Morena dos Olhos D&amp;#39;água Gal Costa 1995 Como um Samba de Adeus Gal Costa 1995 Cajuína Gal Costa 1995 Milagres do povo Gal Costa 1995 O Ciúme Gal Costa 1995 O Quereres Gal Costa 1995 A Rita Gal Costa 1995</description><content:encoded><![CDATA[
<div id="outline-container-latest-played" class="outline-2">
<h2 id="latest-played">
Latest played
</h2>
<div id="outline-text-latest-played" class="outline-text-2">
<div class="grid grid--square">
  
  <div class="grid__item">
    
    <figure class="margin-0 padding-0">
      <img src="https://i.scdn.co/image/ab67616d0000b2730750285e8c1ac1866bb6e236"
           alt="As Vitrines - Estúdio"
           class="grid__img grid__img-square"
           loading="eager">
      <figcaption class="grid__caption">
        <small>
          <a href="https://open.spotify.com/track/5XZVzdcfbDaUXyJUShxcDe">
            
            
            As Vitrines 
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
</div>

</div>
</div>
<div id="outline-container-recently-played" class="outline-2">
<h2 id="recently-played">
Recently played
</h2>
<div id="outline-text-recently-played" class="outline-text-2">
<table class="width-100">
  <caption class="sr-only">
    Logs Listening
  </caption>
  <thead>
    <tr>
      <th>Song</th>
      <th>Artist</th>
      <th class="align-right">Year</th>
    </tr>
  </thead>
  <tbody>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/6YonC0FVtzZbS5TKyexRJY">
	  
	  
	  Odara 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/6cfI5JdVsURSw60Gfe2qDV">
	  
	  
	  Atrás da Porta 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/2D3F5wW307lUAr0wuCluBT">
	  
	  
	  Morena dos Olhos D&#39;água 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/2MRfYo3UaGnRNygnh8nOG7">
	  
	  
	  Como um Samba de Adeus 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/0ifGbabg5N7NS96OIg9cxy">
	  
	  
	  Cajuína 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/6q5fB6uX5q5wJfyatUqxh1">
	  
	  
	  Milagres do povo 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/2TdZ7q8ImE1AZZPdKdg5h3">
	  
	  
	  O Ciúme 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/7s3gPuNVE3wzS27FNdSqUD">
	  
	  
	  O Quereres 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
    <tr>
      <td data-cell="Song">
	<a href="https://open.spotify.com/track/3foaeJWY3AQgCGmYfq502d">
	  
	  
	  A Rita 
	</a>
      </td>
      <td data-cell="Artist">
	Gal Costa
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
    
  </tbody>
</table>

</div>
</div>
]]></content:encoded></item><item><title>Collections: TV Shows</title><link>https://eternodevir.com/palimpsests/favorites/tv-shows/</link><pubDate>Sun, 25 Feb 2024 19:28:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/favorites/tv-shows/</guid><description>Collection of my favorite TV shows. Featuring list Abstract Black Mirror Sherlock Rome What We Do in the Shadows Black Books Penny Dreadful Hannibal Alphabetical list Favorite TV Shows TV Show Genre Year Abstract: The Art of Design Documentary 2017-2019 Altered Carbon Sci-Fi 2018-2020 Andor Sci-Fi 2022-2025 Ângela Diniz: Murdered and Convicted Crime 2025 Atlanta Drama 2016-2022 Atypical Drama 2017-2021 Bates Motel Mystery 2013-2017 Black Books Comedy 2000-2004 Black Mirror Sci-Fi 2011- BoJack Horseman Drama 2014-2020 Breaking Bad Thriller 2008-2013 Castlevania Fantasy 2017-2021 Chef&amp;#39;s Table Documentary 2015-2019 Contos do Edgar Horror 2013 Cosmos: A Spacetime Odyssey Documentary 2014 Da Vinci&amp;#39;s Demons Adventure 2013-2015 Dark Mystery 2017-2020 Dexter Crime 2006-2013 Doctor Who Sci-Fi 2005-2022 Friends Comedy 1994-2004 Game of Thrones Fantasy 2011-2019 Gokushufudo Comedy 2021-2023 Hannibal Crime 2013-2015 House of Cards Drama 2013-2018 Kaubôi bibappu: Cowboy Bebop Sci-Fi 1998-1999 La casa de papel Action 2017-2021 Loki Fantasy 2021-2023 Marco Polo Adventure 2014-2016 Masters of Horror Horror 2005-2007 Merlí Drama 2015-2018 Mozart in the Jungle Drama 2014-2018 Mr. Robot Thriller 2015-2019 Narcos Drama 2015-2017 Normal People Romance 2020 Penny Dreadful Horror 2014-2016 Presença de Anita Romance 2001 Rome Drama 2005-2007 Rose Red Horror 2002 Sex Education Drama 2019-2023 Sherlock Crime 2010-2017 Shōgun Drama 2024- Sons of Anarchy Thriller 2008-2014 Suits Drama 2011-2019 The Bear Drama 2022- The Borgias Drama 2011-2013 The Following Thriller 2013-2015 The Kominsky Method Comedy 2018-2021 The Last of Us Adventure 2023- The Leftovers Mystery 2014-2017 The Lord of the Rings: The Rings of Power Fantasy 2022- The Mists of Avalon Fantasy 2001 The Sandman Mystery 2022-2025 The Witcher Adventure 2019- True Detective Crime 2014- Ugly Delicious Documentary 2018-2020 Under the Dome Mystery 2013-2015 Vikings Action 2013-2020 Westworld Sci-Fi 2016-2022 What We Do in the Shadows Comedy 2019-2024 You Drama 2018-2024</description><content:encoded><![CDATA[
<div id="outline-container-featuring-list" class="outline-2">
<h2 id="featuring-list">
Featuring list
</h2>
<div id="outline-text-featuring-list" class="outline-text-2">
<div class="grid grid--poster">
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/abstract-the-art-of-design-4895c2ddeb6de737.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/abstract-the-art-of-design-4895c2ddeb6de737.jpg"
          alt="Abstract: The Art of Design"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt6333098/">
            
            
            Abstract
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/black-mirror-44f6740cb266cff8.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/black-mirror-44f6740cb266cff8.jpg"
          alt="Black Mirror"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt2085059/">
            
            
            Black Mirror
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/sherlock-da4a29d301b91a22.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/sherlock-da4a29d301b91a22.jpg"
          alt="Sherlock"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt1475582/">
            
            
            Sherlock
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/rome-89c88ffd6ae1c77f.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/rome-89c88ffd6ae1c77f.jpg"
          alt="Rome"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt0384766/">
            
            
            Rome
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/what-we-do-in-the-shadows-776fea8878fd2b8e.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/what-we-do-in-the-shadows-776fea8878fd2b8e.jpg"
          alt="What We Do in the Shadows"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt7908628/">
            
            
            What We Do in the Shadows
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/black-books-503bbd2b3f059251.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/black-books-503bbd2b3f059251.jpg"
          alt="Black Books"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt0262150/">
            
            
            Black Books
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/penny-dreadful-dd426e68e6287ef7.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/penny-dreadful-dd426e68e6287ef7.jpg"
          alt="Penny Dreadful"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt2628232/">
            
            
            Penny Dreadful
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/tvshows/hannibal-ecc21c8a86c0277d.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/tvshows/hannibal-ecc21c8a86c0277d.jpg"
          alt="Hannibal"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.imdb.com/title/tt2243973/">
            
            
            Hannibal
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
</div>

</div>
</div>
<div id="outline-container-alphabetical-list" class="outline-2">
<h2 id="alphabetical-list">
Alphabetical list
</h2>
<div id="outline-text-alphabetical-list" class="outline-text-2">
<table class="width-100">
  <caption class="sr-only">
    Favorite TV Shows
  </caption>
  <thead>
    <tr>
      <th>TV Show</th>
      <th>Genre</th>
      <th>Year</th>
    </tr>
  </thead>
  <tbody>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt6333098/">Abstract: The Art of Design</a>
      </td>
      <td data-cell="Genre">
	    Documentary
      </td>
      <td data-cell="Year">
	    2017-2019
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2261227/">Altered Carbon</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    2018-2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt9253284/">Andor</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    2022-2025
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt32236037/">Ângela Diniz: Murdered and Convicted</a>
      </td>
      <td data-cell="Genre">
	    Crime
      </td>
      <td data-cell="Year">
	    2025
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt4288182/">Atlanta</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2016-2022
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt6315640/">Atypical</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2017-2021
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2188671/">Bates Motel</a>
      </td>
      <td data-cell="Genre">
	    Mystery
      </td>
      <td data-cell="Year">
	    2013-2017
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0262150/">Black Books</a>
      </td>
      <td data-cell="Genre">
	    Comedy
      </td>
      <td data-cell="Year">
	    2000-2004
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2085059/">Black Mirror</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    2011-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt3398228/">BoJack Horseman</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2014-2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0903747/">Breaking Bad</a>
      </td>
      <td data-cell="Genre">
	    Thriller
      </td>
      <td data-cell="Year">
	    2008-2013
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt6517102/">Castlevania</a>
      </td>
      <td data-cell="Genre">
	    Fantasy
      </td>
      <td data-cell="Year">
	    2017-2021
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt4295140/">Chef&#39;s Table</a>
      </td>
      <td data-cell="Genre">
	    Documentary
      </td>
      <td data-cell="Year">
	    2015-2019
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2634538/">Contos do Edgar</a>
      </td>
      <td data-cell="Genre">
	    Horror
      </td>
      <td data-cell="Year">
	    2013
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2395695/">Cosmos: A Spacetime Odyssey</a>
      </td>
      <td data-cell="Genre">
	    Documentary
      </td>
      <td data-cell="Year">
	    2014
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2094262/">Da Vinci&#39;s Demons</a>
      </td>
      <td data-cell="Genre">
	    Adventure
      </td>
      <td data-cell="Year">
	    2013-2015
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt5753856/">Dark</a>
      </td>
      <td data-cell="Genre">
	    Mystery
      </td>
      <td data-cell="Year">
	    2017-2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0773262/">Dexter</a>
      </td>
      <td data-cell="Genre">
	    Crime
      </td>
      <td data-cell="Year">
	    2006-2013
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0436992/">Doctor Who</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    2005-2022
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0108778/">Friends</a>
      </td>
      <td data-cell="Genre">
	    Comedy
      </td>
      <td data-cell="Year">
	    1994-2004
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0944947/">Game of Thrones</a>
      </td>
      <td data-cell="Genre">
	    Fantasy
      </td>
      <td data-cell="Year">
	    2011-2019
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt13357124/">Gokushufudo</a>
      </td>
      <td data-cell="Genre">
	    Comedy
      </td>
      <td data-cell="Year">
	    2021-2023
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2243973/">Hannibal</a>
      </td>
      <td data-cell="Genre">
	    Crime
      </td>
      <td data-cell="Year">
	    2013-2015
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1856010/">House of Cards</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2013-2018
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0213338/">Kaubôi bibappu: Cowboy Bebop</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    1998-1999
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt6468322/">La casa de papel</a>
      </td>
      <td data-cell="Genre">
	    Action
      </td>
      <td data-cell="Year">
	    2017-2021
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt9140554/">Loki</a>
      </td>
      <td data-cell="Genre">
	    Fantasy
      </td>
      <td data-cell="Year">
	    2021-2023
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2189461/">Marco Polo</a>
      </td>
      <td data-cell="Genre">
	    Adventure
      </td>
      <td data-cell="Year">
	    2014-2016
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0448190/">Masters of Horror</a>
      </td>
      <td data-cell="Genre">
	    Horror
      </td>
      <td data-cell="Year">
	    2005-2007
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt4580372/">Merlí</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2015-2018
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt3502172/">Mozart in the Jungle</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2014-2018
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt4158110/">Mr. Robot</a>
      </td>
      <td data-cell="Genre">
	    Thriller
      </td>
      <td data-cell="Year">
	    2015-2019
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2707408/">Narcos</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2015-2017
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt9059760/">Normal People</a>
      </td>
      <td data-cell="Genre">
	    Romance
      </td>
      <td data-cell="Year">
	    2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2628232/">Penny Dreadful</a>
      </td>
      <td data-cell="Genre">
	    Horror
      </td>
      <td data-cell="Year">
	    2014-2016
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0287262/">Presença de Anita</a>
      </td>
      <td data-cell="Genre">
	    Romance
      </td>
      <td data-cell="Year">
	    2001
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0384766/">Rome</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2005-2007
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0259153/">Rose Red</a>
      </td>
      <td data-cell="Genre">
	    Horror
      </td>
      <td data-cell="Year">
	    2002
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7767422/">Sex Education</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2019-2023
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1475582/">Sherlock</a>
      </td>
      <td data-cell="Genre">
	    Crime
      </td>
      <td data-cell="Year">
	    2010-2017
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2788316/">Shōgun</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2024-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1124373/">Sons of Anarchy</a>
      </td>
      <td data-cell="Genre">
	    Thriller
      </td>
      <td data-cell="Year">
	    2008-2014
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1632701/">Suits</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2011-2019
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt14452776/">The Bear</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2022-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1582457/">The Borgias</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2011-2013
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2071645/">The Following</a>
      </td>
      <td data-cell="Genre">
	    Thriller
      </td>
      <td data-cell="Year">
	    2013-2015
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7255502/">The Kominsky Method</a>
      </td>
      <td data-cell="Genre">
	    Comedy
      </td>
      <td data-cell="Year">
	    2018-2021
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt3581920/">The Last of Us</a>
      </td>
      <td data-cell="Genre">
	    Adventure
      </td>
      <td data-cell="Year">
	    2023-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2699128/">The Leftovers</a>
      </td>
      <td data-cell="Genre">
	    Mystery
      </td>
      <td data-cell="Year">
	    2014-2017
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7631058/">The Lord of the Rings: The Rings of Power</a>
      </td>
      <td data-cell="Genre">
	    Fantasy
      </td>
      <td data-cell="Year">
	    2022-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0244353/">The Mists of Avalon</a>
      </td>
      <td data-cell="Genre">
	    Fantasy
      </td>
      <td data-cell="Year">
	    2001
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1751634/">The Sandman</a>
      </td>
      <td data-cell="Genre">
	    Mystery
      </td>
      <td data-cell="Year">
	    2022-2025
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt5180504/">The Witcher</a>
      </td>
      <td data-cell="Genre">
	    Adventure
      </td>
      <td data-cell="Year">
	    2019-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2356777/">True Detective</a>
      </td>
      <td data-cell="Genre">
	    Crime
      </td>
      <td data-cell="Year">
	    2014-
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7907916/">Ugly Delicious</a>
      </td>
      <td data-cell="Genre">
	    Documentary
      </td>
      <td data-cell="Year">
	    2018-2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt1553656/">Under the Dome</a>
      </td>
      <td data-cell="Genre">
	    Mystery
      </td>
      <td data-cell="Year">
	    2013-2015
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt2306299/">Vikings</a>
      </td>
      <td data-cell="Genre">
	    Action
      </td>
      <td data-cell="Year">
	    2013-2020
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt0475784/">Westworld</a>
      </td>
      <td data-cell="Genre">
	    Sci-Fi
      </td>
      <td data-cell="Year">
	    2016-2022
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7908628/">What We Do in the Shadows</a>
      </td>
      <td data-cell="Genre">
	    Comedy
      </td>
      <td data-cell="Year">
	    2019-2024
      </td>
    </tr>
    
    <tr>
      <td data-cell="TV Show">
	    <a href="https://www.imdb.com/title/tt7335184/">You</a>
      </td>
      <td data-cell="Genre">
	    Drama
      </td>
      <td data-cell="Year">
	    2018-2024
      </td>
    </tr>
    
  </tbody>
</table>

</div>
</div>
]]></content:encoded></item><item><title>Collections: Bookmarks</title><link>https://eternodevir.com/palimpsests/misc/bookmarks/</link><pubDate>Sun, 28 Jan 2024 11:12:03 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/misc/bookmarks/</guid><description>Collection of links to other valuable digital realms. In this page Core resources Projects and guides Utilities and miscellaneous Wikis and archives Magazines and news Games and fun Manifestos Clubs Groups People Articles Core resources kernel.org The Linux Kernel Archives. gnu.org The GNU Project website. rfc-editor.org The RFC Series (ISSN 2070-1721) contains technical and organizational documents about the internet. ietf.org The Internet Engineering Task Force (IETF), founded in 1986. It is the premier standards development organization (SDO) for the Internet. whatwg.org The Web Hypertext Application Technology Working Group (WHATWG). It is responsible for the HTML specification and other web standards. owasp.org The Open Worldwide Application Security Project (OWASP) is a nonprofit foundation that works to improve the security of software. cwe.mitre.org Mitre&amp;#39;s Common Weakness Enumeration (CWE) is a community-developed list of common software and hardware weaknesses. nvd.nist.gov The National Vulnerability Database (NVD) is the U.S. government repository for detailed information on publicly known cybersecurity vulnerabilities. semver.org The Semantic Versioning specification. conventionalcommits.org The Conventional Commits specification. Projects and guides linuxfromscratch.org Linux from Scratch (LFS) provides step-by-step instructions for building your own custom Linux system, entirely from source code. missing.csail.mit.edu The missing semester of your CS education. A MIT project that covers topics to be an effective computer scientist and programmer. penkesu.computer Penkesu (ペンケース) computer, a Homebrew retro-style handheld PC. nand2tetris.org From NAND to Tetris. A project for building a modern computer from first principles. projecteuler.net Project Euler is a series of challenging mathematical/computer programming problems. cses.fi The Code Submission Evaluation System (CSES) Problem Set is a collection of algorithm programming practice problems. makeityourself.org Make it Yourself showcases global creativity with 1000+ DIY projects, highlighting the possibilities of freely shared, high-quality, self-made creations. ifixit.com iFixit is the world&amp;#39;s largest online repair community, helping thousands of people fix their broken stuff every day. livingcomputers.org Living Computers offers online computer science education resources. git-send-email.io A simple guide to setting up and using git send-email for emailing patches directly from a Git repository. untools.co Thinking tools and frameworks to help you solve problems, make decisions and understand systems. Utilities and miscellaneous godbolt.org Godbolt&amp;#39;s Compiler Explorer is an interactive compiler exploration website that supports many programming languages and Vim-like editing. open-scap.org OpenSCAP is ecosystem that provides multiple tools to assist administrators and auditors with assessment, measurement, and enforcement of security baselines. repology.org Repology is a package tracking service that monitors repositories across multiple Linux and BSD distributions, providing insights on package versions and other related information. crontab.guru Crontab Guru is a quick and simple editor for cron schedule expressions. frogfind.com Frog Find is a lightweight, retro-style search engine designed for speed and simplicity, perfect for old machines and minimalistic browsing. lua.org The Brazilian programming language Lua, designed at PUC-Rio. gnus.org Gnus Network User Services (Gnus), a message reader part of GNU Emacs. orgmode.org Org Mode is a fast and effective GNU Emacs plain text system for keeping notes, authoring documents, literate programming, planning projects, and much more. uml-diagrams.org A comprehensive resource on Unified Modeling Language (UML) diagrams. cs.yale.edu/homes/perlis-alan/quotes.html Yale&amp;#39;s Alan Perlis Quotes is a collection of one-liners on programming, computing, and life from the computer science pioneer. Wikis and archives savethesounds.info The Museum of Endangered Sounds. textfiles.com Textfiles is a glimpse into the history of writers and artists bound by the 128 characters from the American Standard Code for Information Interchange (ASCII). bienal.org.br The Bienal Archive, one of the most important centers of documentation of contemporary and modern artistic production in Latin America. ethw.org The Engineering and Technology History Wiki (ETHW) is one of the world’s premier sites for the documentation and analysis of the history of technology. tedinski.com Tedinski&amp;#39;s Archive about programming design models and design case studies on various system. typewritten.org Typewritten is a retrotechnology research lab. archive.org The Internet Archive is building a digital library of Internet sites and other cultural artifacts in digital form. visualverse.org Visual Verse is a unique literary journal containing more than 11,000 pieces of ekphrastic writing. curlie.org Curlie strives to be the largest human-edited directory of the Web. wiby.me The Wiby search engine builds a web of pages as it was in the earlier days of the internet. lieu.cblgh.org Lieu is an alternative search engine. Created in response to the environs of apathy concerning the use of hypertext search and discovery. webtender.com Webtender is a database about drinks and bartending, inspired by the Amiga PC. ottavianas-kitchen.com Ottaviana&amp;#39;s Kitchen is a family collection of authentic Italian recipes. bitsavers.org Bitsavers hosts archives of software, computing, communications, components, magazines, and test equipments. amr.abime.net Amiga Magazine Rack contains reviews, previews, cheats, coverdisks, public domain, covers, trivia and thousands of page scans from Amiga mags. toastytech.com/guis Toastytech&amp;#39;s GUI Gallery gathers screen shots of various desktop computer Graphical User Interfaces and operating systems. gregdonner.org/workbench Gregdonner&amp;#39;s Workbench Nostalgia is dedicated to the preservation of the interesting history of the AmigaOS, especially its GUI known as Workbench. exxoshost.co.uk/atari/mirror/myatari The final resting place of MyAtari Magazine, the online magazine for Atari enthusiasts published between October 2000 and February 2005. Magazines and news news.ycombinator.com Hacker News (HN) is a news aggregator where users can find and discuss content on anything that gratifies one’s intellectual curiosity. solar.lowtechmagazine.com Low-tech Magazine underscores the potential of past and often forgotten technologies and how they can inform sustainable energy practices. notechmagazine.com No Tech Magazine hosts all links and updates from the Low-tech Magazine. phrack.org Phrack is a zine older than the World Wide Web. Since 1985, it has been a premier publication for new and exciting discoveries in the world of hacking. webzine.puffy.cafe OpenBSD Webzine, a tasty dose of OpenBSD news. golem.ph.utexas.edu/category The n-category café is a group publication concerning category theory, mathematics, physics, and philosophy. publicdomainreview.org The Public Domain Review is an online journal dedicated to the exploration of curious and compelling works from the history of art, literature, and ideas. Games and fun englishsandwich.github.io English Sandwich is a quiz game. Can you guess where each food dish is from? wheels.org/spacewar Spacewar was one of the most important computer games ever. This is a dump of historical information about the game along with a Macintosh build. wordsandbuttons.online Words and Buttons is a collection of interactive tutorials, demos, and quizzes about mathematics, algorithms, and programming. overthewire.org OverTheWire offers engaging wargames for learning and practicing security concepts through fun-filled challenges. unixgraybeard.com A satire about the Unix Graybeards, a.k.a our future selves. dnshaiku.com DNS Haiku is a poem dedicated to the universal IT truth. neal.fun Games and stuff of Neal. lichess.org Lichess is a free/libre open-source chess server powered by volunteers and donations. It is one of the most popular chess websites in the world. itch.io Itch.io is a platform that enables indie creators to share and sell unique digital content. No ads, no limits, just creative freedom. xkcd.com Xkcd is a webcomic of romance, sarcasm, math, and language. ascii.theater ASCII Theater streams free text-based films inside the terminal. existentialcomics.com Existential Comics is a philosophy comic about the inevitable anguish of living a brief life in an absurd world. flamewarriorsguide.com Flame Warriors is a satirical guide to internet personas, it humorously profiles the archetypes of online arguments, from trolls to peacemakers. Manifestos repair.org Right to Repair fights for customer rights. You bought it, you should have the right to use it, modify it, and repair it wherever, whenever, and however you want. bauhausmanifesto.com Bauhaus was a German art school that combined crafts and the fine arts. It is famous for a multi-disciplinary approach to art and design education. useplaintext.email Use Plaintext Email introduces the norms and conventions of plain text email why it is better than HTML emails. slow-science.org The Slow Science manifesto advocates for a deliberate, reflective approach to research, emphasizing the importance of time in scientific context. brutalist-web.design Brutalist Web Design proposes a web design focused on raw content true to its construction, prioritizing the website visitors, simplicity, and performance. nospec.com No!Spec promotes professional, ethical business practices by saying no to spec work and spec-based design contests. permacomputing.net Inspired by the permaculture, permacomputing encourages practices of resilience and regenerativity in computer and network technology. gnu.org/philosophy/free-sw.html Free Software guarantees that users have the freedom to run, copy, distribute, study, change and improve the software. justforfunnoreally.dev Just for Fun No Really celebrates the art of building software for the fun of it. Clubs rawtext.club Rawtext.club is an experimental community for socializing, digital skill building, and collaboration through the medium of the GNU/Linux shell. tilde.club Tilde.club is a standard Unix computer that people respectfully use together in their shared quest to build web pages. sdf.org The Super Dimension Fortress (SDF) is a Public Access Unix system, started in 1987, for Free Software authors, teachers, students, researchers, and enthusiasts. neocities.org Neocities is an open-source web hosting service for static pages bringing back the lost individual creativity of the web. capivaras.dev Capivaras is a minimalist, streamlined blogging platform for a small and friendly community of capybaras. emacs-berlin.org Emacs Berlin gathers Emacs enthusiasts based in Berlin holding regular meetings to discuss and present the art of M-x. 250kb.club The 250KB Club is a curated collection of web pages that focus on performance, efficiency and accessibility. no-js.club The No-JS Club is a curated collection of Javascript-free web pages. darktheme.club The Dark Theme Club is a curated collection of web pages using either a dark theme by default or respecting users&amp;#39; preferences. bukmark.club The BUKMARK.CLUB is a collection of websites from across the Internet that maintain a curated collection of bookmarks and/or links to other websites. Groups 5bits.one 010 001 111 inkandswitch.com Ink &amp;amp; Switch is an independent research lab working on computing solutions for creative professionals. suckless.org Suckless is a programming collective designing elegant software for advanced and experienced users. They focus on keeping things simple, minimal and usable. spritely.institute Spritely is an institute creating open standards and freely licensed open source reference implementations for safe, decentralized networked communities. indieweb.org IndieWeb is a community of independent and personal websites connected by open standards. It is a people-focused alternative to the social media. People Here is a list of personal websites that I find interesting and inspiring. Most of them are related to either art or technology. To keep up with new posts, I have their RSS feeds in Gnus (my news reader) as well.</description><content:encoded><![CDATA[
<div class="h5"><small><strong>In this page</strong></small></div>
<nav>
<ul>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#core-resources">Core resources</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#projects-and-guides">Projects and guides</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#utilities-and-miscellaneous">Utilities and miscellaneous</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#wikis-and-archives">Wikis and archives</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#magazines-and-news">Magazines and news</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#games-and-fun">Games and fun</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#manifestos">Manifestos</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#clubs">Clubs</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#groups">Groups</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#people">People</a>
</li>
<li><a href="https://eternodevir.com/palimpsests/misc/bookmarks/#articles">Articles</a>
</li>
</ul>
</nav>
<div id="outline-container-core-resources" class="outline-2">
<h2 id="core-resources">
Core resources
</h2>
<div id="outline-text-core-resources" class="outline-text-2">
<dl>
<dt>
<a href="https://kernel.org/">kernel.org</a>
</dt>
<dd>The Linux Kernel Archives.</dd>
<dt>
<a href="https://www.gnu.org/">gnu.org</a>
</dt>
<dd>The GNU Project website.</dd>
<dt>
<a href="https://www.rfc-editor.org/">rfc-editor.org</a>
</dt>
<dd>The RFC Series (ISSN 2070-1721) contains technical and organizational documents about the internet.</dd>
<dt>
<a href="https://www.ietf.org/">ietf.org</a>
</dt>
<dd>The Internet Engineering Task Force (IETF), founded in 1986. It is the premier standards development organization (SDO) for the Internet.</dd>
<dt>
<a href="https://whatwg.org/">whatwg.org</a>
</dt>
<dd>The Web Hypertext Application Technology Working Group (WHATWG). It is responsible for the HTML specification and other web standards.</dd>
<dt>
<a href="https://owasp.org/">owasp.org</a>
</dt>
<dd>The Open Worldwide Application Security Project (OWASP) is a nonprofit foundation that works to improve the security of software.</dd>
<dt>
<a href="https://cwe.mitre.org/index.html">cwe.mitre.org</a>
</dt>
<dd>Mitre&#39;s Common Weakness Enumeration (CWE) is a community-developed list of common software and hardware weaknesses.</dd>
<dt>
<a href="https://nvd.nist.gov">nvd.nist.gov</a>
</dt>
<dd>The National Vulnerability Database (NVD) is the U.S. government repository for detailed information on publicly known cybersecurity vulnerabilities.</dd>
<dt>
<a href="https://semver.org/">semver.org</a>
</dt>
<dd>The Semantic Versioning specification.</dd>
<dt>
<a href="https://www.conventionalcommits.org/en/v1.0.0/">conventionalcommits.org</a>
</dt>
<dd>The Conventional Commits specification.</dd>
</dl>
</div>
</div>
<div id="outline-container-projects-and-guides" class="outline-2">
<h2 id="projects-and-guides">
Projects and guides
</h2>
<div id="outline-text-projects-and-guides" class="outline-text-2">
<dl>
<dt>
<a href="https://www.linuxfromscratch.org/">linuxfromscratch.org</a>
</dt>
<dd>Linux from Scratch (LFS) provides step-by-step instructions for building your own custom Linux system, entirely from source code.</dd>
<dt>
<a href="https://missing.csail.mit.edu/">missing.csail.mit.edu</a>
</dt>
<dd>The missing semester of your CS education. A MIT project that covers topics to be an effective computer scientist and programmer.</dd>
<dt>
<a href="https://penkesu.computer/">penkesu.computer</a>
</dt>
<dd>Penkesu (ペンケース) computer, a Homebrew retro-style handheld PC.</dd>
<dt>
<a href="https://www.nand2tetris.org/">nand2tetris.org</a>
</dt>
<dd>From NAND to Tetris. A project for building a modern computer from first principles.</dd>
<dt>
<a href="https://projecteuler.net/">projecteuler.net</a>
</dt>
<dd>Project Euler is a series of challenging mathematical/computer programming problems.</dd>
<dt>
<a href="https://cses.fi/problemset/">cses.fi</a>
</dt>
<dd>The Code Submission Evaluation System (CSES) Problem Set is a collection of algorithm programming practice problems.</dd>
<dt>
<a href="https://makeityourself.org">makeityourself.org</a>
</dt>
<dd>Make it Yourself showcases global creativity with 1000+ DIY projects, highlighting the possibilities of freely shared, high-quality, self-made creations.</dd>
<dt>
<a href="https://www.ifixit.com/">ifixit.com</a>
</dt>
<dd>iFixit is the world&#39;s largest online repair community, helping thousands of people fix their broken stuff every day.</dd>
<dt>
<a href="https://livingcomputers.org/">livingcomputers.org</a>
</dt>
<dd>Living Computers offers online computer science education resources.</dd>
<dt>
<a href="https://git-send-email.io/">git-send-email.io</a>
</dt>
<dd>A simple guide to setting up and using git send-email for emailing patches directly from a Git repository.</dd>
<dt>
<a href="https://untools.co/">untools.co</a>
</dt>
<dd>Thinking tools and frameworks to help you solve problems, make decisions and understand systems.</dd>
</dl>
</div>
</div>
<div id="outline-container-utilities-and-miscellaneous" class="outline-2">
<h2 id="utilities-and-miscellaneous">
Utilities and miscellaneous
</h2>
<div id="outline-text-utilities-and-miscellaneous" class="outline-text-2">
<dl>
<dt>
<a href="https://godbolt.org/">godbolt.org</a>
</dt>
<dd>Godbolt&#39;s Compiler Explorer is an interactive compiler exploration website that supports many programming languages and Vim-like editing.</dd>
<dt>
<a href="https://www.open-scap.org/">open-scap.org</a>
</dt>
<dd>OpenSCAP is ecosystem that provides multiple tools to assist administrators and auditors with assessment, measurement, and enforcement of security baselines.</dd>
<dt>
<a href="https://repology.org/">repology.org</a>
</dt>
<dd>Repology is a package tracking service that monitors repositories across multiple Linux and BSD distributions, providing insights on package versions and other related information.</dd>
<dt>
<a href="https://crontab.guru/">crontab.guru</a>
</dt>
<dd>Crontab Guru is a quick and simple editor for cron schedule expressions.</dd>
<dt>
<a href="https://frogfind.com/">frogfind.com</a>
</dt>
<dd>Frog Find is a lightweight, retro-style search engine designed for speed and simplicity, perfect for old machines and minimalistic browsing.</dd>
<dt>
<a href="https://lua.org">lua.org</a>
</dt>
<dd>The Brazilian programming language Lua, designed at PUC-Rio.</dd>
<dt>
<a href="https://gnus.org">gnus.org</a>
</dt>
<dd>Gnus Network User Services (Gnus), a message reader part of GNU Emacs.</dd>
<dt>
<a href="https://orgmode.org/">orgmode.org</a>
</dt>
<dd>Org Mode is a fast and effective GNU Emacs plain text system for keeping notes, authoring documents, literate programming, planning projects, and much more.</dd>
<dt>
<a href="https://www.uml-diagrams.org/">uml-diagrams.org</a>
</dt>
<dd>A comprehensive resource on Unified Modeling Language (UML) diagrams.</dd>
<dt>
<a href="https://www.cs.yale.edu/homes/perlis-alan/quotes.html">cs.yale.edu/homes/perlis-alan/quotes.html</a>
</dt>
<dd>Yale&#39;s Alan Perlis Quotes is a collection of one-liners on programming, computing, and life from the computer science pioneer.</dd>
</dl>
</div>
</div>
<div id="outline-container-wikis-and-archives" class="outline-2">
<h2 id="wikis-and-archives">
Wikis and archives
</h2>
<div id="outline-text-wikis-and-archives" class="outline-text-2">
<dl>
<dt>
<a href="http://savethesounds.info/">savethesounds.info</a>
</dt>
<dd>The Museum of Endangered Sounds.</dd>
<dt>
<a href="http://textfiles.com/">textfiles.com</a>
</dt>
<dd>Textfiles is a glimpse into the history of writers and artists bound by the 128 characters from the American Standard Code for Information Interchange (ASCII).</dd>
<dt>
<a href="https://bienal.org.br/en/home/">bienal.org.br</a>
</dt>
<dd>The Bienal Archive, one of the most important centers of documentation of contemporary and modern artistic production in Latin America.</dd>
<dt>
<a href="https://ethw.org/">ethw.org</a>
</dt>
<dd>The Engineering and Technology History Wiki (ETHW) is one of the world’s premier sites for the documentation and  analysis of the history of technology.</dd>
<dt>
<a href="https://www.tedinski.com/archive/">tedinski.com</a>
</dt>
<dd>Tedinski&#39;s Archive about programming design models and design case studies on various system.</dd>
<dt>
<a href="http://www.typewritten.org/">typewritten.org</a>
</dt>
<dd>Typewritten is a retrotechnology research lab.</dd>
<dt>
<a href="https://archive.org/">archive.org</a>
</dt>
<dd>The Internet Archive is building a digital library of Internet sites and other cultural artifacts in digital form.</dd>
<dt>
<a href="https://visualverse.org/">visualverse.org</a>
</dt>
<dd>Visual Verse is a unique literary journal containing more than 11,000 pieces of ekphrastic writing.</dd>
<dt>
<a href="https://curlie.org/">curlie.org</a>
</dt>
<dd>Curlie strives to be the largest human-edited directory of the Web.</dd>
<dt>
<a href="https://wiby.me/">wiby.me</a>
</dt>
<dd>The Wiby search engine builds a web of pages as it was in the earlier days of the internet.</dd>
<dt>
<a href="https://lieu.cblgh.org/">lieu.cblgh.org</a>
</dt>
<dd>Lieu is an alternative search engine. Created in response to the environs of apathy concerning the use of hypertext search and discovery.</dd>
<dt>
<a href="https://www.webtender.com">webtender.com</a>
</dt>
<dd>Webtender is a database about drinks and bartending, inspired by the Amiga PC.</dd>
<dt>
<a href="https://ottavianas-kitchen.com/">ottavianas-kitchen.com</a>
</dt>
<dd>Ottaviana&#39;s Kitchen is a family collection of authentic Italian recipes.</dd>
<dt>
<a href="http://www.bitsavers.org/">bitsavers.org</a>
</dt>
<dd>Bitsavers hosts archives of software, computing, communications, components, magazines, and test equipments.</dd>
<dt>
<a href="https://amr.abime.net/">amr.abime.net</a>
</dt>
<dd>Amiga Magazine Rack contains reviews, previews, cheats, coverdisks, public domain, covers, trivia and thousands of page scans from Amiga mags.</dd>
<dt>
<a href="http://toastytech.com/guis/">toastytech.com/guis</a>
</dt>
<dd>Toastytech&#39;s GUI Gallery gathers screen shots of various desktop computer Graphical User Interfaces and operating systems.</dd>
<dt>
<a href="https://www.gregdonner.org/workbench/">gregdonner.org/workbench</a>
</dt>
<dd>Gregdonner&#39;s Workbench Nostalgia is dedicated to the preservation of the interesting history of the AmigaOS, especially its GUI known as Workbench.</dd>
<dt>
<a href="https://www.exxoshost.co.uk/atari/mirror/myatari/index.htm">exxoshost.co.uk/atari/mirror/myatari</a>
</dt>
<dd>The final resting place of MyAtari Magazine, the online magazine for Atari enthusiasts published between October 2000 and February 2005.</dd>
</dl>
</div>
</div>
<div id="outline-container-magazines-and-news" class="outline-2">
<h2 id="magazines-and-news">
Magazines and news
</h2>
<div id="outline-text-magazines-and-news" class="outline-text-2">
<dl>
<dt>
<a href="https://news.ycombinator.com/">news.ycombinator.com</a>
</dt>
<dd>Hacker News (HN) is a news aggregator where users can find and discuss content on anything that gratifies one’s intellectual curiosity.</dd>
<dt>
<a href="https://solar.lowtechmagazine.com/">solar.lowtechmagazine.com</a>
</dt>
<dd>Low-tech Magazine underscores the potential of past and often forgotten technologies and how they can inform sustainable energy practices.</dd>
<dt>
<a href="https://www.notechmagazine.com/">notechmagazine.com</a>
</dt>
<dd>No Tech Magazine hosts all links and updates from the Low-tech Magazine.</dd>
<dt>
<a href="http://phrack.org">phrack.org</a>
</dt>
<dd>Phrack is a zine older than the World Wide Web. Since 1985, it has been a premier publication for new and exciting discoveries in the world of hacking.</dd>
<dt>
<a href="https://webzine.puffy.cafe/">webzine.puffy.cafe</a>
</dt>
<dd>OpenBSD Webzine, a tasty dose of OpenBSD news.</dd>
<dt>
<a href="https://golem.ph.utexas.edu/category/">golem.ph.utexas.edu/category</a>
</dt>
<dd>The n-category café is a group publication concerning category theory, mathematics, physics, and philosophy.</dd>
<dt>
<a href="https://publicdomainreview.org/">publicdomainreview.org</a>
</dt>
<dd>The Public Domain Review is an online journal dedicated to the exploration of curious and compelling works from the history of art, literature, and ideas.</dd>
</dl>
</div>
</div>
<div id="outline-container-games-and-fun" class="outline-2">
<h2 id="games-and-fun">
Games and fun
</h2>
<div id="outline-text-games-and-fun" class="outline-text-2">
<dl>
<dt>
<a href="https://englishsandwich.github.io/">englishsandwich.github.io</a>
</dt>
<dd>English Sandwich is a quiz game. Can you guess where each food dish is from?</dd>
<dt>
<a href="https://wheels.org/spacewar/index.html">wheels.org/spacewar</a>
</dt>
<dd>Spacewar was one of the most important computer games ever. This is a dump of historical information about the game along with a Macintosh build.</dd>
<dt>
<a href="https://wordsandbuttons.online/">wordsandbuttons.online</a>
</dt>
<dd>Words and Buttons is a collection of interactive tutorials, demos, and quizzes about mathematics, algorithms, and programming.</dd>
<dt>
<a href="https://overthewire.org/">overthewire.org</a>
</dt>
<dd>OverTheWire offers engaging wargames for learning and practicing security concepts through fun-filled challenges.</dd>
<dt>
<a href="https://unixgraybeard.com/">unixgraybeard.com</a>
</dt>
<dd>A satire about the Unix Graybeards, a.k.a our future selves.</dd>
<dt>
<a href="https://dnshaiku.com/">dnshaiku.com</a>
</dt>
<dd>DNS Haiku is a poem dedicated to the universal IT truth.</dd>
<dt>
<a href="https://neal.fun/">neal.fun</a>
</dt>
<dd>Games and stuff of Neal.</dd>
<dt>
<a href="https://lichess.org/">lichess.org</a>
</dt>
<dd>Lichess is a free/libre open-source chess server powered by volunteers and donations. It is one of the most popular chess websites in the world.</dd>
<dt>
<a href="https://itch.io/">itch.io</a>
</dt>
<dd>Itch.io is a platform that enables indie creators to share and sell unique digital content. No ads, no limits, just creative freedom.</dd>
<dt>
<a href="https://xkcd.com/">xkcd.com</a>
</dt>
<dd>Xkcd is a webcomic of romance, sarcasm, math, and language.</dd>
<dt>
<a href="https://ascii.theater/">ascii.theater</a>
</dt>
<dd>ASCII Theater streams free text-based films inside the terminal.</dd>
<dt>
<a href="https://www.existentialcomics.com/">existentialcomics.com</a>
</dt>
<dd>Existential Comics is a philosophy comic about the inevitable anguish of living a brief life in an absurd world.</dd>
<dt>
<a href="https://www.flamewarriorsguide.com/">flamewarriorsguide.com</a>
</dt>
<dd>Flame Warriors is a satirical guide to internet personas, it humorously profiles the archetypes of online arguments, from trolls to peacemakers.</dd>
</dl>
</div>
</div>
<div id="outline-container-manifestos" class="outline-2">
<h2 id="manifestos">
Manifestos
</h2>
<div id="outline-text-manifestos" class="outline-text-2">
<dl>
<dt>
<a href="https://www.repair.org/">repair.org</a>
</dt>
<dd>Right to Repair fights for customer rights. You bought it, you should have the right to use it, modify it, and repair it wherever, whenever, and however you want.</dd>
<dt>
<a href="https://bauhausmanifesto.com/">bauhausmanifesto.com</a>
</dt>
<dd>Bauhaus was a German art school that combined crafts and the fine arts. It is famous for a multi-disciplinary approach to art and design education.</dd>
<dt>
<a href="https://useplaintext.email/">useplaintext.email</a>
</dt>
<dd>Use Plaintext Email introduces the norms and conventions of plain text email why it is better than HTML emails.</dd>
<dt>
<a href="http://slow-science.org/">slow-science.org</a>
</dt>
<dd>The Slow Science manifesto advocates for a deliberate, reflective approach to research, emphasizing the importance of time in scientific context.</dd>
<dt>
<a href="https://brutalist-web.design/">brutalist-web.design</a>
</dt>
<dd>Brutalist Web Design proposes a web design focused on raw content true to its construction, prioritizing the website visitors, simplicity, and performance.</dd>
<dt>
<a href="https://www.nospec.com/">nospec.com</a>
</dt>
<dd>No!Spec promotes professional, ethical business practices by saying no to spec work and spec-based design contests.</dd>
<dt>
<a href="https://permacomputing.net/">permacomputing.net</a>
</dt>
<dd>Inspired by the permaculture, permacomputing encourages practices of resilience and regenerativity in computer and network technology.</dd>
<dt>
<a href="https://www.gnu.org/philosophy/free-sw.html">gnu.org/philosophy/free-sw.html</a>
</dt>
<dd>Free Software guarantees that users have the freedom to run, copy, distribute, study, change and improve the software.</dd>
<dt>
<a href="https://justforfunnoreally.dev/">justforfunnoreally.dev</a>
</dt>
<dd>Just for Fun No Really celebrates the art of building software for the fun of it.</dd>
</dl>
</div>
</div>
<div id="outline-container-clubs" class="outline-2">
<h2 id="clubs">
Clubs
</h2>
<div id="outline-text-clubs" class="outline-text-2">
<dl>
<dt>
<a href="https://rawtext.club/">rawtext.club</a>
</dt>
<dd>Rawtext.club is an experimental community for socializing, digital skill building, and collaboration through the medium of the GNU/Linux shell.</dd>
<dt>
<a href="https://tilde.club/">tilde.club</a>
</dt>
<dd>Tilde.club is a standard Unix computer that people respectfully use together in their shared quest to build web pages.</dd>
<dt>
<a href="https://sdf.org/">sdf.org</a>
</dt>
<dd>The Super Dimension Fortress (SDF) is a Public Access Unix system, started in 1987, for Free Software authors, teachers, students, researchers, and enthusiasts.</dd>
<dt>
<a href="https://neocities.org/">neocities.org</a>
</dt>
<dd>Neocities is an open-source web hosting service for static pages bringing back the lost individual creativity of the web.</dd>
<dt>
<a href="https://capivaras.dev">capivaras.dev</a>
</dt>
<dd>Capivaras is a minimalist, streamlined blogging platform for a small and friendly community of capybaras.</dd>
<dt>
<a href="https://emacs-berlin.org/">emacs-berlin.org</a>
</dt>
<dd>Emacs Berlin gathers Emacs enthusiasts based in Berlin holding regular meetings to discuss and present the art of M-x.</dd>
<dt>
<a href="https://250kb.club/">250kb.club</a>
</dt>
<dd>The 250KB Club is a curated collection of web pages that focus on performance, efficiency and accessibility.</dd>
<dt>
<a href="https://no-js.club/">no-js.club</a>
</dt>
<dd>The No-JS Club is a curated collection of Javascript-free web pages.</dd>
<dt>
<a href="https://darktheme.club/">darktheme.club</a>
</dt>
<dd>The Dark Theme Club is a curated collection of web pages using either a dark theme by default or respecting users&#39; preferences.</dd>
<dt>
<a href="https://bukmark.club/">bukmark.club</a>
</dt>
<dd>The BUKMARK.CLUB is a collection of websites from across the Internet that maintain a curated collection of bookmarks and/or links to other websites.</dd>
</dl>
</div>
</div>
<div id="outline-container-groups" class="outline-2">
<h2 id="groups">
Groups
</h2>
<div id="outline-text-groups" class="outline-text-2">
<dl>
<dt>
<a href="https://5bits.one/">5bits.one</a>
</dt>
<dd>010 001 111</dd>
<dt>
<a href="https://www.inkandswitch.com/">inkandswitch.com</a>
</dt>
<dd>Ink &amp; Switch is an independent research lab working on computing solutions for creative professionals.</dd>
<dt>
<a href="https://suckless.org/">suckless.org</a>
</dt>
<dd>Suckless is a programming collective designing elegant software for advanced and experienced users. They focus on keeping things simple, minimal and usable.</dd>
<dt>
<a href="https://spritely.institute/">spritely.institute</a>
</dt>
<dd>Spritely is an institute creating open standards and freely licensed open source reference implementations for safe, decentralized networked communities.</dd>
<dt>
<a href="https://indieweb.org/">indieweb.org</a>
</dt>
<dd>IndieWeb is a community of independent and personal websites connected by open standards. It is a people-focused alternative to the social media.</dd>
</dl>
</div>
</div>
<div id="outline-container-people" class="outline-2">
<h2 id="people">
People
</h2>
<div id="outline-text-people" class="outline-text-2">
<p>
Here is a list of personal websites that I find interesting and inspiring. Most of them are related to either art or technology. To keep up with new posts, I have their <a href="https://eternodevir.com/feed.xml">RSS feeds</a> in Gnus (my news reader) as well.</p>
<p>
<em>Please note that the views and opinions expressed on these websites do not necessarily reflect my own. However, I do enjoy reading and hearing from them.</em></p>
<ul>
<li><a href="https://anhvn.com/">anhvn.com</a></li>
<li><a href="https://atlasminor.com">atlasminor.com</a></li>
<li><a href="https://www.brendangregg.com/">brendangregg.com</a></li>
<li><a href="https://www.bunniestudios.com">bunniestudios.com</a></li>
<li><a href="http://www.call-with-current-continuation.org">call-with-current-continuation.org</a></li>
<li><a href="http://catb.org">catb.org</a></li>
<li><a href="https://causal.agency">causal.agency</a></li>
<li><a href="https://cblgh.org/">cblgh.org</a></li>
<li><a href="https://www.daemonology.net">daemonology.net</a></li>
<li><a href="https://datagubbe.se/">datagubbe.se</a></li>
<li><a href="https://daverupert.com">daverupert.com</a></li>
<li><a href="https://denvaar.dev">denvaar.dev</a></li>
<li><a href="https://dthompson.us/">dthompson.us</a></li>
<li><a href="https://dustycloud.org/">dustycloud.org</a></li>
<li><a href="https://dwheeler.com/">dwheeler.com</a></li>
<li><a href="https://eater.net">eater.net</a></li>
<li><a href="https://emile.space/">emile.space</a></li>
<li><a href="https://fabiensanglard.net/">fabiensanglard.net</a></li>
<li><a href="https://www.filfre.net/">filfre.net</a></li>
<li><a href="https://frostwarning.com/">frostwarning.com</a></li>
<li><a href="https://gluer.org/">gluer.org</a></li>
<li><a href="https://helveticablanc.com">helveticablanc.com</a></li>
<li><a href="https://heracl.es">heracl.es</a></li>
<li><a href="https://howardism.org/">howardism.org</a></li>
<li><a href="https://idiomdrottning.org/">idiomdrottning.org</a></li>
<li><a href="https://iquilezles.org">iquilezles.org</a></li>
<li><a href="https://jackrusher.com/">jackrusher.com</a></li>
<li><a href="https://justine.lol">justine.lol</a></li>
<li><a href="https://www.jwz.org/">jwz.org</a></li>
<li><a href="https://www.kitchensoap.com/">kitchensoap.com</a></li>
<li><a href="https://koehr.ing/">koehr.ing</a></li>
<li><a href="https://kokorobot.ca/">kokorobot.ca</a></li>
<li><a href="https://ladyada.net/">ladyada.net</a></li>
<li><a href="https://lambda-y.net/">lambda-y.net</a></li>
<li><a href="https://lars.ingebrigtsen.no/">lars.ingebrigtsen.no</a></li>
<li><a href="https://www.linusakesson.net">linusakesson.net</a></li>
<li><a href="https://www.moriyamadaido.com/">moriyamadaido.com</a></li>
<li><a href="https://mrmrs.cc/">mrmrs.cc</a></li>
<li><a href="https://neustadt.fr/">neustadt.fr</a></li>
<li><a href="https://norvig.com/">norvig.com</a></li>
<li><a href="https://nullprogram.com">nullprogram.com</a></li>
<li><a href="https://parenteses.org">parenteses.org</a></li>
<li><a href="https://www.paritybit.ca">paritybit.ca</a></li>
<li><a href="https://pluralistic.net/">pluralistic.net</a></li>
<li><a href="https://protesilaos.com/">protesilaos.com</a></li>
<li><a href="https://rachelbythebay.com">rachelbythebay.com</a></li>
<li><a href="https://ratfactor.com/">ratfactor.com</a></li>
<li><a href="https://www.righto.com/">righto.com</a></li>
<li><a href="https://robinrendle.com/">robinrendle.com</a></li>
<li><a href="https://timrodenbroeker.de/">timrodenbroeker.de</a></li>
<li><a href="https://sachachua.com/">sachachua.com</a></li>
<li><a href="https://shkspr.mobi">shkspr.mobi</a></li>
<li><a href="https://susam.net/">susam.net</a></li>
<li><a href="https://utcc.utoronto.ca/~cks/">utcc.utoronto.ca/~cks</a></li>
<li><a href="https://wingolog.org/">wingolog.org</a></li>
<li><a href="https://worrydream.com/">worrydream.com</a></li>
</ul>
</div>
</div>
<div id="outline-container-articles" class="outline-2">
<h2 id="articles">
Articles
</h2>
<div id="outline-text-articles" class="outline-text-2">
<p>
Posts and texts that I consider significant and worth keeping here. There is also another list containing other readings on my <a href="https://www.instapaper.com/p/12152153">Instapaper profile</a>. One day I may write a brief description for each entry on this section as well. <em>(I guess).</em></p>
<ul>
<li><a href="https://alistapart.com/article/web-typography-tables/">alistapart.com/article/web-typography-tables</a></li>
<li><a href="https://all-things-andy-gavin.com/2011/03/12/making-crash-bandicoot-gool-part-9/">all-things-andy-gavin.com/2011/03/12/making-crash-bandicoot-gool-part-9</a></li>
<li><a href="https://antonz.org/writing-package-manager/">antonz.org/writing-package-manager</a></li>
<li><a href="https://austinhenley.com/blog/challengingprojects.html">austinhenley.com/blog/challengingprojects.html</a></li>
<li><a href="https://backspace.com/notes/2009/07/design-manifestos.php">backspace.com/notes/2009/07/design-manifestos.php</a></li>
<li><a href="https://badcyber.com/dieselgate-but-for-trains-some-heavyweight-hardware-hacking/">badcyber.com/dieselgate-but-for-trains-some-heavyweight-hardware-hacking</a></li>
<li><a href="https://www.bell-labs.com/usr/dmr/www/chist.html">bell-labs.com/usr/dmr/www/chist.html</a></li>
<li><a href="https://blog.decryption.net.au/posts/macpaint.html">blog.decryption.net.au/posts/macpaint.html</a></li>
<li><a href="https://blog.sanctum.geek.nz/vim-anti-patterns/">blog.sanctum.geek.nz/vim-anti-patterns</a></li>
<li><a href="https://boehs.org/node/everything-i-know-about-the-xz-backdoor">boehs.org/node/everything-i-know-about-the-xz-backdoor</a></li>
<li><a href="http://www.catb.org/~esr/faqs/smart-questions.html">catb.org/~esr/faqs/smart-questions.html</a></li>
<li><a href="https://corecursive.com/lisp-in-space-with-ron-garret/">corecursive.com/lisp-in-space-with-ron-garret</a></li>
<li><a href="https://datagubbe.se/scenecop/">datagubbe.se/scenecop</a></li>
<li><a href="https://datatracker.ietf.org/doc/html/rfc2616">datatracker.ietf.org/doc/html/rfc2616</a></li>
<li><a href="https://datatracker.ietf.org/doc/html/rfc791">datatracker.ietf.org/doc/html/rfc791</a></li>
<li><a href="https://doc.norang.ca/org-mode.html">doc.norang.ca/org-mode.html</a></li>
<li><a href="https://dwheeler.com/secure-programs/">dwheeler.com/secure-programs</a></li>
<li><a href="https://ethw.org/Ancient_Computers">ethw.org/ancient_computers</a></li>
<li><a href="https://files.spritely.institute/papers/scheme-primer.html">files.spritely.institute/papers/scheme-primer.html</a></li>
<li><a href="https://www.gnu.org/philosophy/free-sw.html">gnu.org/philosophy/free-sw.html</a></li>
<li><a href="https://web.archive.org/web/20250613145116/https://graydon2.dreamwidth.org/307291.html">graydon2.dreamwidth.org/307291.html</a></li>
<li><a href="https://www.gtf.io/musings/why-haskell">gtf.io/musings/why-haskell</a></li>
<li><a href="https://heracl.es/html/">heracl.es/html</a></li>
<li><a href="https://heracl.es/url/">heracl.es/url</a></li>
<li><a href="https://home.cern/science/computing/birth-web/short-history-web">home.cern/science/computing/birth-web/short-history-web</a></li>
<li><a href="https://www.inkandswitch.com/local-first/">inkandswitch.com/local-first</a></li>
<li><a href="https://www.inkandswitch.com/slow-software/">inkandswitch.com/slow-software</a></li>
<li><a href="https://www.in-ulm.de/~mascheck/bourne/">in-ulm.de/~mascheck/bourne</a></li>
<li><a href="https://www.itsnicethat.com/articles/elizabeth-goodspeed-column-taste-technology-art-280224">itsnicethat.com/articles/elizabeth-goodspeed-column-taste-technology-art-280224</a></li>
<li><a href="https://jeffhuang.com/designed_to_last/">jeffhuang.com/designed_to_last</a></li>
<li><a href="https://justinjackson.ca/words.html">justinjackson.ca/words.html</a></li>
<li><a href="https://www.jwz.org/blog/2016/09/searching-for-finally-got-my-emacs-setup-just-how-i-like-it-yields-excellent-results/">jwz.org/blog/2016/09/searching-for-finally-got-my-emacs-setup-just-how-i-like-it-yields-excellent-results/</a></li>
<li><a href="https://neustadt.fr/essays/the-small-web/">neustadt.fr/essays/the-small-web</a></li>
<li><a href="https://norvig.com/21-days.html">norvig.com/21-days.html</a></li>
<li><a href="https://www.newyorker.com/magazine/2003/10/06/the-challenge-gabriel-garcia-marquez">newyorker.com/magazine/2003/10/06/the-challenge-gabriel-garcia-marquez</a></li>
<li><a href="https://paulgraham.com/icad.html">paulgraham.com/icad.html</a></li>
<li><a href="https://publicdomainreview.org/collection/le-petit-journal-des-refusees/">publicdomainreview.org/collection/le-petit-journal-des-refusees</a></li>
<li><a href="https://rachelbythebay.com/w/2024/09/25/suite/">rachelbythebay.com/w/2024/09/25/suite</a></li>
<li><a href="https://shkspr.mobi/blog/2014/11/why-i-vertically-align-my-code-and-you-should-too/">shkspr.mobi/blog/2014/11/why-i-vertically-align-my-code-and-you-should-too</a></li>
<li><a href="https://techtrenches.substack.com/p/the-great-software-quality-collapse">techtrenches.substack.com/p/the-great-software-quality-collapse</a></li>
<li><a href="https://tomasp.net/commodore64/">tomasp.net/commodore64</a></li>
<li><a href="https://wheels.org/spacewar/stone/rolling_stone.html">wheels.org/spacewar/stone/rolling_stone.html</a></li>
</ul>
</div>
</div>
]]></content:encoded></item><item><title>Collections: Films</title><link>https://eternodevir.com/palimpsests/favorites/films/</link><pubDate>Thu, 04 Jan 2024 19:28:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/favorites/films/</guid><description>Collection of my favorite films. Featuring list Man with a Movie Camera Sans Soleil Fallen Angels Audition La Jetée Dekalog Janela da Alma Araby Alphabetical list Favorite Films Film Director Year A Beautiful Mind Ron Howard 2001 A Treat of Coutinho Josafá Veloso 2019 A Woman Is a Woman Jean-Luc Godard 1961 Akira Katsuhiro Otomo 1988 Alphaville Jean-Luc Godard 1965 Amadeus Miloš Forman 1984 Amélie Jean-Pierre Jeunet 2001 American Psycho Mary Harron 2000 Apocalypse Now Francis Ford Coppola 1979 Araby João Dumans, Affonso Uchôa 2017 As Tears Go By Wong Kar-wai 1988 Audition Takashi Miike 1999 B-Movie: Lust &amp;amp; Sound in West-Berlin 1979-1989 Klaus Maeck, Jörg A. Hoppe 2015 Bacurau Kleber Mendonça Filho, Juliano Dornelles 2019 Basic Instinct Paul Verhoeven 1992 Beetlejuice Tim Burton 1988 Bergman Island Mia Hansen-Løve 2021 Black God, White Devil Glauber Rocha 1964 Black Swan Darren Aronofsky 2010 Blade Runner Ridley Scott 1982 Blow-Up Michelangelo Antonioni 1966 Bram Stoker&amp;#39;s Dracula Francis Ford Coppola 1992 Brizola, Anotações para uma História Silvio Tendler 2024 Broker Hirokazu Kore-eda 2022 Buena Vista Social Club Wim Wenders 1999 Call Me by Your Name Luca Guadagnino 2017 Casablanca Michael Curtiz 1942 Caught by the Tides Jia Zhang-ke 2024 Che: Part One Steven Soderbergh 2008 Chinatown Roman Polanski 1974 Cinema Paradiso Giuseppe Tornatore 1988 City of God Fernando Meirelles 2002 Close Encounters of the Third Kind Steven Spielberg 1977 Cowboy Bebop: The Movie Shinichiro Watanabe 2001 Dancer in the Dark Lars von Trier 2000 Day for Night François Truffaut 1973 Dekalog Krzysztof Kieślowski 1989 Delicatessen Jean-Pierre Jeunet, Marc Caro 1991 Dernier maquis Rabah Ameur-Zaïmeche 2008 Dreams Akira Kurosawa 1990 Drive My Car Ryusuke Hamaguchi 2021 Edward Scissorhands Tim Burton 1990 Electric Dreams Steve Barron 1984 Embrace of the Serpent Ciro Guerra 2015 Empire of Passion Nagisa Ōshima 1978 Ex Machina Alex Garland 2015 Eyes Wide Shut Stanley Kubrick 1999 Faces Places Agnès Varda, JR 2017 Fallen Angels Wong Kar-wai 1995 Fantasy Pea Werner Schumann 1985 Fight Club David Fincher 1999 Film Socialisme Jean-Luc Godard 2010 Fire at Sea Gianfranco Rosi 2016 First Name: Carmen Jean-Luc Godard 1983 Fitzcarraldo Werner Herzog 1982 Frances Ha Noah Baumbach 2012 Gravity Alfonso Cuarón 2013 Hackers Iain Softley 1995 Hail, Caesar! Joel Coen, Ethan Coen 2016 Hannibal Ridley Scott 2001 Helvetica Gary Hustwit 2007 Hiroshima Mon Amour Alain Resnais 1959 I Am Cuba Mikhail Kalatozov 1964 I, Daniel Blake Ken Loach 2016 Ichi the Killer Takashi Miike 2001 Il Mare Lee Hyun-seung 2000 In the Intense Now João Moreira Salles 2017 In the Mood for Love Wong Kar-wai 2000 Inglourious Basterds Quentin Tarantino 2009 Interstellar Christopher Nolan 2014 Interview with the Vampire Neil Jordan 1994 Into the Wild Sean Penn 2007 Irreversible Gaspar Noé 2002 It Must Be Heaven Elia Suleiman 2019 Jack and the Cuckoo-Clock Heart Stéphane Berla, Mathias Malzieu 2013 Janela da Alma Walter Carvalho, João Jardim 2001 Jules and Jim François Truffaut 1962 La Jetée Chris Marker 1962 La La Land Damien Chazelle 2016 Léon: The Professional Luc Besson 1994 Let the Right One In Tomas Alfredson 2008 Life Is Beautiful Roberto Benigni 1997 Linha de Montagem Renato Tapajós 1982 Lost in Translation Sofia Coppola 2003 Loving Vincent DK Welchman, Hugh Welchman 2017 Man with a Movie Camera Dziga Vertov 1929 Marighella Wagner Moura 2019 Mars One Gabriel Martins 2022 Match Point Woody Allen 2005 Moonlight Barry Jenkins 2016 Moonrise Kingdom Wes Anderson 2012 Mulher Oceano Djin Sganzerla 2020 My Small Land Emma Kawawada 2022 Neon Bull Gabriel Mascaro 2015 No Drowning Mélanie Laleu 2016 Okja Bong Joon-ho 2017 Oldboy Park Chan-wook 2003 One for the Road Nattawut Poonpiriya 2021 Parasite Bong Joon-ho 2019 Past Lives Celine Song 2023 Perfect Days Wim Wenders 2023 Perfume: The Story of a Murderer Tom Tykwer 2006 Pictures of Ghosts Kleber Mendonça Filho 2023 Pina Wim Wenders 2011 Psycho Alfred Hitchcock 1960 Pulp Fiction Quentin Tarantino 1994 Rebels of the Neon God Tsai Ming-liang 1992 Red Desert Michelangelo Antonioni 1964 Requiem for the American Dream Kelly Nyks, Peter D. Hutchison 2015 Reservoir Dogs Quentin Tarantino 1992 Return to Seoul Davy Chou 2022 Roma Alfonso Cuarón 2018 Rosemary&amp;#39;s Baby Roman Polanski 1968 Samsara Ron Fricke 2011 Saneamento Básico, O Filme Jorge Furtado 2007 Sans Soleil Chris Marker 1983 Scent of a Woman Martin Brest 1992 Schindler&amp;#39;s List Steven Spielberg 1993 Se7en David Fincher 1995 Seven Samurai Akira Kurosawa 1954 Stalker Andrei Tarkovsky 1979 Star Wars George Lucas 1977 T2 Trainspotting Danny Boyle 2017 Talk to Her Pedro Almodóvar 2002 The Adventures of Mark Twain Will Vinton 1985 The Barbarian Invasions Denys Arcand 2003 The Battle of Chile Patricio Guzmán 1975 The Edukators Hans Weingartner 2004 The French Dispatch Wes Anderson 2021 The Godfather Francis Ford Coppola 1972 The Handmaiden Park Chan-wook 2016 The Image Book Jean-Luc Godard 2018 The Internet&amp;#39;s Own Boy: The Story of Aaron Swartz Brian Knappenberger 2014 The Killing of a Sacred Deer Yorgos Lanthimos 2017 The Lives of Others Florian Henckel von Donnersmarck 2006 The Mists of Avalon Uli Edel 2001 The Passenger Michelangelo Antonioni 1975 The Pianist Roman Polanski 2002 The Revolution Will Not Be Televised Kim Bartley, Donnacha O&amp;#39;Briain 2003 The Salt of the Earth Wim Wenders, Juliano Ribeiro Salgado 2014 The Seventh Seal Ingmar Bergman 1957 The Shining Stanley Kubrick 1980 The Silence of the Lambs Jonathan Demme 1991 The Skin I Live In Pedro Almodóvar 2011 Three Colours: Blue Krzysztof Kieślowski 1993 Three Colours: Red Krzysztof Kieślowski 1994 Three Colours: White Krzysztof Kieślowski 1994 Throne of Blood Akira Kurosawa 1957 Tokyo Story Yasujirō Ozu 1953 Tokyo-Ga Wim Wenders 1985 Touch Baltasar Kormákur 2024 Trainspotting Danny Boyle 1996 Tron Steven Lisberger 1982 Utopia and Barbarism Silvio Tendler 2009 Velvet Goldmine Todd Haynes 1998 Vincent Tim Burton 1982 Vive l&amp;#39;Amour Tsai Ming-liang 1994 Waking Life Richard Linklater 2001 Whiplash Damien Chazelle 2014 Without Losing Tenderness - 1968 Vladimir Carvalho 2001 Y Tu Mamá También Alfonso Cuarón 2001 Zabriskie Point Michelangelo Antonioni 1970 Zodiac David Fincher 2007 2046 Wong Kar-wai 2004</description><content:encoded><![CDATA[
<div id="outline-container-featuring-list" class="outline-2">
<h2 id="featuring-list">
Featuring list
</h2>
<div id="outline-text-featuring-list" class="outline-text-2">
<div class="grid grid--poster">
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/man-with-a-movie-camera-6193651819e8dc44.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/man-with-a-movie-camera-6193651819e8dc44.jpg"
          alt="Man with a Movie Camera"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/1u7s">
            
            
            Man with a Movie Camera
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/sans-soleil-9634e0001389be27.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/sans-soleil-9634e0001389be27.jpg"
          alt="Sans Soleil"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/28B8">
            
            
            Sans Soleil
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/fallen-angels-5011272c3b5d60a7.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/fallen-angels-5011272c3b5d60a7.jpg"
          alt="Fallen Angels"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/1UkW">
            
            
            Fallen Angels
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/audition-87561dae06198449.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/audition-87561dae06198449.jpg"
          alt="Audition"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/1UHm">
            
            
            Audition
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/la-jet%C3%A9e-634e1c14617f90ce.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/la-jet%C3%A9e-634e1c14617f90ce.jpg"
          alt="La Jetée"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/29Sk">
            
            
            La Jetée
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/dekalog-5958baa2bf82dd42.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/dekalog-5958baa2bf82dd42.jpg"
          alt="Dekalog"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/bv4u">
            
            
            Dekalog
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/janela-da-alma-1f6152a1591530db.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/janela-da-alma-1f6152a1591530db.jpg"
          alt="Janela da Alma"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/8UA">
            
            
            Janela da Alma
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/films/araby-8eac0cbb85c1b485.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/films/araby-8eac0cbb85c1b485.jpg"
          alt="Araby"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://boxd.it/fpKs">
            
            
            Araby
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
</div>

</div>
</div>
<div id="outline-container-alphabetical-list" class="outline-2">
<h2 id="alphabetical-list">
Alphabetical list
</h2>
<div id="outline-text-alphabetical-list" class="outline-text-2">
<table class="width-100">
  <caption class="sr-only">
    Favorite Films
  </caption>
  <thead>
    <tr>
      <th>Film</th>
      <th>Director</th>
      <th class="align-right">Year</th>
    </tr>
  </thead>
  <tbody>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2amk">A Beautiful Mind</a>
      </td>
      <td data-cell="Director">
	Ron Howard
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/mbW4">A Treat of Coutinho</a>
      </td>
      <td data-cell="Director">
	Josafá Veloso
      </td>
      <td data-cell="Year" class="align-right">
	2019
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1iUC">A Woman Is a Woman</a>
      </td>
      <td data-cell="Director">
	Jean-Luc Godard
      </td>
      <td data-cell="Year" class="align-right">
	1961
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b1i">Akira</a>
      </td>
      <td data-cell="Director">
	Katsuhiro Otomo
      </td>
      <td data-cell="Year" class="align-right">
	1988
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/20AG">Alphaville</a>
      </td>
      <td data-cell="Director">
	Jean-Luc Godard
      </td>
      <td data-cell="Year" class="align-right">
	1965
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aH8">Amadeus</a>
      </td>
      <td data-cell="Director">
	Miloš Forman
      </td>
      <td data-cell="Year" class="align-right">
	1984
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aUc">Amélie</a>
      </td>
      <td data-cell="Director">
	Jean-Pierre Jeunet
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28Vs">American Psycho</a>
      </td>
      <td data-cell="Director">
	Mary Harron
      </td>
      <td data-cell="Year" class="align-right">
	2000
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/6ZS">Apocalypse Now</a>
      </td>
      <td data-cell="Director">
	Francis Ford Coppola
      </td>
      <td data-cell="Year" class="align-right">
	1979
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/fpKs">Araby</a>
      </td>
      <td data-cell="Director">
	João Dumans, Affonso Uchôa
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1ybI">As Tears Go By</a>
      </td>
      <td data-cell="Director">
	Wong Kar-wai
      </td>
      <td data-cell="Year" class="align-right">
	1988
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1UHm">Audition</a>
      </td>
      <td data-cell="Director">
	Takashi Miike
      </td>
      <td data-cell="Year" class="align-right">
	1999
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/ai0W">B-Movie: Lust &amp; Sound in West-Berlin 1979-1989</a>
      </td>
      <td data-cell="Director">
	Klaus Maeck, Jörg A. Hoppe
      </td>
      <td data-cell="Year" class="align-right">
	2015
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/fSUG">Bacurau</a>
      </td>
      <td data-cell="Director">
	Kleber Mendonça Filho, Juliano Dornelles
      </td>
      <td data-cell="Year" class="align-right">
	2019
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2asM">Basic Instinct</a>
      </td>
      <td data-cell="Director">
	Paul Verhoeven
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/24QI">Beetlejuice</a>
      </td>
      <td data-cell="Director">
	Tim Burton
      </td>
      <td data-cell="Year" class="align-right">
	1988
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/h86E">Bergman Island</a>
      </td>
      <td data-cell="Director">
	Mia Hansen-Løve
      </td>
      <td data-cell="Year" class="align-right">
	2021
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2fmY">Black God, White Devil</a>
      </td>
      <td data-cell="Director">
	Glauber Rocha
      </td>
      <td data-cell="Year" class="align-right">
	1964
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/Sw0">Black Swan</a>
      </td>
      <td data-cell="Director">
	Darren Aronofsky
      </td>
      <td data-cell="Year" class="align-right">
	2010
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2bcA">Blade Runner</a>
      </td>
      <td data-cell="Director">
	Ridley Scott
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2966">Blow-Up</a>
      </td>
      <td data-cell="Director">
	Michelangelo Antonioni
      </td>
      <td data-cell="Year" class="align-right">
	1966
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/223a">Bram Stoker&#39;s Dracula</a>
      </td>
      <td data-cell="Director">
	Francis Ford Coppola
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/Qs6k">Brizola, Anotações para uma História</a>
      </td>
      <td data-cell="Director">
	Silvio Tendler
      </td>
      <td data-cell="Year" class="align-right">
	2024
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/rDUU">Broker</a>
      </td>
      <td data-cell="Director">
	Hirokazu Kore-eda
      </td>
      <td data-cell="Year" class="align-right">
	2022
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1T6E">Buena Vista Social Club</a>
      </td>
      <td data-cell="Director">
	Wim Wenders
      </td>
      <td data-cell="Year" class="align-right">
	1999
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/dYmm">Call Me by Your Name</a>
      </td>
      <td data-cell="Director">
	Luca Guadagnino
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aG0">Casablanca</a>
      </td>
      <td data-cell="Director">
	Michael Curtiz
      </td>
      <td data-cell="Year" class="align-right">
	1942
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/GZ4Q">Caught by the Tides</a>
      </td>
      <td data-cell="Director">
	Jia Zhang-ke
      </td>
      <td data-cell="Year" class="align-right">
	2024
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1ZGe">Che: Part One</a>
      </td>
      <td data-cell="Director">
	Steven Soderbergh
      </td>
      <td data-cell="Year" class="align-right">
	2008
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29vU">Chinatown</a>
      </td>
      <td data-cell="Director">
	Roman Polanski
      </td>
      <td data-cell="Year" class="align-right">
	1974
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1UlA">Cinema Paradiso</a>
      </td>
      <td data-cell="Director">
	Giuseppe Tornatore
      </td>
      <td data-cell="Year" class="align-right">
	1988
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2a2a">City of God</a>
      </td>
      <td data-cell="Director">
	Fernando Meirelles
      </td>
      <td data-cell="Year" class="align-right">
	2002
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29u8">Close Encounters of the Third Kind</a>
      </td>
      <td data-cell="Director">
	Steven Spielberg
      </td>
      <td data-cell="Year" class="align-right">
	1977
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Uc4">Cowboy Bebop: The Movie</a>
      </td>
      <td data-cell="Director">
	Shinichiro Watanabe
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/71E">Dancer in the Dark</a>
      </td>
      <td data-cell="Director">
	Lars von Trier
      </td>
      <td data-cell="Year" class="align-right">
	2000
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28kG">Day for Night</a>
      </td>
      <td data-cell="Director">
	François Truffaut
      </td>
      <td data-cell="Year" class="align-right">
	1973
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/bv4u">Dekalog</a>
      </td>
      <td data-cell="Director">
	Krzysztof Kieślowski
      </td>
      <td data-cell="Year" class="align-right">
	1989
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29lK">Delicatessen</a>
      </td>
      <td data-cell="Director">
	Jean-Pierre Jeunet, Marc Caro
      </td>
      <td data-cell="Year" class="align-right">
	1991
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2Qfq">Dernier maquis</a>
      </td>
      <td data-cell="Director">
	Rabah Ameur-Zaïmeche
      </td>
      <td data-cell="Year" class="align-right">
	2008
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1ROu">Dreams</a>
      </td>
      <td data-cell="Director">
	Akira Kurosawa
      </td>
      <td data-cell="Year" class="align-right">
	1990
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/sv94">Drive My Car</a>
      </td>
      <td data-cell="Director">
	Ryusuke Hamaguchi
      </td>
      <td data-cell="Year" class="align-right">
	2021
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aZc">Edward Scissorhands</a>
      </td>
      <td data-cell="Director">
	Tim Burton
      </td>
      <td data-cell="Year" class="align-right">
	1990
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1ERq">Electric Dreams</a>
      </td>
      <td data-cell="Director">
	Steve Barron
      </td>
      <td data-cell="Year" class="align-right">
	1984
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/baba">Embrace of the Serpent</a>
      </td>
      <td data-cell="Director">
	Ciro Guerra
      </td>
      <td data-cell="Year" class="align-right">
	2015
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/GSS">Empire of Passion</a>
      </td>
      <td data-cell="Director">
	Nagisa Ōshima
      </td>
      <td data-cell="Year" class="align-right">
	1978
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/7T2k">Ex Machina</a>
      </td>
      <td data-cell="Director">
	Alex Garland
      </td>
      <td data-cell="Year" class="align-right">
	2015
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2axs">Eyes Wide Shut</a>
      </td>
      <td data-cell="Director">
	Stanley Kubrick
      </td>
      <td data-cell="Year" class="align-right">
	1999
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/g7ck">Faces Places</a>
      </td>
      <td data-cell="Director">
	Agnès Varda, JR
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1UkW">Fallen Angels</a>
      </td>
      <td data-cell="Director">
	Wong Kar-wai
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/kRw4">Fantasy Pea</a>
      </td>
      <td data-cell="Director">
	Werner Schumann
      </td>
      <td data-cell="Year" class="align-right">
	1985
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2a9q">Fight Club</a>
      </td>
      <td data-cell="Director">
	David Fincher
      </td>
      <td data-cell="Year" class="align-right">
	1999
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/v6e">Film Socialisme</a>
      </td>
      <td data-cell="Director">
	Jean-Luc Godard
      </td>
      <td data-cell="Year" class="align-right">
	2010
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/d6Tw">Fire at Sea</a>
      </td>
      <td data-cell="Director">
	Gianfranco Rosi
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1gGe">First Name: Carmen</a>
      </td>
      <td data-cell="Director">
	Jean-Luc Godard
      </td>
      <td data-cell="Year" class="align-right">
	1983
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1YV8">Fitzcarraldo</a>
      </td>
      <td data-cell="Director">
	Werner Herzog
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/41Xg">Frances Ha</a>
      </td>
      <td data-cell="Director">
	Noah Baumbach
      </td>
      <td data-cell="Year" class="align-right">
	2012
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/GZY">Gravity</a>
      </td>
      <td data-cell="Director">
	Alfonso Cuarón
      </td>
      <td data-cell="Year" class="align-right">
	2013
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1WhU">Hackers</a>
      </td>
      <td data-cell="Director">
	Iain Softley
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/881G">Hail, Caesar!</a>
      </td>
      <td data-cell="Director">
	Joel Coen, Ethan Coen
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1XVc">Hannibal</a>
      </td>
      <td data-cell="Director">
	Ridley Scott
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Qn8">Helvetica</a>
      </td>
      <td data-cell="Director">
	Gary Hustwit
      </td>
      <td data-cell="Year" class="align-right">
	2007
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/22WY">Hiroshima Mon Amour</a>
      </td>
      <td data-cell="Director">
	Alain Resnais
      </td>
      <td data-cell="Year" class="align-right">
	1959
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1hUQ">I Am Cuba</a>
      </td>
      <td data-cell="Director">
	Mikhail Kalatozov
      </td>
      <td data-cell="Year" class="align-right">
	1964
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/d0xa">I, Daniel Blake</a>
      </td>
      <td data-cell="Director">
	Ken Loach
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Y1O">Ichi the Killer</a>
      </td>
      <td data-cell="Director">
	Takashi Miike
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1RuO">Il Mare</a>
      </td>
      <td data-cell="Director">
	Lee Hyun-seung
      </td>
      <td data-cell="Year" class="align-right">
	2000
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/fHl6">In the Intense Now</a>
      </td>
      <td data-cell="Director">
	João Moreira Salles
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29tE">In the Mood for Love</a>
      </td>
      <td data-cell="Director">
	Wong Kar-wai
      </td>
      <td data-cell="Year" class="align-right">
	2000
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1JzG">Inglourious Basterds</a>
      </td>
      <td data-cell="Director">
	Quentin Tarantino
      </td>
      <td data-cell="Year" class="align-right">
	2009
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/4VZ8">Interstellar</a>
      </td>
      <td data-cell="Director">
	Christopher Nolan
      </td>
      <td data-cell="Year" class="align-right">
	2014
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29XO">Interview with the Vampire</a>
      </td>
      <td data-cell="Director">
	Neil Jordan
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/22m2">Into the Wild</a>
      </td>
      <td data-cell="Director">
	Sean Penn
      </td>
      <td data-cell="Year" class="align-right">
	2007
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29as">Irreversible</a>
      </td>
      <td data-cell="Director">
	Gaspar Noé
      </td>
      <td data-cell="Year" class="align-right">
	2002
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/jEVe">It Must Be Heaven</a>
      </td>
      <td data-cell="Director">
	Elia Suleiman
      </td>
      <td data-cell="Year" class="align-right">
	2019
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/68tc">Jack and the Cuckoo-Clock Heart</a>
      </td>
      <td data-cell="Director">
	Stéphane Berla, Mathias Malzieu
      </td>
      <td data-cell="Year" class="align-right">
	2013
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/8UA">Janela da Alma</a>
      </td>
      <td data-cell="Director">
	Walter Carvalho, João Jardim
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28rM">Jules and Jim</a>
      </td>
      <td data-cell="Director">
	François Truffaut
      </td>
      <td data-cell="Year" class="align-right">
	1962
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29Sk">La Jetée</a>
      </td>
      <td data-cell="Director">
	Chris Marker
      </td>
      <td data-cell="Year" class="align-right">
	1962
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/a5fa">La La Land</a>
      </td>
      <td data-cell="Director">
	Damien Chazelle
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b8S">Léon: The Professional</a>
      </td>
      <td data-cell="Director">
	Luc Besson
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Qr0">Let the Right One In</a>
      </td>
      <td data-cell="Director">
	Tomas Alfredson
      </td>
      <td data-cell="Year" class="align-right">
	2008
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29Wm">Life Is Beautiful</a>
      </td>
      <td data-cell="Director">
	Roberto Benigni
      </td>
      <td data-cell="Year" class="align-right">
	1997
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/eqj6">Linha de Montagem</a>
      </td>
      <td data-cell="Director">
	Renato Tapajós
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b0E">Lost in Translation</a>
      </td>
      <td data-cell="Director">
	Sofia Coppola
      </td>
      <td data-cell="Year" class="align-right">
	2003
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/biIQ">Loving Vincent</a>
      </td>
      <td data-cell="Director">
	DK Welchman, Hugh Welchman
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1u7s">Man with a Movie Camera</a>
      </td>
      <td data-cell="Director">
	Dziga Vertov
      </td>
      <td data-cell="Year" class="align-right">
	1929
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/i3RC">Marighella</a>
      </td>
      <td data-cell="Director">
	Wagner Moura
      </td>
      <td data-cell="Year" class="align-right">
	2019
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/yoPa">Mars One</a>
      </td>
      <td data-cell="Director">
	Gabriel Martins
      </td>
      <td data-cell="Year" class="align-right">
	2022
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b6s">Match Point</a>
      </td>
      <td data-cell="Director">
	Woody Allen
      </td>
      <td data-cell="Year" class="align-right">
	2005
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/d6bE">Moonlight</a>
      </td>
      <td data-cell="Director">
	Barry Jenkins
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2Wng">Moonrise Kingdom</a>
      </td>
      <td data-cell="Director">
	Wes Anderson
      </td>
      <td data-cell="Year" class="align-right">
	2012
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/sfyC">Mulher Oceano</a>
      </td>
      <td data-cell="Director">
	Djin Sganzerla
      </td>
      <td data-cell="Year" class="align-right">
	2020
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/yzY8">My Small Land</a>
      </td>
      <td data-cell="Director">
	Emma Kawawada
      </td>
      <td data-cell="Year" class="align-right">
	2022
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/a6Ke">Neon Bull</a>
      </td>
      <td data-cell="Director">
	Gabriel Mascaro
      </td>
      <td data-cell="Year" class="align-right">
	2015
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/glZU">No Drowning</a>
      </td>
      <td data-cell="Director">
	Mélanie Laleu
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/dvXe">Okja</a>
      </td>
      <td data-cell="Director">
	Bong Joon-ho
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29R2">Oldboy</a>
      </td>
      <td data-cell="Director">
	Park Chan-wook
      </td>
      <td data-cell="Year" class="align-right">
	2003
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/tbjq">One for the Road</a>
      </td>
      <td data-cell="Director">
	Nattawut Poonpiriya
      </td>
      <td data-cell="Year" class="align-right">
	2021
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/hTha">Parasite</a>
      </td>
      <td data-cell="Director">
	Bong Joon-ho
      </td>
      <td data-cell="Year" class="align-right">
	2019
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/oNB8">Past Lives</a>
      </td>
      <td data-cell="Director">
	Celine Song
      </td>
      <td data-cell="Year" class="align-right">
	2023
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/ATh8">Perfect Days</a>
      </td>
      <td data-cell="Director">
	Wim Wenders
      </td>
      <td data-cell="Year" class="align-right">
	2023
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28LW">Perfume: The Story of a Murderer</a>
      </td>
      <td data-cell="Director">
	Tom Tykwer
      </td>
      <td data-cell="Year" class="align-right">
	2006
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/G55S">Pictures of Ghosts</a>
      </td>
      <td data-cell="Director">
	Kleber Mendonça Filho
      </td>
      <td data-cell="Year" class="align-right">
	2023
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/n5W">Pina</a>
      </td>
      <td data-cell="Director">
	Wim Wenders
      </td>
      <td data-cell="Year" class="align-right">
	2011
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2ab2">Psycho</a>
      </td>
      <td data-cell="Director">
	Alfred Hitchcock
      </td>
      <td data-cell="Year" class="align-right">
	1960
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29Pq">Pulp Fiction</a>
      </td>
      <td data-cell="Director">
	Quentin Tarantino
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/mp2">Rebels of the Neon God</a>
      </td>
      <td data-cell="Director">
	Tsai Ming-liang
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1ttW">Red Desert</a>
      </td>
      <td data-cell="Director">
	Michelangelo Antonioni
      </td>
      <td data-cell="Year" class="align-right">
	1964
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/aZjs">Requiem for the American Dream</a>
      </td>
      <td data-cell="Director">
	Kelly Nyks, Peter D. Hutchison
      </td>
      <td data-cell="Year" class="align-right">
	2015
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2agc">Reservoir Dogs</a>
      </td>
      <td data-cell="Director">
	Quentin Tarantino
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/zXDg">Return to Seoul</a>
      </td>
      <td data-cell="Director">
	Davy Chou
      </td>
      <td data-cell="Year" class="align-right">
	2022
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/f69M">Roma</a>
      </td>
      <td data-cell="Director">
	Alfonso Cuarón
      </td>
      <td data-cell="Year" class="align-right">
	2018
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29zM">Rosemary&#39;s Baby</a>
      </td>
      <td data-cell="Director">
	Roman Polanski
      </td>
      <td data-cell="Year" class="align-right">
	1968
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/3ada">Samsara</a>
      </td>
      <td data-cell="Director">
	Ron Fricke
      </td>
      <td data-cell="Year" class="align-right">
	2011
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1oC">Saneamento Básico, O Filme</a>
      </td>
      <td data-cell="Director">
	Jorge Furtado
      </td>
      <td data-cell="Year" class="align-right">
	2007
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28B8">Sans Soleil</a>
      </td>
      <td data-cell="Director">
	Chris Marker
      </td>
      <td data-cell="Year" class="align-right">
	1983
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1YAu">Scent of a Woman</a>
      </td>
      <td data-cell="Director">
	Martin Brest
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aq2">Schindler&#39;s List</a>
      </td>
      <td data-cell="Director">
	Steven Spielberg
      </td>
      <td data-cell="Year" class="align-right">
	1993
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29zs">Se7en</a>
      </td>
      <td data-cell="Director">
	David Fincher
      </td>
      <td data-cell="Year" class="align-right">
	1995
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2axi">Seven Samurai</a>
      </td>
      <td data-cell="Director">
	Akira Kurosawa
      </td>
      <td data-cell="Year" class="align-right">
	1954
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28PO">Stalker</a>
      </td>
      <td data-cell="Director">
	Andrei Tarkovsky
      </td>
      <td data-cell="Year" class="align-right">
	1979
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/72s">Star Wars</a>
      </td>
      <td data-cell="Director">
	George Lucas
      </td>
      <td data-cell="Year" class="align-right">
	1977
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/5vTA">T2 Trainspotting</a>
      </td>
      <td data-cell="Director">
	Danny Boyle
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2beG">Talk to Her</a>
      </td>
      <td data-cell="Director">
	Pedro Almodóvar
      </td>
      <td data-cell="Year" class="align-right">
	2002
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Ekw">The Adventures of Mark Twain</a>
      </td>
      <td data-cell="Director">
	Will Vinton
      </td>
      <td data-cell="Year" class="align-right">
	1985
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1UMG">The Barbarian Invasions</a>
      </td>
      <td data-cell="Director">
	Denys Arcand
      </td>
      <td data-cell="Year" class="align-right">
	2003
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/4i8O">The Battle of Chile</a>
      </td>
      <td data-cell="Director">
	Patricio Guzmán
      </td>
      <td data-cell="Year" class="align-right">
	1975
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aHC">The Edukators</a>
      </td>
      <td data-cell="Director">
	Hans Weingartner
      </td>
      <td data-cell="Year" class="align-right">
	2004
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/jLP8">The French Dispatch</a>
      </td>
      <td data-cell="Director">
	Wes Anderson
      </td>
      <td data-cell="Year" class="align-right">
	2021
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aNK">The Godfather</a>
      </td>
      <td data-cell="Director">
	Francis Ford Coppola
      </td>
      <td data-cell="Year" class="align-right">
	1972
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/948A">The Handmaiden</a>
      </td>
      <td data-cell="Director">
	Park Chan-wook
      </td>
      <td data-cell="Year" class="align-right">
	2016
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/eBse">The Image Book</a>
      </td>
      <td data-cell="Director">
	Jean-Luc Godard
      </td>
      <td data-cell="Year" class="align-right">
	2018
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/7lcA">The Internet&#39;s Own Boy: The Story of Aaron Swartz</a>
      </td>
      <td data-cell="Director">
	Brian Knappenberger
      </td>
      <td data-cell="Year" class="align-right">
	2014
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/dZ5G">The Killing of a Sacred Deer</a>
      </td>
      <td data-cell="Director">
	Yorgos Lanthimos
      </td>
      <td data-cell="Year" class="align-right">
	2017
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2a4A">The Lives of Others</a>
      </td>
      <td data-cell="Director">
	Florian Henckel von Donnersmarck
      </td>
      <td data-cell="Year" class="align-right">
	2006
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1MYu">The Mists of Avalon</a>
      </td>
      <td data-cell="Director">
	Uli Edel
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Y8q">The Passenger</a>
      </td>
      <td data-cell="Director">
	Michelangelo Antonioni
      </td>
      <td data-cell="Year" class="align-right">
	1975
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aqc">The Pianist</a>
      </td>
      <td data-cell="Director">
	Roman Polanski
      </td>
      <td data-cell="Year" class="align-right">
	2002
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1fTw">The Revolution Will Not Be Televised</a>
      </td>
      <td data-cell="Director">
	Kim Bartley, Donnacha O&#39;Briain
      </td>
      <td data-cell="Year" class="align-right">
	2003
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/7Uyc">The Salt of the Earth</a>
      </td>
      <td data-cell="Director">
	Wim Wenders, Juliano Ribeiro Salgado
      </td>
      <td data-cell="Year" class="align-right">
	2014
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2ahO">The Seventh Seal</a>
      </td>
      <td data-cell="Director">
	Ingmar Bergman
      </td>
      <td data-cell="Year" class="align-right">
	1957
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29Nu">The Shining</a>
      </td>
      <td data-cell="Director">
	Stanley Kubrick
      </td>
      <td data-cell="Year" class="align-right">
	1980
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2aHW">The Silence of the Lambs</a>
      </td>
      <td data-cell="Director">
	Jonathan Demme
      </td>
      <td data-cell="Year" class="align-right">
	1991
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/99A">The Skin I Live In</a>
      </td>
      <td data-cell="Director">
	Pedro Almodóvar
      </td>
      <td data-cell="Year" class="align-right">
	2011
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b7K">Three Colours: Blue</a>
      </td>
      <td data-cell="Director">
	Krzysztof Kieślowski
      </td>
      <td data-cell="Year" class="align-right">
	1993
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b7q">Three Colours: Red</a>
      </td>
      <td data-cell="Director">
	Krzysztof Kieślowski
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b7A">Three Colours: White</a>
      </td>
      <td data-cell="Director">
	Krzysztof Kieślowski
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/251w">Throne of Blood</a>
      </td>
      <td data-cell="Director">
	Akira Kurosawa
      </td>
      <td data-cell="Year" class="align-right">
	1957
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1HuY">Tokyo Story</a>
      </td>
      <td data-cell="Director">
	Yasujirō Ozu
      </td>
      <td data-cell="Year" class="align-right">
	1953
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2DyE">Tokyo-Ga</a>
      </td>
      <td data-cell="Director">
	Wim Wenders
      </td>
      <td data-cell="Year" class="align-right">
	1985
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/D3u6">Touch</a>
      </td>
      <td data-cell="Director">
	Baltasar Kormákur
      </td>
      <td data-cell="Year" class="align-right">
	2024
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29XY">Trainspotting</a>
      </td>
      <td data-cell="Director">
	Danny Boyle
      </td>
      <td data-cell="Year" class="align-right">
	1996
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2b9w">Tron</a>
      </td>
      <td data-cell="Director">
	Steven Lisberger
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/4VMe">Utopia and Barbarism</a>
      </td>
      <td data-cell="Director">
	Silvio Tendler
      </td>
      <td data-cell="Year" class="align-right">
	2009
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2878">Velvet Goldmine</a>
      </td>
      <td data-cell="Director">
	Todd Haynes
      </td>
      <td data-cell="Year" class="align-right">
	1998
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1hLa">Vincent</a>
      </td>
      <td data-cell="Director">
	Tim Burton
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/2wsa">Vive l&#39;Amour</a>
      </td>
      <td data-cell="Director">
	Tsai Ming-liang
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/1Zdc">Waking Life</a>
      </td>
      <td data-cell="Director">
	Richard Linklater
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/7bQA">Whiplash</a>
      </td>
      <td data-cell="Director">
	Damien Chazelle
      </td>
      <td data-cell="Year" class="align-right">
	2014
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/adOW">Without Losing Tenderness - 1968</a>
      </td>
      <td data-cell="Director">
	Vladimir Carvalho
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/28QM">Y Tu Mamá También</a>
      </td>
      <td data-cell="Director">
	Alfonso Cuarón
      </td>
      <td data-cell="Year" class="align-right">
	2001
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/25Yy">Zabriskie Point</a>
      </td>
      <td data-cell="Director">
	Michelangelo Antonioni
      </td>
      <td data-cell="Year" class="align-right">
	1970
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/27MO">Zodiac</a>
      </td>
      <td data-cell="Director">
	David Fincher
      </td>
      <td data-cell="Year" class="align-right">
	2007
      </td>
    </tr>
  
    <tr>
      <td data-cell="Film">
	<a href="https://boxd.it/29tu">2046</a>
      </td>
      <td data-cell="Director">
	Wong Kar-wai
      </td>
      <td data-cell="Year" class="align-right">
	2004
      </td>
    </tr>
  
  </tbody>
</table>

</div>
</div>
]]></content:encoded></item><item><title>Collections: Books</title><link>https://eternodevir.com/palimpsests/favorites/books/</link><pubDate>Wed, 03 Jan 2024 19:28:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/favorites/books/</guid><description>Collection of my favorite books. Featuring list Toda Poesia Open City Ficções Poemas Malone Dies Metamorfoses Poemas 1913-1956 A Primeira Pessoa Alphabetical list Favorite Books Book Author Year A Anatomia da Influência: literatura como modo de vida Harold Bloom 2011 A Arte no Horizonte do Provável Haroldo de Campos 1977 A Primeira Pessoa Ali Smith 2008 A Tradução e a Letra ou o Albergue do Longínquo Antoine Berman 2004 Also sprach Zarathustra Friedrich Nietzsche 1998 Antologia da Literatura Fantástica Jorge Luis Borges 1940 Ars Poetica Horatius -19 As Moscas Jean-Paul Sartre 1942 Camera Lucida: Reflections on Photography Roland Barthes 1980 Cartas Pônticas Ovidius 16 Confesso Que Vivi Pablo Neruda 1974 Die schreckliche deutsche Sprache Mark Twain 1880 Edgar Allan Poe: Complete Tales and Poems Edgar Allan Poe 1845 Ein Brasilianer in Berlin João Ubaldo Ribeiro 1994 Ele que o Abismo Viu: Epopeia de Gilgámesh Sîn-lēqi-unninni -2000 Escola de Tradutores Paulo Rónai 2012 Estética da Criação Verbal Mikhail Bakhtin 1979 Ficções Jorge Luis Borges 1944 Gota d&amp;#39;Água Chico Buarque 1975 História do Cinema Mundial Fernando Mascarello 2006 How to Write a Thesis Umberto Eco 1977 Ilíada Hómēros -700 Interpretação e Superinterpretação Umberto Eco 1992 Magia e Técnica, Arte e Política: ensaios sobre literatura e história da cultura Walter Benjamin 1985 Malleus Maleficarum Heinrich Kramer 1485 Malone Dies Samuel Beckett 1951 Medeia Eurípedes -431 Memórias do Subsolo Fyódor Dostoyévskiy 1864 Memórias Póstumas de Brás Cubas Machado de Assis 1881 Metamorfoses Ovidius 8 Natural Language Annotation for Machine Learning James Pustejovsky 2012 O Homem Unidimensional Herbert Marcuse 1964 O livro de Catulo Catullus -60 O Mito de Sísifo Albert Camus 1942 O que é um autor? Roger Chartier 2012 Obra Aberta Umberto Eco 1962 Odisseia Hómēros -700 Open City Teju Cole 2011 Palimpsests: Literature in the Second Degree Gérard Genette 1982 Poemas Wisława Szymborska 1981 Poemas 1913-1956 Bertolt Brecht 1969 Primeiro como tragédia, depois como farsa Slavoj Žižek 2009 Reception Studies Lorna Hardwick 2003 Stories of Your Life and Others Ted Chiang 2002 The Tempest William Shakespeare 1611 Toda Poesia Paulo Leminski 2013 Utopia Thomas More 1516</description><content:encoded><![CDATA[
<div id="outline-container-featuring-list" class="outline-2">
<h2 id="featuring-list">
Featuring list
</h2>
<div id="outline-text-featuring-list" class="outline-text-2">
<div class="grid grid--poster">
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/toda-poesia-60c43436709ba1e1.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/toda-poesia-60c43436709ba1e1.jpg"
          alt="Toda Poesia"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/17455042">
            
            
            Toda Poesia
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/open-city-4c169947ac352e09.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/open-city-4c169947ac352e09.jpg"
          alt="Open City"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/8526694">
            
            
            Open City
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/fic%C3%A7%C3%B5es-a76ec9c88e1fb5b3.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/fic%C3%A7%C3%B5es-a76ec9c88e1fb5b3.jpg"
          alt="Ficções"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/3640776">
            
            
            Ficções
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/poemas-44389fa87de80902.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/poemas-44389fa87de80902.jpg"
          alt="Poemas"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/12902036">
            
            
            Poemas
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/malone-dies-56359f569c9a05f3.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/malone-dies-56359f569c9a05f3.jpg"
          alt="Malone Dies"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/54042">
            
            
            Malone Dies
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/metamorfoses-25be4987182ffda1.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/metamorfoses-25be4987182ffda1.jpg"
          alt="Metamorfoses"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/13482633">
            
            
            Metamorfoses
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/poemas-1913-1956-5ae2be0e151ec213.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/poemas-1913-1956-5ae2be0e151ec213.jpg"
          alt="Poemas 1913-1956"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/18387160">
            
            
            Poemas 1913-1956
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
  <div class="grid__item">
    <figure class="margin-0 padding-0"><picture>
        <source srcset="https://eternodevir.com/images/dg/books/a-primeira-pessoa-00362bf9382b8432.avif" type="image/avif">
        <img
          src="https://eternodevir.com/images/dg/books/a-primeira-pessoa-00362bf9382b8432.jpg"
          alt="A Primeira Pessoa"
          class="grid__img grid__img--poster"
          loading="eager"
          >
      </picture><figcaption class="grid__caption">
        <small>
          <a href="https://www.goodreads.com/book/show/18136903">
            
            
            A Primeira Pessoa
          </a>
        </small>
      </figcaption>
    </figure>
  </div>
  
</div>

</div>
</div>
<div id="outline-container-alphabetical-list" class="outline-2">
<h2 id="alphabetical-list">
Alphabetical list
</h2>
<div id="outline-text-alphabetical-list" class="outline-text-2">
<table class="width-100">
  <caption class="sr-only">
    Favorite Books
  </caption>
  <thead>
    <tr>
      <th>Book</th>
      <th>Author</th>
      <th class="align-right">Year</th>
    </tr>
  </thead>
  <tbody>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18632171">A Anatomia da Influência: literatura como modo de vida</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Harold Bloom
      </td>
      <td data-cell="Year" class="align-right">
	2011
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/11174946">A Arte no Horizonte do Provável</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Haroldo de Campos
      </td>
      <td data-cell="Year" class="align-right">
	1977
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18136903">A Primeira Pessoa</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Ali Smith
      </td>
      <td data-cell="Year" class="align-right">
	2008
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18395516">A Tradução e a Letra ou o Albergue do Longínquo</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Antoine Berman
      </td>
      <td data-cell="Year" class="align-right">
	2004
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18446283">Also sprach Zarathustra</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Friedrich Nietzsche
      </td>
      <td data-cell="Year" class="align-right">
	1998
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18457911">Antologia da Literatura Fantástica</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Jorge Luis Borges
      </td>
      <td data-cell="Year" class="align-right">
	1940
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/17368752">Ars Poetica</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Horatius
      </td>
      <td data-cell="Year" class="align-right">
	-19
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18367037">As Moscas</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Jean-Paul Sartre
      </td>
      <td data-cell="Year" class="align-right">
	1942
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/497164">Camera Lucida: Reflections on Photography</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Roland Barthes
      </td>
      <td data-cell="Year" class="align-right">
	1980
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/42288065">Cartas Pônticas</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Ovidius
      </td>
      <td data-cell="Year" class="align-right">
	16
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/50756182">Confesso Que Vivi</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Pablo Neruda
      </td>
      <td data-cell="Year" class="align-right">
	1974
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/8144897">Die schreckliche deutsche Sprache</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Mark Twain
      </td>
      <td data-cell="Year" class="align-right">
	1880
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/16126730">Edgar Allan Poe: Complete Tales and Poems</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Edgar Allan Poe
      </td>
      <td data-cell="Year" class="align-right">
	1845
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/13614950">Ein Brasilianer in Berlin</a>
      </td>
      <td data-cell="Author" class="nowrap">
	João Ubaldo Ribeiro
      </td>
      <td data-cell="Year" class="align-right">
	1994
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/36391645">Ele que o Abismo Viu: Epopeia de Gilgámesh</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Sîn-lēqi-unninni
      </td>
      <td data-cell="Year" class="align-right">
	-2000
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/16091251">Escola de Tradutores</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Paulo Rónai
      </td>
      <td data-cell="Year" class="align-right">
	2012
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/15777718">Estética da Criação Verbal</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Mikhail Bakhtin
      </td>
      <td data-cell="Year" class="align-right">
	1979
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/3640776">Ficções</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Jorge Luis Borges
      </td>
      <td data-cell="Year" class="align-right">
	1944
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/6435901">Gota d&#39;Água</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Chico Buarque
      </td>
      <td data-cell="Year" class="align-right">
	1975
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/16177584">História do Cinema Mundial</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Fernando Mascarello
      </td>
      <td data-cell="Year" class="align-right">
	2006
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/23461426">How to Write a Thesis</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Umberto Eco
      </td>
      <td data-cell="Year" class="align-right">
	1977
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/28236189">Ilíada</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Hómēros
      </td>
      <td data-cell="Year" class="align-right">
	-700
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/11357966">Interpretação e Superinterpretação</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Umberto Eco
      </td>
      <td data-cell="Year" class="align-right">
	1992
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/13583937">Magia e Técnica, Arte e Política: ensaios sobre literatura e história da cultura</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Walter Benjamin
      </td>
      <td data-cell="Year" class="align-right">
	1985
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/25695813">Malleus Maleficarum</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Heinrich Kramer
      </td>
      <td data-cell="Year" class="align-right">
	1485
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/54042">Malone Dies</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Samuel Beckett
      </td>
      <td data-cell="Year" class="align-right">
	1951
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/13496059">Medeia</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Eurípedes
      </td>
      <td data-cell="Year" class="align-right">
	-431
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/517435">Memórias do Subsolo</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Fyódor Dostoyévskiy
      </td>
      <td data-cell="Year" class="align-right">
	1864
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/87264">Memórias Póstumas de Brás Cubas</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Machado de Assis
      </td>
      <td data-cell="Year" class="align-right">
	1881
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/13482633">Metamorfoses</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Ovidius
      </td>
      <td data-cell="Year" class="align-right">
	8
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/15808115">Natural Language Annotation for Machine Learning</a>
      </td>
      <td data-cell="Author" class="nowrap">
	James Pustejovsky
      </td>
      <td data-cell="Year" class="align-right">
	2012
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/50439241">O Homem Unidimensional</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Herbert Marcuse
      </td>
      <td data-cell="Year" class="align-right">
	1964
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/25233531">O livro de Catulo</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Catullus
      </td>
      <td data-cell="Year" class="align-right">
	-60
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/34638757">O Mito de Sísifo</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Albert Camus
      </td>
      <td data-cell="Year" class="align-right">
	1942
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/48563344">O que é um autor?</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Roger Chartier
      </td>
      <td data-cell="Year" class="align-right">
	2012
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/12024090">Obra Aberta</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Umberto Eco
      </td>
      <td data-cell="Year" class="align-right">
	1962
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/28236235">Odisseia</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Hómēros
      </td>
      <td data-cell="Year" class="align-right">
	-700
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/8526694">Open City</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Teju Cole
      </td>
      <td data-cell="Year" class="align-right">
	2011
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/699151">Palimpsests: Literature in the Second Degree</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Gérard Genette
      </td>
      <td data-cell="Year" class="align-right">
	1982
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/12902036">Poemas</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Wisława Szymborska
      </td>
      <td data-cell="Year" class="align-right">
	1981
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18387160">Poemas 1913-1956</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Bertolt Brecht
      </td>
      <td data-cell="Year" class="align-right">
	1969
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/13609325">Primeiro como tragédia, depois como farsa</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Slavoj Žižek
      </td>
      <td data-cell="Year" class="align-right">
	2009
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/1431007">Reception Studies</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Lorna Hardwick
      </td>
      <td data-cell="Year" class="align-right">
	2003
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/912217">Stories of Your Life and Others</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Ted Chiang
      </td>
      <td data-cell="Year" class="align-right">
	2002
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/12985">The Tempest</a>
      </td>
      <td data-cell="Author" class="nowrap">
	William Shakespeare
      </td>
      <td data-cell="Year" class="align-right">
	1611
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/17455042">Toda Poesia</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Paulo Leminski
      </td>
      <td data-cell="Year" class="align-right">
	2013
      </td>
    </tr>
  
    <tr>
      <td data-cell="Book">
	<a href="https://www.goodreads.com/book/show/18414">Utopia</a>
      </td>
      <td data-cell="Author" class="nowrap">
	Thomas More
      </td>
      <td data-cell="Year" class="align-right">
	1516
      </td>
    </tr>
  
  </tbody>
</table>

</div>
</div>
]]></content:encoded></item><item><title>Photographs: Punctum</title><link>https://eternodevir.com/palimpsests/atelier/punctum/</link><pubDate>Thu, 07 Dec 2023 11:48:48 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Photographs</category><guid>https://eternodevir.com/palimpsests/atelier/punctum/</guid><description>Gazes beyond light and shadow.</description><content:encoded><![CDATA[<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/00-45c74baee30baa74.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/00-45c74baee30baa74.jpg"
           alt="00"
            loading="eager">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/01-1b3f5280e42e33b6.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/01-1b3f5280e42e33b6.jpg"
           alt="01"
            loading="eager">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/02-a22fce0e4e6a14ec.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/02-a22fce0e4e6a14ec.jpg"
           alt="02"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/03-a4fa1d79609b04b9.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/03-a4fa1d79609b04b9.jpg"
           alt="03"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/04-a3f42f136875c7b6.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/04-a3f42f136875c7b6.jpg"
           alt="04"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/05-889562a23cdda51f.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/05-889562a23cdda51f.jpg"
           alt="05"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/06-66b67399ee9d1b30.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/06-66b67399ee9d1b30.jpg"
           alt="06"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/07-9c4692057f7644dd.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/07-9c4692057f7644dd.jpg"
           alt="07"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/08-555121a26648170f.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/08-555121a26648170f.jpg"
           alt="08"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/09-5fa316a36d2b513f.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/09-5fa316a36d2b513f.jpg"
           alt="09"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/10-78d8275c540ae5b4.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/10-78d8275c540ae5b4.jpg"
           alt="10"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/11-747e1bafda016cd2.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/11-747e1bafda016cd2.jpg"
           alt="11"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/12-a79a92906eed0495.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/12-a79a92906eed0495.jpg"
           alt="12"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/13-73421a4935d98ee4.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/13-73421a4935d98ee4.jpg"
           alt="13"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/14-2b8e23f866d37cfa.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/14-2b8e23f866d37cfa.jpg"
           alt="14"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/15-58f32a49fec3d258.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/15-58f32a49fec3d258.jpg"
           alt="15"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/16-3169553c2a56a218.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/16-3169553c2a56a218.jpg"
           alt="16"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/17-dd9aed0ac3195467.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/17-dd9aed0ac3195467.jpg"
           alt="17"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/18-fb26aa4e73741390.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/18-fb26aa4e73741390.jpg"
           alt="18"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/19-91c2cc103a5ca78c.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/19-91c2cc103a5ca78c.jpg"
           alt="19"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/20-95d99045a9d828eb.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/20-95d99045a9d828eb.jpg"
           alt="20"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/21-cf6d1e89a1cf3b49.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/21-cf6d1e89a1cf3b49.jpg"
           alt="21"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/22-dea8dc9b5a44e8cf.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/22-dea8dc9b5a44e8cf.jpg"
           alt="22"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/23-021d2d73da4189ac.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/23-021d2d73da4189ac.jpg"
           alt="23"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/24-6cf9543a083eb984.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/24-6cf9543a083eb984.jpg"
           alt="24"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/25-c4f8f3e44c91c790.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/25-c4f8f3e44c91c790.jpg"
           alt="25"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/26-550b3bb437826726.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/26-550b3bb437826726.jpg"
           alt="26"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/27-f2bb7d31ba89b0b1.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/27-f2bb7d31ba89b0b1.jpg"
           alt="27"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/28-d113fc190e41697e.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/28-d113fc190e41697e.jpg"
           alt="28"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/29-5e33ff805516f0d7.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/29-5e33ff805516f0d7.jpg"
           alt="29"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/30-bc71eab6bf9ed3fd.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/30-bc71eab6bf9ed3fd.jpg"
           alt="30"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/31-0d9c888045553312.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/31-0d9c888045553312.jpg"
           alt="31"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/32-8f9362df826e35e5.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/32-8f9362df826e35e5.jpg"
           alt="32"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/33-bf8c5259930d33d4.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/33-bf8c5259930d33d4.jpg"
           alt="33"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/34-96b3f32d2c5f07aa.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/34-96b3f32d2c5f07aa.jpg"
           alt="34"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/35-1fff9dc8edff6345.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/35-1fff9dc8edff6345.jpg"
           alt="35"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/36-05bf60e801af82d8.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/36-05bf60e801af82d8.jpg"
           alt="36"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/37-8d7666b025cedea2.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/37-8d7666b025cedea2.jpg"
           alt="37"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/38-b5d6c6eb204c3eb3.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/38-b5d6c6eb204c3eb3.jpg"
           alt="38"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/39-1437a4cef95baf21.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/39-1437a4cef95baf21.jpg"
           alt="39"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/40-56d9230632b1682e.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/40-56d9230632b1682e.jpg"
           alt="40"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/41-be44184a1d5d3629.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/41-be44184a1d5d3629.jpg"
           alt="41"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/42-4d49463602c75e37.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/42-4d49463602c75e37.jpg"
           alt="42"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/64-d81e17d6ce8b801a.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/64-d81e17d6ce8b801a.jpg"
           alt="64"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/63-a4657d625d73d64a.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/63-a4657d625d73d64a.jpg"
           alt="63"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/43-f30842da7496f58e.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/43-f30842da7496f58e.jpg"
           alt="43"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/44-e2397a476d8cb91e.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/44-e2397a476d8cb91e.jpg"
           alt="44"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/62-3edcff730b1b5e7a.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/62-3edcff730b1b5e7a.jpg"
           alt="62"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/61-1de7b210503e7206.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/61-1de7b210503e7206.jpg"
           alt="61"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/45-2a0fd8671ba42922.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/45-2a0fd8671ba42922.jpg"
           alt="45"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/46-4098274a188bdf8d.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/46-4098274a188bdf8d.jpg"
           alt="46"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/47-f4e8f58e759814f6.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/47-f4e8f58e759814f6.jpg"
           alt="47"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/48-bb415f7547b6863c.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/48-bb415f7547b6863c.jpg"
           alt="48"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/49-9357846376bf42ce.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/49-9357846376bf42ce.jpg"
           alt="49"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/50-7bcb08fe10f41425.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/50-7bcb08fe10f41425.jpg"
           alt="50"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/51-13bb302300d9e2be.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/51-13bb302300d9e2be.jpg"
           alt="51"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/52-b888238b063063da.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/52-b888238b063063da.jpg"
           alt="52"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/53-962a691eeeb40be7.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/53-962a691eeeb40be7.jpg"
           alt="53"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/54-55abf892a5068f80.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/54-55abf892a5068f80.jpg"
           alt="54"
           loading="lazy">
    </picture></figure>

<figure class="figure_yr"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/55-806041e8fcf3af15.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/55-806041e8fcf3af15.jpg"
           alt="55"
           loading="lazy">
    </picture></figure>

<figure class="figure_yl"><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/56-04034676aef5a7b2.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/56-04034676aef5a7b2.jpg"
           alt="56"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/57-f92e909393434452.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/57-f92e909393434452.jpg"
           alt="57"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/58-2b736d193a65c5b3.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/58-2b736d193a65c5b3.jpg"
           alt="58"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/59-e6ed687ffe3f5961.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/59-e6ed687ffe3f5961.jpg"
           alt="59"
           loading="lazy">
    </picture></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/punctum/60-105842c7d47f93e4.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/punctum/60-105842c7d47f93e4.jpg"
           alt="60"
           loading="lazy">
    </picture></figure>

]]></content:encoded></item><item><title>Photographs: Places</title><link>https://eternodevir.com/palimpsests/atelier/places/</link><pubDate>Thu, 02 Nov 2023 22:07:49 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Photographs</category><guid>https://eternodevir.com/palimpsests/atelier/places/</guid><description>A visual diary capturing different latitudes. Brasília, Brasil Ouro Preto, Brasil Mariana, Brasil Juiz de Fora, Brasil São Paulo, Brasil Rio de Janeiro, Brasil Vitória, Brasil Berlin, Deutschland Frankfurt, Deutschland München, Deutschland Passau, Deutschland Regensburg, Deutschland Trier, Deutschland</description><content:encoded><![CDATA[<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/brasilia-550e851a979a94ee.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/brasilia-550e851a979a94ee.jpg"
           alt="brasilia"
            loading="eager">
    </picture><figcaption>
    <p>Brasília, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/ouro-preto-8b8f1305b140850f.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/ouro-preto-8b8f1305b140850f.jpg"
           alt="ouro_preto"
            loading="eager">
    </picture><figcaption>
    <p>Ouro Preto, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/mariana-48e7b3d04dec0b67.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/mariana-48e7b3d04dec0b67.jpg"
           alt="mariana"
           loading="lazy">
    </picture><figcaption>
    <p>Mariana, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/juiz-de-fora-7cfa3ba51c86f8ef.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/juiz-de-fora-7cfa3ba51c86f8ef.jpg"
           alt="juiz_de_fora"
           loading="lazy">
    </picture><figcaption>
    <p>Juiz de Fora, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/sao-paulo-65bc52060bcd256c.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/sao-paulo-65bc52060bcd256c.jpg"
           alt="sao_paulo"
           loading="lazy">
    </picture><figcaption>
    <p>São Paulo, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/rio-de-janeiro-672bcd9ea433dfc0.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/rio-de-janeiro-672bcd9ea433dfc0.jpg"
           alt="rio_de_janeiro"
           loading="lazy">
    </picture><figcaption>
    <p>Rio de Janeiro, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/vitoria-f867404ab7bd05a7.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/vitoria-f867404ab7bd05a7.jpg"
           alt="vitoria"
           loading="lazy">
    </picture><figcaption>
    <p>Vitória, Brasil
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/berlin-2c98f01c92b5349f.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/berlin-2c98f01c92b5349f.jpg"
           alt="berlin"
           loading="lazy">
    </picture><figcaption>
    <p>Berlin, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/frankfurt-0e8de490cb86b499.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/frankfurt-0e8de490cb86b499.jpg"
           alt="frankfurt"
           loading="lazy">
    </picture><figcaption>
    <p>Frankfurt, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/munchen-2bb2e19eee0f7cd4.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/munchen-2bb2e19eee0f7cd4.jpg"
           alt="munchen"
           loading="lazy">
    </picture><figcaption>
    <p>München, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/passau-cc770219a18c9543.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/passau-cc770219a18c9543.jpg"
           alt="passau"
           loading="lazy">
    </picture><figcaption>
    <p>Passau, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/regensburg-24cb53d619142579.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/regensburg-24cb53d619142579.jpg"
           alt="regensburg"
           loading="lazy">
    </picture><figcaption>
    <p>Regensburg, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/trier-3f31010dd7bfe357.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/trier-3f31010dd7bfe357.jpg"
           alt="trier"
           loading="lazy">
    </picture><figcaption>
    <p>Trier, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/salzburg-04ea367aa14a2eec.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/salzburg-04ea367aa14a2eec.jpg"
           alt="salzburg"
           loading="lazy">
    </picture><figcaption>
    <p>Salzburg, Österreich
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/strasbourg-908545ac1927ac50.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/strasbourg-908545ac1927ac50.jpg"
           alt="strasbourg"
           loading="lazy">
    </picture><figcaption>
    <p>Strasbourg, France
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/oberkirch-81ab0d9a2fc40005.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/oberkirch-81ab0d9a2fc40005.jpg"
           alt="oberkirch"
           loading="lazy">
    </picture><figcaption>
    <p>Oberkirch, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/oppenau-6b170aba6cf8fed1.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/oppenau-6b170aba6cf8fed1.jpg"
           alt="oppenau"
           loading="lazy">
    </picture><figcaption>
    <p>Oppenau, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/gutach-900d900365dbb470.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/gutach-900d900365dbb470.jpg"
           alt="gutach"
           loading="lazy">
    </picture><figcaption>
    <p>Gutach, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/sasbach-2b4a77fe04bc0171.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/sasbach-2b4a77fe04bc0171.jpg"
           alt="sasbach"
           loading="lazy">
    </picture><figcaption>
    <p>Sasbach, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/sasbachwalden-b6a2a70d0c1ac5d0.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/sasbachwalden-b6a2a70d0c1ac5d0.jpg"
           alt="sasbachwalden"
           loading="lazy">
    </picture><figcaption>
    <p>Sasbachwalden, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/donaustauf-92fbc448a93d794e.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/donaustauf-92fbc448a93d794e.jpg"
           alt="donaustauf"
           loading="lazy">
    </picture><figcaption>
    <p>Donaustauf, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/neuschonau-e17a3c3494ff5569.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/neuschonau-e17a3c3494ff5569.jpg"
           alt="neuschonau"
           loading="lazy">
    </picture><figcaption>
    <p>Neuschönau, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/seebach-23cc49120e651397.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/seebach-23cc49120e651397.jpg"
           alt="seebach"
           loading="lazy">
    </picture><figcaption>
    <p>Seebach, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/renchen-320927049520bbef.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/renchen-320927049520bbef.jpg"
           alt="renchen"
           loading="lazy">
    </picture><figcaption>
    <p>Renchen, Deutschland
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/wernstein-8c546a086e58b62b.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/wernstein-8c546a086e58b62b.jpg"
           alt="wernstein"
           loading="lazy">
    </picture><figcaption>
    <p>Wernstein, Österreich
      </p>
  </figcaption></figure>

<figure><picture>
      <source srcset="https://eternodevir.com/images/dg/places/scharding-d9779233357d3056.avif" type="image/avif">
      <img src="https://eternodevir.com/images/dg/places/scharding-d9779233357d3056.jpg"
           alt="scharding"
           loading="lazy">
    </picture><figcaption>
    <p>Schärding, Österreich
      </p>
  </figcaption></figure>

]]></content:encoded></item><item><title>Collections: Quotes</title><link>https://eternodevir.com/palimpsests/favorites/quotes/</link><pubDate>Wed, 04 Oct 2023 19:28:25 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Collections</category><guid>https://eternodevir.com/palimpsests/favorites/quotes/</guid><description>Collection of some favorite quotes of mine. New entries are more or less intentionally arranged.
Certain things are visible only in speech.
— Teju Cole, writer/photographer
Aqui poemas para lerem, em silêncio, o olho, o coração e a inteligência…
— Paulo Leminski, poet
If you ask me for really dangerous ideological films, for ideology at its purest, I’d say Kung Fu Panda.
— Slavoj Žižek, philosopher
Alors, Monsieur Beckett, vous êtes anglais ?
Au contraire.
— Samuel Beckett, dramatist
Cuando miro la forma de América en el mapa, amor, a ti te veo.</description><content:encoded><![CDATA[<p>
New entries are more or less intentionally arranged.</p>
<p>
<br></p>
<blockquote>
<p>Certain things are visible only in speech.</p>
<p>
<span class="style-normal">— <strong>Teju Cole</strong>, writer/photographer</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Aqui poemas para lerem, em silêncio, o olho, o coração e a inteligência…</p>
<p>
<span class="style-normal">— <strong>Paulo Leminski</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>If you ask me for really dangerous ideological films, for ideology at its purest, I’d say Kung Fu Panda.</p>
<p>
<span class="style-normal">— <strong>Slavoj Žižek</strong>, philosopher</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Alors, Monsieur Beckett, vous êtes anglais ?</p>
<p>
Au contraire.</p>
<p>
<span class="style-normal">— <strong>Samuel Beckett</strong>, dramatist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Cuando miro la forma de América en el mapa, amor, a ti te veo.</p>
<p>
<span class="style-normal">— <strong>Pablo Neruda</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Design something that gets better with use.</p>
<p>
<span class="style-normal">— <strong>Bill Moggridge</strong>, designer</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Fracassei em tudo o que tentei na vida. Tentei alfabetizar as crianças brasileiras, não consegui. Tentei salvar os índios, não consegui. Tentei fazer uma universidade séria e fracassei. Tentei fazer o Brasil desenvolver-se autonomamente e fracassei. Mas os fracassos são minhas vitórias. Eu detestaria estar no lugar de quem me venceu.</p>
<p>
<span class="style-normal">— <strong>Darcy Ribeiro</strong>, anthropologist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Try again. Fail again. Fail better.</p>
<p>
<span class="style-normal">— <strong>Samuel Beckett</strong>, dramatist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>A book is not an isolated being: it is a relationship, an axis of innumerable relationships.</p>
<p>
<span class="style-normal">— <strong>Jorge Luis Borges</strong>, writer</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Nothing&#39;s sacred for those who think. The filthy fingering of touchy subjects is music to their ears.</p>
<p>
<span class="style-normal">— <strong>Wisława Szymborska</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Poetry is just the evidence of life. If your life is burning well, poetry is just the ash.</p>
<p>
<span class="style-normal">— <strong>Leonard Cohen</strong>, musician</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>A photograph is both a pseudo-presence and a token of absence.</p>
<p>
<span class="style-normal">— <strong>Roland Barthes</strong>, semiotician</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>There&#39;s beauty in simplicity; the smallest moments can hold the greatest significance.</p>
<p>
<span class="style-normal">— <strong>Wong Kar-Wai</strong>, director</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Simplicity is a great virtue but it requires hard work to achieve it and education to appreciate it. And to make matters worse: complexity sells better.</p>
<p>
<span class="style-normal">— <strong>Edsger Dijkstra</strong>, computer scientist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>A luz no fim do túnel é, no máximo, outro trem vindo em alta velocidade.</p>
<p>
<span class="style-normal">— <strong>Slavoj Žižek</strong>, philosopher</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>The Times asked Samuel Beckett for his New Year&#39;s resolutions and hopes.</p>
<p>
resolutions colon zero stop period hopes colon zero stop beckett.</p>
<p>
<span class="style-normal">— <strong>Samuel Beckett</strong>, dramatist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Pessimism of the intellect, optimism of the will.</p>
<p>
<span class="style-normal">— <strong>Antonio Gramsci</strong>, philosopher</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>I&#39;m not interested in how people move, but what moves them.</p>
<p>
<span class="style-normal">— <strong>Pina Bausch</strong>, choreographer</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>I don&#39;t want to show things, but to give people the desire to see.</p>
<p>
<span class="style-normal">— <strong>Agnès Varda</strong>, director</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>O objetivo de toda arte não é algo impossível? O poeta exprime (ou quer exprimir) o inexprimível, o pintor reproduz o irreproduzível, o estatuário fixa o infixável. Não é surpreendente, pois, que o tradutor se empenhe em traduzir o intraduzível.</p>
<p>
<span class="style-normal">— <strong>Paulo Rónai</strong>, translator</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Soyez réalistes, demandez l&#39;impossible.</p>
<p>
<span class="style-normal">— May 68, Sciences-Po</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>É tempo de não mais se contentarem com essas gotas no oceano.</p>
<p>
<span class="style-normal">— <strong>Bertolt Brecht</strong>, dramatist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>POESIA: “words set to music” (Dante via Pound), “uma viagem ao desconhecido” (Maiakovski), “cernes e medulas” (Ezra Pound), “a fala do infalável (Goethe), “linguagem voltada para a sua própria materialidade” (Jakobson), “permanente hesitação entre som e sentido” (Paul Valéry), “fundação do ser mediante a palavra” (Heidegger), “a religião original da humanidade” (Novalis), “as melhores palavras na melhor ordem” (Coleridge), “emoção relembrada na tranquilidade” (Wordsworth), “ciência e paixão” (Alfred de Vigny), “se faz com palavras, não com idéias” (Mallarmé), “música que se faz com idéias” (Ricardo Reis/ Fernando Pessoa), “um fingimento deveras” (Fernando Pessoa), “criticism of life” (Mathew Arnold), “palavra-coisa” (Sartre), “linguagem em estado de pureza selvagem” (Octavio Paz), “poetry is to inspire” (Bob Dylan), “design de linguagem” (Décio Pignatari), “lo imposible hecho posible” (García Lorca), “aquilo que se perde na tradução” (Robert Frost), “a liberdade da minha linguagem” (Paulo Leminski)…</p>
<p>
<span class="style-normal">— <strong>Paulo Leminski</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>My world has just become perfect, pain is also a joy. Go away, or you&#39;ll learn: a wise man is also insane.</p>
<p>
<span class="style-normal">— <strong>Friedrich Nietzsche</strong>, philosopher</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Colorless green ideas sleep furiously.</p>
<p>
<span class="style-normal">— <strong>Noam Chomsky</strong>, linguist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Insignificance, my friend, is the essence of existence… It&#39;s all around us, we must learn to love it.</p>
<p>
<span class="style-normal">— <strong>Milan Kundera</strong>, novelist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>A photographer is literally someone who writes and rewrites the world with light and shadow.</p>
<p>
<span class="style-normal">— <strong>Sebastião Salgado</strong>, photographer</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Mathematics is the art of giving the same name to different things.</p>
<p>
<span class="style-normal">— <strong>Henri Poincaré</strong>, mathematician</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Being diferent isn&#39;t good or bad. It only means that you are brave enough to be yourself.</p>
<p>
<span class="style-normal">— <strong>Albert Camus</strong>, philosopher</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>A language that doesn&#39;t affect the way you think about programming is not worth knowing.</p>
<p>
<span class="style-normal">— <strong>Alan Perlis</strong>, computer scientist</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Pedicabo ego vos et irrumabo.</p>
<p>
<span class="style-normal">— <strong>Valerius Catullus</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>Il faut être absolument moderne.</p>
<p>
<span class="style-normal">— <strong>Arthur Rimbaud</strong>, poet</span></p>
</blockquote>
<p>
<br></p>
<blockquote>
<p>The truth is the whole.</p>
<p>
<span class="style-normal">— <strong>Friedrich Hegel</strong>, philosopher</span></p>
</blockquote>
]]></content:encoded></item><item><title>Notes: Learning touch typing</title><link>https://eternodevir.com/palimpsests/texts/learning-touch-typing/</link><pubDate>Sun, 13 Aug 2023 08:45:32 -0300</pubDate><dc:creator>Vinícius Moraes</dc:creator><category>Notes</category><guid>https://eternodevir.com/palimpsests/texts/learning-touch-typing/</guid><description>Highs and lows of my experience over a month. As soon as my X-Bows keyboard arrived, I also started learning touch typing. It is a method where touch is relied upon instead of vision to locate the keys on the keyboard. In other words, a touch typist can type all the keys through muscle memory. This practice involves a series of concepts, which are summarized in the image below and further explained on the websites ahead.
Resting position of fingers on the home row [Source]</description><content:encoded><![CDATA[
<p>
As soon as my <a href="https://eternodevir.com/palimpsests/texts/a-saner-keyboard/">X-Bows</a> keyboard arrived, I also started learning touch typing. It is a method where touch is relied upon instead of vision to locate the keys on the keyboard. In other words, a <strong>touch typist</strong> can type all the keys through muscle memory. This practice involves a series of concepts, which are summarized in the image below and further explained on the websites ahead.</p>
<figure><picture>
      <source srcset="https://eternodevir.com/images/palimpsests/2023/image04-a4863114bcd875a3.avif" type="image/avif">
      <img src="https://eternodevir.com/images/palimpsests/2023/image04-a4863114bcd875a3.png"
           alt="Resting position of fingers on the home row"
            loading="eager">
    </picture><figcaption>
    <p>Resting position of fingers on the home row
      <sup><small><a href="https://commons.wikimedia.org/wiki/File:Keyboard_layout_english_fingers.png" title="Copyright 2007 - Sakurambo; modified by Cangjie6 under CC BY-SA 3.0 or GFDL., CC BY-SA 3.0 &lt;https://creativecommons.org/licenses/by-sa/3.0&gt;, via Wikimedia Commons">[Source]</a></small></sup></p>
  </figcaption></figure>

<p>
It is worth saying that besides the inherent challenges of transitioning to touch typing, I was also facing changes in keyboard layout (from <code class="verbatim">pt-br</code> to <code class="verbatim">us</code>), design (from conventional to thumb cluster), and language (from Portuguese to English) due to the anglophone aspect of the exercises.</p>
<p>
After testing some options, I decided to use these two websites for learning it:</p>
<dl>
<dt>
<a href="https://www.typing.com">typing.com</a>
</dt>
<dd>For theoretical content and basic exercises.</dd>
<dt>
<a href="https://www.keybr.com/">keybr.com</a>
</dt>
<dd>For more advanced exercises, adapted to my progress level.</dd>
</dl>
<p>I practiced <strong>30 minutes a day for a month</strong>. 15 minutes on <code class="verbatim">typing.com</code> followed by 15 minutes on <code class="verbatim">keybr.com</code>. Additionally, I made a conscious effort to not abandon the touch typing method whenever I needed to use the computer for day-to-day tasks. <em>Yes, the beginning was quite difficult.</em></p>
<p>
Here are some <a href="https://www.keybr.com/profile/q43lvyf">statistics</a> from <code class="verbatim">keybr.com</code> about my learning process. I also wrote down my daily impressions in my journal, which I recapped by week at the end of this text.</p>
<p>
All in all, after a month of this routine, I went from 36 words per minute with the visual method to an average of <strong>85 words per minute</strong> with touch typing.
In addition to the benefits in speed and muscle memory, typing properly is also significantly more comfortable.
Certainly, it is a skill that I wish I had developed sooner and that is absolutely welcome in our times.</p>
<p>
After this learning period, I started using <a href="https://monkeytype.com/">monkeytype.com</a> for maintenance and warming up whenever I feel the need.</p>
<div id="outline-container-week-1" class="outline-2">
<h2 id="week-1">
Week 1
</h2>
<div id="outline-text-week-1" class="outline-text-2">
<p>
Certainly, this has been the hardest week. The desire to revert to typing the old way is strong. Basic tasks take a lot of time, to the point where the computer becomes practically unusable.</p>
<p>
After a few days, with persistent efforts to position the fingers correctly, simple tasks became manageable.</p>
<p>
From the middle to the end of this week, I noticed some signs of smoothness.</p>
<p>
Practices have already begun to involve capitalization and a broader set of sequences.</p>
</div>
</div>
<div id="outline-container-week-2" class="outline-2">
<h2 id="week-2">
Week 2
</h2>
<div id="outline-text-week-2" class="outline-text-2">
<p>
Typing speed is increasing. I can now type capital letters quickly.</p>
<p>
Practices have begun to involve accentuation and punctuation.</p>
<p>
Despite an increase in the number of mistakes, I&#39;m managing to maintain the same speed as before.</p>
</div>
</div>
<div id="outline-container-week-3" class="outline-2">
<h2 id="week-3">
Week 3
</h2>
<div id="outline-text-week-3" class="outline-text-2">
<p>
Getting accents and capital letters right is quite pleasant.</p>
<p>
Exercises are progressing without many surprises.</p>
<p>
Typing speed continues to increase, but at a slower pace.</p>
</div>
</div>
<div id="outline-container-week-4" class="outline-2">
<h2 id="week-4">
Week 4
</h2>
<div id="outline-text-week-4" class="outline-text-2">
<p>
Mistakes are becoming much less frequent.</p>
<p>
I&#39;m already typing in a comfortable and smooth manner.</p>
<p>
There is a dilemma between typing faster and making more mistakes and typing slower and being more accurate.</p>
<p>
The second option tends to be more effective at the end of the sessions, both in terms of learning and words typed.</p>
</div>
</div>
]]></content:encoded></item></channel></rss>