<?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"><channel><title><![CDATA[Console is friendly :)]]></title><description><![CDATA[Console is friendly :)]]></description><link>https://steelandy.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Tue, 22 Sep 2026 14:26:23 GMT</lastBuildDate><atom:link href="https://steelandy.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Diagram in 1 minute with Notion]]></title><description><![CDATA[Hi all! I'd like to share here my experience of making super-fast and easy diagramming for creating brief guides, small tools, etc.
The code:
graph TD
  A --> B --> C
  A --> C
  D --> C

The result:

All together (in Split mode).

How to create? Ope...]]></description><link>https://steelandy.hashnode.dev/diagram-in-1-minute-with-notion</link><guid isPermaLink="true">https://steelandy.hashnode.dev/diagram-in-1-minute-with-notion</guid><category><![CDATA[notion]]></category><category><![CDATA[Diagram]]></category><category><![CDATA[fast]]></category><category><![CDATA[easy]]></category><dc:creator><![CDATA[Andrei Zaslavskii]]></dc:creator><pubDate>Thu, 10 Aug 2023 10:23:30 GMT</pubDate><content:encoded><![CDATA[<p>Hi all! I'd like to share here my experience of making super-fast and easy diagramming for creating brief guides, small tools, etc.</p>
<p>The code:</p>
<pre><code class="lang-yaml"><span class="hljs-string">graph</span> <span class="hljs-string">TD</span>
  <span class="hljs-string">A</span> <span class="hljs-string">--&gt;</span> <span class="hljs-string">B</span> <span class="hljs-string">--&gt;</span> <span class="hljs-string">C</span>
  <span class="hljs-string">A</span> <span class="hljs-string">--&gt;</span> <span class="hljs-string">C</span>
  <span class="hljs-string">D</span> <span class="hljs-string">--&gt;</span> <span class="hljs-string">C</span>
