<?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: IAM VAAR</title>
    <description>The latest articles on DEV Community by IAM VAAR (@iamvaar).</description>
    <link>https://dev.to/iamvaar</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%2F1968503%2F28046674-6585-4946-8e36-b30b34e52521.png</url>
      <title>DEV Community: IAM VAAR</title>
      <link>https://dev.to/iamvaar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamvaar"/>
    <language>en</language>
    <item>
      <title>I built an opensource Android AI automation agent</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Wed, 01 Oct 2025 20:42:07 +0000</pubDate>
      <link>https://dev.to/iamvaar/i-built-an-opensource-android-ai-automation-agent-1k0i</link>
      <guid>https://dev.to/iamvaar/i-built-an-opensource-android-ai-automation-agent-1k0i</guid>
      <description>&lt;h2&gt;
  
  
  Introducing heybro: The Open-Source Android AI Agent for On-Device Automation
&lt;/h2&gt;

&lt;p&gt;In the ever-evolving landscape of mobile technology, the desire for seamless and intelligent automation has never been greater. Imagine an AI agent on your Android device that can understand your needs and automate tasks without being tethered to a computer. This is now a reality with &lt;strong&gt;heybro&lt;/strong&gt;, a standalone, open-source Android AI automation agent built with Flutter.&lt;/p&gt;

&lt;p&gt;This post will take a deep dive into heybro, exploring its features, how it works, and how you can get started with this exciting project.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is heybro?
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;heybro&lt;/strong&gt; is a powerful, standalone Android AI agent designed for complete on-device automation. Developed for educational and research purposes, it showcases the potential of running AI-powered tasks directly on your Android device. The most compelling aspect of heybro is its independence; once set up, it doesn't require a computer to function, offering a truly mobile automation experience.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features
&lt;/h3&gt;

&lt;p&gt;heybro is packed with features that make it a noteworthy project for developers and AI enthusiasts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Complete On-Device Automation:&lt;/strong&gt; heybro is not just a concept; it's a functional tool that brings the power of AI-driven automation to your Android device.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Standalone Functionality:&lt;/strong&gt; After the initial setup, heybro operates entirely on your device. This means no need for a constant connection to a computer, offering unparalleled portability and convenience.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built with Flutter and Kotlin:&lt;/strong&gt; The project leverages the power of Flutter for a cross-platform-ready UI and Kotlin for native Android performance, making it a robust and well-engineered application.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open-Source:&lt;/strong&gt; As an open-source project, heybro invites developers to explore, learn from, and contribute to its codebase. This fosters a community of innovation and collaboration.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Getting Started with heybro
&lt;/h3&gt;

&lt;p&gt;One of the best things about heybro is how easy it is to get up and running. Here’s a step-by-step guide to installing and setting up the agent on your Android device:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Clone the Repository&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First, you'll need to clone the heybro repository from GitHub. Open your terminal and run the following commands:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/iamvaar-dev/heybro
&lt;span class="nb"&gt;cd &lt;/span&gt;heybro
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Install Dependencies&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once you have the code, you need to fetch the necessary Flutter packages. Run the following command in the project directory:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;flutter pub get
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Choose Your Testing Method&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You have a few options for running the app:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Android Emulator:&lt;/strong&gt; If you have an Android emulator set up, simply run:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;flutter run
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Physical Device:&lt;/strong&gt; Connect your Android device to your computer via USB and make sure USB debugging is enabled in the Developer Options. Then, run:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;flutter run
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Build an APK:&lt;/strong&gt; To create a standalone installation file, you can build an APK:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;flutter build apk
&lt;/code&gt;&lt;/pre&gt;


&lt;p&gt;The APK file will be located in &lt;code&gt;build/app/outputs/flutter-apk/app-release.apk&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;4. API Key Setup&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;heybro requires an API key from Google's AI Studio to function.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get your API key from &lt;a href="https://aistudio.google.com/app/api-keys" rel="noopener noreferrer"&gt;Google AI Studio&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Open the heybro app on your device and navigate to the settings.&lt;/li&gt;
&lt;li&gt;Paste your API key in the designated field.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;5. Grant Necessary Permissions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For heybro to work its magic, you need to grant it a couple of special permissions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Overlay Permission:&lt;/strong&gt; Go to &lt;code&gt;Settings &amp;gt; Apps &amp;gt; HeyBro &amp;gt; Display over other apps&lt;/code&gt; and enable it. This allows the agent to draw over other applications.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Accessibility Service:&lt;/strong&gt; Navigate to &lt;code&gt;Settings &amp;gt; Accessibility &amp;gt; HeyBro&lt;/code&gt; and enable the accessibility service. This is crucial for the agent to interact with the screen and perform automated tasks.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  A Call for Contributions
&lt;/h3&gt;

