<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[tibidico.com]]></title><description><![CDATA[Knowledge, curiosities, stories, technology, doubts and contradictions... and its vision in the cinema, if we know it]]></description><link>https://tibidico.com/</link><image><url>https://tibidico.com/favicon.png</url><title>tibidico.com</title><link>https://tibidico.com/</link></image><generator>Ghost 4.11</generator><lastBuildDate>Mon, 06 Apr 2026 13:57:47 GMT</lastBuildDate><atom:link href="https://tibidico.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[AI tutorial - 1.2: LM Studio, first steps]]></title><description><![CDATA[AI tutorial 1.2 - LM Studio, first steps
LM Studio
Ollama
qwen-3b
Llama3]]></description><link>https://tibidico.com/ai-tutorial-1-2-lm-studio-first-steps/</link><guid isPermaLink="false">697a00f2e196ef0001f9a180</guid><category><![CDATA[feitam.es]]></category><category><![CDATA[feitam.es - Tutorial IA]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Wed, 28 Jan 2026 12:46:32 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDMwfHxhaXxlbnwwfHx8fDE3Njk1OTY3NDd8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDMwfHxhaXxlbnwwfHx8fDE3Njk1OTY3NDd8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="AI tutorial - 1.2: LM Studio, first steps"><p>In this AI tutorial post we are going to detail how to install and perform the first steps with LMStudio, which is an open source desktop application similar to Ollama that we detail in chapter 1.1 of this tutorial, and which allows, like Ollama, to download, run and manage large open source language models (LLMs) directly on your own computer, without depending on cloud servers or internet connections, and with a graphical interface unlike Ollama.</p><!--kg-card-begin: markdown--><p>Access <a href="https://lmstudio.ai" target="_blank">lmstudio.ai</a> with a web browser or through curl, and download the installer to the OS and install it.</p>
<!--kg-card-end: markdown--><p>In my case I am installing it on Ubuntu 25 and I have downloaded a file with the name LM-Studio-0.3.39-2-x64.AppImage.</p><p>This file should be in the &apos;Downloads&apos; folder on the user&apos;s home page with the session from which we downloaded it with the web browser or with curl:</p><pre><code>operatorfeitam@ubuntudesktop-tutorialia:~$ pwd
/home/operatorfeitam
operatorfeitam@ubuntudesktop-tutorialia:~$ cd Downloads
operatorfeitam@ubuntudesktop-tutorialia:~/Downloads$ ls -la
total 1026708
drwxr-xr-x  2 operatorfeitam operatorfeitam       4096 Jan 19 14:40 .
drwxr-x--- 22 operatorfeitam operatorfeitam       4096 Jan 19 14:38 ..
-rw-rw-r--  1 operatorfeitam operatorfeitam 1051334741 Jan 19 14:40 LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/Downloads$ 

</code></pre><p>And from a command console we execute the following to install it:</p><!--kg-card-begin: markdown--><pre><code>./LM-Studio-0.3.39-2-x64.AppImage
</code></pre>
<!--kg-card-end: markdown--><p>But we do not want to run it from the &apos;Downloads&apos; folder, so we create the &apos;tools&apos; folder within the user&apos;s home, and within this folder a subfolder called &apos;appimages&apos; (it can be in any other folder, but in this tutorial we will have LMStudio available in this folder) which is where we will move the file LM-Studio-0.3.39-2-x64.AppImage:</p><!--kg-card-begin: markdown--><pre><code>operatorfeitam@ubuntudesktop-tutorialia:~$ pwd
/home/operatorfeitam
operatorfeitam@ubuntudesktop-tutorialia:~$ mkdir -p tools/appimages
operatorfeitam@ubuntudesktop-tutorialia:~$ cd tools
operatorfeitam@ubuntudesktop-tutorialia:~/tools$ cd appimages
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ pwd
/home/operatorfeitam/tools/appimages
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ ls -la
total 8
drwxrwxr-x 2 operatorfeitam operatorfeitam 4096 Jan 19 16:13 .
drwxrwxr-x 3 operatorfeitam operatorfeitam 4096 Jan 19 16:13 ..
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ mv $HOME/Downloads/LM-Studio-0.3.39-2-x64.AppImage $HOME/tools/appimages/LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ ls -la
total 1026708
drwxrwxr-x 2 operatorfeitam operatorfeitam       4096 Jan 19 16:18 .
drwxrwxr-x 3 operatorfeitam operatorfeitam       4096 Jan 19 16:13 ..
-rw-rw-r-- 1 operatorfeitam operatorfeitam 1051334741 Jan 19 14:40 LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ 

</code></pre>
<!--kg-card-end: markdown--><p>Before proceeding to execute it, you must give execution permissions to the file with the AppImage extension, for example with:</p><!--kg-card-begin: markdown--><pre><code>chmod +x LM-Studio-0.3.39-2-x64.AppImage
</code></pre>
<!--kg-card-end: markdown--><p>Where we see the change of file permissions:</p><!--kg-card-begin: markdown--><pre><code>operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ ls -la
total 1026708
drwxrwxr-x 2 operatorfeitam operatorfeitam       4096 Jan 19 16:18 .
drwxrwxr-x 3 operatorfeitam operatorfeitam       4096 Jan 19 16:13 ..
-rw-rw-r-- 1 operatorfeitam operatorfeitam 1051334741 Jan 19 14:40 LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ chmod +x LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ ls -la
total 1026708
drwxrwxr-x 2 operatorfeitam operatorfeitam       4096 Jan 19 16:18 .
drwxrwxr-x 3 operatorfeitam operatorfeitam       4096 Jan 19 16:13 ..
-rwxrwxr-x 1 operatorfeitam operatorfeitam 1051334741 Jan 19 14:40 LM-Studio-0.3.39-2-x64.AppImage
operatorfeitam@ubuntudesktop-tutorialia:~/tools/appimages$ 


