<?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: Nelson Garcia Dev.</title>
    <description>The latest articles on DEV Community by Nelson Garcia Dev. (@nelsongarcia01).</description>
    <link>https://dev.to/nelsongarcia01</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%2F2591077%2F334780a6-95d2-4bf6-aa6f-d78bcf7e797a.jpeg</url>
      <title>DEV Community: Nelson Garcia Dev.</title>
      <link>https://dev.to/nelsongarcia01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nelsongarcia01"/>
    <language>en</language>
    <item>
      <title>Quick tip: How to recover or set up the full MinIO console in Docker (avoiding the limited Community Edition).</title>
      <dc:creator>Nelson Garcia Dev.</dc:creator>
      <pubDate>Thu, 19 Mar 2026 20:02:27 +0000</pubDate>
      <link>https://dev.to/nelsongarcia01/quick-tip-how-to-recover-or-set-up-the-full-minio-console-in-docker-avoiding-the-limited-34j6</link>
      <guid>https://dev.to/nelsongarcia01/quick-tip-how-to-recover-or-set-up-the-full-minio-console-in-docker-avoiding-the-limited-34j6</guid>
      <description>&lt;p&gt;Recently, I ran into a frustrating issue when running MinIO in Docker using the official tag minio/minio:latest.&lt;/p&gt;

&lt;p&gt;The web console opens, but it shows up as "Community Edition" with severely limited features: basically just the object browser. No user management, policies, access keys, advanced configurations... all of that vanished from the GUI. 😩&lt;/p&gt;

&lt;p&gt;I ended up relying on mc (MinIO Client) to handle almost everything, which works fine but loses the convenience of the browser interface.&lt;/p&gt;

&lt;p&gt;After researching and testing several tags, I found a simple solution that restored the complete console (with all admin features visible):&lt;/p&gt;

&lt;p&gt;Instead of minio/minio:latest, I'm using this image:&lt;br&gt;
&lt;strong&gt;quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With this specific tag (an April 2025 release), the console goes back to normal: full browser access, no restrictions from the newer "Community Edition."&lt;/p&gt;

&lt;p&gt;Quick example with docker-compose:&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%2F738cq7y65dr6tjozv1rp.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%2F738cq7y65dr6tjozv1rp.png" alt=" " width="800" height="530"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's been running stable for me for weeks. If you're hitting the same issue with the latest tag, try this older one — it might save you a lot of time!&lt;/p&gt;

&lt;p&gt;Has anyone else dealt with this? Or have a better workaround/solution? Share in the comments! 👇&lt;/p&gt;

&lt;h1&gt;
  
  
  MinIO #Docker #ObjectStorage #DevOps #SelfHosted #S3Compatible #communityedition
&lt;/h1&gt;

</description>
      <category>devops</category>
      <category>docker</category>
      <category>tooling</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>🧱 Angular: How to Create Multiple Components at Once (From Basic to Advanced)</title>
      <dc:creator>Nelson Garcia Dev.</dc:creator>
      <pubDate>Mon, 21 Apr 2025 13:31:37 +0000</pubDate>
      <link>https://dev.to/nelsongarcia01/angular-how-to-create-multiple-components-at-once-from-basic-to-advanced-1020</link>
      <guid>https://dev.to/nelsongarcia01/angular-how-to-create-multiple-components-at-once-from-basic-to-advanced-1020</guid>
      <description>&lt;p&gt;So, have you ever gotten tired of generating components one at a time?&lt;br&gt;
Yeah, me too. That’s why I started looking for smarter ways to automate this process — and now I’m here to share them with you.&lt;/p&gt;
&lt;h2&gt;
  
  
  📌 Introduction
&lt;/h2&gt;