&lt;p&gt;heybro is more than just a tool; it's a community-driven project with a lot of potential. If you're passionate about AI, mobile development, or automation, you're encouraged to contribute. Whether it's by reporting issues, suggesting new features, or submitting pull requests, your involvement can help shape the future of this innovative project.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;heybro is a testament to the power of on-device AI and the vibrant open-source community. It's an excellent project for anyone looking to explore the intersection of artificial intelligence and mobile automation. With its straightforward setup and powerful capabilities, heybro is a project to watch.&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href="https://github.com/iamvaar-dev/heybro" rel="noopener noreferrer"&gt;heybro GitHub repository&lt;/a&gt; today, give it a star, and get ready to unlock the future of automation on your Android device!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>android</category>
      <category>opensource</category>
      <category>programming</category>
    </item>
    <item>
      <title>Here is How I scaled my Flutter game to 700+ downloads in 4 months — purely with organic marketing</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Fri, 14 Mar 2025 07:57:13 +0000</pubDate>
      <link>https://dev.to/iamvaar/here-is-how-i-scaled-my-flutter-game-to-700-downloads-in-4-months-purely-with-organic-marketing-pjo</link>
      <guid>https://dev.to/iamvaar/here-is-how-i-scaled-my-flutter-game-to-700-downloads-in-4-months-purely-with-organic-marketing-pjo</guid>
      <description>&lt;p&gt;Hey folks,  &lt;/p&gt;

&lt;p&gt;Wanted to share a little win from my mobile game dev journey! I built a game called &lt;a href="https://play.google.com/store/apps/details?id=com.vaars.slidingpuzzlepro" rel="noopener noreferrer"&gt;Sliding Puzzle Pro&lt;/a&gt; using Flutter — a clean, classic sliding puzzle — and it just crossed &lt;strong&gt;700+ downloads&lt;/strong&gt; in &lt;strong&gt;4 months&lt;/strong&gt; without spending a cent on ads. 🎉  &lt;/p&gt;

&lt;p&gt;Here’s how I managed to get there with organic marketing (and a lot of trial and error):  &lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;1. ASO is underrated.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
I treated my Play Store page like a landing page. Researched niche puzzle-related keywords, made sure the description felt human (not spammy), and polished the icon/screenshots to stand out. Surprisingly, a good description really boosts impressions.  &lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;2. Community &amp;gt; Self-promo.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
I hung out in puzzle-game-loving communities (Reddit, Facebook, Discord), joined conversations, and only dropped the link when it made sense. People actually asked for the link when they saw the progress updates — that felt way better than begging for downloads.  &lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;3. Fellow devs are awesome.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
I posted on Flutter and indie dev forums, sharing the tech side of things (Flutter performance tweaks, UI design ideas, etc.). Other devs got curious and tried the game too. Some even shared it further.  &lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;4. Your first players are gold.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
I responded to every review and encouraged early players to share with friends. Surprisingly, this worked better than I expected — puzzle fans love friendly competition.  &lt;/p&gt;




&lt;p&gt;I’m not saying this is "viral success" territory, but it’s a huge win for me as a first-time mobile game dev. If you’re struggling to get traction, &lt;strong&gt;focus on making the game polished and find your niche audience first&lt;/strong&gt; — they’ll market it better than any ad.  &lt;/p&gt;

&lt;p&gt;Would love to hear your thoughts — what’s worked (or flopped) for you when marketing your game? 👇  &lt;/p&gt;

</description>
      <category>gamedev</category>
      <category>android</category>
      <category>ios</category>
      <category>flutter</category>
    </item>
    <item>
      <title>Built a Windows App with flutter and made it opensource</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Tue, 12 Nov 2024 16:09:48 +0000</pubDate>
      <link>https://dev.to/iamvaar/built-a-windows-app-with-flutter-and-made-it-opensource-nk4</link>
      <guid>https://dev.to/iamvaar/built-a-windows-app-with-flutter-and-made-it-opensource-nk4</guid>
      <description>&lt;h3&gt;
  
  
  Introduction
&lt;/h3&gt;

