<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>bearblog</id>
  <title>Bear Blog Most Recent Posts</title>
  <updated>2026-09-15T00:07:50.090352+00:00</updated>
  <author>
    <name>Bear Blog</name>
    <email>feed@bearblog.dev</email>
  </author>
  <link href="https://bearblog.dev/discover/?newest=True" rel="alternate"/>
  <generator uri="https://lkiesow.github.io/python-feedgen" version="1.0.0">python-feedgen</generator>
  <subtitle>Most recent posts on Bear Blog</subtitle>
  <entry>
    <id>https://lumpmotif.com/im-so-tired/</id>
    <title>I'm So Tired</title>
    <updated>2026-09-15T00:04:00+00:00</updated>
    <author>
      <name>lumpmotif</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;iframe width="560" height="315" src="https://www.youtube.com/embed/7cqHtGb9WYM?si=qhd7Op3rS0M1DgN5" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen&gt;&lt;/iframe&gt;
&lt;p&gt;Mood.&lt;/p&gt;
&lt;p&gt;I haven't been getting much sleep at night, so I've been nodding off during the day. I've been getting less sunlight, which is a shame since there is so much of it here in Florida, even though it's still the wet season.&lt;/p&gt;
&lt;p&gt;More than the lyrics, The Beatles' instrumentation sounds like how my brain feels. Floaty, dreamy, yet disoriented.&lt;/p&gt;
</content>
    <link href="https://lumpmotif.com/im-so-tired/"/>
    <published>2026-09-15T00:04:00+00:00</published>
  </entry>
  <entry>
    <id>https://songshapes.dev/pedro-the-lion-big-trucks/</id>
    <title>Pedro The Lion - Big Trucks</title>
    <updated>2026-09-15T00:00:00+00:00</updated>
    <author>
      <name>songshapes</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;&lt;a href='https://bear-images.sfo2.cdn.digitaloceanspaces.com/songshapes/big-trucks.webp'&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/songshapes/big-trucks.webp" alt="big trucks" title="Son, there are two kinds of dads. The ones that lift weight and the ones that play guitar" /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
    <link href="https://songshapes.dev/pedro-the-lion-big-trucks/"/>
    <published>2026-09-15T00:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://wilberhg.bearblog.dev/criando-arquivos-pelo-cmd-do-windows/</id>
    <title>Criando Arquivos pelo CMD do Windows</title>
    <updated>2026-09-14T23:59:54.817648+00:00</updated>
    <author>
      <name>wilberhg</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;h2 id=entendendo-o-conceito&gt;Entendendo o Conceito&lt;/h2&gt;&lt;p&gt;Criar arquivos diretamente pelo Prompt de Comando (CMD) do Windows evita navegar pela interface gráfica (botão direito &gt; Novo &gt; renomear) e mantém o fluxo de trabalho no teclado. O CMD funciona como uma camanda de comunicação com o sistema de arquivos: comandos escritos no terminal são interpretados e executados pelo Windows, sem interação com o mouse.&lt;/p&gt;
&lt;h2 id=passo-a-passo&gt;Passo a Passo&lt;/h2&gt;&lt;p&gt;Abra o CMD (pesquisar por "CMD" no menu iniciar) e execute os comandos na pasta de destino.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 1 - Criar um arquivo de texto vazio&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;type nul &amp;gt; meu_relatorio.txt
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 2 - Criar um arquivo com uma frase inicial&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;echo Iniciando meu projeto de estudos &amp;gt; anotacoes.txt
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 3 - Adicionar uma nova linha sem apagar o conteúdo existente&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;echo Esta é a segunda linha do meu arquivo &amp;gt;&amp;gt; anotacoes.txt
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 4 - Editor interativo para digitar várias linhas livres&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;copy con
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Após executar &lt;code&gt;copy con&lt;/code&gt;, tudo o que for digitado é enviado ao arquivo de destino. Para finalizar e salvar, pressionar &lt;code&gt;Ctrl + Z&lt;/code&gt; (ou &lt;code&gt;F6&lt;/code&gt;) e depois Enter.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 5 - Criar arquivos de tamanho sob medida para testes&lt;/strong&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;fsutil file createnew
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Ferramenta de sistema avançada para criar arquivos de teste com tamanhos grandes (em bytes) instantaneamente, útil para simular cenários reais de teste de velocidade de rede ou limite de armazenamento do disco.&lt;/p&gt;
&lt;h2 id=explicando-o-codigo&gt;Explicando o código&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;code&gt;type nul&lt;/code&gt;:&lt;ul&gt;
&lt;li&gt;&lt;code&gt;type&lt;/code&gt; exibe o conteúdo de um arquivo na tela.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;nul&lt;/code&gt; é uma palavra reservada do Windows para representar o "vazio".&lt;/li&gt;
&lt;li&gt;Juntos, &lt;code&gt;type nul&lt;/code&gt; gera um conteúdo em branco que é direcionado ao arquivo.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;gt;&lt;/code&gt; (seta única):&lt;ul&gt;
&lt;li&gt;Funciona como um funil: pega o resultado do comando à esquerda e joga dentro do arquivo à direita.&lt;/li&gt;
&lt;li&gt;Se o arquivo já existir, apaga todo o conteúdo anterior e escreve o novo texto por cima.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&amp;gt;&amp;gt;&lt;/code&gt; (seta dupla):&lt;ul&gt;
&lt;li&gt;Modo seguro de adicionar informações: pula para a última linha e escreve o novo texto no final, preservando o que já estava escrito.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;echo&lt;/code&gt;:&lt;ul&gt;
&lt;li&gt;Escreve um texto na tela (ex.: &lt;code&gt;echo Olá&lt;/code&gt; repete "Olá" no terminal).&lt;/li&gt;
&lt;li&gt;Combinado com &lt;code&gt;&amp;gt;&lt;/code&gt;, o texto de saída é desviado para dentro de um arquivo.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;copy con&lt;/code&gt;:&lt;ul&gt;
&lt;li&gt;Abre um pequeno editor interativo dentro do terminal.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + Z&lt;/code&gt; ou &lt;code&gt;F6&lt;/code&gt; seguido de Enter finaliza e salva o conteúdo.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;fsutil file createnew&lt;/code&gt;:&lt;ul&gt;
&lt;li&gt;Comando nativo de gerenciamento de sistema de arquivos para criar arquivo com tamanho definido em bytes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=observacoes&gt;Observações&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;"Acesso Negado"&lt;/strong&gt;: ocorre ao tentar criar arquivo em pasta protegida do sistema (ex.: &lt;code&gt;Windows&lt;/code&gt;, &lt;code&gt;Arquivos de Programas&lt;/code&gt;). Resolver fechando o CMD, clicando com o botão direito no ícone e escolhendo "Executar como Administrador".&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nomes com espaços&lt;/strong&gt;: &lt;code&gt;type nul &amp;gt; meu relatorio.txt&lt;/code&gt; faz o CMD interpretar "relatorio" como comando extra. Sempre envolver nomes com espaços entre aspas duplas: &lt;code&gt;type nul &amp;gt; &amp;quot;meu relatorio.txt&amp;quot;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Seta única vs. seta dupla&lt;/strong&gt;: &lt;code&gt;&amp;gt;&lt;/code&gt; limpa o arquivo e sobrescreve; &lt;code&gt;&amp;gt;&amp;gt;&lt;/code&gt; adiciona ao final. Para preservar o histórico do arquivo, usar sempre &lt;code&gt;&amp;gt;&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://wilberhg.bearblog.dev/criando-arquivos-pelo-cmd-do-windows/"/>
    <published>2026-09-14T23:59:54.817648+00:00</published>
  </entry>
  <entry>
    <id>https://orangebelly.lol/sep-14/</id>
    <title>Sep 14</title>
    <updated>2026-09-14T23:57:59.906883+00:00</updated>
    <author>
      <name>yelloworange</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;ul&gt;
