<?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: Kaviya R</title>
    <description>The latest articles on DEV Community by Kaviya R (@kaviya_1929).</description>
    <link>https://dev.to/kaviya_1929</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%2F2873385%2Ff22eba87-f4a1-47b3-937a-7bbf1d7f56a4.png</url>
      <title>DEV Community: Kaviya R</title>
      <link>https://dev.to/kaviya_1929</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kaviya_1929"/>
    <language>en</language>
    <item>
      <title>SQL</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Tue, 18 Mar 2025 16:35:30 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/sql-3ae3</link>
      <guid>https://dev.to/kaviya_1929/sql-3ae3</guid>
      <description>&lt;h2&gt;
  
  
  Introduction:
&lt;/h2&gt;

&lt;p&gt;sQL is the standard language for manipulating and managing relational database.It is used to interact to database to perform tasks like querying,deleting and updating data.&lt;/p&gt;

&lt;h2&gt;
  
  
  Errors in postgresql:
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;syntax error or near" "&lt;/li&gt;
&lt;li&gt;column "column_name" does not exist&lt;/li&gt;
&lt;li&gt;relation"table_name" does not exist&lt;/li&gt;
&lt;li&gt;syntax error at end of input&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  syntax error or near" ":
&lt;/h2&gt;

&lt;p&gt;Incorrect sql syntax such as missing or misplaced keywords.&lt;/p&gt;

&lt;h2&gt;
  
  
  column "column_name" does not exist:
&lt;/h2&gt;

&lt;p&gt;The table you referring that does not exist in the table.&lt;/p&gt;

&lt;h2&gt;
  
  
  relation"table_name" does not exist:
&lt;/h2&gt;

&lt;p&gt;The table that you are referring is does not exist or is spell incorrectly.&lt;/p&gt;

&lt;h2&gt;
  
  
  syntax error at end of input:
&lt;/h2&gt;

&lt;p&gt;Missing semicolon at the end of sql statement.&lt;/p&gt;

</description>
      <category>sql</category>
      <category>postgres</category>
      <category>backenddevelopment</category>
      <category>database</category>
    </item>
    <item>
      <title>API and HTTP</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Mon, 17 Mar 2025 16:38:54 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/api-and-http-3goa</link>
      <guid>https://dev.to/kaviya_1929/api-and-http-3goa</guid>
      <description>&lt;p&gt;REST API:&lt;br&gt;
It is a set of rules and convention that allows communication between the client and server using HTTP methods.It is a way to enable interaction with web service in simple and stateless manner.&lt;br&gt;
HTTP METHODS: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;get-retrieve data&lt;/li&gt;
&lt;li&gt;post-create new data&lt;/li&gt;
&lt;li&gt;put-update existing data&lt;/li&gt;
&lt;li&gt;Delete-remove data&lt;/li&gt;
&lt;li&gt;patch-partially update data&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is url?
&lt;/h2&gt;

&lt;p&gt;URL is a specific type of url that identifies a resource by its location on the internet.It tells you how to access the resource by its specifying the protocol location.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is uri?
&lt;/h2&gt;

&lt;p&gt;It is a string of character to identify resource either by name,location or bothA uri can be the url,urn or something else.it is a broader concept&lt;/p&gt;

</description>
      <category>restapi</category>
      <category>http</category>
    </item>
    <item>
      <title>React Js</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Thu, 13 Mar 2025 15:58:27 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/react-js-3jf6</link>
      <guid>https://dev.to/kaviya_1929/react-js-3jf6</guid>
      <description>&lt;p&gt;It is a popular open-source java script library for user interface.It particularly used for single-page application.It was developed by facebook.&lt;/p&gt;

&lt;h2&gt;
  
  
  project using React js:
&lt;/h2&gt;

&lt;p&gt;Today we done a small project in js that is the increment and decrement operation using the hooks.The hook that we use in this project is usestate that allow add state to your functional component.&lt;/p&gt;