&lt;p&gt;Hey everyone! I recently completed a project that I’m really excited to share: a simple Pomodoro timer app called &lt;strong&gt;Focus Forge&lt;/strong&gt;, built for Windows with Flutter. And the best part? It’s open-source!  &lt;/p&gt;

&lt;p&gt;I started this project to tackle my own productivity struggles, hoping it could help other developers, students, and anyone looking to stay focused. I chose Flutter because I wanted to explore how well it could handle a desktop app, especially for Windows. So if you're curious about building desktop apps with Flutter, or you’re just interested in how this project came together, this post is for you!&lt;/p&gt;




&lt;h3&gt;
  
  
  Why Flutter for a Windows App?
&lt;/h3&gt;

&lt;p&gt;Using Flutter to build a Windows app might sound a bit unconventional since Flutter is primarily known for mobile apps. But Flutter’s support for desktop has improved a lot recently, and I was eager to test it out. The idea of building a cross-platform app with one codebase was appealing—after all, with a little extra tweaking, Focus Forge could easily be ported to Mac and Linux in the future.&lt;/p&gt;

&lt;p&gt;Also, Flutter has great community support and tons of libraries, making it easier to work quickly and integrate features like custom animations, notifications, and state management.&lt;/p&gt;




&lt;h3&gt;
  
  
  What Focus Forge Does: A Simple Pomodoro Timer
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Focus Forge&lt;/strong&gt; is a Pomodoro timer app designed to keep you focused and productive. If you’re not familiar, the Pomodoro Technique breaks work into intervals (usually 25 minutes) with short breaks in between. It’s a popular method for avoiding burnout and staying on track, especially when juggling multiple tasks.&lt;/p&gt;

&lt;p&gt;With Focus Forge, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Set custom work and break intervals to match your own pace.&lt;/li&gt;
&lt;li&gt;Get gentle notifications when it’s time for a break or to resume work.&lt;/li&gt;
&lt;li&gt;Track your progress and see how many “Pomodoros” you’ve completed throughout the day.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s nothing too complex—just a reliable, lightweight tool to help you stay focused.&lt;/p&gt;




&lt;h3&gt;
  
  
  Building the App: Key Challenges and Solutions
&lt;/h3&gt;

&lt;p&gt;Creating Focus Forge wasn’t without its challenges. Here are a few things I ran into while building it:&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Setting Up Flutter for Windows Desktop
&lt;/h4&gt;

&lt;p&gt;First, I had to make sure I had the right environment for desktop development. This meant ensuring my Flutter SDK was up-to-date and enabling desktop support. Thankfully, Flutter’s desktop setup has come a long way and is well-documented. I ran into a few platform-specific quirks but nothing major.&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Timer Precision
&lt;/h4&gt;

&lt;p&gt;A timer might seem like a simple feature, but keeping it precise on desktop can be tricky. Flutter’s &lt;code&gt;Timer&lt;/code&gt; class works well, but I needed to make sure it didn’t lag even if the app was minimized or running in the background. This meant testing and refining the timer logic a few times to get it right.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Minimalist, Distraction-Free UI
&lt;/h4&gt;

&lt;p&gt;Designing the UI was fun but challenging, as I wanted a minimalistic look that doesn’t distract the user. I used Flutter’s built-in widgets and customized them to keep things simple and clean. The end result is a focused, clutter-free design that helps users stay on task.&lt;/p&gt;

&lt;h4&gt;
  
  
  4. Making It Open Source
&lt;/h4&gt;

&lt;p&gt;Once I had a solid version of Focus Forge running, I decided to make it open-source. I figured, why not share this with the community? Plus, since Flutter desktop apps are still relatively new, it might be a helpful resource for other developers looking to do something similar. You can check out the repo, tweak the code, and even suggest new features if you like.&lt;/p&gt;




&lt;h3&gt;
  
  
  Why Open Source?
&lt;/h3&gt;

&lt;p&gt;I’m a big believer in open source, and I’ve personally learned so much from other developers’ projects. By making Focus Forge open-source, I wanted to contribute back to the community. Also, open-source projects often get feedback and improvements from the community, which makes them better over time.  &lt;/p&gt;

&lt;p&gt;Feel free to check out &lt;strong&gt;&lt;a href="https://github.com/iamvaar-dev/pomodoro-timer" rel="noopener noreferrer"&gt;Focus Forge on GitHub&lt;/a&gt;&lt;/strong&gt;. You’re welcome to fork it, suggest new features, or even just give it a try to see how it works!&lt;/p&gt;




