<?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: Akash Soni</title>
    <description>The latest articles on DEV Community by Akash Soni (@akash2061).</description>
    <link>https://dev.to/akash2061</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%2F1307654%2F6507bf3f-3ac8-4b7a-9e05-3550757d59fe.jpg</url>
      <title>DEV Community: Akash Soni</title>
      <link>https://dev.to/akash2061</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akash2061"/>
    <language>en</language>
    <item>
      <title>Rust-Powered Password Decrypter: Find the String Behind the Hash! 🦀🔒</title>
      <dc:creator>Akash Soni</dc:creator>
      <pubDate>Wed, 01 Jan 2025 17:24:26 +0000</pubDate>
      <link>https://dev.to/akash2061/rust-powered-password-decrypter-find-the-string-behind-the-hash-2335</link>
      <guid>https://dev.to/akash2061/rust-powered-password-decrypter-find-the-string-behind-the-hash-2335</guid>
      <description>&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;In the realm of cybersecurity, hashing passwords is essential for secure data storage. But what if you need to check the integrity of a hash or match it against a list? That’s where &lt;strong&gt;Password Hash-Checker&lt;/strong&gt; comes in!  &lt;/p&gt;

&lt;p&gt;This Rust-powered CLI tool lets you:  &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Convert a string to its SHA-256 hash.
&lt;/li&gt;
&lt;li&gt;Check a given hash against a password list to uncover potential matches.
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;With its simplicity and blazing-fast performance, this tool is perfect for developers, security professionals, or anyone passionate about safeguarding sensitive information.  &lt;/p&gt;




&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;🔑 &lt;strong&gt;String to Hash Conversion&lt;/strong&gt;: Convert any plain text string into its corresponding &lt;strong&gt;SHA-256 hash&lt;/strong&gt; in a snap.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🛡️ &lt;strong&gt;Hash Checking&lt;/strong&gt;: Compare a given &lt;strong&gt;SHA-256 hash&lt;/strong&gt; with a known password list and find matches quickly and efficiently.  &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Where It Works
&lt;/h2&gt;

&lt;p&gt;This tool is ideal for:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🔒 &lt;strong&gt;Security Professionals&lt;/strong&gt;: Verify or reverse-engineer hashes during pentesting.
&lt;/li&gt;
&lt;li&gt;🛠️ &lt;strong&gt;Developers&lt;/strong&gt;: Quickly hash strings or test password security.
&lt;/li&gt;
&lt;li&gt;🌐 &lt;strong&gt;Anyone Concerned with Security&lt;/strong&gt;: Ensure sensitive data is hashed securely.
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;Ready to get started? Here's how you can install and use &lt;strong&gt;Password Hash-Checker&lt;/strong&gt;:  &lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Download the Latest Release
&lt;/h3&gt;

&lt;p&gt;Visit the &lt;a href="https://github.com/akash2061/RUST-Hash-Checker/releases" rel="noopener noreferrer"&gt;Releases Page&lt;/a&gt; or directly &lt;a href="https://github.com/akash2061/RUST-Hash-Checker/releases/latest/download/hash_check" rel="noopener noreferrer"&gt;Download&lt;/a&gt; the latest version for your platform. Grab the &lt;a href="https://github.com/akash2061/RUST-Hash-Checker/releases/download/v1.0.0/pass_list.txt" rel="noopener noreferrer"&gt;pass_list.txt&lt;/a&gt; file containing over &lt;strong&gt;100,000+ passwords&lt;/strong&gt; to use for hash comparison.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Setup
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Open your terminal and navigate to the folder where the executable is downloaded.
&lt;/li&gt;
&lt;li&gt;Copy the executable to the &lt;code&gt;/usr/local/bin&lt;/code&gt; directory using the command:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo cp&lt;/span&gt; ./hash_check /usr/local/bin/  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Grant executable permission:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;chmod&lt;/span&gt; +x /usr/local/bin/hash_check  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Now you can access hash_check from anywhere in the terminal.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;p&gt;1️⃣ Convert a String to Hash&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Hash any plain text string:&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hash_check &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"path_to_password-file.txt"&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="s2"&gt;"hello world"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2️⃣ Convert a Hash to String&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Check if a given hash matches any password in your list:&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;hash_check &lt;span class="nt"&gt;-p&lt;/span&gt; &lt;span class="s2"&gt;"path_to_password-file.txt"&lt;/span&gt; &lt;span class="nt"&gt;-x&lt;/span&gt; &lt;span class="s2"&gt;"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9"&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Error Handling
&lt;/h2&gt;

