<?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: THE NOID</title>
    <description>The latest articles on DEV Community by THE NOID (@thenoid).</description>
    <link>https://dev.to/thenoid</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4069872%2Fce142d98-ed7a-4729-9cac-3aabcd063ede.jpg</url>
      <title>DEV Community: THE NOID</title>
      <link>https://dev.to/thenoid</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thenoid"/>
    <language>en</language>
    <item>
      <title>WHAT IS SQL ?</title>
      <dc:creator>THE NOID</dc:creator>
      <pubDate>Sun, 09 Aug 2026 13:20:58 +0000</pubDate>
      <link>https://dev.to/thenoid/what-is-sql--4i3b</link>
      <guid>https://dev.to/thenoid/what-is-sql--4i3b</guid>
      <description>&lt;p&gt;SQL stands for &lt;strong&gt;Structured Query Language&lt;/strong&gt;. It is used to design and manage data in databases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EXPLANATION :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every application which we using today works with data.&lt;/p&gt;

&lt;p&gt;Our instagram profile, Amazon orders, Bank Transactions, and even our YouTube history is stored somewhere.&lt;/p&gt;

&lt;p&gt;But storing data is only one part of the problem. We also need a way to find, update, and manage that data.&lt;/p&gt;

&lt;p&gt;This is where SQL comes in.&lt;/p&gt;

&lt;p&gt;FOR EXAMPLE :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Get all users from a database&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add a new customer&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Change a user's information&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Delete Records&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Find specific data&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  UNDERSTANDING DATABASE :
&lt;/h2&gt;

&lt;p&gt;Before learning SQL, we need to understand what a database is :&lt;/p&gt;

&lt;p&gt;A database is a place where information is stored, organized, and managed so that we can easily find, use, and update it whenever needed.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;NOTE :&lt;/strong&gt; We can create multiple databases and each database can contain multiple tables.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We can create databases inside a Database Management System [ DBMS ] or Relational Database Management System [ RDBMS ].&lt;/p&gt;

&lt;h2&gt;
  
  
  UNDERSTANDING DBMS &amp;amp; RDBMS :
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;DBMS :&lt;/strong&gt; A Database Management System is software that helps use to store, organize, and manage data in database easily but it's non relational.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Ex : Microsoft Access, SQLite, MongoDB&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;RDBMS :&lt;/strong&gt; An RDBMS is a type of DBMS that stores data in tables and connects realted tables using relationship.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It is smaller subset of DBMS and designed by E.F. Codd in 1970.&lt;/p&gt;

&lt;p&gt;Ex : Oracle Database, MySQL, Microsoft SQL Server&lt;/p&gt;

&lt;h2&gt;
  
  
  TYPES OF SQL :
&lt;/h2&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb3c708qzcnkk0261k4gr.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb3c708qzcnkk0261k4gr.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  HOW TO PRACTICE : [ MY APPROACH ]
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;YouTube Channel : &lt;a href="https://youtube.com/playlist?list=PLqleLpAMfxGDslJolGldBWcdT1FSIhJ1L&amp;amp;si=vt0bv8Q0qTrL597-" rel="noopener noreferrer"&gt;LEARN CODING SQL&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Practice Platform : &lt;a href="https://sqlbolt.com/" rel="noopener noreferrer"&gt;SQL BOLT&lt;/a&gt;, &lt;a href="https://www.hackerrank.com/domains/sql" rel="noopener noreferrer"&gt; HACKERRANK SQL&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  SQLPLUS INSTALLATION AND SETUP GUIDE :
&lt;/h2&gt;

&lt;p&gt;I used SQLPlus in the Command Prompt because it helps me practice more. Unlike tools like Oracle SQL Developer or MySQL Workbench, you can't easily edit your queries in SQLPlus. Everything is done in the Command Prompt. If you make a mistake, you have to type the query again instead of editing it. This gives you more practice and helps you improve your SQL skills.&lt;/p&gt;