&lt;p&gt;When developing scalable Angular applications, keeping your components well-structured and organized is crucial.&lt;br&gt;
Instead of generating each one manually using &lt;code&gt;ng generate component&lt;/code&gt;, let’s level up and make the process faster, cleaner, and more productive.&lt;/p&gt;
&lt;h2&gt;
  
  
  📌 Step 1 – Understanding the Basics
&lt;/h2&gt;
&lt;h3&gt;
  
  
  ✅ What is a Component?
&lt;/h3&gt;

&lt;p&gt;In Angular, a component is a core building block of the user interface. It includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ts (logic)&lt;/li&gt;
&lt;li&gt;html (template/view)&lt;/li&gt;
&lt;li&gt;css/.scss (style)&lt;/li&gt;
&lt;li&gt;spec.ts (unit test – optional)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  ✅ How to Create a Component (manually)
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ng generate component components/header
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Or simpply:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ng g c components/header
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Which generates:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;src/app/components/header/
├── header.component.ts
├── header.component.html
├── header.component.scss
└── header.component.spec.ts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🧰 Step 2 – Creating Multiple Components at Once (Intermediate Method)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  📦 Option 1: One-liner with a loop (Git Bash, Linux, or Mac)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;for c in header sidebar footer dashboard; do ng g c components/$c; done
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This command will quickly generate multiple components inside the components/ folder:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;header&lt;/li&gt;
&lt;li&gt;sidebar&lt;/li&gt;
&lt;li&gt;footer&lt;/li&gt;
&lt;li&gt;dashboard&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📦 Option 2: Using &amp;amp;&amp;amp; to chain commands
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ng g c components/register &amp;amp;&amp;amp; 
ng g c components/list &amp;amp;&amp;amp; 
ng g c components/edit &amp;amp;&amp;amp; 
ng g c components/delete
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates the same result in a straightforward way — great for quick setups.&lt;/p&gt;

&lt;h3&gt;
  
  
  📦 Option 3: Creating a reusable script in package.json
&lt;/h3&gt;

&lt;p&gt;You can add a script to automate component generation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "scripts": {
    "component-generator": "ng g c components/register &amp;amp;&amp;amp; ng g c components/list &amp;amp;&amp;amp; ng g c components/edit &amp;amp;&amp;amp; ng g c components/delete"
  }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then just run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm run component-generater
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  ✨ Step 3 – Advanced Tips
&lt;/h2&gt;

&lt;h3&gt;
  
  
  📍 Add extra options to customize component creation:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Option           Description
--skip-tests     Does not create the test file
--style=scss     Uses SCSS instead of CSS
--flat           Creates the component without a folder (saves directly in components/)
--standalone     Creates a standalone component (Angular 14+)

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Exemplo:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ng g c components/navbar --skip-tests --style=scss --flat
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  ✅ Expected Final Result
&lt;/h2&gt;

&lt;p&gt;By the end of this guide, you’ll have multiple components quickly generated, organized, and ready to use — following solid practices for modularization and automation in Angular.&lt;/p&gt;

&lt;p&gt;Thanks so much for reading! I hope this guide saves you time (and sanity 😅).&lt;/p&gt;

&lt;p&gt;If you enjoyed this content, leave a ❤️, Save it for later, and Share it with your dev crew!&lt;br&gt;
And if you want to add something, drop a comment and we’ll learn with your contribuition and go to next level. 🚀&lt;/p&gt;

&lt;p&gt;✍️ Written by: Nelson Manuel Garcia&lt;br&gt;
Feel free to reach out if you have questions or want to connect! 🎧💻&lt;/p&gt;

</description>
      <category>angular</category>
      <category>webcomponents</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>💡How to Integrate Materialize-CSS with Angular (Without the Headache!)</title>
      <dc:creator>Nelson Garcia Dev.</dc:creator>
      <pubDate>Wed, 16 Apr 2025 16:18:21 +0000</pubDate>
      <link>https://dev.to/nelsongarcia01/how-to-integrate-materialize-css-with-angular-without-the-headache-49gb</link>
      <guid>https://dev.to/nelsongarcia01/how-to-integrate-materialize-css-with-angular-without-the-headache-49gb</guid>
      <description>&lt;p&gt;After struggling, crying (a little), and spending hours debugging, I finally managed to integrate Materialize-CSS into my Angular project. 😅&lt;/p&gt;