&lt;h2&gt;
  
  
  project using js:
&lt;/h2&gt;

&lt;p&gt;Today i tried a project that is based on row deletion in the table.that table have the delete button in the each row when we click the button each should be deleted.in that i come across the (button.parentNode.parentNode) that defines the table's row and the heading  of the body to delete the particular row.&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Projects in Java Script</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Wed, 12 Mar 2025 16:58:11 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/projects-in-java-script-5h08</link>
      <guid>https://dev.to/kaviya_1929/projects-in-java-script-5h08</guid>
      <description>&lt;h2&gt;
  
  
  Calculator:
&lt;/h2&gt;

&lt;p&gt;Basically I think that calculator using using js is the big task and it involves so many functions.But we use only one function for it that is called eval().This function is in-bulit in js that will do all the operations required foe simple calculator.&lt;/p&gt;

&lt;h2&gt;
  
  
  Toast notification:
&lt;/h2&gt;

&lt;p&gt;It is like small notification that will appear on the screen when we touch the button for this we will the class with the Html.The showToast function can also be used but i canont finish the project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Slice() Method:
&lt;/h2&gt;

&lt;p&gt;this method is used to extract the section of array or string and return it as new array or string,without modifying the original string or array.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>JS-Projects</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Tue, 11 Mar 2025 16:25:51 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/js-projects-11ok</link>
      <guid>https://dev.to/kaviya_1929/js-projects-11ok</guid>
      <description>&lt;h2&gt;
  
  
  QR-generator:
&lt;/h2&gt;

&lt;p&gt;In this project we used the API(Application Programming Interface )that is used to create the qr code .To get the value from the input box.we can use the getElementById(example).value; which is the function that is used to get the value inside the input box.In html label also I learnt today to indicate the input box.&lt;/p&gt;

&lt;h2&gt;
  
  
  Form Validation:
&lt;/h2&gt;

&lt;p&gt;This project help me to learnt about the brief about the user-defined function and condition statement.The interesting part of this project is to get the child of the particular class using the querySeletor().&lt;/p&gt;

&lt;h2&gt;
  
  
  TO-Do List:
&lt;/h2&gt;

&lt;p&gt;This project also help me to learnt so many new things that is the append() function that is nothing but we can add the elements to the class in Html.I also laernt to crate the new division in the java script.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Functions in Java Script</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Mon, 10 Mar 2025 16:06:35 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/functions-in-java-script-1h0n</link>
      <guid>https://dev.to/kaviya_1929/functions-in-java-script-1h0n</guid>
      <description>&lt;h2&gt;
  
  
  new Date():
&lt;/h2&gt;

&lt;p&gt;Its a object in java script that is used create the new object in js.The data object represents a single moment in time.&lt;/p&gt;

&lt;h2&gt;
  
  
  getHours():
&lt;/h2&gt;

&lt;p&gt;This method is used to get the hour of the day from a Date object.The value returned from the getHours() function is in 24 hours format.&lt;/p&gt;

&lt;h2&gt;
  
  
  getSecond():
&lt;/h2&gt;

&lt;p&gt;This is used to get the specific second from the date object.It returned the 0 to 59 integer value representing the second of the minute&lt;/p&gt;

&lt;h2&gt;
  
  
  setInterval():
&lt;/h2&gt;

