<?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: Gabriele</title>
    <description>The latest articles on DEV Community by Gabriele (@gabri0699).</description>
    <link>https://dev.to/gabri0699</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4005226%2Fbea01ccd-3278-4def-9a9f-b51cb7180875.jpg</url>
      <title>DEV Community: Gabriele</title>
      <link>https://dev.to/gabri0699</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gabri0699"/>
    <language>en</language>
    <item>
      <title>Custom shell with Python</title>
      <dc:creator>Gabriele</dc:creator>
      <pubDate>Sun, 28 Jun 2026 10:17:50 +0000</pubDate>
      <link>https://dev.to/gabri0699/custom-shell-with-python-4h6n</link>
      <guid>https://dev.to/gabri0699/custom-shell-with-python-4h6n</guid>
      <description>&lt;p&gt;I want to share a project I built in Python using Claude. The idea came about both to learn Python by starting with something simple and to explore the use of AI. This shell includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;File system management&lt;/li&gt;
&lt;li&gt;Process monitoring&lt;/li&gt;
&lt;li&gt;Encrypted password manager&lt;/li&gt;
&lt;li&gt;Command autocompletion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You'll find the details in the repo&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/Gabri0699" rel="noopener noreferrer"&gt;
        Gabri0699
      &lt;/a&gt; / &lt;a href="https://github.com/Gabri0699/MyShell" rel="noopener noreferrer"&gt;
        MyShell
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;MyShell&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;A custom, colorful and interactive shell written in Python: it monitors
processes in real time, helps you navigate the file system, and includes an
encrypted password manager.&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Features&lt;/h2&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;🎨 &lt;strong&gt;Colorful output&lt;/strong&gt; (tables, trees, panels) powered by &lt;a href="https://github.com/Textualize/rich" rel="noopener noreferrer"&gt;rich&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📊 &lt;strong&gt;Real-time process monitor&lt;/strong&gt; with CPU/RAM/disk bars (&lt;code&gt;top&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;🗂️ &lt;strong&gt;File navigation &amp;amp; management&lt;/strong&gt;: &lt;code&gt;ls&lt;/code&gt;, &lt;code&gt;cd&lt;/code&gt;, &lt;code&gt;tree&lt;/code&gt;, &lt;code&gt;mkdir&lt;/code&gt;, &lt;code&gt;rm&lt;/code&gt;, &lt;code&gt;copy&lt;/code&gt;, &lt;code&gt;move&lt;/code&gt;, &lt;code&gt;cat&lt;/code&gt;, &lt;code&gt;find&lt;/code&gt;, &lt;code&gt;open&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;🔐 &lt;strong&gt;Encrypted password manager&lt;/strong&gt; (&lt;code&gt;pass&lt;/code&gt;) — credentials encrypted with a master password&lt;/li&gt;
&lt;li&gt;⌨️ &lt;strong&gt;Command history&lt;/strong&gt; and &lt;strong&gt;autocompletion&lt;/strong&gt; (Tab) via &lt;a href="https://github.com/prompt-toolkit/python-prompt-toolkit" rel="noopener noreferrer"&gt;prompt_toolkit&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🔗 &lt;strong&gt;Pipes and redirects&lt;/strong&gt; (&lt;code&gt;|&lt;/code&gt;, &lt;code&gt;&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;gt;&amp;gt;&lt;/code&gt;) forwarded to the system shell&lt;/li&gt;
&lt;li&gt;🚀 Runs any external command (e.g. &lt;code&gt;git&lt;/code&gt;, &lt;code&gt;python&lt;/code&gt;, &lt;code&gt;ping&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Requirements&lt;/h2&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Python 3.10+&lt;/li&gt;
&lt;li&gt;Dependencies listed in &lt;a href="https://github.com/Gabri0699/MyShell/requirements.txt" rel="noopener noreferrer"&gt;requirements.txt&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Installation&lt;/h2&gt;

&lt;/div&gt;
&lt;div class="highlight highlight-source-shell notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;git clone https://github.com/&lt;span class="pl-k"&gt;&amp;lt;&lt;/span&gt;user&lt;span class="pl-k"&gt;&amp;gt;&lt;/span&gt;/MyShell.git
&lt;span class="pl-c1"&gt;cd&lt;/span&gt; MyShell
pip install -r requirements.txt
python myshell.py&lt;/pre&gt;

&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Commands&lt;/h2&gt;

&lt;/div&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;cd&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;…&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/Gabri0699/MyShell" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


</description>
      <category>python</category>
      <category>beginners</category>
      <category>showdev</category>
      <category>ai</category>
    </item>
    <item>
      <title>Hi everyone!</title>
      <dc:creator>Gabriele</dc:creator>
      <pubDate>Sat, 27 Jun 2026 10:54:25 +0000</pubDate>
      <link>https://dev.to/gabri0699/hi-everyone-4cgg</link>
      <guid>https://dev.to/gabri0699/hi-everyone-4cgg</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I'm Gabriele, and I'm here to keep growing as a programmer. I've spent the last 5 years working with C#, and now I'm keen to explore new methodologies and frameworks — and meet some new people along the way!&lt;/p&gt;

&lt;p&gt;I also studied Game Design for 3 years at AIV (the Italian Video Game Academy), and these days, besides my job, I spend my time developing video games — mostly with Unreal Engine, though every now and then I play around with Godot too.&lt;/p&gt;

&lt;p&gt;On top of that, I'd like to use this as a chance to improve my English, so feel free to correct me anytime. 😊&lt;/p&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>career</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