</code></pre>
<!--kg-card-end: markdown--><p>Then run &quot;./LM-Studio-0.3.39-2-x64.AppImage --no-sandbox&quot; which will raise a window of the LMStudio program:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_01_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1082" height="671"></figure><p>We click on &quot;Skip&quot; and it shows us the following:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_02_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1079" height="673"></figure><p>Where we see a GUI where we can chat and select conversation lists. But for now we cannot do anything until we load a model to use, for which we will click on &quot;Select a model to load (Ctrl + L)&quot; and a modal window will open where we have the option to download the &quot;qwen-3b&quot; model &quot; to download it and be able to use it, where we will press the &quot;Download&quot; button:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_03_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1083" height="671"></figure><p>We wait for the model to download, and we select the model and close the modal window on the &quot;X&quot; icon. Once with the selected model we can start a conversion with it, such as &quot;Explain to me the concept of the Napierian logarithm&quot; in the text box where it says &quot;Send a message to the model...&quot;:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_04_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1085" height="671"></figure><p>We see in the image above that we asked him the question appearing in the chat content block on the right, and he is already answering, and still thinking as he reports. This conversation for now is called &quot;Unnamed Chat&quot;, but in the three dots icon (...) you can change the name to recover it at any time and go deeper.</p><p>If we press the folder icon on the left we see the view of the models that we have available locally:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_05_wb_wmm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1083" height="669"></figure><p>In the searched element we can write the model that we want to download, such as &quot;LLama3&quot; which we do not yet have, where it informs us that &quot;No matching results&quot; because we do not have it, but it shows you a &quot;Search more results for Llama3&quot; button where we can download it and install it for LM Studio:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_06_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1084" height="670"></figure><p>Pressing the &quot;Search more result for Llama3&quot; button gives you the results, in a new modal window, where we can select the one we want to download and install it in the &quot;Download&quot; button:</p><figure class="kg-card kg-image-card"><img src="https://tibidico.com/content/images/2026/01/1_2_07_wb_wwm.png" class="kg-image" alt="AI tutorial - 1.2: LM Studio, first steps" loading="lazy" width="1086" height="671"></figure><p>Once you have downloaded it available in LM Studio, you can use it by selecting it in the top selector of the conversations view.</p><p>We see that LM Studio with its simple graphical interface will allow us to use multiple models locally in a simple way just as we do with Ollama from the command console.</p>]]></content:encoded></item><item><title><![CDATA[AI Tutorial - Introduction and index]]></title><description><![CDATA[AI Tutorial - Introduction and index
llama
ollama
OpenAI
ChatGPT
Grok
DeepSeek
Copilot
Claude
Gork
Anthropic
Antigravity]]></description><link>https://tibidico.com/ia-tutorial-introduction-and-index/</link><guid isPermaLink="false">6979fabae196ef0001f9a151</guid><category><![CDATA[feitam.es]]></category><category><![CDATA[feitam.es - Tutorial IA]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Wed, 28 Jan 2026 12:11:09 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDMwfHxhaXxlbnwwfHx8fDE3Njk1OTY3NDd8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDMwfHxhaXxlbnwwfHx8fDE3Njk1OTY3NDd8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="AI Tutorial - Introduction and index"><p>AI has changed the way we carry out many of the actions that we commonly carry out in our lives in all areas: family, social and work. It is here to stay just as robotization or the Internet is, although we are still in a phase of discovering all the new capabilities it brings us.</p><!--kg-card-begin: markdown--><p>This tutorial, available in both <a href="https://feitam.es" target="_blank">feitam.es</a> (only in English) and <a href="https://tibidico.com/" target="_blank">tibidico.com</a> (both in English and Spanish), is a vibe AI tutorial reflecting its current evolution as new elements and aspects appear, and I am discovering them, testing and delving into its use and exploitation.</p>
<!--kg-card-end: markdown--><p><br>I want to emphasize that AI gives us more efficiency and productivity if we know how to use it properly, but we must never fall into the idea that it is an oracle of what it contributes; and that he really is an educated snitch, and focused by someone, on a correlation of the specific data source he uses, and precisely for this reason I consider that it does not generate R&amp;D by providing the correlation of something that already exists. We must not fall into extreme enthusiasm in using it for everything, avoiding excessive acquisition of unnecessary computing, taking special care regarding cybersecurity aspects such as sharing sensitive or important information for us in its use.</p><p>This tutorial attempts to give all the options available so that you can adapt the use of AI to your use scenarios, with the use of local and non-local LLMs, characteristics of the different LLM models available, use of development models, use of models visual detection, etc.</p><!--kg-card-begin: markdown--><ul>
<li>Section 1: Local/private LLM Managers
<ul>
<li>1.1: <a href="https://tibidico.com/ai-tutorial-1-1-hello-world-to-ai-with-ollama/" target="_blank">Hello world to AI with Ollama</a></li>
<li>1.2: <a href="https://tibidico.com/ai-tutorial-1-2-lm-studio-first-steps/" target="_blank">LM Studio, first steps</a></li>
</ul>
</li>
</ul>
<!--kg-card-end: markdown--><p>Content planned to be published soon, these are my concerns in AI in the short and medium term:</p><!--kg-card-begin: markdown--><ul>
<li>Section: Virtual assistants in the cloud
<ul>
<li>ChatGPT</li>
</ul>
</li>
<li>Section: Cloud LLMs
<ul>
<li>GPT-5</li>
<li>Claude</li>
<li>Gemini</li>
<li>Gork</li>
<li>Kimi</li>
<li>Yolo</li>
<li>Qwen</li>
</ul>
</li>
<li>Section: AI for dev
<ul>
<li>VS Code</li>
<li>Antigravity</li>
</ul>
</li>
<li>Section: Fundamentals</li>
<li>Section: RAG</li>
<li>Section: MCP</li>
<li>Section: Agents</li>
<li>Section: Vibe coding</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[AI tutorial - 1.1: Hello world to AI with Ollama]]></title><description><![CDATA[AI tutorial: Hello world to AI with Ollama
llama
OpenAI
ChatGPT
Grok
DeepSeek
Copilot
Claude
Gork
Anthropic]]></description><link>https://tibidico.com/ai-tutorial-1-1-hello-world-to-ai-with-ollama/</link><guid isPermaLink="false">68cd893a2d04d20001dc0cd2</guid><category><![CDATA[feitam.es - Tutorial IA]]></category><category><![CDATA[feitam.es]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Fri, 19 Sep 2025 16:52:42 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDUzfHxhaXxlbnwwfHx8fDE3NTgzMDA0MDh8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1739036868260-c26b292cd85d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDUzfHxhaXxlbnwwfHx8fDE3NTgzMDA0MDh8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="AI tutorial - 1.1: Hello world to AI with Ollama"><p>We are currently in a time of continuous evolution of artificial intelligence (AI) languages, with new models and evolutions of existing ones constantly appearing, such as the different versions of GPT (GPT-3.5, GPT-4, etc.) from OpenAI, Gemini from Google, Claude from Anthropic, Grok from X, DeepSeek-V3 from DeepSeek or Copilot from Microsoft.</p><p>These models are available online with a subscription fee based on token usage, but some models, or versions (usually earlier ones), are available for download and local use.</p><p>For this local use, it is necessary to have applications that manage AI language models, such as:</p><ul><li>Ollama. Very important: Ollama is an AI language model management application, and it also has models called &quot;llama.&quot; Don&apos;t confuse the two. </li><li>LMStudio </li><li>Jan </li><li>GPT4All</li></ul><p><br>We&apos;ll explain how to install an AI language model management application, specifically Ollama, and how to download and use AI language models locally.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>To install Ollama, visit the following URL:</p><!--kg-card-begin: html--><a href="https://ollama.com/download/linux" target="_blank">https://ollama.com/download/linux</a><!--kg-card-end: html--><p>This page shows how to install Ollama for each operating system and the available models to use with Ollama.</p><p><br>First, we install Ollama, which will install the CLI for the Ollama console and a REST API to interact and manage everything.</p><p>All the actions detailed in this article were performed on an Ubuntu 25.04 desktop virtualized with VirtualBox with 154 GB RAM and 4 CPUs, but it should work on most operating systems with the changes you apply.</p><p>We will perform the installation as detailed at https://ollama.com/download/linux by running:</p><!--kg-card-begin: markdown--><pre><code>curl -fsSL https://ollama.com/install.sh | sh
</code></pre>
<!--kg-card-end: markdown--><p>This installation will create an ollama service that must be running for this console CLI and REST API to be available:</p><p></p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ sudo systemctl status ollama
&#x25CF; ollama.service - Ollama Service
     Loaded: loaded (/etc/systemd/system/ollama.service; enabled; preset: enabled)
     Active: active (running) since Fri 2025-09-19 11:57:22 CEST; 1h 32min ago
 Invocation: 1e26e8d051b443d2b8c9ba46e07725af
   Main PID: 2143 (ollama)
      Tasks: 11 (limit: 16054)
     Memory: 4.5G (peak: 9.5G)
        CPU: 34.230s
     CGroup: /system.slice/ollama.service
             &#x2514;&#x2500;2143 /usr/local/bin/ollama serve