&lt;p&gt;Steps :&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Browse this link : &lt;a href="https://www.filehorse.com/download-oracle-database-express/27798/" rel="noopener noreferrer"&gt;SQL PLUS&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Download the Oracle Database Express Edition (11g) version. It is lightweight and fast.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;During the installation, set a password. You will use this password later to log in through the Command Prompt.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After the installation is complete, open Command Prompt and type: sqlplus&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Enter the username as system and the password that you created during the installation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;That's it! You are now connected to SQL*Plus.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Start practicing SQL queries on your own.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>sql</category>
      <category>sqlplus</category>
      <category>dbms</category>
      <category>rdbms</category>
    </item>
    <item>
      <title>WHY LINUX IS IMPORTANT FOR DevOps AND SRE ?</title>
      <dc:creator>THE NOID</dc:creator>
      <pubDate>Sun, 09 Aug 2026 13:10:08 +0000</pubDate>
      <link>https://dev.to/thenoid/why-linux-is-important-for-devops-and-sre--9g8</link>
      <guid>https://dev.to/thenoid/why-linux-is-important-for-devops-and-sre--9g8</guid>
      <description>&lt;h2&gt;
  
  
  FOUNDATION
&lt;/h2&gt;

&lt;p&gt;When people start learning DevOps, they usually jump directly into tools like Docker, Kubernetes, Jenkins, or Terraform.&lt;/p&gt;

&lt;p&gt;But there is a skill which much more fundamental behind all of them and that is :&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[ LINUX ]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Many beginners see Linux as just another operating system but for DevOps ans SRE, Linux is much more than that.&lt;/p&gt;

&lt;h2&gt;
  
  
  WHY LINUX MATTER IN DevOps ?
&lt;/h2&gt;

&lt;p&gt;Imagine we are managing a production application and suddenly users start reporting errors.&lt;/p&gt;

&lt;p&gt;What will we check first ?&lt;/p&gt;

&lt;p&gt;We will connect to the server, look at logs, check resources, analyze processes, and troubleshoot the issue and most of these happen directly on Linux servers.&lt;/p&gt;

&lt;p&gt;With commands like :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;top            - CPU, RAM usage and running processes
&lt;span class="nb"&gt;df&lt;/span&gt; &lt;span class="nt"&gt;-h&lt;/span&gt;          - Disk space usage
systemctl      - Service status &lt;span class="o"&gt;(&lt;/span&gt;nginx, apache, etc.&lt;span class="o"&gt;)&lt;/span&gt;
journalctl     - System and service logs
ps             - Running processes list
free &lt;span class="nt"&gt;-h&lt;/span&gt;        - Memory/RAM usage
&lt;span class="nb"&gt;uptime&lt;/span&gt;         - System &lt;span class="nb"&gt;uptime &lt;/span&gt;and load average

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

&lt;/div&gt;



&lt;p&gt;Above commands may look simple, but they are daily tools for engineers keeping system alive.&lt;/p&gt;

&lt;h2&gt;
  
  
  LINUX IS THE LANGUAGE OF SERVERS
&lt;/h2&gt;

&lt;p&gt;Most cloud workloads run on linux.&lt;/p&gt;

&lt;p&gt;Whether it is a virtual machine, a kubernetes node, or a CI/CD runner, Linux is usually working behind the scenes.&lt;/p&gt;

&lt;p&gt;Knowing Linux helps you understand :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;How applications run.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How service communicate.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How resources are managed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How failures happens.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AUTOMATION STARTS WITH LINUX
&lt;/h2&gt;

&lt;p&gt;DevOps is all about reducing manual work.&lt;/p&gt;

&lt;p&gt;Linux gives engineers powerful tools to automate tasks using :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Bash Scripts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cron Jobs&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Python Scripts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;System Configuration Management Tools&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  LINUX AND CONTAINERS ARE CONNECTED
&lt;/h2&gt;

&lt;p&gt;Modern DevOps depends heavily on containers.&lt;/p&gt;

&lt;p&gt;Docker and Kubernetes use Linux concepts like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Processes&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Networking&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;File System&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Resource Limits&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Understanding linux makes it easier to understand what happens inside the conatiners instead of just running commands blindly.&lt;/p&gt;

&lt;h2&gt;
  
  
  LINUX MAKES YOU BETTER AT TROUBLESHOOTING
&lt;/h2&gt;

&lt;p&gt;A good SRE engineer is not someone who only knows tools but knows how system behaves when things break.&lt;/p&gt;