&lt;h3&gt;
  
  
  What’s Next?
&lt;/h3&gt;

&lt;p&gt;Focus Forge was an experiment in building a functional desktop app with Flutter, and it’s made me excited to explore more in this space. There are plenty of features I’d love to add in the future, like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Adding sound options for notifications&lt;/li&gt;
&lt;li&gt;Creating a dark mode&lt;/li&gt;
&lt;li&gt;Adding session history so users can review their progress&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s just the beginning, but I hope Focus Forge can be a helpful tool for anyone who needs a bit of help staying focused. And if you have ideas, suggestions, or want to contribute, you’re more than welcome!&lt;/p&gt;




&lt;h3&gt;
  
  
  Wrapping Up
&lt;/h3&gt;

&lt;p&gt;If you’re a Flutter dev curious about building for desktop, I encourage you to give it a shot. Building Focus Forge taught me a lot, and it’s really rewarding to see how much Flutter can do beyond mobile apps. I’m looking forward to seeing what the community thinks and, hopefully, getting some feedback from other developers. &lt;/p&gt;

&lt;p&gt;Thanks for reading, and happy coding!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>flutter</category>
      <category>tutorial</category>
      <category>programming</category>
    </item>
    <item>
      <title>Built a Slack Employee recognition bot with Nextjs (free code link included)</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Mon, 23 Sep 2024 20:29:32 +0000</pubDate>
      <link>https://dev.to/iamvaar/built-a-slack-employee-recognition-bot-with-nextjs-free-code-link-included-4gkc</link>
      <guid>https://dev.to/iamvaar/built-a-slack-employee-recognition-bot-with-nextjs-free-code-link-included-4gkc</guid>
      <description>&lt;p&gt;In today's fast-paced work environment, employee retention is one of the key challenges faced by companies across the globe. High turnover rates result in lost productivity, increased hiring costs, and disruptions in team dynamics. One simple solution to this growing problem? Implementing an &lt;strong&gt;Employee Recognition Bot&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;A study by Gallup found that highly engaged teams show a 21% greater profitability and that 30% of employees are less likely to consider leaving their current company when they feel recognized for their contributions. Recognition not only boosts morale but also strengthens loyalty to the company. With Slack being the communication hub for many businesses, creating a recognition bot directly integrated into Slack makes it easy to keep your employees motivated and feeling appreciated.&lt;/p&gt;

&lt;h2&gt;
  
  
  Enter the Recognition Bot
&lt;/h2&gt;

&lt;p&gt;I recently developed a &lt;strong&gt;Slack Employee Recognition Bot&lt;/strong&gt; using Next.js, which allows managers and team members to effortlessly recognize achievements, milestones, or even daily contributions of their colleagues. This bot helps foster a culture of appreciation and acknowledgment, driving engagement and reducing employee churn.&lt;/p&gt;

&lt;p&gt;You can check out the full code and get started with the bot here: &lt;a href="https://github.com/iamvaar-dev/recognitionbot" rel="noopener noreferrer"&gt;GitHub Repository - Recognition Bot&lt;/a&gt;.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Manual Recognition&lt;/strong&gt;: Employees or managers can manually send recognition messages directly from Slack.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personalized Mentions&lt;/strong&gt;: The bot tags employees by username, making each recognition feel personal.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Easy Integration&lt;/strong&gt;: Built with Next.js and fully integrated into Slack without the need for a complex web interface.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cost-Effective&lt;/strong&gt;: This bot comes with no extra cost for setup and can be hosted easily with free deployment options.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How Does It Decrease Employee Turnover?
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Increased Engagement&lt;/strong&gt;: Employees who feel valued tend to be more engaged. Recognizing them for their hard work increases their emotional connection to the company.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Boost in Morale&lt;/strong&gt;: Regular recognition builds a positive work culture, where employees are not only working for the paycheck but also for the appreciation they receive.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Improved Retention&lt;/strong&gt;: When employees are consistently recognized, they are 30% less likely to seek opportunities elsewhere. This simple gesture has a profound impact on their decision to stay with the company long-term.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By incorporating a &lt;strong&gt;Recognition Bot&lt;/strong&gt; into your workplace, you can directly address one of the root causes of high turnover—lack of appreciation. It's a scalable, low-cost solution that pays back in productivity, engagement, and ultimately, retention.&lt;/p&gt;

