<?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: Bimochan Shrestha</title>
    <description>The latest articles on DEV Community by Bimochan Shrestha (@sbimochan).</description>
    <link>https://dev.to/sbimochan</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%2F40048%2Fccb1d305-c7de-4d44-84e3-2680de70df9f.jpg</url>
      <title>DEV Community: Bimochan Shrestha</title>
      <link>https://dev.to/sbimochan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sbimochan"/>
    <language>en</language>
    <item>
      <title>DynamoDB GUI in local</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Mon, 06 Jan 2025 09:04:00 +0000</pubDate>
      <link>https://dev.to/sbimochan/dynamodb-gui-in-local-4hph</link>
      <guid>https://dev.to/sbimochan/dynamodb-gui-in-local-4hph</guid>
      <description>&lt;p&gt;I came across this amazing tool a couple of years ago, and I just had to share it here. It’s a game-changer for working with AWS DynamoDB locally! &lt;/p&gt;

&lt;p&gt;Here’s why I love it:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No AWS costs&lt;/strong&gt; – You can experiment freely without worrying about your budget.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Super low latency&lt;/strong&gt; – It’s incredibly fast, making development seamless.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Regular updates&lt;/strong&gt; – The tool stays up-to-date with new features and fixes.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Exceptional support&lt;/strong&gt; – Have a question or a feature request? The maintainers are quick to respond and deliver.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Take a look at the README file for all the details on how to get started. It’s well worth checking out!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/kritish-dhaubanjar/dynamodb-dashboard?tab=readme-ov-file" rel="noopener noreferrer"&gt;Github-Repo&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>dynamodb</category>
      <category>dx</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Jira Link Auto Commenter</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Sat, 25 Dec 2021 03:42:28 +0000</pubDate>
      <link>https://dev.to/sbimochan/jira-link-auto-commenter-59lm</link>
      <guid>https://dev.to/sbimochan/jira-link-auto-commenter-59lm</guid>
      <description>&lt;p&gt;Migrating from bitbucket to Github made me lack only one feature. The link that navigates to its related Jira ticket from pull request.&lt;/p&gt;

&lt;p&gt;This is why I created this tool for my project.&lt;br&gt;
This Github action auto comments in pull request with Jira link to it. This tool is helpful for devs who use consistent PR summary like &lt;code&gt;Ticket-1234: This is PR summary&lt;/code&gt;.&lt;br&gt;
It grabs the ticket number using regex and comments on the PR by making a JIRA link. If it can't find the ticket number, it will fail silently and won't fail the whole workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  How to use:
&lt;/h3&gt;

&lt;p&gt;Create a workflow file in root of your project.&lt;br&gt;
&lt;code&gt;.github/workflows/main.yml&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Input:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;custom-comment&lt;/code&gt;(optional): If you want to add your own comments before Jira link. Default is &lt;code&gt;Thank you for your contributions. Jira link:&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;jira-project-url&lt;/code&gt;: you can figure our this URL by going to any of your JIRA ticket in new tab and checking the URI box.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;GITHUB_TOKEN&lt;/code&gt;: is auto generated
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pull_request&lt;/span&gt;

&lt;span class="na"&gt;jobs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;example_comment_pr&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;runs-on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ubuntu-latest&lt;/span&gt;
    &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Auto jira link commenter&lt;/span&gt;
    &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Checkout&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/checkout@v1&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Comment PR&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;sbimochan/jira-link-commenter@v2.4&lt;/span&gt;

        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;jira-project-url&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;https://jira.atlassian.net/browse&lt;/span&gt;
          &lt;span class="na"&gt;GITHUB_TOKEN&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.GITHUB_TOKEN }}&lt;/span&gt;
          &lt;span class="na"&gt;custom-comment&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Thank&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;you&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;for&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;your&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;contribution!!!&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;:confetti_ball:'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Hope you will find it useful for your project. &lt;/p&gt;

&lt;h3&gt;
  
  
  Links:
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/marketplace/actions/auto-ticket-link-commenter"&gt;Marketplace&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/sbimochan/jira-link-commenter"&gt;Github Repo&lt;/a&gt;&lt;/p&gt;

