<?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: Alen Mangattu</title>
    <description>The latest articles on DEV Community by Alen Mangattu (@alen_mangattu_24317d21636).</description>
    <link>https://dev.to/alen_mangattu_24317d21636</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%2F3484178%2Ff5fd4cca-25a8-4eba-8ad2-ae44bc037d3b.png</url>
      <title>DEV Community: Alen Mangattu</title>
      <link>https://dev.to/alen_mangattu_24317d21636</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alen_mangattu_24317d21636"/>
    <language>en</language>
    <item>
      <title>Discovering Telegram Bots Just Got Easier: A Directory for Developers and Users</title>
      <dc:creator>Alen Mangattu</dc:creator>
      <pubDate>Thu, 22 Jan 2026 21:51:18 +0000</pubDate>
      <link>https://dev.to/alen_mangattu_24317d21636/discovering-telegram-bots-just-got-easier-a-directory-for-developers-and-users-2b5</link>
      <guid>https://dev.to/alen_mangattu_24317d21636/discovering-telegram-bots-just-got-easier-a-directory-for-developers-and-users-2b5</guid>
      <description>&lt;p&gt;If you’ve ever built a Telegram bot, you know one challenge is getting it discovered. Unlike web apps or mobile apps, Telegram bots live in a somewhat hidden ecosystem  and finding the right users or other developers can feel like searhing in the dark.&lt;/p&gt;

&lt;p&gt;I recently launched TeleHunt, a free directory for Telegram bots. It’s designed to help both developers and users:&lt;/p&gt;

&lt;p&gt;Developers can submit their bots for free and get visibility among users actively looking for bots in their category.&lt;/p&gt;

&lt;p&gt;Users can browse a curated directory of high quality bots from productivity and automation to AI and crypto.&lt;/p&gt;

&lt;p&gt;Here’s why it’s useful for developers:&lt;/p&gt;

&lt;p&gt;Free Exposure — your bot appears in a centralized, searchable directory.&lt;/p&gt;

&lt;p&gt;Community Discovery — get noticed by other bot developers and tech enthusiasts.&lt;/p&gt;

&lt;p&gt;Minimal Setup — listing your bot takes under a minute.&lt;/p&gt;

&lt;p&gt;Whether you’ve built a side-project bot, a utility bot, or an automation tool, this is an opportunity to get your work in front of people who actually want to use bots.&lt;/p&gt;

&lt;p&gt;You can check it out here: &lt;a href="https://telehunt.org" rel="noopener noreferrer"&gt;https://telehunt.org&lt;/a&gt;&lt;/p&gt;

</description>
      <category>resources</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
    </item>
    <item>
      <title>I Realized I Spend 30% of My Terminal Time in Chrome Tabs</title>
      <dc:creator>Alen Mangattu</dc:creator>
      <pubDate>Sat, 06 Sep 2025 23:59:44 +0000</pubDate>
      <link>https://dev.to/alen_mangattu_24317d21636/i-realized-i-spend-30-of-my-terminal-time-in-chrome-tabs-1001</link>
      <guid>https://dev.to/alen_mangattu_24317d21636/i-realized-i-spend-30-of-my-terminal-time-in-chrome-tabs-1001</guid>
      <description>&lt;h2&gt;
  
  
  The Problem Every Developer Faces
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Scene: It's 2 AM, you need to find all files modified in the last week, and you're staring at the terminal cursor blinking mockingly.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We've all been there. You KNOW there's a command for this. You've used it before. But is it &lt;code&gt;find . -mtime -7&lt;/code&gt; or &lt;code&gt;find . -mtime +7&lt;/code&gt;? Or was it &lt;code&gt;-ctime&lt;/code&gt;? &lt;/p&gt;

&lt;p&gt;Off to Google again. 🤦‍♂️&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'm Building
&lt;/h2&gt;

&lt;p&gt;GCLI (coming soon) bridges the gap between knowing what you want and remembering the syntax.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Instead of:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Googling "linux find files modified last week"&lt;/li&gt;
&lt;li&gt;Scrolling through Stack Overflow answers&lt;/li&gt;
&lt;li&gt;Testing commands on dummy files first&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;You type:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;gcli "show me files modified in the past week"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You get:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;find . -mtime -7 -type f&lt;/code&gt;&lt;br&gt;
&lt;em&gt;Finds files (-type f) modified within the last 7 days (-mtime -7)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Not Just Use ChatGPT?
&lt;/h2&gt;

&lt;p&gt;Fair question! But:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ChatGPT might give you a 200-word explanation when you need a quick command&lt;/li&gt;
&lt;li&gt;It's not optimized for CLI-specific tasks&lt;/li&gt;
&lt;li&gt;You have to context-switch to a browser/app&lt;/li&gt;
&lt;li&gt;Commands need to be safe and tested&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GCLI is built specifically for this use case.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Commands You'll Never Google Again
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;"compress this directory" &lt;/li&gt;
&lt;li&gt;"show disk usage by folder"&lt;/li&gt;
&lt;li&gt;"kill process on port 8080"&lt;/li&gt;
&lt;li&gt;"create symbolic link"&lt;/li&gt;
&lt;li&gt;"change file permissions recursively"&lt;/li&gt;
&lt;li&gt;"show git commits from last month"&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Current Status
&lt;/h2&gt;

&lt;p&gt;Working on the private beta. If you're interested in early access, drop your email at &lt;a href="https://gcli.io" rel="noopener noreferrer"&gt;https://gcli.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What CLI command do you Google most often? Let me know in the comments - might help prioritize features!&lt;/p&gt;

&lt;h1&gt;
  
  
  cli #developer #productivity #terminal
&lt;/h1&gt;

</description>
    </item>
  </channel>
</rss>
