<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Artur Sannikov</title>
    <link>https://asannikov.com/authors/artur-sannikov/</link>
    <description>Recent content on Artur Sannikov</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Mon, 23 Mar 2026 20:39:10 +0200</lastBuildDate>
    <atom:link href="https://asannikov.com/authors/artur-sannikov/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Setup Proxmox NTFY Notifications with CLI</title>
      <link>https://asannikov.com/posts/proxmox-ntfy-setup-cli/</link>
      <pubDate>Mon, 23 Mar 2026 20:39:10 +0200</pubDate>
      <guid>https://asannikov.com/posts/proxmox-ntfy-setup-cli/</guid>
      <description>&lt;p&gt;This tip is largely a copy-paste of my README on the Proxmox setup in my&#xA;&lt;a href=&#34;https://codeberg.org/arsann/homelab&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;homelab&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;You can achieve the same setup using the Proxmox Web-UI, but I prefer to use&#xA;CLI because it&amp;rsquo;s repeatable, extendable, and scalable. If I ever needed to&#xA;change the NTFY setup, I just need to re-run the commands and I&amp;rsquo;m done.&lt;/p&gt;&#xA;&lt;p&gt;Proxmox has a pretty nice API that we can access with the &lt;code&gt;pvesh&lt;/code&gt; command. For&#xA;example, the documentation for the notification endpoint is&#xA;&lt;a href=&#34;https://pve.proxmox.com/pve-docs/api-viewer/index.html#/cluster/notifications&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Chain Output of Linux Commands</title>
      <link>https://asannikov.com/tips/chain-output-linux-commands/</link>
      <pubDate>Wed, 18 Feb 2026 15:58:43 +0200</pubDate>
      <guid>https://asannikov.com/tips/chain-output-linux-commands/</guid>
      <description>&lt;p&gt;I needed to split a &lt;code&gt;csv&lt;/code&gt; file on a remote server into several sections every&#xA;so row.&lt;/p&gt;&#xA;&lt;p&gt;I can use &lt;code&gt;head -10 file.csv &amp;gt; file10.csv&lt;/code&gt; to output the first 10 rows into a&#xA;separate file, but what about rows 10 to 20, while keeping the header?&lt;/p&gt;&#xA;&lt;p&gt;Turns out the command is:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#e6edf3;background-color:#0d1117;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#ff7b72;font-weight:bold&#34;&gt;{&lt;/span&gt; head -1 file.csv; sed -n 10,20p file.csv &lt;span style=&#34;color:#ff7b72;font-weight:bold&#34;&gt;}&lt;/span&gt; &amp;gt; file20.csv&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can chain the output of several command by embracing them with curly&#xA;braces.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