&lt;p&gt;The tool is designed to handle errors gracefully:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Invalid file paths.&lt;/li&gt;
&lt;li&gt;Unsupported hash formats.&lt;/li&gt;
&lt;li&gt;Missing arguments.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;You'll get clear, colored error messages to guide you.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Project Details
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Find the complete source code on GitHub: &lt;a href="https://github.com/akash2061/RUST-Hash-Checker" rel="noopener noreferrer"&gt;RUST-Hash-Checker Repository&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://www.buymeacoffee.com/akash2061" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fou248eafl225i9lw9vqp.png" alt="Buy-me-a-Coffee" width="200" height="56"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>showdev</category>
      <category>security</category>
      <category>cli</category>
    </item>
    <item>
      <title>Rusty Journal: A Minimal and Efficient CLI Journal &amp; ToDo App</title>
      <dc:creator>Akash Soni</dc:creator>
      <pubDate>Thu, 19 Dec 2024 16:52:29 +0000</pubDate>
      <link>https://dev.to/akash2061/rusty-journal-a-minimal-and-efficient-cli-journal-app-jof</link>
      <guid>https://dev.to/akash2061/rusty-journal-a-minimal-and-efficient-cli-journal-app-jof</guid>
      <description>&lt;h2&gt;
  
  
  Hello, Developers! 👋
&lt;/h2&gt;

&lt;p&gt;I’m excited to share my latest Rust project: &lt;strong&gt;Rusty Journal&lt;/strong&gt;, a lightweight and straightforward CLI journal &amp;amp; ToDo app for managing your daily thoughts and tasks efficiently.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Command-Line Simplicity&lt;/strong&gt;: Write, list, and organize your journal &amp;amp; ToDo entries right from the terminal.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Write, Organize, Repeat&lt;/strong&gt;: Effortlessly create, edit, and manage your daily journal &amp;amp; ToDo entries.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Minimal and Efficient&lt;/strong&gt;: Focus on journaling without unnecessary clutter or distractions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rust-Powered&lt;/strong&gt;: Built with Rust for high performance, exceptional reliability, and modern simplicity, offering a lightweight binary build.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🌟 Why Rusty Journal?
&lt;/h2&gt;

&lt;p&gt;I wanted to create a journaling tool that fits directly into a terminal-based workflow—simple, fast, and effective. Rusty Journal emphasizes ease of use and productivity while showcasing the power of Rust in building practical CLI tools.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccvxjzgk5thlxxr7ypep.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccvxjzgk5thlxxr7ypep.png" alt="Rusty_Journal-Demo" width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  📖 Getting Started
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Download the Latest &lt;a href="https://github.com/akash2061/Rusty-Journal/releases/download/v0.2.1/todo" rel="noopener noreferrer"&gt;Executable&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Setup the Executable&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Open your terminal and navigate to the folder where the executable was downloaded.&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight rust"&gt;&lt;code&gt;&lt;span class="err"&gt;#&lt;/span&gt;&lt;span class="nb"&gt;Copy&lt;/span&gt; &lt;span class="n"&gt;the&lt;/span&gt; &lt;span class="n"&gt;executable&lt;/span&gt; &lt;span class="n"&gt;to&lt;/span&gt; &lt;span class="n"&gt;the&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;usr&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;local&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;bin&lt;/span&gt; &lt;span class="n"&gt;directory&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
&lt;span class="n"&gt;sudo&lt;/span&gt; &lt;span class="n"&gt;cp&lt;/span&gt; &lt;span class="err"&gt;.&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;todo&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;usr&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;local&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;bin&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Finalize Installation
&amp;gt; Grant executable permissions:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight rust"&gt;&lt;code&gt;&lt;span class="n"&gt;sudo&lt;/span&gt; &lt;span class="n"&gt;chmod&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;usr&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;local&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;bin&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;todo&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Use &lt;strong&gt;Rusty Journal&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Now you can manage your journal from any terminal window by simply typing:&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight rust"&gt;&lt;code&gt;&lt;span class="n"&gt;todo&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;V&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  📂 Repository
&lt;/h2&gt;

