<?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: vishwa v</title>
    <description>The latest articles on DEV Community by vishwa v (@vishwa_v_04111c0586f440b6).</description>
    <link>https://dev.to/vishwa_v_04111c0586f440b6</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%2F3958528%2Ff9c3d08e-d313-4db6-9bfc-91d86f44d0db.png</url>
      <title>DEV Community: vishwa v</title>
      <link>https://dev.to/vishwa_v_04111c0586f440b6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vishwa_v_04111c0586f440b6"/>
    <language>en</language>
    <item>
      <title>About linux</title>
      <dc:creator>vishwa v</dc:creator>
      <pubDate>Mon, 01 Jun 2026 16:32:57 +0000</pubDate>
      <link>https://dev.to/vishwa_v_04111c0586f440b6/about-linux-56bd</link>
      <guid>https://dev.to/vishwa_v_04111c0586f440b6/about-linux-56bd</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction to Linux&lt;/strong&gt;&lt;br&gt;
Linux is based on the UNIX operating system. UNIX is a powerful, multi-user, multitasking operating system originally developed in the 1970s at AT&amp;amp;T Bell Labs. It laid the foundation for many modern operating systems, including Linux.&lt;/p&gt;

&lt;p&gt;Linux is free and open-source, accessible to everyone.&lt;br&gt;
This promotes global collaboration and innovation.&lt;br&gt;
Linux offers efficient performance and strong security.&lt;br&gt;
It works well across many devices and industries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Linux&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Offers high security and stability, making it ideal for servers and development work.&lt;/li&gt;
&lt;li&gt;Fully open-source and free to use, modify, and distribute.&lt;/li&gt;
&lt;li&gt;Highly flexible and customizable to suit different user and industry needs.&lt;/li&gt;
&lt;li&gt;Supported by a large global community and a vast software ecosystem.Most server company run linux&lt;/li&gt;
&lt;li&gt;Most AI tools are work based on linux
example:pytorch,Tensorflow,Docker,Kubernetes&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;kubernates is an open-source platform designed to automate the deployment, scaling, and management of containerized applications.&lt;/p&gt;

&lt;p&gt;Docker is an open-source platform that allows developers to package applications and their dependencies into lightweight, portable containers, ensuring consistent performance across different environments. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Components of Linux&lt;/strong&gt;&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%2F85xk5f37ax8bvn29yfjn.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%2F85xk5f37ax8bvn29yfjn.png" alt=" " width="800" height="588"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;1.kernel&lt;br&gt;
The kernel is the core of the Linux operating system that manages hardware resources and controls communication between software and hardware.&lt;/p&gt;

&lt;p&gt;Handles process management, memory, and device control.&lt;br&gt;
Prevents conflicts between multiple running programs.&lt;br&gt;
Types of Kernels: Monolithic, Microkernel, Hybrid, Exokernel&lt;/p&gt;

&lt;p&gt;2.System Libraries&lt;br&gt;
System libraries provide essential functions that allow applications to interact with the kernel without needing to access it directly.&lt;/p&gt;

&lt;p&gt;Contain reusable pre-written code for common system operations.&lt;br&gt;
Act as an interface between applications and the Linux kernel.&lt;/p&gt;

&lt;p&gt;3.Shell&lt;br&gt;
The shell is the command-line interface that allows users to communicate with the operating system by entering commands.&lt;/p&gt;

&lt;p&gt;Interprets and executes user commands.&lt;br&gt;
Acts as a bridge between user actions and kernel processing.&lt;/p&gt;

&lt;p&gt;4.Hardware Layer&lt;br&gt;
The hardware layer consists of physical components that execute commands and provide system resources.&lt;/p&gt;

&lt;p&gt;Includes CPU, RAM, storage, and input/output devices.&lt;br&gt;
Communicates with the OS using device drivers and kernel services.&lt;/p&gt;

&lt;p&gt;5.System Utilities&lt;br&gt;
System utilities are built-in tools that help users manage, configure, and maintain the operating system.&lt;/p&gt;

&lt;p&gt;Used for tasks like software installation, user management, and monitoring.&lt;br&gt;
Simplify system administration processes for both beginners and administrators.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Linux Commands&lt;/strong&gt;&lt;br&gt;
Basic tools for utilizing the command line interface (CLI) to communicate with the operating system are Linux commands. Commonly used commands like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ls : Lists contents of directories&lt;br&gt;
cd : Changes the current directory&lt;br&gt;
pwd : Displays the current directory path&lt;br&gt;
cp, mv, rm : Used to copy, move, and delete files respectively&lt;br&gt;
free : Shows memory usage&lt;br&gt;
df : Checks disk space usage&lt;br&gt;
top : Monitors running processes&lt;br&gt;
ss , ip ,ping : Help monitor and troubleshoot network connections&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Applications of Linux Operating System&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Servers and Hosting&lt;/li&gt;
&lt;li&gt;Development&lt;/li&gt;
&lt;li&gt;Desktop and Personal Use&lt;/li&gt;
&lt;li&gt;Cybersecurity&lt;/li&gt;
&lt;li&gt;Embedded Systems&lt;/li&gt;
&lt;li&gt;Supercomputers&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>beginners</category>
      <category>linux</category>
      <category>opensource</category>
      <category>systems</category>
    </item>
    <item>
      <title>HTML &amp; CSS</title>
      <dc:creator>vishwa v</dc:creator>
      <pubDate>Fri, 29 May 2026 14:41:17 +0000</pubDate>
      <link>https://dev.to/vishwa_v_04111c0586f440b6/html-css-520d</link>
      <guid>https://dev.to/vishwa_v_04111c0586f440b6/html-css-520d</guid>
      <description>&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt; &lt;br&gt;