</code></pre>
<p>The result:</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1691662514175/07757d1c-7a73-429b-b487-760f5d1c2ddf.png" alt class="image--center mx-auto" /></p>
<p>All together (in Split mode).</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1691662473526/7fcd4086-e074-4b00-aa32-22056996388f.png" alt class="image--center mx-auto" /></p>
<p>How to create? Open Notion and add a new Code block with Mermaid language</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1691662353792/c83387cb-895e-44fc-8a7b-75cf1e52ad22.png" alt class="image--center mx-auto" /></p>
<p>You could choose the mode of the block: Split (both code and image shown), Code (code only) and Preview (image only).</p>
<p>For documentation of what could be used in code - here is a link to developers: <a target="_blank" href="https://mermaid.js.org/">https://mermaid.js.org/</a></p>
]]></content:encoded></item><item><title><![CDATA[Container real-time logging for laziest: Dozzle]]></title><description><![CDATA[Hello, fellows. Here is a deal I faced the last few days during my duties.
I was working on the migration of about 10 container-app to the docker, and I wasted a lot of time taking a look for logs, you know if the service was able to contact other on...]]></description><link>https://steelandy.hashnode.dev/container-real-time-logging-for-laziest-dozzle</link><guid isPermaLink="true">https://steelandy.hashnode.dev/container-real-time-logging-for-laziest-dozzle</guid><category><![CDATA[Docker]]></category><category><![CDATA[logging]]></category><category><![CDATA[realtime]]></category><dc:creator><![CDATA[Andrei Zaslavskii]]></dc:creator><pubDate>Tue, 18 Jul 2023 13:51:07 GMT</pubDate><content:encoded><![CDATA[<p>Hello, fellows. Here is a deal I faced the last few days during my duties.</p>
<p>I was working on the migration of about 10 container-app to the docker, and I wasted a lot of time taking a look for logs, you know if the service was able to contact other ones, etc.<br />I used to have about 3-5 terminals open, having 1 as a log console. But what I found? It's useless if you have about 10 containers flooding into it. Here comes the easy, lazy and fast project called Dozzle.  </p>
<p>It features:</p>
<ul>
<li><p>Intelligent fuzzy search for container names 🤖</p>
</li>
<li><p>Search logs using regex 🔦</p>
</li>
<li><p>Small memory footprint 🏎</p>
</li>
<li><p>Split screen for viewing multiple logs</p>
</li>
<li><p>Download logs easy</p>
</li>
<li><p>Live stats with memory and CPU usage</p>
</li>
<li><p>Authentication with username and password 🚨</p>
</li>
</ul>
<p>It's god damn small: RAM usage for the container was about 10 MB all the time.</p>
<p>Here is the link for it: <a target="_blank" href="https://github.com/amir20/dozzle">https://github.com/amir20/dozzle</a><br />Don't forget to star it :D</p>
]]></content:encoded></item><item><title><![CDATA[Supercharge your shell with these tools]]></title><description><![CDATA[Bat: the cat clone
Origin: https://github.com/sharkdp/bat

And yeah, the 1st thing I did - disabled line numbers by-default :D
NeoVim: the old good Vim, but with improvements
Origin: https://github.com/neovim/neovim

Exa: A modern replacement for ls
...]]></description><link>https://steelandy.hashnode.dev/supercharge-your-shell-with-these-tools</link><guid isPermaLink="true">https://steelandy.hashnode.dev/supercharge-your-shell-with-these-tools</guid><category><![CDATA[tools]]></category><category><![CDATA[shell]]></category><category><![CDATA[terminal]]></category><category><![CDATA[console]]></category><dc:creator><![CDATA[Andrei Zaslavskii]]></dc:creator><pubDate>Mon, 12 Jun 2023 18:20:43 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1686594520195/817c7743-6191-4c57-8e96-ebc24f505d56.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h3 id="heading-bat-the-cat-clone">Bat: the cat clone</h3>
<p>Origin: <a target="_blank" href="https://github.com/sharkdp/bat">https://github.com/sharkdp/bat</a></p>
<p><img src="https://camo.githubusercontent.com/7b7c397acc5b91b4c4cf7756015185fe3c5f700f70d256a212de51294a0cf673/68747470733a2f2f696d6775722e636f6d2f724773646e44652e706e67" alt="Syntax highlighting example" /></p>
<p>And yeah, the 1st thing I did - disabled line numbers by-default :D</p>
<h3 id="heading-neovim-the-old-good-vim-but-with-improvements">NeoVim: the old good Vim, but with improvements</h3>
<p>Origin: <a target="_blank" href="https://github.com/neovim/neovim">https://github.com/neovim/neovim</a></p>
<p><img src="https://neovim.io/images/showcase/telescope_helptags.png" alt="TUI with telescope (courtesy of @sunjon)" /></p>
<h3 id="heading-exa-a-modern-replacement-for-ls">Exa: <strong>A modern replacement for</strong> <code>ls</code></h3>
<p>Origin: <a target="_blank" href="https://the.exa.website/">https://the.exa.website/</a></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1686593880255/f5aea873-8e54-4aeb-90de-b258c53bb40d.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-curlie-a-good-mix-of-curl-and-httpie">Curlie: a good mix of curl and httpie</h3>
<p>Origin: <a target="_blank" href="https://github.com/rs/curlie">https://github.com/rs/curlie</a></p>
<p><img src="https://github.com/rs/curlie/raw/master/doc/get.png" alt /></p>
]]></content:encoded></item><item><title><![CDATA[Here I would keep cool links]]></title><description><![CDATA[Find your dream Open Source Job]]></description><link>https://steelandy.hashnode.dev/here-i-would-keep-cool-links</link><guid isPermaLink="true">https://steelandy.hashnode.dev/here-i-would-keep-cool-links</guid><category><![CDATA[opensource]]></category><category><![CDATA[jobs]]></category><dc:creator><![CDATA[Andrei Zaslavskii]]></dc:creator><pubDate>Mon, 12 Jun 2023 15:36:01 GMT</pubDate><content:encoded><![CDATA[<p><a target="_blank" href="https://www.ossjobs.dev">Find your dream Open Source Job</a></p>
]]></content:encoded></item></channel></rss>