&lt;p&gt;Explore the project and contribute:&lt;br&gt;
👉 &lt;a href="https://github.com/akash2061/Rusty-Journal" rel="noopener noreferrer"&gt;Rusty Journal on GitHub&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  💬 Feedback
&lt;/h2&gt;

&lt;p&gt;Your suggestions and contributions are always &lt;a href="https://github.com/akash2061/Rusty-Journal" rel="noopener noreferrer"&gt;Welcome&lt;/a&gt;. Feel free to fork, star, or raise an issue.&lt;/p&gt;

&lt;p&gt;Explore more projects on &lt;a href="https://github.com/akash2061" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; and support me on &lt;a href="//buymeacoffee.com/akash2061"&gt;Buy Me a Coffee&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.buymeacoffee.com/akash2061" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1bnfqayqdg5idcz193ag.png" alt="Buy-me-a-Coffee" width="200" height="56"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>showdev</category>
      <category>cli</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Organize Your Gifts Effortlessly with This Notion Template 🎁</title>
      <dc:creator>Akash Soni</dc:creator>
      <pubDate>Tue, 17 Dec 2024 15:42:11 +0000</pubDate>
      <link>https://dev.to/akash2061/organize-your-gifts-effortlessly-with-this-notion-template-4pho</link>
      <guid>https://dev.to/akash2061/organize-your-gifts-effortlessly-with-this-notion-template-4pho</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Are you a developer who struggles to keep track of gifts for birthdays, holidays, and special occasions? I’ve got the perfect solution for you!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Introducing my Gift Tracking Notion Template&lt;/strong&gt; – a fully customizable tool to help you organize and manage your gifting needs. Whether it's tracking budgets, recipients, or even delivery statuses, this template is designed to save you time and hassle.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Track gifts by occasion (birthdays, holidays, etc.)&lt;/li&gt;
&lt;li&gt;Manage gift ideas, budgets, and recipients&lt;/li&gt;
&lt;li&gt;Easily update and modify to fit your needs&lt;/li&gt;
&lt;li&gt;Simple and intuitive interface&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Just $1 and I’ll save you from the chaos of last-minute gift planning. You can thank me later. 😏&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Check it out &lt;a href="//buymeacoffee.com/akash2061/e/346459"&gt;here&lt;/a&gt; and make your gifting experience smoother than ever!&lt;/p&gt;