</code></pre>
<!--kg-card-end: markdown--><p>Once Ollama is installed on our computer, we look at the &quot;Models&quot; link on the ollama.com website for the available models and proceed to download the one we prefer. For this explanation, we&apos;ll download two models:</p><ul><li>llama3:8b</li><li>llama3:instruct</li></ul><p><br>If you consider yourself to have powerful hardware, you can try downloading llama3:70b or any other model with a high number of parameters. With a greater number of parameters on the same hardware, the token generation rate per second is lower, but it can handle more complex tasks and generate more detailed responses.</p><p>The &quot;ollama pull&quot; command is used to download the model you want to use, and after the model you have the ability to specify tags, which are reported in each model which are available for it, such as the following:</p><!--kg-card-begin: markdown--><ul>
<li>To specify the size of the parameters you have, and in general the larger they are, the more knowledge they have but the more resources they require: they can be values &#x200B;&#x200B;like 1b, 8b, 70b, etc.</li>
<li>To specify quantization: which serves to reduce the size of the model and speed up its execution, at the cost of reducing numerical precision. Example values &#x200B;&#x200B;are 16, q2_K, q4_K_, etc. Lower numerical values &#x200B;&#x200B;mean more compression and therefore greater loss of precision. For example, f16 is 16-bit floating-point quantization and is therefore minimally compromised, as is f32, but they require a greater amount of resources. Generally, the K variants (_K_S, _K_M, _K_L) are a good balance between size and quality.</li>
<li>To specify the variant
<ul>
<li>instruct: to follow instructions</li>
<li>chat: to chat</li>
<li>code: for programming</li>
<li>vision: for images</li>
<li>uncensored: with less security filtering</li>
<li>latest: is the default if nothing is specified</li>
</ul>
</li>
</ul>
<!--kg-card-end: markdown--><p>We download the models with the following commands:</p><!--kg-card-begin: markdown--><pre><code>ollama pull llama3:8b
ollama pull llama3:instruct
</code></pre>
<!--kg-card-end: markdown--><p><br>These models are stored, each with its Modelfile and other files they need, in different locations depending on the OS and installation type:</p><ul><li>macOS: in the user&apos;s home directory at /.ollama/models </li><li>Windows: in the user&apos;s home directory at /.ollama/models </li><li>Linux with a non-Systemd service installation: in the user&apos;s home directory at /.ollama/models </li><li>Linux with a Systemd service installation (as detailed in this article): in /usr/share/ollama/.ollama/models </li><li>Docker installation: in /root/.ollama/models inside the container</li></ul><p>Once we have downloaded the two models with Ollama, we can check that they are ready with the following command:</p><!--kg-card-begin: markdown--><pre><code>ollama list
</code></pre>
<!--kg-card-end: markdown--><p>An example of the execution of the previous command is the following, where we see that it provides the name of the model, its ID, the size and the modification date:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama list
NAME               ID              SIZE      MODIFIED    
llama3:instruct    365c0bd3c000    4.7 GB    3 weeks ago    
llama3:8b          365c0bd3c000    4.7 GB    3 weeks ago    
llm-04@ubuntu2504desktop-llm-04-ts04:~$ 
</code></pre>
<!--kg-card-end: markdown--><p>A model on our computer can be deleted with the following command, for example deleting the &quot;llama3:instruct&quot; model:</p><!--kg-card-begin: markdown--><pre><code>ollama rm llama3:instruct
</code></pre>
<!--kg-card-end: markdown--><p><br>A model on our computer can be duplicated to customize it to our needs with the evolution we consider with the following command:</p><!--kg-card-begin: markdown--><pre><code>ollama cp llama3:instruct llama3:instruct-evo
</code></pre>
<!--kg-card-end: markdown--><p><br>Once we have the model we want to run available on our computer, we proceed to run it with the following command, example for the model &quot;llama3:8b&quot;:</p><!--kg-card-begin: markdown--><pre><code>ollama run llama3:8b
</code></pre>
<!--kg-card-end: markdown--><p>This presents us with a prompt to interact with:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama run llama3:8b
&gt;&gt;&gt; Send a message (/? for help)
</code></pre>
<!--kg-card-end: markdown--><p><br>This model, when executed, is loaded into memory and remains available in memory for a period of time until it is removed from memory, taking into account the last time it was accessed. Generally, 5 minutes of inactivity removes it from memory and it is no longer active.</p><p>And now is the time to ask him any question like &quot;Explain to me the concept of the Napierian logarithm&quot; (you can interact in different languages, I have tried in English and Spanish and he has responded without problems in both, although it seemed to me that he is more explanatory in English):</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama run llama3:8b
&gt;&gt;&gt; Explain to me the concept of the Napierian logarithm
A delightful topic!

The Napierian logarithm, also known as the natural logarithm (ln), is a fundamental concept in mathematics that plays a crucial role in many areas of 
science and engineering. It&apos;s named after John Napier, a Scottish mathematician who introduced it in 1614.

**What is the Napierian logarithm?**

The Napierian logarithm is a mathematical function that maps any positive real number to its logarithmic value with respect to the base e, where e &#x2248; 
2.71828 (Euler&apos;s number). In other words, it measures the power to which the base e must be raised to produce the original value.

Formally, for any positive real number x, the Napierian logarithm is defined as:

ln(x) = loge(x)

**Key properties:**

1. **Base**: The Napierian logarithm has a base of e, which is an irrational number approximately equal to 2.71828.
2. **Monotonicity**: The function is monotonically increasing, meaning that ln(x) increases as x increases.
3. **Continuity**: The Napierian logarithm is continuous at all points in its domain (all positive real numbers).
4. **Invertibility**: The function is invertible, meaning that there exists a unique value of x for each given value of ln(x).

**Relationship to other logarithms**

The Napierian logarithm is closely related to other types of logarithms:

1. **Common logarithm (log10)**: This is the logarithm with base 10, which is commonly used in everyday applications. The relationship between log10 
and ln is:

log10(x) = ln(x) / ln(10)

2. **Binary logarithm (log2)**: This is the logarithm with base 2, which is used in computer science and information theory. The relationship between 
log2 and ln is:

log2(x) = ln(x) / ln(2)

**Importance in mathematics and science**

The Napierian logarithm has numerous applications across various fields:

1. **Calculus**: It appears in the study of limits, derivatives, and integrals.
2. **Probability theory**: The logarithmic function is used to model random processes and calculate probabilities.
3. **Information theory**: The entropy of a probability distribution is closely related to the Napierian logarithm.
4. **Physics**: Logarithms appear in problems involving exponential growth or decay, such as population dynamics, chemical reactions, and 
thermodynamics.

In conclusion, the Napierian logarithm is a fundamental mathematical function that plays a crucial role in many areas of science and engineering. Its 
unique properties and relationships to other logarithmic functions make it an essential tool for solving problems in various fields.

&gt;&gt;&gt; Send a message (/? for help)


</code></pre>
<!--kg-card-end: markdown--><p>To exit you can press Ctrl+D.</p><p><br>Within the model execution we have commands that are called with &quot;/&quot; followed by the command and the options of each command, some basic examples:</p><ul><li>/?: displays a help menu.</li><li>/show info: displays information about the current model on the screen. This command, within the running model, provides the same information as the &quot;ollama show&quot; command detailed below.</li><li>/bye: exits the interactive chat session and unloads the model from memory.</li><li>/exit: the same as /bye.</li><li>/save name_sesion: creates a new model with the current chat history.</li><li>/load name_sesion: loads a saved model and starts in the saved state to restore the conversation history and continue where you left off. Note: It can also be run with &quot;ollama run session_name&quot;.</li></ul><p>We can see the active models in memory with the following command:</p><!--kg-card-begin: markdown--><pre><code>ollama ps
</code></pre>
<!--kg-card-end: markdown--><p>An example of its output is this:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama ps
NAME         ID              SIZE      PROCESSOR    CONTEXT    UNTIL              
llama3:8b    365c0bd3c000    5.3 GB    100% CPU     4096       4 minutes from now    
llm-04@ubuntu2504desktop-llm-04-ts04:~$ 

</code></pre>
<!--kg-card-end: markdown--><p>We can see all the details of a model with the following command, in this example asking for the model &quot;llama3:8b&quot;:</p><!--kg-card-begin: markdown--><pre><code>ollama show llama3:8b
</code></pre>
<!--kg-card-end: markdown--><p>Which returns an output like the following:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama show llama3:8b
  Model
    architecture        llama    
    parameters          8.0B     
    context length      8192     
    embedding length    4096     
    quantization        Q4_0     

  Capabilities
    completion    

  Parameters
    num_keep    24                       
    stop        &quot;&lt;|start_header_id|&gt;&quot;    
    stop        &quot;&lt;|end_header_id|&gt;&quot;      
    stop        &quot;&lt;|eot_id|&gt;&quot;             

  License
    META LLAMA 3 COMMUNITY LICENSE AGREEMENT             
    Meta Llama 3 Version Release Date: April 18, 2024    
    ...                                                  

llm-04@ubuntu2504desktop-llm-04-ts04:~$ 