&lt;p&gt;Try out the bot today and start building a more engaged, loyal workforce. Explore the code here: &lt;a href="https://github.com/iamvaar-dev/recognitionbot" rel="noopener noreferrer"&gt;Recognition Bot GitHub&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>react</category>
    </item>
    <item>
      <title>I built my first OpenSource project</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Sun, 22 Sep 2024 05:56:27 +0000</pubDate>
      <link>https://dev.to/iamvaar/i-built-my-first-opensource-project-4340</link>
      <guid>https://dev.to/iamvaar/i-built-my-first-opensource-project-4340</guid>
      <description>&lt;p&gt;🚀 I’m excited to introduce my first Open Source project, the RecognitionBot for Slack workplaces! This bot is designed to enhance workplace culture by making it easier for teams to give recognition and celebrate each other’s achievements, all within Slack. 🎉&lt;/p&gt;

&lt;p&gt;With RecognitionBot, you can send personalized recognition messages to your teammates in just a few clicks. Whether it's highlighting someone's hard work, celebrating team wins, or boosting morale, this bot brings a sense of appreciation right into your daily communication. The bot is fully customizable and designed to be user-friendly for teams of all sizes. 👏&lt;/p&gt;

&lt;p&gt;I've made this project open-source to encourage collaboration from the developer community. Feel free to check out the code, suggest improvements, or contribute new features! I believe that together, we can make this bot even better and help workplaces build stronger, more positive cultures. 🚀&lt;/p&gt;

&lt;p&gt;If you want to try out RecognitionBot or contribute to the project, head over to the &lt;a href="https://github.com/iamvaar-dev/recognitionbot/" rel="noopener noreferrer"&gt;GitHub repository&lt;/a&gt;&lt;br&gt;
Let’s work together to bring recognition and appreciation to every workplace! 🙌&lt;/p&gt;

&lt;h1&gt;
  
  
  OpenSource #SlackBot #RecognitionBot #WorkplaceCulture #DevCommunity #EmployeeRecognition #Teamwork
&lt;/h1&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>nextjs</category>
      <category>react</category>
    </item>
    <item>
      <title>I built an OpenSource Slack Employee Recognition Bot using NextJS</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Thu, 19 Sep 2024 18:07:21 +0000</pubDate>
      <link>https://dev.to/iamvaar/i-built-an-opensource-slack-employee-recognition-bot-using-nextjs-1jjj</link>
      <guid>https://dev.to/iamvaar/i-built-an-opensource-slack-employee-recognition-bot-using-nextjs-1jjj</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I'm excited to share my new open-source project: RecognitionBot! 🎉 It's a Slack bot designed to help companies recognize and celebrate their employees effortlessly.&lt;/p&gt;

&lt;p&gt;Features:&lt;/p&gt;

&lt;p&gt;Free &amp;amp; Open Source: Available on GitHub for anyone to use and customize.&lt;br&gt;
Easy Integration: Seamlessly integrates with Slack.&lt;br&gt;
Customizable: Tailor recognition messages to fit your company’s culture.&lt;br&gt;
Whether you're looking to enhance employee morale or simply make recognition easier, this bot can help. Check it out on &lt;a href="https://github.com/iamvaar-dev/recognitionbot" rel="noopener noreferrer"&gt;GitHub &lt;/a&gt;and let me know what you think!&lt;/p&gt;

&lt;p&gt;Feel free to contribute or suggest improvements!&lt;/p&gt;

&lt;p&gt;GitHub Link: &lt;a href="https://github.com/iamvaar-dev/recognitionbot" rel="noopener noreferrer"&gt;GitHub Repo&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
Looking forward to your feedback!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>nextjs</category>
      <category>react</category>
    </item>
    <item>
      <title>I built a NOCODE AI tool for my brother to write personalised Cover Letters based on Job Description</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Fri, 30 Aug 2024 19:14:02 +0000</pubDate>
      <link>https://dev.to/iamvaar/i-built-a-nocode-ai-tool-for-my-brother-to-write-personalised-cover-letters-based-on-job-description-55ld</link>
      <guid>https://dev.to/iamvaar/i-built-a-nocode-ai-tool-for-my-brother-to-write-personalised-cover-letters-based-on-job-description-55ld</guid>
      <description>&lt;p&gt;My brother was constantly looking for a job and kept on applying for hundreds of jobs daily. And one thing is for sure he is wasting his time more on writing personalised cover letters based on the job description. &lt;/p&gt;