&lt;p&gt;Along the way, I encountered several unexpected bugs and compatibility issues that nearly made me give up.&lt;/p&gt;

&lt;p&gt;If you've ever tried to use Materialize-CSS in Angular and couldn't get it to work — or you're just starting out and want to avoid the pain — this post is for you! 🚀&lt;/p&gt;

&lt;p&gt;I'll walk you through how to integrate Materialize-CSS into your Angular project in a simple and effective way, without the usual frustration.&lt;/p&gt;

&lt;p&gt;Spoiler: It's not just “install and import.” There are a few key tricks that make all the difference.&lt;/p&gt;

&lt;p&gt;Let'get into it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step-by-step: How to Integrate Materialize-CSS in Angular
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;first step:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Installing dependecies.
First, make sure you have jQuery and its type definitions installed. Then, install Materialize-CSS and its types as well.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# jQuery
npm install jquery

# jQuery types
npm install --save-dev @types/jquery

# Materialize-CSS
npm install materialize-css

# Materialize-CSS types
npm install --save-dev @types/materialize-css
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Configuring angular.json
You need to include both jQuery and Materialize-CSS in your angular.json file.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"scripts": [
  "node_modules/jquery/dist/jquery.min.js",
  "node_modules/materialize-css/dist/js/materialize.min.js"
],
"styles": [
  "node_modules/materialize-css/dist/css/materialize.min.css"
]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Importing the dependencies
You can import the libraries where you'll use them — either in a global module or in a specific component:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import * as $ from 'jquery';
import * as M from 'materialize-css';
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;for instance:&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%2Fa3evgl1c41repka8j2gc.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%2Fa3evgl1c41repka8j2gc.png" alt="Image description" width="800" height="725"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Initializing Materialize Components
Many Materialize components require initialization via JavaScript. Do this inside the ngOnInit() lifecycle hook:&lt;/li&gt;
&lt;/ol&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%2F743yjpfhnxjpbjjz5spd.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%2F743yjpfhnxjpbjjz5spd.png" alt="Image description" width="800" height="638"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This ensures everything is ready when your component is loaded.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Styling your Template
Now you can freely use Materialize's CSS classes in your templates. Here's a simple example:&lt;/li&gt;
&lt;/ol&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%2F4zlxhzqzangxh62llvoi.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%2F4zlxhzqzangxh62llvoi.png" alt="Image description" width="800" height="377"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Using JS-Dependent Components
For components that depend on JavaScript (like modals, tooltips, dropdowns, etc.), you'll need to initialize them individually:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;In your component.ts:&lt;/li&gt;
&lt;/ul&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%2Fnsb6t1ifh7tqrqfegong.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%2Fnsb6t1ifh7tqrqfegong.png" alt="Image description" width="800" height="735"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In your tempate (html code)&lt;/li&gt;
&lt;/ul&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%2Fvbytu3lob1rylfpspmi5.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%2Fvbytu3lob1rylfpspmi5.png" alt="Image description" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks so much for reading! I hope this guide saves you time (and sanity 😅).&lt;/p&gt;

&lt;p&gt;If you want to check out the working code, it's available on GitHub:&lt;br&gt;
&lt;a href="https://github.com/nelsongarcia01/angular-with-materialice-css-integration.git" rel="noopener noreferrer"&gt;👉 Repo Link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✍️ Written by: Nelson Manuel Garcia&lt;br&gt;
Feel free to reach out if you have questions or want to connect! 🎧💻&lt;/p&gt;

</description>
      <category>angular</category>
      <category>materializecss</category>
      <category>webdev</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
