<?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: Amit Nandi</title>
    <description>The latest articles on DEV Community by Amit Nandi (@bigwiz).</description>
    <link>https://dev.to/bigwiz</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%2F1618336%2F83651f5a-54e9-4f0f-afb5-1c6194d716a0.jpg</url>
      <title>DEV Community: Amit Nandi</title>
      <link>https://dev.to/bigwiz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bigwiz"/>
    <language>en</language>
    <item>
      <title>Introducing our business starter template using NextJs15 and Strapi5 CMS</title>
      <dc:creator>Amit Nandi</dc:creator>
      <pubDate>Tue, 01 Apr 2025 13:22:42 +0000</pubDate>
      <link>https://dev.to/bigwiz/introducing-our-business-starter-template-using-nextjs15-and-strapi5-cms-5940</link>
      <guid>https://dev.to/bigwiz/introducing-our-business-starter-template-using-nextjs15-and-strapi5-cms-5940</guid>
      <description>&lt;h1&gt;
  
  
  Introducing a batteries-included business starter template built on Strapi5 and Next15
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Check out our&lt;/strong&gt; &lt;a href="https://github.com/aamitn/bitmutex-website" rel="noopener noreferrer"&gt;&lt;strong&gt;Repo&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🚀 &lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;NextJS 15 with turbopack bundler&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fully SSR Frontend&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;React 19 with RSC usage&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Real-Time live visitor count and live chat feature without 3rd party services, powered by SocketIO&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Prebuilt Custom Collections and Content Types&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Form Submissions with file submissions enabled&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;10+ Reusable Dynamic-Zone Page Builder Blocks to create custom pages on strapi backend seamlessly&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Full Sitewide Dynamic SEO integrated with Strapi SEO plugin&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Includes Production Deployment Scripts for PM2 for traditional deployments.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fully Dockerized and includes images as well as compose file for cloud native deployments.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>nextjs</category>
    </item>
    <item>
      <title>Confusing JRE and JDK package naming in Linux Distros</title>
      <dc:creator>Amit Nandi</dc:creator>
      <pubDate>Mon, 04 Nov 2024 15:13:59 +0000</pubDate>
      <link>https://dev.to/bigwiz/confusing-jre-and-jdk-package-naming-in-linux-distros-4466</link>
      <guid>https://dev.to/bigwiz/confusing-jre-and-jdk-package-naming-in-linux-distros-4466</guid>
      <description>&lt;h2&gt;
  
  
  Observations on Installing Java Development Kit on Linux Distros
&lt;/h2&gt;

&lt;p&gt;After recently switching to Linux, I encountered a notable difference in package naming conventions when installing Java Runtime Environment (JRE) and Java Development Kit (JDK). Many popular Linux distributions follow a similar pattern in naming these packages, but it can be a bit confusing at first.&lt;/p&gt;

&lt;h2&gt;
  
  
  Most distributions, including Fedora and Debian-based systems, provide:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;JRE package under the name &lt;code&gt;java-xx-openjdk.arch&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;JDK package as &lt;code&gt;java-xx-openjdk-devel.arch&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick Note on Installing Java JDK vs. JRE
&lt;/h2&gt;

&lt;p&gt;It's easy to accidentally install only the JRE when you're actually looking to set up a full development environment (JDK), as the commands can appear deceptively similar.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Installs only the Java Runtime Environment (JRE)&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt &lt;span class="nb"&gt;install &lt;/span&gt;java-21-openjdk     &lt;span class="c"&gt;# On Debian/Ubuntu&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;dnf &lt;span class="nb"&gt;install &lt;/span&gt;java-21-openjdk     &lt;span class="c"&gt;# On Fedora&lt;/span&gt;

&lt;span class="c"&gt;# Installs the full Java Development Kit (JDK)&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt &lt;span class="nb"&gt;install &lt;/span&gt;java-21-openjdk-devel
&lt;span class="nb"&gt;sudo &lt;/span&gt;dnf &lt;span class="nb"&gt;install &lt;/span&gt;java-21-openjdk-devel
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you simply run &lt;code&gt;apt install java-21-openjdk&lt;/code&gt; or &lt;code&gt;dnf install java-21-openjdk&lt;/code&gt;, it will only set up the JRE. To ensure you have the full JDK (JVM + JRE), use &lt;code&gt;apt install java-21-openjdk-devel&lt;/code&gt; or &lt;code&gt;dnf install java-21-openjdk-devel&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Below is a screenshot showing the Fedora package name and description for Java 21:&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%2Fres.cloudinary.com%2Fdaily-now%2Fimage%2Fupload%2Fs--O6J5RubL--%2Ff_auto%2Fv1730730758%2Fugc%2Fcontent_da81f3e5-79a3-4392-81b2-8f70b8b5c5ed" 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%2Fres.cloudinary.com%2Fdaily-now%2Fimage%2Fupload%2Fs--O6J5RubL--%2Ff_auto%2Fv1730730758%2Fugc%2Fcontent_da81f3e5-79a3-4392-81b2-8f70b8b5c5ed" alt="Screenshot_20241104_195745" width="800" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This should help anyone new to Linux avoid the same confusion when setting up Java.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>java</category>
    </item>
  </channel>
</rss>