&lt;p&gt;So as a No-Code Developer, I have created an AI NO-CODE tool specially for my brother, where he can generate personalised AI cover letters based on the job description. But shockingly my brother got a job please congratulate him by commenting below.&lt;/p&gt;

&lt;p&gt;Later I asked my friends can I build a SaaS version of this tool they said they were excited. So I build &lt;a href="https://gptcoverletter.xyz" rel="noopener noreferrer"&gt;Gptcoverletter&lt;/a&gt;. But later I was asked how I made it within 1 day. If anybody is interested in learning just Comment below so that I can make a free series of posts where I will teach you guys how to build an AI cover letter SaaS website that too within 1 day.&lt;/p&gt;

&lt;p&gt;And btw please note as per my previous post I have been developing free MVPs for anybody for some time so comment below if you want to have an MVP for your idea.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>openai</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>OK Now I am building MVPs for free</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Tue, 27 Aug 2024 20:40:13 +0000</pubDate>
      <link>https://dev.to/iamvaar/ok-now-i-am-building-mvps-for-free-16if</link>
      <guid>https://dev.to/iamvaar/ok-now-i-am-building-mvps-for-free-16if</guid>
      <description>&lt;p&gt;I would love to start building my portfolio so I wanna build free MVP's for sometime. I am not kidding I don't charge a single penny so cool right but I am expecting a shoutout to me only if you like my work. Comment below anybody is interested or not&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>javascript</category>
      <category>ai</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I wanna build AI Chatbots for businesses but without 3rd party API</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Tue, 27 Aug 2024 09:08:39 +0000</pubDate>
      <link>https://dev.to/iamvaar/i-wanna-build-ai-chatbots-for-businesses-but-without-3rd-party-api-3l81</link>
      <guid>https://dev.to/iamvaar/i-wanna-build-ai-chatbots-for-businesses-but-without-3rd-party-api-3l81</guid>
      <description>&lt;p&gt;As per my &lt;a href="https://dev.to/iamvaar/wanna-build-an-ai-chatbot-saas-but-2dji"&gt;previous post here&lt;/a&gt; I want to collaborate with excited developers out there who are craving to work with other people for free to build their portfolio. So Comment below or send an email mentioned in my previous post. Let's together start avoiding dominance in the AI industry&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>Wanna Build an AI chatbot SaaS but...</title>
      <dc:creator>IAM VAAR</dc:creator>
      <pubDate>Fri, 23 Aug 2024 08:25:54 +0000</pubDate>
      <link>https://dev.to/iamvaar/wanna-build-an-ai-chatbot-saas-but-2dji</link>
      <guid>https://dev.to/iamvaar/wanna-build-an-ai-chatbot-saas-but-2dji</guid>
      <description>&lt;p&gt;Hey, my fellow devs out there I just completed my Btech and had no interest in doing a job. So I have decided to launch my own AI SaaS. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The reason behind the idea:&lt;/strong&gt;&lt;br&gt;
I know almost every AI startup was a Shell of openAI API's; if this continues, then OpenAI will become the monopoly in AI space. This may hurt a lot of businesses because now all the companies are going to build their chatbots for their companies and thinking their data will be private lol technically it isn't right. So I wanna build an AI chatbot building SaaS but with privacy-focused even the developed chatbot will be hosted directly to our client's server. And here comes the hard part we won't use OpenAI API and we will be building and training the chatbots from scratch. As you know not many companies will have large datasets of the data lol. So this is just a speculation in my Mind.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Idea in simple words:&lt;/strong&gt;&lt;br&gt;
We build chatbots without using any third-party apis like Openai, Gemini, Claude, etc. And we will be training our client's company knowledgebase data by ourselves in any way possible and limit the chatbot according to the Pricing plan.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do I need from this community directly?&lt;/strong&gt;&lt;br&gt;
I need experienced devs who can join me for free to build this idea into reality and obviously I am not a programmer so requesting the community to build this idea stage company in public.&lt;/p&gt;

&lt;p&gt;Send a DM to &lt;a href="mailto:venkibvb5192@gmail.com"&gt;venkibvb5192@gmail.com&lt;/a&gt;, if anybody thinks they were capable of doing this and collab with me just for fun lol I am serious about building this company :) &lt;/p&gt;

</description>
      <category>ai</category>
      <category>openai</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