</description>
      <category>notion</category>
      <category>productivity</category>
      <category>management</category>
      <category>design</category>
    </item>
    <item>
      <title>Meet Your New Productivity Partner: NoteBook-App</title>
      <dc:creator>Akash Soni</dc:creator>
      <pubDate>Sun, 15 Dec 2024 08:00:49 +0000</pubDate>
      <link>https://dev.to/akash2061/meet-your-new-productivity-partner-notebook-app-2p6c</link>
      <guid>https://dev.to/akash2061/meet-your-new-productivity-partner-notebook-app-2p6c</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;A lightweight and efficient notetaking solution to simplify your workflow and organize your thoughts.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl93a1wxvjb8ze1dwn6t6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl93a1wxvjb8ze1dwn6t6.png" alt="NoteBook-Demo" width="800" height="448"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Intuitive UI&lt;/strong&gt;: Simple and distraction-free design.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cross-Platform Compatibility&lt;/strong&gt;: Works seamlessly on major operating systems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fast and Secure&lt;/strong&gt;: Locally stored notes ensure your privacy.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Lightweight Build&lt;/strong&gt;: Optimized for performance, even on low-resource devices.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Why NoteBook App?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Open Source&lt;/strong&gt;: Available on &lt;a href="https://github.com/akash2061/NoteBook-app" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Customizable&lt;/strong&gt;: Built with extensibility in mind.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Community-Driven&lt;/strong&gt;: Your &lt;a href="https://github.com/akash2061/NoteBook-app/issues" rel="noopener noreferrer"&gt;feedback&lt;/a&gt; helps improve the app.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Visit repository: &lt;a href="https://github.com/akash2061/NoteBook-app" rel="noopener noreferrer"&gt;NoteBook-app&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Contribute to &lt;strong&gt;NoteBook App&lt;/strong&gt; via issues, suggestions, or pull requests. Your input improves the app!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Successfully Tested on:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Kali Linux - &lt;code&gt;2024.4 (Linux-6.11.2-amd64)&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Arch Linux - &lt;code&gt;x86_64 (6.9.5-arch1-1)&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Ubuntu - &lt;code&gt;24.04 LTS&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Windows 11 &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Download NoteBook: &lt;a href="https://github.com/akash2061/NoteBook-app/releases" rel="noopener noreferrer"&gt;Releases Page&lt;/a&gt;.
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;For &lt;a href="https://github.com/akash2061/NoteBook-app/releases/tag/v1.1.0" rel="noopener noreferrer"&gt;Debian Based&lt;/a&gt;: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/akash2061/NoteBook-app/releases/download/v1.1.0/NoteBook_1.1.0_amd64.deb" rel="noopener noreferrer"&gt;Setup (.deb)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/akash2061/NoteBook-app/releases/download/v1.1.0/NoteBook_1.1.0_amd64.snap" rel="noopener noreferrer"&gt;Setup (.snap)&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For &lt;a href="https://github.com/akash2061/NoteBook-app/releases/tag/v1.0.0-Linux" rel="noopener noreferrer"&gt;Arch Linux&lt;/a&gt;: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/akash2061/NoteBook-app/releases/download/v1.0.0-Linux/NoteBook-1.0.0.pacman" rel="noopener noreferrer"&gt;Setup (.pacman)&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For &lt;a href="https://github.com/akash2061/NoteBook-app/releases/tag/v1.0.0" rel="noopener noreferrer"&gt;Windows&lt;/a&gt;: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/akash2061/NoteBook-app/releases/download/v1.0.0/notebook-1.0.0-setup.exe" rel="noopener noreferrer"&gt;Setup&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Note: Navigate to downloads folder &amp;amp; run:&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;For .pacman:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;pacman &lt;span class="nt"&gt;-U&lt;/span&gt; NoteBook_&amp;lt;version&amp;gt;.pacman 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;For .deb:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;dpkg &lt;span class="nt"&gt;-i&lt;/span&gt; NoteBook_&amp;lt;version&amp;gt;_amd64.deb 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;For .snap:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;snap &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;--dangerous&lt;/span&gt; NoteBook_&amp;lt;version&amp;gt;_amd64.snap
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Let’s Connect
&lt;/h2&gt;

&lt;p&gt;If you find the &lt;strong&gt;NoteBook App&lt;/strong&gt; helpful, don’t forget to show your support:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Follow me on GitHub&lt;/strong&gt;: &lt;a href="https://github.com/akash2061/" rel="noopener noreferrer"&gt;akash2061&lt;/a&gt; &lt;code&gt;to stay updated with my latest projects.&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Connect with me on LinkedIn&lt;/strong&gt;: &lt;a href="https://www.linkedin.com/in/akash-soni-01475924b/" rel="noopener noreferrer"&gt;Akash Soni&lt;/a&gt; &lt;code&gt;for networking and collaboration opportunities.&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Visit my Portfolio&lt;/strong&gt;: &lt;a href="https://akashsoni.netlify.app/" rel="noopener noreferrer"&gt;Akash Soni&lt;/a&gt; – &lt;code&gt;Explore my projects and achievements.&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Join the Journey
&lt;/h2&gt;

&lt;p&gt;Building this app has been an incredible experience, and I’d love for you to be a part of it. Let’s make notetaking simple and enjoyable together!&lt;/p&gt;

&lt;p&gt;Feel free to share your thoughts or feature requests on &lt;a href="https://github.com/akash2061/" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;. Together, we can make NoteBook App the ultimate tool for productivity and creativity.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Let’s grow and build amazing things together! &lt;strong&gt;Thank you&lt;/strong&gt; for your support, and happy noting! 📝&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://www.buymeacoffee.com/akash2061" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1bnfqayqdg5idcz193ag.png" alt="Buy-me-a-Coffee" width="200" height="56"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>development</category>
      <category>showdev</category>
    </item>
    <item>
      <title>My Journey in Rust &amp; Tauri: Creating a Simple Pomodoro Timer App</title>
      <dc:creator>Akash Soni</dc:creator>
      <pubDate>Sat, 14 Dec 2024 05:26:14 +0000</pubDate>
      <link>https://dev.to/akash2061/my-journey-in-rust-tauri-creating-a-simple-pomodoro-timer-app-ad9</link>
      <guid>https://dev.to/akash2061/my-journey-in-rust-tauri-creating-a-simple-pomodoro-timer-app-ad9</guid>
      <description>&lt;h2&gt;
  
  
  Pomodoro Timer App