</description>
      <category>githubactions</category>
      <category>bot</category>
      <category>projectmanagement</category>
      <category>jira</category>
    </item>
    <item>
      <title>HacktOverFest</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Mon, 30 Dec 2019 14:13:03 +0000</pubDate>
      <link>https://dev.to/sbimochan/hacktoverfest-2hd1</link>
      <guid>https://dev.to/sbimochan/hacktoverfest-2hd1</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mgP36NNl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/5ajanuxr6ddf49uysy6p.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mgP36NNl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/5ajanuxr6ddf49uysy6p.jpeg" alt="Macbook with stickers"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>stickers</category>
      <category>opensource</category>
      <category>macos</category>
    </item>
    <item>
      <title>Wanna check status of your services in one click? Let's build it together</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Thu, 14 Nov 2019 15:52:01 +0000</pubDate>
      <link>https://dev.to/sbimochan/wanna-check-status-of-your-services-in-one-click-let-s-build-it-together-48g9</link>
      <guid>https://dev.to/sbimochan/wanna-check-status-of-your-services-in-one-click-let-s-build-it-together-48g9</guid>
      <description>&lt;p&gt;Porter is a tiny tool that searches for our specified ports from netstat and displays message in red or green color.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sbimochan/porter" rel="noopener noreferrer"&gt;Link to github&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fji8fo0j7in1f6s5blrol.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fji8fo0j7in1f6s5blrol.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>port</category>
      <category>services</category>
      <category>status</category>
      <category>netstat</category>
    </item>
    <item>
      <title>Contributors wanted for synth music creation project</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Wed, 02 Oct 2019 04:35:17 +0000</pubDate>
      <link>https://dev.to/sbimochan/contributors-wanted-for-synth-music-creation-project-cof</link>
      <guid>https://dev.to/sbimochan/contributors-wanted-for-synth-music-creation-project-cof</guid>
      <description>&lt;p&gt;This is a project I built during my internship. I want to add new better sounds by using Web audio API's filters. You also can do a QA and post on its issues page. Any contributions are heavily welcome.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sbimochan/jamming-js"&gt;Github repo link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9_IMW-jP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ehj4lj024jz2up45d50v.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9_IMW-jP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ehj4lj024jz2up45d50v.jpg" alt="Jamming JS"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>entertainment</category>
    </item>
    <item>
      <title>Contributors wanted for synth music creation project</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Wed, 02 Oct 2019 04:22:36 +0000</pubDate>
      <link>https://dev.to/sbimochan/contributors-wanted-for-synth-music-creation-project-28l3</link>
      <guid>https://dev.to/sbimochan/contributors-wanted-for-synth-music-creation-project-28l3</guid>
      <description>&lt;p&gt;This is a project I built during my internship. I want to add new better sounds by using Web audio API's filters. You also can do a QA and post on its issues page. Any contributions are heavily welcome.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sbimochan/jamming-js"&gt;Github repo link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Hacktoberfest!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9_IMW-jP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ehj4lj024jz2up45d50v.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9_IMW-jP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ehj4lj024jz2up45d50v.jpg" alt="Jamming JS"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>entertainment</category>
    </item>
    <item>
      <title>Smart Commit</title>
      <dc:creator>Bimochan Shrestha</dc:creator>
      <pubDate>Tue, 22 Jan 2019 08:33:25 +0000</pubDate>
      <link>https://dev.to/sbimochan/smart-commit-1gk2</link>
      <guid>https://dev.to/sbimochan/smart-commit-1gk2</guid>
      <description>&lt;p&gt;To those who works with Jira, we have a convention to prefix commit name with ticket number. This repo solves that tedious task.&lt;/p&gt;

&lt;p&gt;Story: I searched for command that could print the current branch(our branch name = Jira ticket number) and decided to concat it with hyphens, colons and user’s input message.  &lt;/p&gt;

&lt;p&gt;Have a look.&lt;br&gt;
 &lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P2YHbwwY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/lq5hoe75ktbu4liet5ak.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P2YHbwwY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/lq5hoe75ktbu4liet5ak.jpg" alt="Tutorial smart commit"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sbimochan/smart-commit"&gt;Smart commit github link&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>smart</category>
      <category>commit</category>
      <category>gitcommit</category>
    </item>
  </channel>
</rss>
