<?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: Coding Bakht</title>
    <description>The latest articles on DEV Community by Coding Bakht (@coding_bakht).</description>
    <link>https://dev.to/coding_bakht</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%2F350573%2Fb84ed8f6-11df-47b5-b93b-6a0dc3e0d031.png</url>
      <title>DEV Community: Coding Bakht</title>
      <link>https://dev.to/coding_bakht</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/coding_bakht"/>
    <language>en</language>
    <item>
      <title>Getting started with React Native</title>
      <dc:creator>Coding Bakht</dc:creator>
      <pubDate>Sun, 15 Mar 2020 12:20:17 +0000</pubDate>
      <link>https://dev.to/coding_bakht/getting-started-with-react-native-j8k</link>
      <guid>https://dev.to/coding_bakht/getting-started-with-react-native-j8k</guid>
      <description>&lt;p&gt;This is a introductory blog post for React Native Here we will learn how we can setup react native environment and we will run a simple program with react native.&lt;/p&gt;

&lt;h1&gt;
  
  
  Lets get Started
&lt;/h1&gt;

&lt;p&gt;There are different ways to we can setup and run react native application on but here we will be using Expo for creating our react native app and we will using expo’s client application on mobile phone to run react native application but first lets see what is react native.&lt;/p&gt;

&lt;h1&gt;
  
  
  React Native
&lt;/h1&gt;

&lt;p&gt;React native is a Javascript framework that allows you to create mobile apps it provide rich mobile user interface with the help of declarative components. The application we build with react native doesnot uses webview but rather it uses same fundamental User Interface building blocks as Android or IOS. React native helps create Crossplatform native mobile application using Javascript.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uYjKH3pb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/776/0%2A4ZkEOyGd0nOrcCLu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uYjKH3pb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/776/0%2A4ZkEOyGd0nOrcCLu.png" alt="React native app" width="776" height="415"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Expo
&lt;/h1&gt;

&lt;p&gt;According to their website “ Expo is a free and open source toolchain built around React Native to help you build native iOS and Android projects using JavaScript and React”. Expo is not a programming language nor it is a framework rather it is toolchain. Expo is a set of tools, libraries and services you can use to build native iOS and Android apps faster than ever before.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wCtbq7YC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/1343/1%2A41Feh0Jsm-X5scw8-6qZ_A.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wCtbq7YC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/1343/1%2A41Feh0Jsm-X5scw8-6qZ_A.png" alt="Expo Website snapshot" width="880" height="432"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Installation
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;npm install -g expo-cli&lt;/em&gt;&lt;br&gt;
You run the above command on your cmd but you must have nodejs installed if you don’t have node js installed go to &lt;a href="https://nodejs.org/en/"&gt;https://nodejs.org/en/&lt;/a&gt; and download node js then run above command&lt;/p&gt;

&lt;h1&gt;
  
  
  Creating Project
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;expo init&lt;/em&gt;&lt;br&gt;
Once you have installed expo-cli then go to the directory where you want to build application then type above command after this it will ask you to enter name of project and whether you want a blank project or a tab based template for now we will chose blank project.&lt;/p&gt;

&lt;h1&gt;
  
  
  Downloading Expo Client for Mobile
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--URO6ZD2T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/720/1%2AlmLRUlTsPAzbiJ0NIfTJXQ.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--URO6ZD2T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/720/1%2AlmLRUlTsPAzbiJ0NIfTJXQ.jpeg" alt="Expo Mobile App" width="720" height="1280"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Running Project
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;expo start&lt;/em&gt;&lt;br&gt;
Once you have created project then type command above it will show QR code and IP address that you can use in Expo mobile app to run the application&lt;/p&gt;

&lt;h1&gt;
  
  
  Your First React Native Application
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TVm0ISEf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/720/1%2AUeHpoiQ9v0K5TjSUO-90yg.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TVm0ISEf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/720/1%2AUeHpoiQ9v0K5TjSUO-90yg.jpeg" alt="First React Native App" width="720" height="1280"&gt;&lt;/a&gt;&lt;br&gt;
This was an introductory blog post on react native in next post we would discuss how we can create custom application and will create a simple login app and will understand the basic concept of component states and props if you want to explore more go to &lt;a href="https://facebook.github.io/react-native/docs/getting-started"&gt;https://facebook.github.io/react-native/docs/getting-started&lt;/a&gt; this is official react native documentation&lt;br&gt;
See you people soon until then&lt;br&gt;
Happy Coding &amp;lt;3&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>javascript</category>
      <category>mobileapp</category>
      <category>expo</category>
    </item>
    <item>
      <title>Analysis of Donald Trumps tweets during different phases of his life using NLP</title>
      <dc:creator>Coding Bakht</dc:creator>
      <pubDate>Sun, 15 Mar 2020 11:47:19 +0000</pubDate>
      <link>https://dev.to/coding_bakht/analysis-of-donald-trumps-tweets-during-different-phases-of-his-life-using-nlp-1cl1</link>
      <guid>https://dev.to/coding_bakht/analysis-of-donald-trumps-tweets-during-different-phases-of-his-life-using-nlp-1cl1</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="https://medium.com/analytics-vidhya/analysis-of-donald-trumps-tweets-during-different-phases-of-his-life-using-nlp-2eca27b6db30" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--76QqGxIT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/fit/c/48/48/1%2AGq2icF8Zgsms18aP5kSMag.jpeg" alt="owais raza"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://medium.com/analytics-vidhya/analysis-of-donald-trumps-tweets-during-different-phases-of-his-life-using-nlp-2eca27b6db30" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Analysis of Donald Trumps tweets during different phases of his life using NLP | by owais raza | Analytics Vidhya | Medium&lt;/h2&gt;
      &lt;h3&gt;owais raza ・ &lt;time&gt;Mar 2, 2020&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hnDHPsJs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>python</category>
      <category>nlp</category>
      <category>wordcloud</category>
      <category>nltk</category>
    </item>
  </channel>
</rss>