hypertext markup language used to create webpage.&lt;br&gt;
markup is the special tag and element used to structure and decribe the content of webpage.&lt;br&gt;
HTML describes the structure of a Web page&lt;br&gt;
HTML consists of a series of elements&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A Simple HTML Document&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Page Title&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;My First Heading&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;My first paragraph.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Explaination&lt;/strong&gt;&lt;br&gt;
The &amp;lt;!DOCTYPE html&amp;gt; declaration defines that this document is an HTML5 document&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; element is the root element of an HTML page&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; element contains meta information about the HTML page&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)&lt;/p&gt;

&lt;p&gt;The&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; element defines a large heading&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; element defines a paragraph&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Feature of html-5&lt;/strong&gt;&lt;br&gt;
HTML5 introduced powerful new features that make modern web applications faster, more interactive, and more multimedia-friendly.&lt;/p&gt;

&lt;p&gt;It added semantic tags, native audio/video support, offline storage, better graphics, and APIs for real-time communication, making it the backbone of today’s dynamic websites.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tag vs Element&lt;/strong&gt;&lt;br&gt;
A tag is the code snippet inside angle brackets &amp;lt; &amp;gt;.&lt;/p&gt;

&lt;p&gt;Tags are instructions to the browser about how to interpret content.&lt;/p&gt;

&lt;p&gt;They usually come in pairs:&lt;br&gt;
Opening tag:&lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;&lt;br&gt;
Closing tag:&lt;code&gt;&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;An element is the complete structure: the opening tag, the content, and the closing tag together.&lt;/p&gt;

&lt;p&gt;It represents the actual component on the webpage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS&lt;/strong&gt;&lt;br&gt;
CSS is the language we use to style an HTML document.&lt;/p&gt;

&lt;p&gt;CSS describes how HTML elements should be displayed.&lt;/p&gt;

&lt;p&gt;Why Use CSS?&lt;br&gt;
CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS example&lt;/strong&gt;&lt;br&gt;
body {&lt;br&gt;
  background-color: lightblue;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;h1 {&lt;br&gt;
  color: white;&lt;br&gt;
  text-align: center;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;p {&lt;br&gt;
  font-family: verdana;&lt;br&gt;
  font-size: 20px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CSS syntax&lt;/strong&gt;&lt;br&gt;
The selector points to the HTML element you want to style.&lt;/p&gt;

&lt;p&gt;The declaration block contains one or more declarations separated by semicolons.&lt;/p&gt;

&lt;p&gt;Each declaration includes a CSS property name and a value, separated by a colon.&lt;/p&gt;

&lt;p&gt;Multiple CSS declarations are separated with semicolons, and declaration blocks are surrounded by curly braces.&lt;/p&gt;

&lt;p&gt;p {&lt;br&gt;
  color: red;&lt;br&gt;
  text-align: center;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;p is a selector in CSS (it points to the HTML element you want to style: &lt;/p&gt;
&lt;p&gt;).&lt;/p&gt;

&lt;p&gt;color is a property, and red is the property value&lt;br&gt;
text-align is a property, and center is the property value&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;types of css&lt;/strong&gt;&lt;br&gt;
Inline&lt;br&gt;
Internal&lt;br&gt;
External&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inline css&lt;/strong&gt;&lt;br&gt;
An inline style may be used to apply a unique style for a single element.&lt;/p&gt;

&lt;p&gt;To use inline styles, add the style attribute to the relevant element. The style attribute can contain any CSS property.&lt;/p&gt;

&lt;p&gt;Example&lt;br&gt;
Inline styles are defined within the "style" attribute of the relevant element:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;h1&lt;/span&gt; &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"color:blue;text-align:center;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;This is a heading&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&lt;/span&gt; &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"color:red;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;This is a paragraph.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Internal css&lt;/strong&gt;&lt;br&gt;
An internal style sheet may be used if one single HTML page has a unique style.&lt;/p&gt;

&lt;p&gt;The internal style is defined inside the  element, inside the head section.&amp;lt;/p&amp;gt;
&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