</code></pre>
<!--kg-card-end: markdown--><p>We see in this information that it is a Q4_0 quantization model, with 8 billion parameters, and that it has configuration parameters, and four of these appear: one num_keep and three stop.</p><p>Therefore we see that the models present internal configuration through configuration parameters.</p><p>In this example, we see a value of 24 in the &quot;num_keep&quot; configuration parameter, which specifies the number of tokens to keep in memory during inference. A lower number of tokens means the model is faster and consumes fewer resources, but its quality is lower. A higher number of tokens means greater coherence, as it has more context to work with. This num_keep parameter depends heavily on the hardware capabilities and the type of task the model is performing.</p><p>The &quot;stop&quot; configuration parameter is used to identify specific text sequences that the model will immediately stop producing further output upon generating, thus avoiding generating unwanted or irrelevant content. You can specify keywords to stop when you reach that word, or specify keywords to prevent unwanted content due to sensitive topics.</p><p><br>A list of parameters for Ollama&apos;s models (not the AI &#x200B;&#x200B;language management tool) is specified at https://ollama.readthedocs.io/en/modelfile/#valid-parameters-and-values .</p><p><br>These parameters can be modified within the running model with the command &quot;set parameter&quot;, an example:</p><!--kg-card-begin: markdown--><pre><code>/set parameter num_keep 30
</code></pre>
<!--kg-card-end: markdown--><p><br>This change is temporary for the current model to run. This change is lost upon restart.</p><p>Parameters can be permanently changed via the Ollama API or in the model&apos;s Modelfile.</p><p><br>You can ask for the Modelfile of a model with the following command, example with &quot;llama3:8b&quot;:</p><!--kg-card-begin: markdown--><pre><code>ollama show --modelfile llama3:8b

</code></pre>
<!--kg-card-end: markdown--><p>Which returns the following, where you can see the location of the Modelfile and the parameters on the lines that begin with &quot;PARAMETER&quot;:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama show --modelfile llama3:8b
# Modelfile generated by &quot;ollama show&quot;
# To build a new Modelfile based on this, replace FROM with:
# FROM llama3:8b

FROM /usr/share/ollama/.ollama/models/blobs/sha256-6a0746a1ec1aef3e7ec53868f220ff6e389f6f8ef87a01d77c96807de94ca2aa
TEMPLATE &quot;{{ if .System }}&lt;|start_header_id|&gt;system&lt;|end_header_id|&gt;

{{ .System }}&lt;|eot_id|&gt;{{ end }}{{ if .Prompt }}&lt;|start_header_id|&gt;user&lt;|end_header_id|&gt;

{{ .Prompt }}&lt;|eot_id|&gt;{{ end }}&lt;|start_header_id|&gt;assistant&lt;|end_header_id|&gt;

{{ .Response }}&lt;|eot_id|&gt;&quot;
PARAMETER num_keep 24
PARAMETER stop &lt;|start_header_id|&gt;
PARAMETER stop &lt;|end_header_id|&gt;
PARAMETER stop &lt;|eot_id|&gt;
LICENSE &quot;META LLAMA 3 COMMUNITY LICENSE AGREEMENT

Meta Llama 3 Version Release Date: April 18, 2024
&#x201C;Agreement&#x201D; means the terms and conditions for use, reproduction, distribution and modification of the Llama Materials set forth herein.

&#x201C;Documentation&#x201D; means the specifications, manuals and documentation accompanying Meta Llama 3 distributed by Meta at https://llama.meta.com/get-started/.

&#x201C;Licensee&#x201D; or &#x201C;you&#x201D; means you, or your employer or any other person or 
...
...
of Meta Llama 3: LlamaUseReport@meta.com
&quot;

llm-04@ubuntu2504desktop-llm-04-ts04:~$ 
</code></pre>
<!--kg-card-end: markdown--><p><br>Ollama, as a model manager for artificial intelligence languages, allows you to create your own model from a Modelfile with the &quot;ollama create&quot; command, an aspect we will not go into in depth now.</p><p><br>The Ollama tool also has a REST API that is available locally at &quot;http://localhost:11434&quot;, and we can verify its operation with a &quot;curl&quot; or in the browser for GET requests or using an API manager such as Postman or similar:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ curl http://localhost:11434
Ollama is running
llm-04@ubuntu2504desktop-llm-04-ts04:~$ 
</code></pre>
<!--kg-card-end: markdown--><p><br>With this API you can, for example, consult the available models in a similar way to how the Ollama CLI does in the console with &quot;ollama list&quot; with a call to the REST API with the get method &quot;/v1/models&quot;:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ curl http://localhost:11434/v1/models | jq
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   189  100   189    0     0  29329      0 --:--:-- --:--:-- --:--:-- 31500
{
  &quot;object&quot;: &quot;list&quot;,
  &quot;data&quot;: [
    {
      &quot;id&quot;: &quot;llama3:instruct&quot;,
      &quot;object&quot;: &quot;model&quot;,
      &quot;created&quot;: 1756027924,
      &quot;owned_by&quot;: &quot;library&quot;
    },
    {
      &quot;id&quot;: &quot;llama3:8b&quot;,
      &quot;object&quot;: &quot;model&quot;,
      &quot;created&quot;: 1756027280,
      &quot;owned_by&quot;: &quot;library&quot;
    }
  ]
}
llm-04@ubuntu2504desktop-llm-04-ts04:~$ 
</code></pre>
<!--kg-card-end: markdown--><p><br>Just like you can see with the models, you can create a model with a REST API call using the POST /api/create method. You can perform the same Ollama functions with its REST API as with its console CLI.</p><!--kg-card-begin: markdown--><pre><code>curl http://localhost:11434/api/chat -d &apos;{
  &quot;model&quot;: &quot;llama3:8b&quot;,
  &quot;messages&quot;: [
    { &quot;role&quot;: &quot;user&quot;, &quot;content&quot;: &quot;Explain to me the concept of the Napierian logarithm&quot; }
  ]
}&apos;

</code></pre>
<!--kg-card-end: markdown--><p><br>Which gives the following response, as JSON:</p><!--kg-card-begin: markdown--><pre><code>llm-04@ubuntu2504desktop-llm-04-ts04:~$ curl http://localhost:11434/api/chat -d &apos;{
  &quot;model&quot;: &quot;llama3:8b&quot;,
  &quot;messages&quot;: [
    { &quot;role&quot;: &quot;user&quot;, &quot;content&quot;: &quot;Explain to me the concept of the Napierian logarithm&quot; }
  ]
}&apos;
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:36.319638065Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;A&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:36.648205025Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; fascinating&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:36.977830334Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; topic&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:37.319596095Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;!\n\n&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:37.691332083Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;The&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:38.038542472Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; Nap&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:38:38.374558726Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;ier&quot;},&quot;done&quot;:false}

...
...

{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:42:51.954438674Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; and&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:42:52.367103924Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; mathematical&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:42:52.808416659Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot; models&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:42:53.274296402Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;.&quot;},&quot;done&quot;:false}
{&quot;model&quot;:&quot;llama3:8b&quot;,&quot;created_at&quot;:&quot;2025-09-19T14:42:53.678305521Z&quot;,&quot;message&quot;:{&quot;role&quot;:&quot;assistant&quot;,&quot;content&quot;:&quot;&quot;},&quot;done_reason&quot;:&quot;stop&quot;,&quot;done&quot;:true,&quot;total_duration&quot;:260023194239,&quot;load_duration&quot;:271466683,&quot;prompt_eval_count&quot;:23,&quot;prompt_eval_duration&quot;:2388628695,&quot;eval_count&quot;:563,&quot;eval_duration&quot;:257362217533}
llm-04@ubuntu2504desktop-llm-04-ts04:~$ ollama list


