<?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: Sashank Rampalli</title>
    <description>The latest articles on DEV Community by Sashank Rampalli (@sashankr).</description>
    <link>https://dev.to/sashankr</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%2F434891%2Fe7243307-0d8e-40dc-ac37-bda10e1d59b8.jpeg</url>
      <title>DEV Community: Sashank Rampalli</title>
      <link>https://dev.to/sashankr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sashankr"/>
    <language>en</language>
    <item>
      <title>Learning Android Development on Udacity</title>
      <dc:creator>Sashank Rampalli</dc:creator>
      <pubDate>Sun, 30 May 2021 13:43:11 +0000</pubDate>
      <link>https://dev.to/sashankr/learning-android-development-on-udacity-d6c</link>
      <guid>https://dev.to/sashankr/learning-android-development-on-udacity-d6c</guid>
      <description>&lt;p&gt;I started working on learning Android Development from Udacity. &lt;br&gt;
It is a free course and is being tought by people working at Google.&lt;/p&gt;

&lt;p&gt;If anyone is interested you can go to this link : &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.udacity.com/course/android-basics-user-interface--ud834"&gt;Android Basics&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The first few lessons explain about Views in Android&lt;/p&gt;

&lt;p&gt;A View is an individual element that is used to represent a type of content on the screen, multiple views are combined to form the layout of the app&lt;/p&gt;

&lt;p&gt;There are different kinds of views :&lt;br&gt;
TextView : Represents text&lt;br&gt;
ImageView : Represents images&lt;br&gt;
Button : Represents buttons&lt;/p&gt;

&lt;p&gt;There also exercises that help us understand how different views are used to build a layout&lt;/p&gt;

&lt;p&gt;XML tags are used to build these views&lt;br&gt;
Example : To show some text on a screen we use the TextView tag&lt;br&gt;
We can add attributes to the tag to further add more details , such as textColor and background&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KTV0MTT4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rloiomz5hy6phnj3l8kk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KTV0MTT4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rloiomz5hy6phnj3l8kk.png" alt="image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I feel this would be a really good course for someone intrested in getting started with &lt;a href="https://www.udacity.com/course/android-basics-user-interface--ud834"&gt;Android Development&lt;/a&gt;&lt;/p&gt;

</description>
      <category>android</category>
    </item>
    <item>
      <title>Variables in JavaScript</title>
      <dc:creator>Sashank Rampalli</dc:creator>
      <pubDate>Mon, 09 Nov 2020 09:23:05 +0000</pubDate>
      <link>https://dev.to/sashankr/variables-in-javascript-213i</link>
      <guid>https://dev.to/sashankr/variables-in-javascript-213i</guid>
      <description>&lt;p&gt;Variables are used to store data on a computer.&lt;/p&gt;

&lt;p&gt;There are different type of data that you can store in a variable, the following are different types of data types:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;string&lt;/li&gt;
&lt;li&gt;number&lt;/li&gt;
&lt;li&gt;boolean&lt;/li&gt;
&lt;li&gt;object&lt;/li&gt;
&lt;li&gt;null&lt;/li&gt;
&lt;li&gt;undefined&lt;/li&gt;
&lt;li&gt;symbol&lt;/li&gt;
&lt;li&gt;BigInt&lt;/li&gt;
&lt;li&gt;function&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Variables are accessed with a label, not with the data itself.&lt;/p&gt;

&lt;p&gt;Let me explain the above point, firstly to create a variable you need to use the "var" keyword followed by a name for the variable and then assigning a value to it from any of the above data types.&lt;/p&gt;

&lt;p&gt;Ex: var count = 20;&lt;/p&gt;

&lt;p&gt;Here "count" is called the label. When we need to use the variable later we use its label to get the value stored in it.&lt;/p&gt;

&lt;p&gt;Here we have stored a number 20 in the variable with a label count.&lt;/p&gt;

&lt;p&gt;Hope this has helped you understand how to use variables. &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