&lt;p&gt;It is a function that calls the specified function at the fixed interval.It is useful for executing tasks at regular interval of time.&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>First project in Java SCRIPT</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Fri, 07 Mar 2025 16:10:55 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/first-project-in-java-script-4468</link>
      <guid>https://dev.to/kaviya_1929/first-project-in-java-script-4468</guid>
      <description>&lt;p&gt;Today i created a input box with eye symbol that is like when we press the eye symbol the text will be visible and without that action the text will not visible .It just seems like a dots.In that process i learnt so many new things in front-end.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;if(open=='on'){
            document.getElementById("our-eye").style.display="block"; 
            name.style.display="none";  
            document.getElementById("text").type="text";
        }
           else {
            name.style.display="block";
            document.getElementById("our-eye").style.display="none";
            document.getElementById("text").type="password";
           } 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is js part where I write code for both eye symbol and the change in text style.Instead of calling the same Id for many times in the function we can store that element in the const variable.After completing this project i feel so happy and I'm excited for my upcoming projects.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Functions in Java Script</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Thu, 06 Mar 2025 15:38:19 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/functions-in-java-script-n94</link>
      <guid>https://dev.to/kaviya_1929/functions-in-java-script-n94</guid>
      <description>&lt;p&gt;getElementById():&lt;br&gt;
                 It is one of the most common was to select a single element in HTML DOM.&lt;br&gt;
 getElementByClassName():&lt;br&gt;
                 Its used to select the document that have the specified class name(s)&lt;br&gt;
 getElementByTagName():&lt;br&gt;
                 It returns an HTML collection of all element in the document that have the specific tag name.&lt;br&gt;
 QuerySelector:&lt;br&gt;
                It returns the first element within the document that matches the specified css selector.&lt;br&gt;
 CreateElement:&lt;br&gt;
              Its a method of the document object that create a new element node with the specified tag name.&lt;br&gt;
 PraseInt:&lt;br&gt;
           It parses the string element element and returns the integer&lt;br&gt;
 praseFloat:&lt;br&gt;
           This function parses a string and returns a floating-point number.&lt;br&gt;
 bind():&lt;br&gt;
         Like to putting the sticky note on the function that remember this specific thing.&lt;br&gt;
 push():&lt;br&gt;
          Adds something to the end of the list.&lt;br&gt;
 Pop:&lt;br&gt;
          Removes last thing from the list.&lt;br&gt;
 Math():&lt;br&gt;
          It act like toolbox inside the math tools inside&lt;br&gt;
 Math.abs():&lt;br&gt;
          Makes a number positive&lt;br&gt;
 getRootNode():&lt;br&gt;
           Finds the very top of HTML tree on a webpage&lt;br&gt;
 getSolution():&lt;br&gt;
           Its is used to solve a specific problem&lt;br&gt;
 console.error(): &lt;br&gt;
           prints error message to the console.&lt;br&gt;
 sort():&lt;br&gt;
           puts alist in order&lt;br&gt;
 shift():&lt;br&gt;
           Removes the first thing from a list(array)&lt;br&gt;
 unshift():&lt;br&gt;
           Adds something to the beginning of a list.&lt;br&gt;
 addEvenListener():&lt;br&gt;
           Listens for something to happen on a webpage and then does something&lt;br&gt;
 eval():&lt;br&gt;
           Runs code that is inside a string.&lt;br&gt;
 escape():&lt;br&gt;
           Encodes a string for safe travel on the internet&lt;br&gt;
 sum():&lt;br&gt;
           Adds number together&lt;br&gt;
 document.right():&lt;br&gt;
           writes something directly onto the webpage.&lt;br&gt;
 length:&lt;br&gt;
           It tells you how many things are in the list&lt;/p&gt;

</description>
    </item>
    <item>
      <title>LEARNING HTML-7</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Wed, 05 Mar 2025 16:49:00 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/learning-html-7-4aoe</link>
      <guid>https://dev.to/kaviya_1929/learning-html-7-4aoe</guid>
      <description>&lt;p&gt;Position:&lt;br&gt;