</code></pre>
<!--kg-card-end: markdown--><p><br>With this, we have a basic understanding of how to manage and work with the different AI models available to us. In this tutorial, we&apos;ll go deeper into the different aspects.</p><p>NOTE: The author of this article also has it published at feitam.es.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[How to make git not always ask for your username and password on your computer]]></title><description><![CDATA[How to make git not always ask for your username and password on your computer
git config --global credential.helper cache
git credential-cache exit
timeout]]></description><link>https://tibidico.com/how-to-make-git-not-always-ask-for-your-username-and-password-on-your-computer/</link><guid isPermaLink="false">68cc5530ad94e70001742041</guid><category><![CDATA[feitam.es]]></category><category><![CDATA[Technology]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Thu, 18 Sep 2025 18:58:08 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1571333452531-727c64f60e58?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDIwfHxzZWNyZXQlMjBnYXJkZW58ZW58MHx8fHwxNzU4MjIxODY5fDA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1571333452531-727c64f60e58?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDIwfHxzZWNyZXQlMjBnYXJkZW58ZW58MHx8fHwxNzU4MjIxODY5fDA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="How to make git not always ask for your username and password on your computer"><p>So that git does not ask you on your computer for the username and passwords every time it is required, you can cache it for a while with:</p><!--kg-card-begin: markdown--><pre><code class="language-console">git config --global credential.helper &apos;cache --timeout=86400&apos;
</code></pre>
<!--kg-card-end: markdown--><p>or</p><!--kg-card-begin: markdown--><pre><code class="language-console">git config --global credential.helper cache
</code></pre>
<!--kg-card-end: markdown--><p>In this command we are telling it to keep the passwords of the users in memory for 86400 seconds, which is 24 hours. If no timeout is specified, the default cache time is 15 minutes.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Once echoed on the first use of the user and password for a git server domain they will be persisted in memory for the specified time without prompting the system again.</p><p>To clear the credentials cache, you must execute:</p><!--kg-card-begin: markdown--><pre><code class="language-console">git credential-cache exit
</code></pre>
<!--kg-card-end: markdown--><p>NOTE: The author of this article also has it published at feitam.es.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[How to get all subdomains of a domain]]></title><description><![CDATA[How to get all subdomains of a domain with massdns and assetfinder in kinux Kali]]></description><link>https://tibidico.com/how-to-get-all-subdomains-of-a-domain/</link><guid isPermaLink="false">68cc3b09ad94e70001741ff7</guid><category><![CDATA[feitam.es]]></category><category><![CDATA[Technology]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Thu, 18 Sep 2025 17:13:30 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHNlYXJjaHxlbnwwfHx8fDE3NTgyMTU1NDJ8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHNlYXJjaHxlbnwwfHx8fDE3NTgyMTU1NDJ8MA&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="How to get all subdomains of a domain"><p>To get all the subdomains of a domain I use the following command based on the assetfinder tools and massdns, both available on github. It is required to have git and python installed.</p><p>With git you clone the two github tools as detailed in each tool (in the case of assetfinder you can download a compilation for your OS version, there is a version for Windows), and they are obtained by executing, for example, the following, it is an executed example on linux Kali:</p><!--kg-card-begin: markdown--><pre><code>&#x250C;&#x2500;&#x2500;(kali&#x327F;kali)-[~/tools/massdns]
&#x2514;&#x2500;$ assetfinder --subs-only feitam.es | massdns -r $HOME/tools/massdns/lists/resolvers.txt -o S -w results.txt
Concurrency: 10000
Processed queries: 23
Received packets: 15
Progress: 100.00% (00 h 00 min 02 sec / 00 h 00 min 02 sec)
Current incoming rate: 9 pps, average: 7 pps
Current success rate: 7 pps, average: 6 pps
Finished total: 13, success: 13 (100.00%)
Mismatched domains: 1 (6.67%), IDs: 0 (0.00%)
Failures: 0: 46.15%, 1: 38.46%, 2: 7.69%, 3: 7.69%, 4: 0.00%, 5: 0.00%, 6: 0.00%, 7: 0.00%, 8: 0.00%, 9: 0.00%, 10: 0.00%, 11: 0.00%, 12: 0.00%, 13: 0.00%, 14: 0.00%, 15: 0.00%, 16: 0.00%, 17: 0.00%, 18: 0.00%, 19: 0.00%, 20: 0.00%, 21: 0.00%, 22: 0.00%, 23: 0.00%, 24: 0.00%, 25: 0.00%, 26: 0.00%, 27: 0.00%, 28: 0.00%, 29: 0.00%, 30: 0.00%, 31: 0.00%, 32: 0.00%, 33: 0.00%, 34: 0.00%, 35: 0.00%, 36: 0.00%, 37: 0.00%, 38: 0.00%, 39: 0.00%, 40: 0.00%, 41: 0.00%, 42: 0.00%, 43: 0.00%, 44: 0.00%, 45: 0.00%, 46: 0.00%, 47: 0.00%, 48: 0.00%, 49: 0.00%, 50: 0.00%, 
Response: | Success:               | Total:
OK:       |            8 ( 61.54%) |            9 ( 60.00%)
NXDOMAIN: |            5 ( 38.46%) |            5 ( 33.33%)
SERVFAIL: |            0 (  0.00%) |            0 (  0.00%)
REFUSED:  |            0 (  0.00%) |            1 (  6.67%)
FORMERR:  |            0 (  0.00%) |            0 (  0.00%)
                                                                                                                               
&#x250C;&#x2500;&#x2500;(kali&#x327F;kali)-[~/tools/massdns]
&#x2514;&#x2500;$ cat results.txt | grep -v 127.0.0   
www.feitam.es. A 91.126.72.12
sftp.feitam.es. A 91.126.72.12
wiki.feitam.es. A 91.126.72.12
mail.feitam.es. A 91.126.72.12
feitam.es. A 91.126.72.12
                                                                                                                               
&#x250C;&#x2500;&#x2500;(kali&#x327F;kali)-[~/tools/massdns]
&#x2514;&#x2500;$ 