&lt;/h2&gt;

&lt;p&gt;Welcome to the Pomodoro Timer App! This desktop application is designed for users who want an efficient, distraction-free timer to enhance focus and productivity. Built using Rust and Tauri v2, the app features customizable alerts and a modern user interface to streamline your workflow.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Visit &lt;a href="https://github.com/akash2061/Pomodoro-Timer-App-Rust" rel="noopener noreferrer"&gt;Project&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i9qk04fij36qhd4it7x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i9qk04fij36qhd4it7x.png" alt="Application_Demo" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Customizable Pomodoro Timer&lt;/strong&gt;: Set work and break intervals according to your productivity style.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Lightweight and Secure&lt;/strong&gt;: Built with Rust and Tauri, ensuring a lightweight footprint and a secure, efficient backend.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Sound Alerts&lt;/strong&gt;: Custom sounds play to signal the end of each session, enhancing productivity through auditory cues.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Compatible&lt;/strong&gt;: Exclusively designed for Linux &amp;amp; Windows-11 environments for optimal performance.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Linux OS:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Install &lt;a href="https://github.com/akash2061/Pomodoro-Timer-App-Rust/releases/download/v0.1.0/Pomodoro-Timer_0.1.0_amd64.deb" rel="noopener noreferrer"&gt;.deb&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Navigate to the downloaded file's directory&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;cd&lt;/span&gt; &lt;span class="n"&gt;path&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;to&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;downloaded&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;file&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Install the package&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;sudo&lt;/span&gt; &lt;span class="n"&gt;dpkg&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="no"&gt;Pomodoro&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="no"&gt;Timer_&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="no"&gt;VERSION&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;deb&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Run the Pomodoro Timer directly from the terminal&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="no"&gt;Pomodoro&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="no"&gt;Timer&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Install &lt;a href="https://github.com/akash2061/Pomodoro-Timer-App-Rust/releases/download/v0.1.0/Pomodoro-Timer-0.1.0-1.x86_64.rpm" rel="noopener noreferrer"&gt;.rpm&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Navigate to the downloaded file's directory&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;cd&lt;/span&gt; &lt;span class="n"&gt;path&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;to&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;downloaded&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="n"&gt;file&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Install the package using RPM&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;sudo&lt;/span&gt; &lt;span class="n"&gt;rpm&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="no"&gt;Pomodoro&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="no"&gt;Timer&lt;/span&gt;&lt;span class="o"&gt;-&amp;lt;&lt;/span&gt;&lt;span class="no"&gt;VERSION&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;rpm&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Run the app&lt;/span&gt;
&lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="no"&gt;Pomodoro&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="no"&gt;Timer&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Windows 11:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Install &lt;a href="https://github.com/akash2061/Pomodoro-Timer-App-Rust/releases/download/v0.1.0/Pomodoro-Timer_0.1.0_x64-setup.exe" rel="noopener noreferrer"&gt;Setup&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Download the .exe setup file from the GitHub releases.&lt;br&gt;
Run the installer and follow the on-screen instructions.&lt;br&gt;
Launch the app from the Start menu or desktop shortcut.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Technologies Used
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Rust&lt;/strong&gt;: Core language for developing the application’s backend.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tauri v2&lt;/strong&gt;: Framework for building lightweight, cross-platform desktop apps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;React&lt;/strong&gt;: Frontend built with React for responsive and interactive UI.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Set Timer&lt;/strong&gt;: Input your preferred Pomodoro interval (work and break times) and start the timer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sound Notification&lt;/strong&gt;: The app uses Rodio for sound alerts, helping signal your work/break transitions clearly.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Project Details
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Find the complete source code on GitHub: &lt;a href="https://github.com/akash2061/Pomodoro-Timer-App-Rust" rel="noopener noreferrer"&gt;Pomodoro Timer App Repository&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://www.buymeacoffee.com/akash2061" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fou248eafl225i9lw9vqp.png" alt="Buy-me-a-Coffee" width="200" height="56"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>showdev</category>
      <category>opensource</category>
      <category>performance</category>
    </item>
  </channel>
</rss>