position property is used to specify the particular element to positioned with in the document.There are five ways to position the element in css.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Static:
Its the default value of any element.For example if the element is created initially it will be in default position.&lt;/li&gt;
&lt;li&gt;Relative:
The element is positioned relative to its normal position in the document flow.It can be adjust by using left,right,top,bottom properties in css.&lt;/li&gt;
&lt;li&gt;Absolute:
The element is removed from the normal document flow,so it won't take up space in the document flow.&lt;/li&gt;
&lt;li&gt;Fixed:
This element will stay in the same position even if the page is scrolled.
-Sticky:
This element is positioned based on the user's scroll point.until some point it reacts like relative after some point it will behave sticky.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>HTML LEARNING-6</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Tue, 04 Mar 2025 16:18:40 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/html-learning-6-1nk7</link>
      <guid>https://dev.to/kaviya_1929/html-learning-6-1nk7</guid>
      <description>&lt;h2&gt;
  
  
  flex:
&lt;/h2&gt;

&lt;p&gt;Flex is used to display the block level element in inline.Its used in different forms by learning the flex in css we can easily style the element.&lt;/p&gt;

&lt;h2&gt;
  
  
  Flex-direction:
&lt;/h2&gt;

&lt;p&gt;The default flex direction is always row.If the main axis of the flex-direction is row means we should use the justify-content and for opposite direction we can use the align-items.&lt;/p&gt;

&lt;h2&gt;
  
  
  Justify-content:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;flex-start:Its used to align items in the container in the first&lt;/li&gt;
&lt;li&gt;flex-end:Align items in the end of the container&lt;/li&gt;
&lt;li&gt;Center:Align items in center&lt;/li&gt;
&lt;li&gt;Space-between:It align the items evenly,with the first item in the start and last item in the end.&lt;/li&gt;
&lt;li&gt;Space-around:It spread items with evenly space around them.&lt;/li&gt;
&lt;li&gt;space-evenly:Items are spaced evenly,with equal space between them.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>HTML LEARNING-5(YOUTUBE)</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Mon, 03 Mar 2025 16:47:18 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/html-learning-5youtube-4n8n</link>
      <guid>https://dev.to/kaviya_1929/html-learning-5youtube-4n8n</guid>
      <description>&lt;p&gt;In today's class we are started to clone the youtube home page.In that I learnt some new things that are fixing the images in the grid and overflow property in css.&lt;/p&gt;

&lt;h2&gt;
  
  
  overflow:
&lt;/h2&gt;

&lt;p&gt;The overflow content in css is used to handle the content that overflow in the container.Its commonly used to control the visibility and behavior of the content.&lt;/p&gt;

&lt;h2&gt;
  
  
  overflow-y📜
&lt;/h2&gt;

&lt;p&gt;The scroll bar always visible in the content if its overflow or not.&lt;/p&gt;

&lt;h2&gt;
  
  
  invisible selector:
&lt;/h2&gt;

&lt;p&gt;there are several ways to hide and in-visible elements in css.One of the way is to use this property.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
      <category>learning</category>
    </item>
    <item>
      <title>LEARNING HTML-4</title>
      <dc:creator>Kaviya R</dc:creator>
      <pubDate>Sun, 02 Mar 2025 15:33:49 +0000</pubDate>
      <link>https://dev.to/kaviya_1929/learning-html-4-a7k</link>
      <guid>https://dev.to/kaviya_1929/learning-html-4-a7k</guid>
      <description>&lt;p&gt;I started to clone the Starbucks website by myself and I did it without seeing any videos but I did not finished it completely.In this process i improved my skills in html and style in css.In my point of view the Html part is simple but styling part with css wants lots of patience.&lt;/p&gt;

&lt;h2&gt;
  
  
  Starbucks home page:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Step-1: First,I split the website into four division.so that it will easy to clone simply,&lt;/li&gt;
&lt;li&gt;Step-2:I started to clone the first division and It has the starbucks logo and some anker tags.&lt;/li&gt;
&lt;li&gt;Step-3:The step-3 contains the main content of the website and it also has some pictures but still i did not add them.I will add it later&lt;/li&gt;
&lt;li&gt;Step-4:It is the footer division it has some header tags and minimal desings of css in the corner.&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