</code></pre>
<!--kg-card-end: markdown--><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>The links to the tools on github are:</p><!--kg-card-begin: html--><a href="https://github.com/blechschmidt/massdns" target="_blank">https://github.com/blechschmidt/massdns</a>
<br>
<a href="https://github.com/tomnomnom/assetfinder
" target="_blank">https://github.com/tomnomnom/assetfinder
</a><!--kg-card-end: html--><p>NOTE: The author of this article also has it published at feitam.es.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[The river whose waters were reversed by man: the Chicago River]]></title><description><![CDATA[The river whose waters were reversed by man: the Chicago River
Lake Michigan]]></description><link>https://tibidico.com/the-river-whose-waters-were-reversed-by-man-the-chicago-river/</link><guid isPermaLink="false">68cc2f6bad94e70001741fcf</guid><category><![CDATA[History]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Thu, 18 Sep 2025 16:17:41 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1477091889224-8320eb2f1c66?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDQxfHxjaGljYWdvfGVufDB8fHx8MTc1ODIxMjE4M3ww&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1477091889224-8320eb2f1c66?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDQxfHxjaGljYWdvfGVufDB8fHx8MTc1ODIxMjE4M3ww&amp;ixlib=rb-4.1.0&amp;q=80&amp;w=2000" alt="The river whose waters were reversed by man: the Chicago River"><p><br>If man sets his mind to it, he can accomplish great feats that mark his advancement as a civilization, and I believe this is a clear example, due to its sheer scale and its continued improvement over time.</p><p><br>In the 19th century, Chicago authorities decided to change the course of the Chicago River that flowed into Lake Michigan, for health reasons to avoid epidemics due to contamination of the source of drinking water for the city of Chicago, Lake Michigan.</p><p>In 1850, part of the flow began to be diverted to the Illinois and Michigan Canal to mitigate sanitary problems, and in 1990, Chicago sanitary officials decided to install floodgates at the mouth to prevent the water from flowing into Lake Michigan, and to completely reverse the flow to the new Chicago Sanitary and Ship Canal, which poured water into the Mississippi River basin, through the Des Plaines River and finally emptying into the Gulf of Mexico... what a change in the course of the water.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>The following video from https://www.youtube.com/@wttw tells the story in detail:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/-OP20CnNFus?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="The Race to Reverse the River &#x2014; A Chicago Stories Documentary"></iframe></figure><p>Throughout the 20th century, the Chicago River&apos;s water quality has improved, but it was not until the last decade of the 20th century that the riverbed was clean and free of trash.</p><p>And in the cinema we have many movies available where you can see the Chicago River in all its current splendor, like in the movie &quot;Bridesmaids.&quot; Here&apos;s the trailer:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/7b1MkoRPAcg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="La boda de mi mejor amigo- Trailer oficial"></iframe></figure><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Peñafiel, origin of the Ribera del Duero... and much more]]></title><description><![CDATA[Peñafiel, origin of the Ribera del Duero... and much more
Tourismo
Peñafiel Castle
Plaza del Coso
Pintia
Duraton Path
Protos
Valdobar
Duero

]]></description><link>https://tibidico.com/penafiel-origin-of-the-ribera-del-duero-and-much-more/</link><guid isPermaLink="false">669bab2c415be80001e06ad1</guid><category><![CDATA[Places]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Sat, 20 Jul 2024 12:28:55 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1652460468654-5202f8a6367c?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDN8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1652460468654-5202f8a6367c?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDN8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" alt="Pe&#xF1;afiel, origin of the Ribera del Duero... and much more"><p>182 kilometers from Madrid is one of the most charming medieval towns in Spain, a town fortunate for the water of two rivers: Duero and Durat&#xF3;n.</p><p>It is the ideal place to visit on a long weekend, and repeat since you will surely want to return.</p><p>It is always advisable to visit its tourist website https://www.turismopenafiel.es/ to see all the cultural, hiking, gastronomic and wine tourism options it offers. This website details the location and telephone number of the Tourist Office where the different tickets and schedules are purchased.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p><br>The essential things not to miss in Pe&#xF1;afiel:</p><ul><li>Pe&#xF1;afiel Castle, whose origin dates back to the 10th century plus all its evolution. It is home to the Valladolid Provincial Wine Museum. </li><li>Plaza del Coso, declared of Cultural Interest in 1999. Inside it you enter the medieval atmosphere of the town. </li><li>Ribera House Museum, this is a must-see. A spectacular theatrical representation of the life and customs of the people of Pe&#xF1;afiel at the beginning of the 20th century. Greetings to &quot;Mariano and Tomasa&quot;. You will learn a lot. </li><li>The Regional Museum of Sacred Art located in the Church of Santa Mar&#xED;a in the town&apos;s Plaza de Espa&#xF1;a, where the visitor can see much of the religious-themed artistic heritage of both Pe&#xF1;afiel and the entire Region.</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://images.unsplash.com/photo-1571073950272-78ad33f2faaa?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDV8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" class="kg-image" alt="Pe&#xF1;afiel, origin of the Ribera del Duero... and much more" loading="lazy" width="4000" height="3000" srcset="https://images.unsplash.com/photo-1571073950272-78ad33f2faaa?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDV8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=600 600w, https://images.unsplash.com/photo-1571073950272-78ad33f2faaa?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDV8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=1000 1000w, https://images.unsplash.com/photo-1571073950272-78ad33f2faaa?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDV8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=1600 1600w, https://images.unsplash.com/photo-1571073950272-78ad33f2faaa?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDV8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2400 2400w" sizes="(min-width: 720px) 720px"><figcaption>Photo by <a href="https://unsplash.com/@planimetrica?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">planimetrica</a> / <a href="https://unsplash.com/?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Unsplash</a></figcaption></figure><ul><li>Its banks, both of the Duero River and the Durat&#xF3;n River. I recommend starting on the wooden bridge near the Molino de Palacios grill along the Senda del Durat&#xF3;n route and reaching the mouth of the Duero, about 3 kilometers. You will see mills, magnificent wooden bridges and a spectacular riverside. And if you dare you can reach Pesquera del Duero. </li><li>Its beaches, yes its beaches. I recommend Valdobar beach, where the town&apos;s San Roque hermitage and a beautiful stone bridge are located. Landscaped so that kids and not-so-kids can take a dip, have a snack or read a book quietly on the grass.</li><li>The archaeological area of &#x200B;&#x200B;Pintia, which was declared a Site of Cultural Interest in 1993, where you can see the history of the Vacceo-Roman and Visigoth settlers between the 4th centuries BC to the turn of the Era. </li><li>Any of the local wineries to learn about the world of wine making and the history of the winery that is the origin of the Ribera del Duero designation of origin: Protos.</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://images.unsplash.com/photo-1589832118219-5004a83dd666?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" class="kg-image" alt="Pe&#xF1;afiel, origin of the Ribera del Duero... and much more" loading="lazy" width="6000" height="4000" srcset="https://images.unsplash.com/photo-1589832118219-5004a83dd666?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=600 600w, https://images.unsplash.com/photo-1589832118219-5004a83dd666?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=1000 1000w, https://images.unsplash.com/photo-1589832118219-5004a83dd666?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=1600 1600w, https://images.unsplash.com/photo-1589832118219-5004a83dd666?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fHBlJUMzJUIxYWZpZWx8ZW58MHx8fHwxNzIxNDc3OTY3fDA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2400 2400w" sizes="(min-width: 720px) 720px"><figcaption>Photo by <a href="https://unsplash.com/@hayffield?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Hayffield L</a> / <a href="https://unsplash.com/?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Unsplash</a></figcaption></figure><p>Walking through its streets is what is most enjoyed in Pe&#xF1;afiel. Its smells, its streets, its houses, its parks, the wineries dug into the side of the mountain of its castle, enter its bakeries and buy its breads and rolls, in its stores, and of course in its wine cellars buy its wines, and in its bars and restaurants stop to have a wine or a suckling lamb. </p><p>During festivals, like any town, the population is even more beautiful, especially during Holy Week and its patron saint festivals of Nuestra Se&#xF1;ora and San Roque from August 14 to 18. </p><p>I leave here a video of the movie &quot;Nothing ever happens&quot; filmed by Juan Antonio Bardem in 1963 where you can see scenes of Pe&#xF1;afiel from its outskirts and the castle, where we can appreciate during the visit all the improvements that the castle has had:</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="150" src="https://www.youtube.com/embed/-6l72vGJgmA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Pe&#xF1;afiel visto desde el cine"></iframe><figcaption>Pe&#xF1;afiel seen from the cinema - https://www.youtube.com/@MOISCAL</figcaption></figure><p>Visit Pe&#xF1;afiel: it does not disappoint, and will force you to return.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Tarantino and Fellini: huge dance scenes in cold and hot]]></title><description><![CDATA[Tarantino and Fellini: huge dance scenes in cold and hot
Pulp Fiction
Otto e mezzo 
Fellini 8 1/2
Cardinalle
Mastroianni
Travolta
Thurman
]]></description><link>https://tibidico.com/tarantino-and-fellini-huge-dance-scenes-in-cold-and-hot/</link><guid isPermaLink="false">632b5ae38bfd420001ffd302</guid><category><![CDATA[Reasonable similarities in film]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Wed, 21 Sep 2022 18:45:10 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1612668401767-a2196c1c6670?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDJ8fHRhcmFudGlub3xlbnwwfHx8fDE2NjM3ODU4OTU&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1612668401767-a2196c1c6670?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDJ8fHRhcmFudGlub3xlbnwwfHx8fDE2NjM3ODU4OTU&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="Tarantino and Fellini: huge dance scenes in cold and hot"><p>Two film greats, Federico Fellini and Quentin Tarantino, have two spectacular scenes that many moviegoers see as reasonable similarities.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Let&apos;s look at the spectacular twist scene in Tarantino&apos;s Pulp Fiction:</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/WSLMN6g_Od4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="Pulp Fiction - Dance Scene (HQ)"></iframe><figcaption>Pulp Fiction - Dance Scene (HQ)</figcaption></figure><p>and the dance scene in &apos;Otto e mezzo&apos; also known as &apos;Fellini ocho y medio&apos; is not far behind:</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/ykgIVAvYCwk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="Fellini&apos;s 8 1/2 | Dance scene"></iframe><figcaption>Fellini&apos;s 8 1/2 | Dance scene</figcaption></figure><p>According to Tarantino it is not a reasonable resemblance on purpose nor is it inspired by &apos;Otto e mezzo&apos; since he had never seen Fellini&apos;s film before &apos;Pulp Fiction&apos;.</p><p>They&apos;re two great movies, with two great dance scenes. In Fellini&apos;s the protagonists give off more heat, and in Tarantino&apos;s they give off the coldness between both dancers in the context of the film&apos;s story.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[How to remove gum from clothes]]></title><description><![CDATA[Trick how to remove gum from clothes]]></description><link>https://tibidico.com/trick-how-to-remove-gum-from-clothes/</link><guid isPermaLink="false">632b43878bfd420001ffd2d9</guid><category><![CDATA[Tricks]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Wed, 21 Sep 2022 17:08:40 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1630025631629-dfbf6049f85e?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDExfHxndW18ZW58MHx8fHwxNjYzNzgwMTA2&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1630025631629-dfbf6049f85e?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDExfHxndW18ZW58MHx8fHwxNjYzNzgwMTA2&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="How to remove gum from clothes"><p>This trick is certified by my mother with my clothes when I was a kid, which I remember a few times.</p><p>Only required:</p><ul><li>Vinegar of any kind: wine, apple, etc. Of course, white vinegar, without color so as not to leave stain on clothes.</li><li>A glass</li><li>A microwave</li><li>A toothbrush or similar</li><li>5 minutes</li></ul><p>Heat the vinegar a little in the microwave, without boiling.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>And then pour the vinegar into the gum stain on the clothes with the toothbrush and always scratch in the same direction until it disappears from the clothes.</p><p>In order not to have to use this trick, you don&apos;t need to swallow the gum...</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/gT9sfHeJZw4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="Funny Hilary Swank Chewing Gum Scene from the Movie " the core" 2003"></iframe><figcaption>Funny Hilary Swank Chewing Gum Scene from the Movie &quot;The Core&quot; 2003</figcaption></figure><p>... you can leave it in its packaging in a trash can. If you have time.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Do you know the difference between cyclone, tornado, hurricane and typhoon?]]></title><description><![CDATA[The difference between cyclone, tornado, hurricane and typhoon]]></description><link>https://tibidico.com/difference-between-cyclone-tornado-hurricane-and-typhoon/</link><guid isPermaLink="false">6329fe86275793000123e01f</guid><category><![CDATA[Nature]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Tue, 20 Sep 2022 18:01:01 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1527482937786-6608f6e14c15?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDJ8fHRvcm5hZG98ZW58MHx8fHwxNjYzNjk2ODgw&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1527482937786-6608f6e14c15?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDJ8fHRvcm5hZG98ZW58MHx8fHwxNjYzNjk2ODgw&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="Do you know the difference between cyclone, tornado, hurricane and typhoon?"><p>According to the Salvat Universal Encyclopedia:</p><ul><li>Tornado: atmospheric whirlpool of small horizontal extension and great intensity that extends towards the earth&apos;s surface from a storm cloud. True column of rising air, they usually cause great havoc. It is due to the contact of warm, moist air with cold air of high levels.</li><li>Cyclone: atmospheric disturbance that originates above warm seas, and in which winds revolve around a center of low pressure at speeds exceeding 120 km / h.</li><li>Hurricane: dynamic weather system that originates in tropical regions, characterized mainly by the rotation of air around a center of very low pressure, at speeds of the order of 150 km / h.</li><li>Typhoon: tropical cyclone, frequent in the China Sea. It devastates the coastal regions of southern China and the Philippines. It is characterized by very strong winds and torrential rains.</li></ul><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Therefore, hurricane and typhoon is the same as cyclone since they are generated in the sea with great winds in a great amplitude, generically hundreds of kilometers, of space by rotations in the hands of the clock in the southern hemisphere, and in the opposite direction in the northern hemisphere, and according to their area of origin on earth they receive one denomination or another:</p><ul><li>Southwest Indian Ocean: Tropical Cyclone</li><li>Southwest Pacific Ocean: Tropical Cyclone</li><li>Remaining Indian Ocean (non-southwest): Typhoon-</li><li>Western Pacific Ocean: Typhoon</li><li>Arabian Sea: Typhoon</li><li>North Atlantic Ocean: Hurricane</li><li>North Pacific Ocean, East Zone: Hurricane</li><li>Central Pacific Ocean, Gulf of Mexico: Hurricane</li><li>Caribbean Sea: hurricane</li></ul><p>The tornado is another meteorological phenomenon other than cyclones, hurricanes and typhoons. Since its origin is on land, not in the sea. Its amplitude is much smaller, usually a few meters. The winds of both are comparable, but in the case of tornadoes they are absorbent winds, as shown in many films where the tornado &quot;swallows&quot; everything it finds on the ground... returning it to gravity.</p><p>Tornadoes unlike cyclones are difficult to predict.</p><p>A variant of tornadoes are the sleeves or waterspouts that form over the sea, rather than over land.</p><p><br>Below is a scene from the 1996 film Twister, where you can see very well what a tornado is:</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/OgG2jfBfLzI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Twister (1996) - Original Trailer"></iframe><figcaption>Twister (1996) - Original Trailer</figcaption></figure><p>They all cause a lot of destruction, and the only defense today is to predict them as soon as possible and in the most reliable way.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[The oldest restaurant in the world is in...]]></title><description><![CDATA[The oldest restaurant in the world is in. Casa Botín.]]></description><link>https://tibidico.com/the-oldest-restaurant-in-the-world-is-in/</link><guid isPermaLink="false">62bb578a41d7400001c00bf4</guid><category><![CDATA[Places]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Tue, 28 Jun 2022 19:41:15 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1630855825440-67b0c1126206?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDE0fHxwbGF6YSUyMG1heW9yfGVufDB8fHx8MTY1NjQ0NTIwNA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1630855825440-67b0c1126206?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDE0fHxwbGF6YSUyMG1heW9yfGVufDB8fHx8MTY1NjQ0NTIwNA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="The oldest restaurant in the world is in..."><p><br>... Spain, specifically in Madrid. And its name is Casa Bot&#xED;n. This merit is confirmed by the Guinness Book of Records.</p><p>Its location is behind the Plaza Mayor, in the typical Madrid street of Cuchilleros belonging to Madrid of the Austrias.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Its origin dates back to 1725, when the French chef Jean Bot&#xED;n created the restaurant, and the current restaurant&apos;s wood-fired oven is from that year.</p><p>The restaurant has three floors, with dining rooms on the lower floor in typical Spanish caves like many restaurants, its origin being the old cellars previously used as warehouses. It also has a dining room on the entrance floor with the decoration of the 19th century reform with polychrome wood friezes in gold leaf, as well as the window and counter of the time. Eating there both for the restaurant and for its cuisine takes you back 200 years, and it is a balm for the heart.</p><p>It is the typical Castilian cuisine restaurant with main products such as roast lamb and suckling pig made in its old wood oven.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/UUJ6BWwm39E?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="Inside the World&#x2019;s Oldest Restaurant - Madrid&apos;s Sobrino de Botin"></iframe><figcaption>Inside the World&#x2019;s Oldest Restaurant - Casa Bot&#xED;n</figcaption></figure><p>An anecdote that certifies the Guinness Book of Records: the famous painter Francisco de Goya worked as a teenager in the restaurant in 1765.</p><p>This is its website, where you can check its schedules, menu, prices and information to reserve:</p><!--kg-card-begin: html--><a href="https://botin.es" target="_blank">Restaurant Casa Bot&#xED;n</a><!--kg-card-end: html--><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Christmas or not: Venezuelan hallacas]]></title><description><![CDATA[Christmas or not: Venezuelan hallacas. Recipe.]]></description><link>https://tibidico.com/christmas-or-not-venezuelan-hallacas/</link><guid isPermaLink="false">62ba05b2895c8f0001eac65a</guid><category><![CDATA[Recipes]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Mon, 27 Jun 2022 19:34:49 GMT</pubDate><media:content url="https://tibidico.com/content/images/2022/06/hallacas.jpeg" medium="image"/><content:encoded><![CDATA[<img src="https://tibidico.com/content/images/2022/06/hallacas.jpeg" alt="Christmas or not: Venezuelan hallacas"><p>Hallacas is a typical Venezuelan recipe that is usually taken at Christmas... but that can be taken at any time of the year.</p><p>It is spectacular, has very little fat, very nutritious because it has a high number of foods, it is easy to preserve when it can be frozen, and it is easy to take by only requiring boiling the hallacas before eating them warm.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Being a stew with many foods it is really laborious to make, and in certain areas there may be problems to find some of its components such as banana leaves, achiote seeds or sweet chili; but all these foods can be purchased through the internet or replaced by similar foods from the area. Like any recipe in each area or area is made with different variations in the foods that compose it and the elaboration: I think you have to dare to try different changes. In the end, each family usually has its own recipe. This is the recipe of grandma Ignacia, from Valencia, in Venezuela.</p><p>It is a stew to make with family or friends, for example on a weekend since it takes a couple of days without many to do. With many collaborating it becomes faster and more fun... the same when eating it all together, as at Christmas.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="150" src="https://www.youtube.com/embed/q0M-uhZbsOw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen title="HallacasVenezuelanEN"></iframe></figure><p>Once done there are two options: eat or freeze.</p><p>The frozen ones are healthy &quot;fast food&quot; that with 10 minutes of cooking in water are prepared: in less time than in what they bring you some pizas or hamburgers ... I&apos;m sure you like them.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[You may need a B vitamin supplement ... but ...]]></title><description><![CDATA[The 8 vitamins of vitamin group B are essential for the correct conversion of food into energy for the body and are a catalyst.]]></description><link>https://tibidico.com/you-may-need-a-b-vitamin-supplement-but/</link><guid isPermaLink="false">6173cdf69971fa0001f8461e</guid><category><![CDATA[Wellnes]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Sat, 23 Oct 2021 08:56:36 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1543208541-0961a29a8c3d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDUwfHxiZWFufGVufDB8fHx8MTYzNDk3MTkyOA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1543208541-0961a29a8c3d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDUwfHxiZWFufGVufDB8fHx8MTYzNDk3MTkyOA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="You may need a B vitamin supplement ... but ..."><p>The 8 vitamins of vitamin group B are essential for the correct conversion of food into energy for the body and are catalysts for a wide number of biochemical processes in our body, which help to:</p><ul><li>Healthy skin, helping proper wound healing</li><li>Strong hair</li><li>Regulation of the nervous system, helping processes of anxiety, stress and depression, and even in cases of back pain because it is essential for the spinal cord, as well as for the brain</li><li>Improvement of blood cholesterol levels, especially vitamin B12, lowering the risk of stroke, and avoiding high blood pressure.</li><li>Decreased frequency of migraines according to some studies, especially B6, B9 and B12.</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://images.unsplash.com/photo-1611864581049-aca018410b97?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDh8fHZpYW5kc3xlbnwwfHx8fDE2MzExMjE1MzA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" class="kg-image" alt="You may need a B vitamin supplement ... but ..." loading="lazy" width="3921" height="2888" srcset="https://images.unsplash.com/photo-1611864581049-aca018410b97?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDh8fHZpYW5kc3xlbnwwfHx8fDE2MzExMjE1MzA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=600 600w, https://images.unsplash.com/photo-1611864581049-aca018410b97?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDh8fHZpYW5kc3xlbnwwfHx8fDE2MzExMjE1MzA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=1000 1000w, https://images.unsplash.com/photo-1611864581049-aca018410b97?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDh8fHZpYW5kc3xlbnwwfHx8fDE2MzExMjE1MzA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=1600 1600w, https://images.unsplash.com/photo-1611864581049-aca018410b97?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDh8fHZpYW5kc3xlbnwwfHx8fDE2MzExMjE1MzA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2400 2400w" sizes="(min-width: 720px) 720px"><figcaption>Photo by <a href="https://unsplash.com/@sigmund?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Sigmund</a> / <a href="https://unsplash.com/?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Unsplash</a></figcaption></figure><p>Group B vitamins are found in the following foods:</p><ul><li>Vitamin B1 or thiamine: whole grains, legumes, nuts, seeds, trout, tuna, eggs, meat</li><li>Vitamin B2 or riboflavin: dairy, yeast, meat, cereals, legumes, green leafy vegetables</li><li>Vitamin B3 or niacin: dairy, eggs, fish, nuts, rice, legumes</li><li>Vitamin B5 or pantothenic acid: broccoli, liver, kidneys, eggs</li><li>Vitamin B6 or pyridoxine: poultry, fish, bananas, chickpeas, potatoes, avocado</li><li>Vitamin B7 or biotin: nuts, peanuts, dairy, eggs, cauliflower, sardines</li><li>Vitamin B9 or folic acid: green leafy vegetables, legumes, citrus</li><li>Vitamin B12 or combalamin: salmon, meat, liver, seafood, eggs, dairy</li></ul><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>If you are a smoker or a regular drinker of alcohol, the body assimilates it with greater difficulty, so you must bear in mind that you need more foods with vitamin B to have acceptable levels.</p><p>The usual recommendation: variable and balanced diet, in not excessive amounts will allow you to consume the recommended amounts.</p><p>You can always take a vitamin supplement but it won&apos;t be as tasty and fun as a food.</p><p>And you must bear in mind that the consumption of any vitamin supplement should be consulted with a doctor to certify that it has no possible side effects. And doctors know a lot just by looking at us:</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/M5F2tU5V9Mw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><figcaption>Video with direct translation options</figcaption></figure><p>The side effects of an excessive intake of B vitamins are:</p><ul><li>Diarrhea</li><li>Increased menstrual bleeding</li><li>Vomiting</li><li>Liver problems</li><li>Low blood pressure</li><li>Fatigue</li><li>Headache</li><li>Raise blood sugar levels: especially dangerous in people with diabetes or high blood sugar levels</li><li>Bright yellow urine</li></ul><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[The queen who begot the most kings and queens]]></title><description><![CDATA[The queen who begot the most queens and kings: Juana la Loca]]></description><link>https://tibidico.com/the-queen-who-begot-the-most-kings-and-queens/</link><guid isPermaLink="false">6173c0689971fa0001f845f4</guid><category><![CDATA[History]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Sat, 23 Oct 2021 08:02:41 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1589027005472-21647e9e1086?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDE2fHxxdWVlbnxlbnwwfHx8fDE2MzQ5NzE1Nzc&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1589027005472-21647e9e1086?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDE2fHxxdWVlbnxlbnwwfHx8fDE2MzQ5NzE1Nzc&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="The queen who begot the most kings and queens"><p>There is a queen, betrayed by those closest to her, and surely very badly treated by history, who is also one of the women ... and queen, who has spawned more kings and queens.</p><p>This woman was the first queen of Spain: Juana &quot;la Loca&quot;.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Already the &quot;nickname&quot; that the story has assigned it tells us a little about how the story treats it. Possibly she was not as crazy as has been said, and it greatly influenced that her husband and King Philip the Fair was very given to multiple extramarital love affairs in a repetitive way. She really was a woman, betrayed by almost everyone around her, without saving her father, husband and even her children.</p><p>Juana &quot;la Loca&quot; was queen heir of Castilla, Aragon, Navarra, Valencia, Mallorca, Naples, Sicily, Sardinia and, Countess of Barcelona and titular Duchess consort of Burgundy, uniting the crowns that made up Spain, as of January 25, 1516, thus becoming the first queen of Spain together with her son Carlos I.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/au5xMo_GzmE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p>His offspring were:</p><ul><li>Leonor: queen consort of Portugal being the wife of Manuel I of Portugal, and on his death she was queen consort of France when she married Francisco I of France</li><li>Carlos: King of Spain with the name Carlos I and Holy Roman Emperor with the name Carlos V</li><li>Isabel: queen consort of Denmark being wife of Christian II</li><li>Fernando: Holy Roman Emperor with the name of Fernando I as successor to Carlos V once it is decided to divide the empire</li><li>Mar&#xED;a: Queen of Hungary as wife of Luis II</li><li>Catalina: Queen of Portugal as wife of Juan III</li></ul><p>Obviously, he had many heirs on thrones, as it was one of the times when more tradition of political marriages existed. Coupled with the fact of being one of the main protagonists of one of the most powerful courts at that time, which facilitated all this marriage &quot;management&quot;. But I don&apos;t think he could have been more successful when it comes to the power marriages of his offspring.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Winston Churchill and one of his hobbies to relax that few know]]></title><description><![CDATA[Winston Churchil is for me one of the characters in history that I admire the most, my first contact with all "his work" was reading the biography of ...]]></description><link>https://tibidico.com/winston-churchill-and-one-of-his-hobbies-to-relax-that-few-know/</link><guid isPermaLink="false">61730682a22df50001e09ae7</guid><category><![CDATA[History]]></category><dc:creator><![CDATA[Juan Luis Sánchez Vázquez]]></dc:creator><pubDate>Fri, 22 Oct 2021 18:46:17 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1593395948278-f0a2296acd12?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDF8fENodXJjaGlsbHxlbnwwfHx8fDE2MzQ5MjgzMTI&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1593395948278-f0a2296acd12?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDF8fENodXJjaGlsbHxlbnwwfHx8fDE2MzQ5MjgzMTI&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="Winston Churchill and one of his hobbies to relax that few know"><p>Winston Churchil is for me one of the characters in history that I admire the most, my first contact with all &quot;his work&quot; was reading the biography of Winston Churchil by Roy Jenkins. I recommend reading it.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-110"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(110);
    });