&lt;li&gt;&lt;p&gt;decide to start this since Sep.13 night, when I binged two froyos, three packs of snacks given from friends, 12 packs of seaweed and a bunch of frozen fruits unvoluntarily.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;also a lot of stuff has happened since summer 2026.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;for some reason I am more anxious at school instead of working.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;As for 9.14.2026:&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;some things coming up are:&lt;/p&gt;
&lt;p&gt;before got out of bed:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Harmony quiz that I haven't started review&lt;/li&gt;
&lt;li&gt;15-451 Midterm in 2 days, was not on track for reviewing&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;happened during the day:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;regret about the binging yesterday&lt;/li&gt;
&lt;li&gt;had a 95-422 gen-ed presentation&lt;/li&gt;
&lt;li&gt;heard from TikTok intern mentor asked about did i hear from company, and asking me "did i copy data and programs when finishing up intern"&lt;/li&gt;
&lt;li&gt;ordered Chipotle online, but there's a fucking fire alarm happening, and i can't pick my food in unknown amount of time&lt;/li&gt;
&lt;li&gt;had to wait at starbucks, but anxiety hits so i was fighting the urge of soothing feelings with food&lt;/li&gt;
&lt;li&gt;my review plan got disrupted because of 1.5 hour late of chipotle&lt;/li&gt;
&lt;li&gt;ate another bowl of froyo, felt bad about the workout goal that i was thinking yesterday&lt;/li&gt;
&lt;li&gt;more worrying about TikTok return offer, had several convo with intern partners and friends when max anxiety hits&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Some post-mortem thoughts:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;honest biological reaction:&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;heart beating extremely fast&lt;/li&gt;
&lt;li&gt;can't breathe properly&lt;/li&gt;
&lt;li&gt;brain felt like getting kidnapped or life was threatened&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Some actions I took to save:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;decide not to associate food with anxiety anymore&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;alternative: 跳一跳小游戏&lt;/li&gt;
&lt;li&gt;can't think of anything else as honestly the feeling felt too strong like i will die without thinking about it&lt;/li&gt;
&lt;li&gt;In terms of weight loss, Only Fixate on the Goal, keep thinking being in shape is my goal, I want to be in shaped, instead of anything threatening.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now its 7:55PM and i have to review 15-451. Will try to document more things&lt;/p&gt;
</content>
    <link href="https://orangebelly.lol/sep-14/"/>
    <published>2026-09-14T23:57:59.906883+00:00</published>
  </entry>
  <entry>
    <id>https://wilberhg.bearblog.dev/erro-ssl-playwright-windows/</id>
    <title>Resolvendo o Erro 'SELF_SIGNED_CERT_IN_CHAIN' no Playwright (Windows)</title>
    <updated>2026-09-14T23:42:00+00:00</updated>
    <author>
      <name>wilberhg</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;h2 id=entendendo-o-conceito&gt;Entendendo o Conceito&lt;/h2&gt;&lt;p&gt;O comando &lt;code&gt;playwright install&lt;/code&gt; utiliza o Node.js por trás dos panos para realizar o download dos navegadores (Chromium, Firefox e WebKit).&lt;/p&gt;
&lt;p&gt;Em redes corporativas, é comum que firewalls e sistemas de segurança interceptem as conexões HTTPS e injetem um certificado interno próprio na cadeia de certificação. Como o Node.js não reconhece esse certificado de fábrica, ele bloqueia a conexão e o download não acontece.&lt;/p&gt;
&lt;p&gt;Abaixo, três alternativas para contornar o problema diretamente no terminal (VS Code ou Prompt de Comando), com o ambiente virtual devidamente ativado.&lt;/p&gt;
&lt;h2 id=passo-a-passo&gt;Passo a Passo&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Alternativa 1 - Ignorar a verificação de certificado (mais rápida)&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Criar a variável de ambiente temporária (PowerShell):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;$env:NODE_TLS_REJECT_UNAUTHORIZED=&amp;quot;0&amp;quot;
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ou, caso esteja utilizando o Prompt de Comando (CMD):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;set NODE_TLS_REJECT_UNAUTHORIZED=0
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Executar o download dos navegadores:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;playwright install
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;Explicando o código:&lt;ul&gt;
&lt;li&gt;A variável instrui o Node.js a não rejeitar certificados não reconhecidos;&lt;/li&gt;
&lt;li&gt;A configuração é &lt;strong&gt;temporária&lt;/strong&gt;: ao fechar o terminal, a variável é descartada automaticamente.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 2 - Confiar no certificado corporativo (mais segura)&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Obter com o time de segurança/infra o certificado root da empresa (arquivos &lt;code&gt;.pem&lt;/code&gt;, &lt;code&gt;.crt&lt;/code&gt; ou &lt;code&gt;.cer&lt;/code&gt;);&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apontar a variável para o arquivo (PowerShell):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;$env:NODE_EXTRA_CA_CERTS=&amp;quot;C:\caminho\para\o\certificado.pem&amp;quot;
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Executar a instalação:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;playwright install
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Alternativa 3 - Configurar proxy explícito&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Configurar a variável de proxy (PowerShell):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;$env:HTTPS_PROXY=&amp;quot;http://seu-proxy-da-empresa:porta&amp;quot;
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Executar a instalação:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;playwright install
&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=no-codigo-python&gt;No Código Python&lt;/h2&gt;&lt;p&gt;Mesmo com os navegadores instalados, o script também precisa ser configurado para não travar ao acessar sites dentro da rede corporativa:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;from playwright.sync_api import sync_playwright

