<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dariush Moshiri</title>
    <description>The latest articles on DEV Community by Dariush Moshiri (@dariush624).</description>
    <link>https://dev.to/dariush624</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3933547%2Fa93833b5-8b9a-4dbd-a478-a7a08d575bb0.jpg</url>
      <title>DEV Community: Dariush Moshiri</title>
      <link>https://dev.to/dariush624</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dariush624"/>
    <language>en</language>
    <item>
      <title>A tiny Rust CLI I made while learning the language</title>
      <dc:creator>Dariush Moshiri</dc:creator>
      <pubDate>Fri, 15 May 2026 16:26:33 +0000</pubDate>
      <link>https://dev.to/dariush624/a-tiny-rust-cli-i-made-while-learning-the-language-4hge</link>
      <guid>https://dev.to/dariush624/a-tiny-rust-cli-i-made-while-learning-the-language-4hge</guid>
      <description>&lt;p&gt;I'm still pretty new to Rust, and I find I learn best by building small things. So here's one: &lt;strong&gt;&lt;a href="https://github.com/dariush624/isdown" rel="noopener noreferrer"&gt;isdown&lt;/a&gt;&lt;/strong&gt; — a little CLI that checks if services like GitHub, Slack, AWS, or Cloudflare are having issues.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;isdown check github slack

GitHub:  Up
Slack:   Degraded
  · Slow API &lt;span class="o"&gt;(&lt;/span&gt;investigating&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It just queries each service's public status endpoint — no API keys or setup. You can also pass any URL, or add &lt;code&gt;--json&lt;/code&gt; for scripting.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cargo &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;--path&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It's nothing groundbreaking, but it gave me a reason to actually use &lt;code&gt;clap&lt;/code&gt;, &lt;code&gt;reqwest&lt;/code&gt;, async, and a bit of macro magic for the provider registry. I learned a lot, and I'm sure there's plenty I got wrong.&lt;/p&gt;

&lt;p&gt;Repo: &lt;strong&gt;&lt;a href="https://github.com/dariush624/isdown" rel="noopener noreferrer"&gt;https://github.com/dariush624/isdown&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you spot something that could be better, I'd genuinely love the feedback — issues and PRs are very welcome. 🙏&lt;/p&gt;

</description>
      <category>rust</category>
      <category>cli</category>
      <category>learning</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