</script><!--kg-card-end: html--><p>Like every man he has positive actions for the social common, and others of dubious general benefit, but with a clear predominance of the positive. I believe he was a very bold and determined man to follow a certain path in the first half of the bellicose twentieth century, when other leaders were very hesitant at crucial moments for a more human future.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://images.unsplash.com/photo-1599833287282-7247f72e2c89?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDY5fHxicmlja3N8ZW58MHx8fHwxNjMxMjg0NDQy&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" class="kg-image" alt="Winston Churchill and one of his hobbies to relax that few know" loading="lazy" width="4446" height="2501" srcset="https://images.unsplash.com/photo-1599833287282-7247f72e2c89?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDY5fHxicmlja3N8ZW58MHx8fHwxNjMxMjg0NDQy&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=600 600w, https://images.unsplash.com/photo-1599833287282-7247f72e2c89?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDY5fHxicmlja3N8ZW58MHx8fHwxNjMxMjg0NDQy&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=1000 1000w, https://images.unsplash.com/photo-1599833287282-7247f72e2c89?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDY5fHxicmlja3N8ZW58MHx8fHwxNjMxMjg0NDQy&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=1600 1600w, https://images.unsplash.com/photo-1599833287282-7247f72e2c89?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDY5fHxicmlja3N8ZW58MHx8fHwxNjMxMjg0NDQy&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2400 2400w" sizes="(min-width: 720px) 720px"><figcaption>Photo by <a href="https://unsplash.com/@saratrixx?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Sara Bertoni</a> / <a href="https://unsplash.com/?utm_source=ghost&amp;utm_medium=referral&amp;utm_campaign=api-credit">Unsplash</a></figcaption></figure><p>I will not tell here their successes and failures, which are detailed in multiple books and web pages. But it has always struck me that a man with his responsibilities to relax, still working with his secretary, will dedicate himself to masonry work, especially to make constructions with bricks: he put bricks and at the same time dictated to his secretary. Impressive. I can&apos;t imagine any great leader of a nation today laying bricks.</p><p>I think it indicates a lot his character: always active, even to relax, and followed his criteria not the canons ... at least in terms of how to relax.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="200" height="113" src="https://www.youtube.com/embed/n1qkTWSNXtA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="The PM&apos;s Brick"></iframe><figcaption>The PM&apos;s Brick - British Movietone - https://www.youtube.com/@BritishMovietone</figcaption></figure><p>Search online for &quot;Churchill bricks&quot; and you will find multiple photos with the palette with cement... and smoking a cigar, laying bricks.</p><!--kg-card-begin: html--><div id="ezoic-pub-ad-placeholder-103"></div>
<script>
    ezstandalone.cmd.push(function () {
        ezstandalone.showAds(103);
    });
</script><!--kg-card-end: html--><p></p>]]></content:encoded></item></channel></rss>