&lt;p&gt;It helps you investigate :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;High CPU Usage&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Memory Problem&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Disk Issues&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Application Failures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Server Crashes&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The ability to find the root cause is one of the most valuable skills in production envirnoment.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>automation</category>
      <category>devops</category>
      <category>sre</category>
    </item>
    <item>
      <title>WHAT IS LINUX ?</title>
      <dc:creator>THE NOID</dc:creator>
      <pubDate>Sun, 09 Aug 2026 13:02:05 +0000</pubDate>
      <link>https://dev.to/thenoid/what-is-linux--4342</link>
      <guid>https://dev.to/thenoid/what-is-linux--4342</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linux is an open-source operating system [ OS ] based on the Linux Kernel.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It manages computer hardware and software resources, similar to windows and macOS.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is free, secure, customizable, and widely used by developers and organizations.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It has a massive user base, and used in the world's top 500 most powerful supercomputers.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  HISTORY
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linux was created in 1991 by Linus Torvalds as a side project while he was a computer science student.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It was inspired by the UNIX operating system, which was created by Ken Thompson and Dennis Ritchie.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In his first public announcement, Linus described Linux as "Just a hobby, won't be big and professional."&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Because it was released as open-source software, more than 16000 developers worldwide have contributed to it since 2005 and this project is still growing with more than 1600 developers for each kernel release.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  HOW DOES LINUX WORK ?
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User → Application → Kernel → Hardware → Response

Ex: Terminal [ bash ]

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

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linux works by connecting the user, application, kernel, and hardware together.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The user gives a command in command prompt through an application.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The application sends this request to the Linux Kernel.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The kernel manages system resources and communicates with the hardware.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The hardware performs the task and sends the result back.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finally, the user can see the required responce.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  WHY IS LINUX MORE SECURE THAN WINDOWS ?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linux is open-source software, it means Linux code is reviewed by thousands of developers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Strong file permissions and user privileges.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fewer malware attacks because of its architecture and smaller desktop market share.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Regular security updates from the community.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;NOTE : It doesn't mean "It's impossible to hack." It's generally more secure, but any OS can have vulnerabilities.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  WHERE IS LINUX USED ?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Servers – Most web servers and cloud systems run on Linux.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cloud Platforms – Used by AWS, Google Cloud, and other providers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Supercomputers – Powers many of the world's fastest computers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Embedded Devices – Used in routers, smart TVs, and IoT devices.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Android – Android uses the Linux Kernel as its foundation.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  POPULAR LINUX DISTRIBUTIONS
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Ubuntu – Beginner-friendly and widely used for desktops and servers.

Debian – Known for stability and reliability.

Fedora – Provides the latest features and technologies.

Arch Linux – Lightweight and highly customizable.

Red Hat Enterprise Linux (RHEL) – Popular in enterprise and server environments.

Linux Mint – Simple and easy for new Linux users.


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

&lt;/div&gt;






&lt;h2&gt;
  
  
  KERNEL :
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;kernel is the core of an operating system&lt;/strong&gt;. its acts as a bridge between applications and hardware.&lt;/p&gt;

&lt;p&gt;IT MANAGES THINGS LIKE :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;CPU&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Memory&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Processes&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Disk&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Network&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hardware Devices&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ls
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This above command eventually needs the kernel to access the filesystem and retrive information about the files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;FUN FACT ABOUT KERNEL :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Linux is the not whole OS. Linux is the kernel. The rest comes from tools, libraries, applications, and other components.&lt;/p&gt;

&lt;p&gt;The kernel talks directly to hardware. Your CPU, RAM, disk, network card, and other devices depend on it.&lt;/p&gt;

&lt;p&gt;The kernel is always working in the background. Even when you're doing nothing, it is managing memory, processes, devices, and other resources.&lt;/p&gt;




&lt;h2&gt;
  
  
  SHELL :
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;Shell is a command interpreter&lt;/strong&gt;. It allows us to communicate with the operating system using commands.&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ls 
cd /var/log 
mkdir test

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

&lt;/div&gt;



&lt;p&gt;The shell reads these commands, interprets them, and asks the operating system to perform the required action.&lt;/p&gt;

&lt;p&gt;Popular Linux shells include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Bash&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Zsh&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fish&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sh&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;FUN FACT ABOUT SHELL :&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You can actually change your shell without changing the Linux kernel.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can have multiple shells running at the same time on the same Linux machine.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Shells can do much more than run commands. They can automate entire tasks using scripts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bash shell became popular because it was a free, improved version of the older Bourne Shell (sh).&lt;/p&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fm2fhtyhzn0om5zcv56kd.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fm2fhtyhzn0om5zcv56kd.png" alt="LINUX KERNEL" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>linux</category>
      <category>opensource</category>
      <category>os</category>
      <category>kernel</category>
    </item>
  </channel>
</rss>