with sync_playwright() as p:
    browser = p.chromium.launch(headless=False)
    context = browser.new_context(ignore_https_errors=True)
    page = context.new_page()
    page.goto(&amp;quot;https://seu-site-interno.com&amp;quot;)
&lt;/pre&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Explicando o código:&lt;ul&gt;
&lt;li&gt;&lt;code&gt;sync_playwright()&lt;/code&gt; abre e gerencia o ciclo de vida da automação, garantindo o encerramento correto;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;headless=False&lt;/code&gt; executa o navegador de forma visível (útil para depuração);&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ignore_https_errors=True&lt;/code&gt; impede que o navegador trave ao encontrar os certificados da rede interna.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=observacoes&gt;Observações&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;p&gt;As variáveis de ambiente criadas no terminal duram apenas naquela sessão. Configurar no PowerShell e executar o comando em outra janela (ou no CMD) não funciona, pois as configurações não são herdadas;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Caso o caminho até o certificado contenha espaços (Ex.: &lt;code&gt;C:\Meus Documentos\cert.pem&lt;/code&gt;), manter o caminho completo envolvido em aspas duplas;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Se o terminal informar que o comando &lt;code&gt;playwright&lt;/code&gt; não existe, verificar se o ambiente virtual está ativado (o nome dele deve aparecer entre parênteses no início da linha de comandos) antes de suspeitar do certificado.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=referencias&gt;Referências&lt;/h2&gt;&lt;ol&gt;
&lt;li&gt;Documentação oficial do Playwright - &lt;a href='https://playwright.dev/python/docs/browsers'&gt;Instalação de Navegadores&lt;/a&gt;;&lt;/li&gt;
&lt;li&gt;Documentação oficial do Node.js - Variável &lt;a href='https://nodejs.org/api/cli.html#node_tls_reject_unauthorizedvalue'&gt;&lt;code&gt;NODE_TLS_REJECT_UNAUTHORIZED&lt;/code&gt;&lt;/a&gt;;&lt;/li&gt;
&lt;li&gt;Documentação oficial do Node.js - Variável &lt;a href='https://nodejs.org/api/cli.html#node_extra_ca_certsfile'&gt;&lt;code&gt;NODE_EXTRA_CA_CERTS&lt;/code&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;#playwright #ssl #proxy #windows #automation&lt;/p&gt;
</content>
    <link href="https://wilberhg.bearblog.dev/erro-ssl-playwright-windows/"/>
    <published>2026-09-14T23:42:00+00:00</published>
  </entry>
  <entry>
    <id>https://nednotded.com/today-is-yesterday/</id>
    <title>today is yesterday</title>
    <updated>2026-09-14T23:26:00+00:00</updated>
    <author>
      <name>nednotded</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;my name is ned srinivasagam. i’m a physics grad student.&lt;/p&gt;
&lt;p&gt;yesterday, i discovered free energy. today, i’m in another dimension.&lt;/p&gt;
&lt;p&gt;my phone thinks its tuesday, april 12, 1981. i think it might be right.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/nednotded/c37087e7-4230-4395-8265-03b85e9b8b32.webp" alt="C37087E7-4230-4395-8265-03B85E9B8B32" /&gt;&lt;/p&gt;
</content>
    <link href="https://nednotded.com/today-is-yesterday/"/>
    <published>2026-09-14T23:26:00+00:00</published>
  </entry>
  <entry>
    <id>https://lordofnothing.com/606/</id>
    <title>玉、魂、宝(石)</title>
    <updated>2026-09-14T23:21:00+00:00</updated>
    <author>
      <name>swanchime</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;h1 id=kanji-research&gt;kanji research&lt;/h1&gt;&lt;p&gt;you can use 霊 (as in 呪霊 (JUREI; curse spirit) or 怨霊 (ONRYOU; vengeful ghost)) for 魂 (TAMASHII, where 霊 is also read TAMASHII) meaning soul&lt;/p&gt;
&lt;p&gt;霊 can also be read as TAMA which will also use bc 玉 (TAMA) can be used to refer to jewels or pearls&lt;/p&gt;
&lt;p&gt;it also forms a primary radical in 宝石 (HOUSEKI; gemstone) so it would be possible to do a kanji wordplay referring to a 霊真珠 (REISHINJU) as a 玉石 ("HOU"SEKI) and it can have an alternate reading as "TAMASEKI" and that can be written as 魂石 (soul stone) or 霊石 (spirit stone)&lt;/p&gt;
&lt;p&gt;all as different ways to refer to 霊真珠 the spirit pearl as a soul jewel&lt;/p&gt;
&lt;p&gt;the HOU in HOUSEKI is 宝 (TAKARA; treasure) (宝石) for treasured / precious rock,  but the primary radical is still 玉 for jewel (more archaic) (or modern day used for sphere or ball)&lt;/p&gt;
&lt;p&gt;IV: I think having many ways to refer to one thing makes the world feel more real where the minor variations all can be used in different contexts that tell you different things about the speaker and it also hardwires the bilingual text into the story where the story MUST be presented Exactly like this&lt;/p&gt;
&lt;p&gt;the japanese is INTRINSIC, not ornamental&lt;/p&gt;
&lt;p&gt;and it can't exist in any way Other than written, bc the compounds have kanji differences (ie it couldn't be converted into an animation and it couldn't be written purely in the English alphabet)&lt;/p&gt;
&lt;p&gt;any English speaker that disregards the translation differences or ignores the kanji altogether to try and pretend there is no Japanese involved is intentionally creating their own mistranslation of events&lt;/p&gt;
</content>
    <link href="https://lordofnothing.com/606/"/>
    <published>2026-09-14T23:21:00+00:00</published>
  </entry>
  <entry>
    <id>https://justanotherhorrorstory.bearblog.dev/journal9142026/</id>
    <title>JOURNAL...9/14/2026</title>
    <updated>2026-09-14T23:17:57.775821+00:00</updated>
    <author>
      <name>justanotherhorrorstory</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;Hello again the void of the internet. I don't believe anyone out there is listening but at the very least I will have some record of my life in some form, somewhere in the deep bowels of the internet.&lt;/p&gt;
&lt;p&gt;Work today went very well! I got a lot done and was in a good mood the entire time. The up swells of positive emotions, escape from the pain, is pretty amazing. They don't come often so I'm going to work hard to get in as many hours of work as I can before I fall back down again. But, for now, the day is good and that is good.&lt;/p&gt;
&lt;p&gt;I made a decision today. I'm going to dream of being a writer, big dreams, and pursue it to the very ends. I have always had a secret dream of being a horror writer since I was in 3rd grade but my parents were insane and forced me to submit to their designs for my life under threat of physical violence. I swallowed even the idea I could be a writer and did not think of it until my husband loved my writing so dearly. I had a giant manic episode for 3 months and it sparked in me hope. Hope to have a dream to wish for. Hope that I had some kind of artistic skill and could create my own stories. I don't really have anyone in my life reading my stories or the book I published through KDP, which is a bummer but I know my writing is not for everyone. I am a child of Hermann Hesse and I don't know how to write any other way. This is my art. And so, I affirm the conviction within me that the pursuit of writing must continue regardless of publishing or not. I cannot survive without writing. I live now measured by my plans for books to publish. I came up with a book called The Rauk Probability Theorem from visions I had in mania. I'll write about that another day.&lt;/p&gt;
&lt;p&gt;Dear stranger in the void, I declare I shall be published one day(just hopefully not posthumously) I do think it's a badge of honor to be dead when your books get published in history but it would be nice if it happened while I'm alive.&lt;/p&gt;
</content>
    <link href="https://justanotherhorrorstory.bearblog.dev/journal9142026/"/>
    <published>2026-09-14T23:17:57.775821+00:00</published>
  </entry>
  <entry>
    <id>https://xtoblog.bearblog.dev/typewriter-a-saga-with-pictures/</id>
    <title>typewriter: a saga with pictures</title>
    <updated>2026-09-14T23:14:00+00:00</updated>
    <author>
      <name>xtoblog</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;Here are the pictures of my typewriter... and my first attempt at using it.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/xtoblog/img_20260914_191224972_hdr2.webp" alt="IMG_20260914_191224972_HDR~2" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/xtoblog/img_20260914_191232156.webp" alt="IMG_20260914_191232156" /&gt;&lt;/p&gt;
&lt;p&gt;Bonus picture: McKinley on said paper.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/xtoblog/img_20260914_191605303_hdr.webp" alt="IMG_20260914_191605303_HDR" /&gt;&lt;/p&gt;
</content>
    <link href="https://xtoblog.bearblog.dev/typewriter-a-saga-with-pictures/"/>
    <published>2026-09-14T23:14:00+00:00</published>
  </entry>
  <entry>
    <id>https://piimyon.bearblog.dev/rapid-fire-qa/</id>
    <title>Rapid-fire Q&amp;A</title>
    <updated>2026-09-14T23:09:00+00:00</updated>
    <author>
      <name>piimyon</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;ol&gt;
&lt;li&gt;What is the smallest thing for which you are grateful?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;My pigma micron 05 fineliner.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="2"&gt;
&lt;li&gt;Who has had the most positive impact on your life?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href='https://www.youtube.com/@chaijing2023' target='_blank'&gt;Chai Jing&lt;/a&gt;. Her &lt;a href='https://www.goodreads.com/book/show/18458655' target='_blank'&gt;book&lt;/a&gt; taught me to not think in black and white.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="3"&gt;
&lt;li&gt;If you could use a time machine, would you rather have one that only goes back in time or only goes forward?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Wrong question. I wouldn't use it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="4"&gt;
&lt;li&gt;If you got a promotion, a job, a college acceptance, an accolade/award, or just generally accomplished something major, who is the first person you'd tell and how do you think they'd react?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;My girlfriend: "I knew you could do it."&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="5"&gt;
&lt;li&gt;If you were an inanimate object, what would you be and why?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Water. It benifits for all beings while being humble about it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="6"&gt;
&lt;li&gt;Where do you wish you had grown up?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;By the sea.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="7"&gt;
&lt;li&gt;If you could be good at any profession without having to receive the accompanying education or trade experience, which would you choose?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Economics.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="8"&gt;
&lt;li&gt;What is something you're terrible at but wish you could do well?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Socializing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="9"&gt;
&lt;li&gt;What is the quality you admire the most in the person you dislike the most?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;The ability to be blissfully unaware (ignore) that they are being disliked by me.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="10"&gt;
&lt;li&gt;What was the most recent thing that made you cry?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;War scenes in the movie &lt;a href='https://www.imdb.com/title/tt34386754/' target='_blank'&gt;Once Upon a Time in the Middle East&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="11"&gt;
&lt;li&gt;What are the books/movies/games that never get old and always make you feel better when you get down?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Minecraft.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="12"&gt;
&lt;li&gt;What is the most trivial thing about which you have a strong opinion?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;I don't like holding strong opinions...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="13"&gt;
&lt;li&gt;If you could be any mythical creature, what would you be and why?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Some bird probably.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="14"&gt;
&lt;li&gt;If you’ve had more than one job, which job taught you the most?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;My first one taught me the importance of communication.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="15"&gt;
&lt;li&gt;If you could change one thing about yourself physically, what would you change?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;Probably nothing...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="16"&gt;
&lt;li&gt;What single event or decision do you think most affected the rest of your life? Was there a turning point in your life?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;(Not a particular point in time) Realizing that I am just a human being and nothing more.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="17"&gt;
&lt;li&gt;What is the one thing you've made that you're the most proud of?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;So far, this blog probably.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="18"&gt;
&lt;li&gt;Some historical figures have epithets attached to their names, like The Mad or The Wise. What would you like yours to be?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;The Compassionate&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="19"&gt;
&lt;li&gt;What was the best year of your life? The worst?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;2024: I left my job for the first time and went travelling. 2020: I was actively avoiding contact with people during the pandemic when I actually needed it the most.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol start="20"&gt;
&lt;li&gt;What one thing, whether it's something you did or something you made or something you caused to happen, would you like to be remembered by?&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;A good teacher that gave fun lessons.&lt;/p&gt;
&lt;/blockquote&gt;
</content>
    <link href="https://piimyon.bearblog.dev/rapid-fire-qa/"/>
    <published>2026-09-14T23:09:00+00:00</published>
  </entry>
  <entry>
    <id>https://conniesue.me/some-things-just-cant-be-unseen/</id>
    <title>Some Things Just Can’t Be Unseen 👀</title>
    <updated>2026-09-14T22:26:02.633303+00:00</updated>
    <author>
      <name>conniesue</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;My first weekend back at the campground went by fast. I’m loving the feel of fall in the air.&lt;/p&gt;
&lt;p&gt;Mother Nature likes to tease us this time of year, though. Only time will tell what kind of autumn weather she has in store for us.&lt;/p&gt;
&lt;p&gt;This morning, I went to the bathhouse in back of the campground to take a shower (there are 2 private shower rooms).&lt;/p&gt;
&lt;p&gt;I opened the door of the closest room… but quickly closed it and marched straight to the other one without batting an eye.&lt;/p&gt;
&lt;p&gt;The first room had huge wads of hair in the corners of the shower area. It looked like Cousin Itt took a shower 👀&lt;/p&gt;
&lt;p&gt;My hair is just below my ears and there was more hair on the shower floor than I have on top of my head.&lt;/p&gt;
&lt;p&gt;This wasn’t the worst shower I’ve seen, though. In the almost 11 years I’ve lived nomadic, I’ve only come across one shower worse than this one.&lt;/p&gt;
&lt;p&gt;I was at a campground in the Outer Banks… in Rodanthe, North Carolina. There was hair everywhere… and that’s an understatement! It looked like a scene from Cousin Itt meets Sasquatch… tons of hair in the shower drain, sink drain, on the counter, everywhere!&lt;/p&gt;
&lt;p&gt;Thing is, it wasn’t hair that had been &lt;em&gt;cut&lt;/em&gt;… it was &lt;em&gt;wads&lt;/em&gt; of hair.&lt;/p&gt;
&lt;p&gt;I don’t gag easily but that brought me close.&lt;/p&gt;
&lt;p&gt;The campground staff cleans regularly and I understand they can’t clean after every single person.&lt;/p&gt;
&lt;p&gt;What I don’t understand is… how someone can lose so much hair?!?&lt;/p&gt;
&lt;p&gt;Now that I’ve purged that image from my head and firmly imprinted it into yours... have a wonderful night! 😁&lt;/p&gt;
&lt;p&gt;Connie 🌼&lt;/p&gt;
&lt;p style="text-align: center;"&gt; ❀ ❀ ❀ &lt;/p&gt;
&lt;style&gt;
.special-section {
  background-color: #f7ede8;
  padding: 1em;
  border-radius: 6px;
  border: 1px solid #d4b5aa;
}
&lt;/style&gt;
&lt;div class="special-section"&gt; 
&lt;center&gt;
&lt;h3 id=life-right-now&gt;Life Right Now&lt;/h3&gt;&lt;/center&gt;  
&lt;p&gt;&lt;strong&gt;Whereabouts:&lt;/strong&gt; In my &lt;a href='/regulars/#home' target='_blank'&gt;Illinois hometown area&lt;/a&gt;. I’ll most likely be here until early October 🍂&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Home Base:&lt;/strong&gt; I’m back in the van, living the campground life.&lt;/p&gt;
&lt;/div&gt; 
&lt;p style="text-align: center;"&gt; ❀ ❀ ❀ &lt;/p&gt;
&lt;p&gt;&lt;a href='/contact/' target='_blank'&gt;Reply with a message&lt;/a&gt; 📝&lt;/p&gt;
&lt;p&gt;&lt;a class="previous-post" href="/coffee-bees-and-the-week-ahead" title="Coffee, Bees, and the Week Ahead"&gt;Previous&lt;/a&gt; • &lt;/p&gt;
</content>
    <link href="https://conniesue.me/some-things-just-cant-be-unseen/"/>
    <published>2026-09-14T22:26:02.633303+00:00</published>
  </entry>
  <entry>
    <id>https://yellowleafs.bearblog.dev/2849/</id>
    <title>Πρωϊνό</title>
    <updated>2026-09-14T22:13:18.758242+00:00</updated>
    <author>
      <name>yellowleafs</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;&lt;img src="https://raw.githubusercontent.com/0xmichail/blog/refs/heads/main/proino.png" alt="breakfast" /&gt;&lt;/p&gt;
&lt;p&gt;Μια ημέρα θα σηκωθώ το πρωί,&lt;br /&gt;
θα τακτοποιήσω το κρεβάτι μου,&lt;br /&gt;
θα ανοίξω τα παράθυρα να μπει ο ήλιος.&lt;/p&gt;
&lt;p&gt;Θα ντυθώ για επίσημο γεύμα,&lt;br /&gt;
θα συμμαζέψω τα μαλλιά μου&lt;br /&gt;
και τα μούσια μου.&lt;/p&gt;
&lt;p&gt;Στην κουζίνα θα μου φτιάξω ένα πρωινό&lt;br /&gt;
με λουκάνικα,&lt;br /&gt;
αυγά,&lt;br /&gt;
χυμό,&lt;br /&gt;
γάλα,&lt;br /&gt;
καφέ&lt;br /&gt;
και μαρμελάδες.&lt;/p&gt;
&lt;p&gt;Θα το απολαύσω αργά και προσεκτικά.&lt;/p&gt;
&lt;p&gt;Θα βάλω τα πιάτα για πλύσιμο,&lt;br /&gt;
θα μαζέψω τα ψίχουλα.&lt;/p&gt;
&lt;p&gt;Στο μπαλκόνι θα βγω για τσιγάρο&lt;br /&gt;
και καπνίζοντας,&lt;br /&gt;
μαζί με τον καπνό&lt;br /&gt;
θα πετάξω και εγώ.&lt;/p&gt;
</content>
    <link href="https://yellowleafs.bearblog.dev/2849/"/>
    <published>2026-09-14T22:13:18.758242+00:00</published>
  </entry>
  <entry>
    <id>https://kwbaker.com/photo-gallery/</id>
    <title>Photo Gallery</title>
    <updated>2026-09-14T22:06:00+00:00</updated>
    <author>
      <name>kwbaker</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;meta name="robots" content="noindex, nofollow"&gt;
&lt;div class="bear-gallery"&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/157746330_f92a2c3c5c_o.webp" alt="Baie Longue" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/190181434_9f3a8c97ce_o.webp" alt=" Kool Korner " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/img_2894-copy-2.webp" alt="Russell Pkwy GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/2795/4483190610_9377ea17c1_c_d.jpg" alt=" Lake Hatchineha, Polk County, FL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/27/57216226_1fabf364f1_c.jpg" alt="Gore Creek Path CO " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/13/16436786_5e6bb8e32e_h.jpg" alt=" Dooly County GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/blog-uploads-2026-000734000001.webp" alt="The Dude" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/2-bostwick.webp" alt="Choo Choo Man" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/1-colorado.webp" alt="Colorado" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/d926063c-2eca-469e-aaa9-780e61c4694c_1_105_c-2.webp" alt="Lake Rabun GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/1-000967900029.webp" alt="Mount Airy GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/52331567332_a3b5e72600_o.webp" alt="Washington GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/54189589599_906743d68b_o.webp" alt="Bennettsville SC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/000260310022.webp" alt="Woolwine, VA " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/11-000365820004.webp" alt="Jekyll Island, GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/image-1.webp" alt="IKey Biscayne FL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/000706480028.webp" alt="Captiva Island, FL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/54436860343_993a2203e4_k.webp" alt="BRP VA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/4-000005940002.webp" alt="Rolls" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/3-36248814164_550f0a3c5c_k.webp" alt="Peachoid" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/shakinbake/000260310036.webp" alt="Mt Airy NC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/82766177_474b6996b2_o.webp" alt="Ft Worth TX" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/24452467_26fbed6b68_o.webp" alt="B'ham AL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/27652637001_dedf9a0126_k.webp" alt="Greenville SC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/5-000967910012.webp" alt="Car Show" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/53370728719_b6f7137133_k.webp" alt="Jackson GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/31730984103_2d6a48af60_k-2.webp" alt="755 Hank Aaron Dr" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/5f8f61f3-952a-4288-a895-731e5cdfc115.webp" alt="ATL GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/471987681_1c7a69ad2f_k.webp" alt="Mobile Bay AL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/image-3.webp" alt="Macon GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/img_6749.webp" alt="Madison GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/2733199225_105a91eddb_o.webp" alt="Pine Island FL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/2630639383_1d687eb6f9_o.webp" alt="NYC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/158432395_7a926ec91d_o.webp" alt="St Kitts W Indies" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/16290709_669a20ceff_k.webp" alt="New Orleans LA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/7b26e6ad-19c8-4836-abad-21a77ddab2c4.webp" alt="Shelby NC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/1216x1213x2.webp" alt="Greenwood SC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/7198/27180447854_c22c787de2_c_d.jpg" alt="Sautee Nacoochee GA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/65535/54894143311_aa887cd28e_k.jpg" alt="Charlotte NC" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/3952/15421610867_85a686c554_b.jpg" alt="Alamosa CO" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/6110/6322374226_d4cdd8f6af_c.jpg" alt="New Braunfels TX" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/gopr8679.webp" alt="Blind Pass, Sanibel-Captiva FL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/3-54744768251_8be593c14d_o.webp" alt="Headland AL" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/65535/53122525394_b4962da3a8_c_d.jpg" alt="Fjällbacka in Tanum Municipality, Västra Götaland County, Sweden" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://kwbaker.micro.blog/uploads/2026/198847936-72913c7598-k.jpg" alt="Bimini Bahamas" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://kwbaker.micro.blog/uploads/2026/25-16263459-029c5ab7a7-o.jpg" alt="Gretna LA" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://live.staticflickr.com/3862/14899196845_0c8e1ec843_c.jpg" alt="Quarter-Circle Circle Ranch Gunnison CO" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/2630620833_b0093d921b_o.webp" alt="Old Glory" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/kwbaker/img_7361.webp" alt="Solvitur Ambulando" /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;style&gt;
footer {
    display: none !important;
}
&lt;/style&gt;
&lt;p&gt;&lt;a class="previous-post" href="/take-a-kid-fishing" title="Take a Kid Fishing"&gt;Previous&lt;/a&gt;   |   &lt;/p&gt;
</content>
    <link href="https://kwbaker.com/photo-gallery/"/>
    <published>2026-09-14T22:06:00+00:00</published>
  </entry>
  <entry>
    <id>https://fatherlasher.bearblog.dev/death-will-not-accept-your-excuses/</id>
    <title>Death will not accept your Excuses</title>
    <updated>2026-09-14T21:51:20.172379+00:00</updated>
    <author>
      <name>fatherlasher</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;If you knew you were going to die tonight, there are things you would do before anything else. You would go to confession if you could, you would pray differently, you would remember the people you have wronged and the people you have refused to forgive, and being embarrassed or too proud to speak to them would suddenly seem like an absurd reason to leave something unresolved. There are sins people defend for years that they would abandon immediately if somebody could tell them truthfully that they had six hours left to live, and there are things people call necessary now that they would forget about before dinner.&lt;/p&gt;
&lt;p&gt;Everybody knows they are going to die, but Knowing it obviously isn't enough. We have managed to turn death into a fact that requires almost nothing from us, something everybody agrees with and almost nobody permits to interfere with the way they live. The useful question is not whether you know you will die, but whether you have allowed that knowledge to correct anything. Has it made you quicker to repent ? Has it made you less proud ? Has it made possessions easier to lose, insults easier to forgive, prayer harder to postpone ? Has it made you more careful about what you permit yourself to become ? If not, then knowing you are mortal has done very little for you&lt;/p&gt;
&lt;p&gt;There will be a final day and most people will not know when they have reached it. Somebody will wake up for the last time and still think they have next week. They may have plans for Tuesday, food in the refrigerator they intended to eat, something they ordered that hasn't arrived yet, a message they meant to answer and an argument they are still waiting to win. They may also have a confession they intended to make eventually, an apology they meant to give when they were less angry, a sin they were going to stop after one more time and a prayer life they were going to take seriously when everything became less busy. Death is not required to wait for any of those arrangements.&lt;/p&gt;
&lt;p&gt;There will also be a last temptation, a last time you are corrected, a last opportunity to forgive somebody, a last opportunity to refuse a sin you have refused a hundred times before or commit it again because you assume there will be another confession afterward. One day God will give you an opportunity and there will not be another earthly opportunity after it. We don't know which ones those are, which is exactly why treating any opportunity to repent as disposable is so foolish.&lt;/p&gt;
&lt;p&gt;people have become very comfortable saying God is merciful, and He is, infinitely more merciful than any of us deserve, but somehow mercy gets turned into permission to remain exactly where we are. God forgave me before, therefore i can delay confession. God has been patient, therefore He will provide another year. God understands my weakness, therefore weakness no longer needs to be fought, that is a terrible use of mercy. If somebody repeatedly pulls you out of a pit, gratitude should eventually include trying to stop climbing back into it.&lt;/p&gt;
&lt;p&gt;Remember judgment. remember that the body you spend so much time satisfying will become a corpse. remember that the face you are proud of will decay, that the possessions you guard will be divided among other people, that somebody will clear your room, throw things away, decide what is worth keeping and eventually stop needing to make decisions about your belongings because there will be so little left. remember that praise cannot follow you very far and neither can humiliation.&lt;/p&gt;
&lt;p&gt;I think we should be much harsher with ourselves about this. If an insult can occupy your mind for three years, remember the grave. If somebody's opinion can make you ashamed of Christ, remember the grave. If you are tempted to sin because you cannot imagine living without a particular pleasure, remember the grave. If you cannot bear losing money, beauty, status, comfort or the admiration of other people, remember that death is already going to take all of them. You can loosen your hands voluntarily or have them emptied eventually, but nobody leaves this life carrying what they spent it clutching, and remember judgment, because Christianity does not teach us merely that we die. We are not practicing detachment because corpses have no possessions. We are preparing to stand before God.&lt;/p&gt;
&lt;p&gt;If you would confess tonight because death was coming, confess while death is merely unknown. If you would forgive your enemy tonight, forgive while you still have the humiliation of doing it without being forced. If you would throw away something sinful tonight, throw it away while surrendering it still costs you something. If you would suddenly find an hour for prayer, stop claiming there is no time. If you would beg God to let you repair something, repair it while He has already given you the opportunity, there is value in doing these things before terror makes the decision easy. Anybody can discover that possessions are worthless when they are already dying, learn it while you can still enjoy them. Anybody can stop caring about reputation when there is no reputation left to protect. Become less obedient to it while people can still laugh at you. Anybody can wish they had forgiven once the person they hated is dead. Forgive while the person is alive and the resentment still has to be killed deliberately. People sometimes speak as though thinking frequently about death would make somebody less alive. I think the opposite happens. A person who remembers death has less reason to waste an afternoon feeding resentment, less reason to spend years pretending they will repent eventually, less reason to organize an entire identity around being admired and much less reason to obey every appetite simply because it is loud. Eat, work, make things, love people, laugh, make plans and thank God for whatever is good, but stop behaving as though any created thing has promised to remain with you.&lt;/p&gt;
&lt;p&gt;You were never promised old age. You were never promised enough time to become holy after you finish becoming comfortable. You were given today, and today contains enough work for repentance.&lt;/p&gt;
&lt;p&gt;One day somebody will pray for the dead and your name may be among the names being remembered.&lt;/p&gt;
</content>
    <link href="https://fatherlasher.bearblog.dev/death-will-not-accept-your-excuses/"/>
    <published>2026-09-14T21:51:20.172379+00:00</published>
  </entry>
  <entry>
    <id>https://yellowleafs.bearblog.dev/5776/</id>
    <title>Καλέ μου</title>
    <updated>2026-09-14T21:50:00+00:00</updated>
    <author>
      <name>yellowleafs</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;&lt;img src="https://raw.githubusercontent.com/0xmichail/blog/refs/heads/main/kaleme.png" alt="kale mou" /&gt;&lt;/p&gt;
&lt;p&gt;Σε χλεύασαν καλέ μου, πίσω από κλειστές πόρτες γέλασαν μαζί σου.&lt;br /&gt;
Σε έκριναν καλέ μου, κάμερες τα μάτια τους, καταγραφικά της ζωής σου.&lt;br /&gt;
Σε έσυραν μέσα σε λαβύρινθους γελώντας για να σε παίξουν,&lt;br /&gt;
μα εσύ έγινες ο μίτος και ο οδηγός σου.&lt;/p&gt;
&lt;p&gt;Σε μάτωσαν καλέ μου, με λόγια που αγκίστρια σε έσκισαν για τις κερασιές σου.&lt;br /&gt;
Σε μίσησαν καλέ μου, όπως η νύχτα φθονεί την πρώτη αχτίδα μόλις ξεπροβάλει.&lt;br /&gt;
Σε έριξαν να αγγίξεις το χώμα, εδώ θα αναστηθείς φωνάζαν καθώς σε πατούσαν,&lt;br /&gt;
μα εσύ ήσουν μια λυγαριά, ένα πλατάνι γεμάτο φωλιές και στο κρακ σου η σιωπή τους.&lt;/p&gt;
</content>
    <link href="https://yellowleafs.bearblog.dev/5776/"/>
    <published>2026-09-14T21:50:00+00:00</published>
  </entry>
  <entry>
    <id>https://anymoreanyways.bearblog.dev/club-penguin-lookbook/</id>
    <title>club penguin lookbook</title>
    <updated>2026-09-14T21:47:25.930756+00:00</updated>
    <author>
      <name>anymoreanyways</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/anymoreanyways/cpl1.webp" alt="cpl1" /&gt;
&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/anymoreanyways/cpl2.webp" alt="cpl2" /&gt;
&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/anymoreanyways/cpl3.webp" alt="cpl3" /&gt;
&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/anymoreanyways/cpl4.webp" alt="cpl4" /&gt;
&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/anymoreanyways/cpl5.webp" alt="cpl5" /&gt;&lt;/p&gt;
</content>
    <link href="https://anymoreanyways.bearblog.dev/club-penguin-lookbook/"/>
    <published>2026-09-14T21:47:25.930756+00:00</published>
  </entry>
  <entry>
    <id>https://tomasbjartur.bearblog.dev/some-notes-on-some-stories/</id>
    <title>Some Notes on Some Stories</title>
    <updated>2026-09-14T21:46:00+00:00</updated>
    <author>
      <name>tomasbjartur</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;I've been working on a post that will be about 20k words. I suppose I could call it a novella if I was feeling fancy. I'm unsure of its quality, but I'm too far into it to not finish. If it is a sunk cost I've never been a particularly good rationalist, despite reading the blogs.
I feel the need to publish something.  It's been a year since I started taking writing seriously. So I thought I would make a brief comment about a few of my stories.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/the-maker-of-mind-bdc?r=2fpn2x&amp;utm_campaign=post&amp;utm_medium=web&amp;triedRedirect=true'&gt;The Maker of MIND&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is the first story I wrote since high school, with the exception of short Twitter-length stuff and one very lazy story about modal realism. I wrote it for an SBF funded short story competition, but I never got it in on time. There are some good lines and a hidden story only one person has caught. But The Elect explores similar themes and I think it's much stronger.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/that-mad-olympiad'&gt;That Mad Olympiad&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I wrote an AI girlfriend story years ago called &lt;em&gt;The Liar and the Scold&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;(Interesting note about &lt;em&gt;Liar&lt;/em&gt;: I invented the concept of heavenbanning while writing it. I made a fake NYT article about it, which I didn't end up using in the story, so I gave it to Near - who posted it in his famous tweet which popularized the term.)&lt;/p&gt;
&lt;p&gt;I was always dissatisfied with The Liar and the Scold, and wanted to write an AI boyfriend story. I made several attempts, including a metafictional piece about a narrator who dates an AI based on a character in a fictional soap opera modelled on &lt;em&gt;The O.C.&lt;/em&gt; This approach was maybe interesting to me and the three other people who remember that show fondly, so I scrapped it.&lt;/p&gt;
&lt;p&gt;I put the idea on the back burner and moved on to The Company Man. Sonnet 3.7 was released shortly after, and it was the first model capable of producing short stories that were coherent. This was very upsetting to me, given I just had some success with my amateur fiction. I was extremely pissy about it for a few hours, but then I got the idea of the Lit Olympiad and distilling LLMs into human minds. Often, I find the concept while writing, but this time I knew the title beforehand, the central gimmick, and the narrator would be a young woman. After a few paragraphs, I found a place for an AI boyfriend. For some reason, it amused me to make him DFW.&lt;/p&gt;
&lt;p&gt;Other things that influenced me as I wrote it: I had a friend who was playing an otome game called &lt;em&gt;Love and Deep Space&lt;/em&gt; (Sylus was her poison) and was very fond of villainess manhwa. Tokyo Jupiter is a reference to &lt;em&gt;RahXephon&lt;/em&gt;. Most of the authors and books the narrator mentions are favourites of mine. And I have similar opinions to the narrator regarding Amis, whose work I loved for a time but have mixed feelings about now. I also owe Amis a debt for persuading me to read Austen with his essay &lt;em&gt;Jane's World&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/pennys-hands?utm_source=publication-search'&gt;Penny's Hands&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I've been informed by Gwern that this is terrible.  I still kinda like it, though I modified its ending to be less opaque a couple weeks after publishing. I've always found musician's dystonia terrifying. Whatever this story's vices, I think the concept is strong. I like the aesthetics of classical music, especially the image of the virtuoso pianist, but I don't listen to it much.  It was fun to listen to a bunch for research, and particularly fun to write my impressions of the pieces mentioned while doing so. I worked pretty hard on the pseudo-neuroscience, so hopefully that was appreciated by someone.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/customer-satisfaction-opportunities'&gt;Customer Satisfaction Opportunities&lt;/a&gt;
After Inkhaven, I didn't publish for three months. I started dozens of stories but nothing stuck besides this and The Elect. At my wit's end, I started brainstorming stupid narrator ideas; and a security camera came to mind. I don't remember much else about writing it, except that it did not come easily. In some sense, it's spiritually related to &lt;em&gt;That Mad Olympiad&lt;/em&gt;, as they both poke lovingly at certain tropes in romantic fiction and its fandom.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/the-elect'&gt;The Elect&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I started writing this with one idea in mind. This being: something vaguely like &lt;em&gt;Sandman's&lt;/em&gt; &lt;em&gt;The Endless&lt;/em&gt;. It ended up being almost like a rewrite of  Maker of MIND, another story of mine that owes some debt to  &lt;em&gt;The Metamorphosis of Prime Intellect&lt;/em&gt;. I wanted to hide a lot of mechanism, but hopefully have it be coherent. Some readers thought it was, some didn't. I referenced Kwan’s Rouge, because I was watching it the night before I wrote the section in which the narrator describes her appearance. I think it's a good image. The Lucifer/Avery thing is also a nod to Gaiman and Mike Carey's &lt;em&gt;Lucifer&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href='https://tomasbjartur.substack.com/p/lobsangs-children'&gt;Lobsang's Children&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I wrote this after reading Borges for the first time. At Inkhaven 1, there were feedback circles. I thought the point of feedback circles was to bring in stuff that wasn't working. The real point is to bring in your strongest pieces to try to get everyone to pat you on the back. Boy did I feel like an idiot. Almost everyone there said Lobsang was unsalvageable. I was about to give up on it, and then I figured out the frame story. I'm pretty happy with the voice and how it turned out. It remains one of my least popular stories.&lt;/p&gt;
&lt;p&gt;&lt;a class="previous-post" href="/self-hosting" title="Self Hosting"&gt;Previous&lt;/a&gt;
&lt;/p&gt;
</content>
    <link href="https://tomasbjartur.bearblog.dev/some-notes-on-some-stories/"/>
    <published>2026-09-14T21:46:00+00:00</published>
  </entry>
  <entry>
    <id>https://blog.paolosala.it/quanto-tempo-serve-davvero/</id>
    <title>Quanto tempo serve davvero</title>
    <updated>2026-09-14T21:40:09.495424+00:00</updated>
    <author>
      <name>paolosala</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;Quando pensiamo a un progetto importante, tendiamo a immaginare che per portarlo avanti servano condizioni favorevoli: più tempo libero, meno impegni e una disciplina difficile da mantenere.&lt;/p&gt;
&lt;p&gt;Per chi lavora, ha una famiglia o semplicemente molte cose da gestire, tutto questo può scoraggiare. Il progetto sembra impegnativo ancora prima di iniziare e finisce facilmente rimandato a un momento migliore.&lt;/p&gt;
&lt;p&gt;Tim Urban, in una conversazione con Tim Ferriss, faceva un'osservazione semplice sulla scrittura. Tre ore al giorno per cinque giorni alla settimana significano quindici ore di lavoro. Su circa 112 ore di veglia settimanali, occupano una parte limitata della settimana. Ripetute per mesi, possono diventare sufficienti per portare a termine un libro.&lt;/p&gt;
&lt;p&gt;Questo ragionamento vale anche oltre la scrittura. Poche ore regolari, mantenute nel tempo, possono diventare molte. È così che un progetto continua ad avanzare senza richiedere giornate interamente dedicate.&lt;/p&gt;
&lt;p&gt;Il risultato finale tende a nascondere il processo. Vediamo ciò che è stato completato, molto meno il tempo distribuito lungo settimane e mesi che ha permesso di arrivarci.&lt;/p&gt;
&lt;p&gt;La domanda, per chi ha giornate piene, è molto concreta: quale parte della mia settimana posso dedicare con continuità a qualcosa che considero importante?&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;Fonte&lt;/strong&gt; - &lt;a href='https://tim.blog/2018/02/03/the-tim-ferriss-show-transcripts-tim-urban/'&gt;Tim Urban in conversazione con Tim Ferriss, &lt;em&gt;The Tim Ferriss Show&lt;/em&gt;, episodio n. 283, 2018&lt;/a&gt;&lt;/p&gt;
</content>
    <link href="https://blog.paolosala.it/quanto-tempo-serve-davvero/"/>
    <published>2026-09-14T21:40:09.495424+00:00</published>
  </entry>
  <entry>
    <id>https://beachcomber.bearblog.dev/0062/</id>
    <title>0062</title>
    <updated>2026-09-14T21:20:00+00:00</updated>
    <author>
      <name>beachcomber</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;Pretending you are out of breath when what you are really lacking is a sense of direction – sounds like a strategy, just like addressing a second person singular. The camera uses this purposeful but disoriented body as a springboard to rocket from the earth to the sky and keep swinging. Our hero becomes a cowboy again, with his head against the horizon. He seems at home in this negative space. This is the finish line, but not the end of the race. Another paradox.&lt;/p&gt;
&lt;video autoplay muted loop playsinline style="max-width: 100%;"&gt;
  &lt;source src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/beachcomber/0062.mp4" type="video/mp4"&gt;
&lt;/video&gt;
</content>
    <link href="https://beachcomber.bearblog.dev/0062/"/>
    <published>2026-09-14T21:20:00+00:00</published>
  </entry>
  <entry>
    <id>https://householderkarl.com/not-everything-has-to-matter/</id>
    <title>Not Everything Has to Matter</title>
    <updated>2026-09-14T21:09:00+00:00</updated>
    <author>
      <name>householderkarl</name>
      <email>hidden</email>
    </author>
    <content type="html">&lt;p&gt;&lt;img src="https://bear-images.sfo2.cdn.digitaloceanspaces.com/householderkarl/sunsettrain.gif#center" alt="sunsettrain" /&gt;&lt;/p&gt;
&lt;p&gt;I used to get a lot of shit for the way I relate to my hobbies and interests. When I find something interesting, I tend to go all in. I’ll spend an inordinate amount of time (and sometimes, money) going down one rabbit hole after another. Some might say I have an obsessive personality, but I say that’s my prerogative.&lt;/p&gt;
&lt;p&gt;What confuses people, and sometimes draws their ire, is how I just as suddenly lose interest. I don’t have an explanation for it, and I don’t think I need one, but I’ve often wondered why it elicits such a response from people close to me. I’ll get snarky comments like, “Oh, here we go again, Karl is into [X] now...”&lt;/p&gt;
&lt;p&gt;Is an interest only valid if you hold onto it for years? Must hobbies be practiced for life in order to be meaningful?&lt;/p&gt;
&lt;p&gt;I don’t think so.&lt;/p&gt;
&lt;p&gt;I like to embrace whatever I’m doing wholeheartedly. The novelty inspires a unique fervor, the indulgence of which I find satisfying in the moment. When it fades, there’s no point holding on to it.&lt;/p&gt;
&lt;p&gt;Think of it like a horse: I’m just wired to run at a full gallop. Tongue lolling, eyes wild, breath labored. If I slowed down, I might get more miles, but I’m never sure if the road even continues around the next bend. So, I go all out. The horse inevitably dies, and I’m on to the next one.&lt;/p&gt;
&lt;p&gt;I refuse to feel ashamed of that. I shrug off the comments now, too old to really give a shit.&lt;/p&gt;
&lt;p align="center"&gt;▼&lt;/p&gt;
&lt;p&gt;For things that I actually want to last though, burnout is a real risk. It happens most often with lifting weights. I’ve worked myself into being properly sick before – insomnia, diminished recovery, flu-like symptoms, and (extra) depression.&lt;/p&gt;
&lt;p&gt;The body &lt;em&gt;and&lt;/em&gt; mind need a break every so often. These days, I program in a &lt;em&gt;deload&lt;/em&gt; week every two months or so. Unfortunately, for this cycle, I think I still pushed it too far.&lt;/p&gt;
&lt;p&gt;I walked into my home gym yesterday and couldn’t get started. Warming up felt like going to failure. I had zero energy or motivation to do &lt;em&gt;anything&lt;/em&gt;. In my experience, it isn’t a matter of discipline at that point. When it feels like that, it means I’m well and truly cooked.&lt;/p&gt;
&lt;p&gt;So, now I’m off for a week from the gym. Seven days to let my aching joints and fried CNS get back to baseline.&lt;/p&gt;
&lt;p align="center"&gt;▼&lt;/p&gt;
&lt;p&gt;I have to remind myself sometimes that it’s okay to let go of things. There’s nothing wrong with letting feelings dictate the direction and pace. &lt;em&gt;Driving by vibes&lt;/em&gt; is perfectly valid, and no one can tell me otherwise.&lt;/p&gt;
&lt;p&gt;Do what you want. Not everything has to be &lt;em&gt;deep&lt;/em&gt;. Not everything has to matter.&lt;/p&gt;
</content>
    <link href="https://householderkarl.com/not-everything-has-to-matter/"/>
    <published>2026-09-14T21:09:00+00:00</published>
  </entry>
</feed>
