<?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: ashad nasim</title>
    <description>The latest articles on DEV Community by ashad nasim (@ashadnasim52).</description>
    <link>https://dev.to/ashadnasim52</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%2F268393%2F0bf15644-e781-4f2b-8554-6fb7e5288c35.png</url>
      <title>DEV Community: ashad nasim</title>
      <link>https://dev.to/ashadnasim52</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ashadnasim52"/>
    <language>en</language>
    <item>
      <title>React Native UI Kitten Library Basics</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Sun, 26 Sep 2021 13:41:33 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/react-native-ui-kitten-library-basics-55lp</link>
      <guid>https://dev.to/ashadnasim52/react-native-ui-kitten-library-basics-55lp</guid>
      <description>&lt;h2&gt;
  
  
  Components
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1) ApplicationProvider
&lt;/h3&gt;

&lt;p&gt;It is a top level Wrapper for your Application.Generraly, wrap the root level of your App&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;export default () =&amp;gt; (
  &amp;lt;ApplicationProvider {...eva} theme={eva.light}&amp;gt;
    &amp;lt;HomeScreen /&amp;gt;
  &amp;lt;/ApplicationProvider&amp;gt;
);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://akveo.github.io/react-native-ui-kitten/docs/components/application-provider/overview#applicationprovider"&gt;Docs for ApplicationProvider&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2) Layout
&lt;/h3&gt;

&lt;p&gt;Layout is just like the View element of the React Native or Container in the Native Base. Layout has some styling as per the Level of the Layout you are using, and its Background color changes as the theme of the app changes. Wrap each screen with the Layout as it will come usefull when you later on add theme to your application.&lt;br&gt;
     There are 4 levels of the layout and can be configured using the &lt;strong&gt;level&lt;/strong&gt; props.&lt;/p&gt;

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

&lt;p&gt;When we changes the theme of the app, then automatically the background changes to dark theme.&lt;/p&gt;

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

&lt;p&gt;Example Code for Layout&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;Layout style={styles.layout} level='1'&amp;gt;
      &amp;lt;Text&amp;gt;1&amp;lt;/Text&amp;gt;
 &amp;lt;/Layout&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3) Text
&lt;/h3&gt;

&lt;p&gt;The text component in the UI Kitten was same as Text in React Native with some basic styling passed via the props. We can have multiple types of text style from &lt;strong&gt;h1&lt;/strong&gt; to &lt;strong&gt;h6&lt;/strong&gt; by passing the props &lt;strong&gt;category&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      &amp;lt;Text category='h1'&amp;gt;H1&amp;lt;/Text&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;h3&gt;
  
  
  3) Icon
&lt;/h3&gt;

&lt;p&gt;If you had created your application by using ui-kitten template, then you can use the Icon otherwise you need to add  &lt;a href="https://akveo.github.io/react-native-ui-kitten/docs/guides/icon-packages"&gt;an additional package&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;To use Icon component, first you need to import the Icon like below&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { Icon } from '@ui-kitten/components';
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then you need to just pass the Icon name,color and size.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;Icon
    style={styles.icon}
    fill='#8F9BB3'
    name='star'
  /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also add icons to button by passing &lt;strong&gt;accessoryLeft&lt;/strong&gt; or &lt;strong&gt;accessoryRight&lt;/strong&gt; props to the Button component of the UI Kitten&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;Button
      style={styles.button}
      accessoryLeft={HeartIcon}
      onPress={toggleMenu}&amp;gt;
      PRESS ME
 &amp;lt;/Button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const HeartIcon = (props) =&amp;gt; (
  &amp;lt;Icon {...props} name='heart'/&amp;gt;
);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3) Button
&lt;/h3&gt;

&lt;p&gt;Button can be used in the UI kitten by importing component. We can pass some of the props like &lt;strong&gt;appearance, status,  size&lt;/strong&gt;&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;Button  size='medium' appearance='filled'  status='warning'&amp;gt;
      FILLED
&amp;lt;/Button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://akveo.github.io/react-native-ui-kitten/docs/components/button/overview#button"&gt;Button Docs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;More component will be dicsussed in the Next part of this blog.&lt;/p&gt;

&lt;p&gt;Thanks for Reading.&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>beginners</category>
      <category>android</category>
    </item>
    <item>
      <title>Best UI LIbrary for your next React Native App</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Sat, 25 Sep 2021 17:04:40 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/best-ui-library-for-your-next-react-native-app-k99</link>
      <guid>https://dev.to/ashadnasim52/best-ui-library-for-your-next-react-native-app-k99</guid>
      <description>&lt;p&gt;I had built multiple apps in React Native for my personal as well as Freelancing projects. I had also tried many UI libraries for React native, to get started fast and for consistent UI. &lt;/p&gt;

&lt;p&gt;I had checked UI Kitten after some time but after I had used &lt;br&gt;
UI kitten, I became a fan of this library. It has most of the components you will need, for example, Input, Card, Button, etc. It also supports the Light and Dark theme. It is the library that has its Icon Module and all the Icons are awesome. The app looks good in both the light theme and dark theme.&lt;/p&gt;

&lt;p&gt;To create a new React Native app using Kitten UI, you just need to run the below command, it will create a new React Native app with the UI kitten as the template&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npx react-native init MyApp --template @ui-kitten/template-js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;In the next post, I will try to explain, how to add UI-kitten to an already created project.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://akveo.github.io/react-native-ui-kitten/"&gt;UI kitten offical page&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;To learn the Basic of UI kitten library refer to this blog, you will enjoy this&lt;/strong&gt;&lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="/ashadnasim52" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DPHUnfAE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/practicaldev/image/fetch/s--76STy-Gk--/c_fill%2Cf_auto%2Cfl_progressive%2Ch_150%2Cq_auto%2Cw_150/https://dev-to-uploads.s3.amazonaws.com/uploads/user/profile_image/268393/0bf15644-e781-4f2b-8554-6fb7e5288c35.png" alt="ashadnasim52"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="/ashadnasim52/react-native-ui-kitten-library-basics-55lp" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;React Native UI Kitten Library Basics&lt;/h2&gt;
      &lt;h3&gt;ashad nasim ・ Sep 26 ・ 2 min read&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#reactnative&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#android&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;



</description>
      <category>reactnative</category>
      <category>beginners</category>
      <category>packages</category>
    </item>
    <item>
      <title>How to Post Long Video on WhatsApp Status | [WhatsApp Trick]</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Sat, 25 Sep 2021 16:37:07 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/how-to-post-long-video-on-whatsapp-status-whatsapp-trick-11mk</link>
      <guid>https://dev.to/ashadnasim52/how-to-post-long-video-on-whatsapp-status-whatsapp-trick-11mk</guid>
      <description>&lt;p&gt;If you prefer the video, then you can watch this video&lt;/p&gt;

&lt;p&gt;&lt;a href="youtu.be/IvzVAdIimCE"&gt;youtu.be/IvzVAdIimCE &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Most of the time we want to share the videos in WhatsApp status, but what happens is the WhatsApp limit the length of the video to be shared on WhatsApp Status to only 30 seconds. So we cannot share videos that are more than 30 seconds, but today I am going to share one trick, which will allow us to share the videos of any length to the Whatsapp Status.&lt;/p&gt;

&lt;p&gt;For this we will need an App by name Video Splitter:- SPLIT and Share Directly You can download this app by visiting this link. It is also free&lt;/p&gt;

&lt;p&gt;After downloading, you just need to select the video from the app and press next, that it will split that video into 30 seconds long and after that, you can share that video directly from the app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=videosplitter.app.status.socialmedia.sharing"&gt;https://play.google.com/store/apps/details?id=videosplitter.app.status.socialmedia.sharing&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Easy Nodejs installation in Elementry OS (LINUX)</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Tue, 21 Sep 2021 16:46:26 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/easy-nodejs-installation-in-elementry-os-linux-3hj7</link>
      <guid>https://dev.to/ashadnasim52/easy-nodejs-installation-in-elementry-os-linux-3hj7</guid>
      <description>&lt;p&gt;We will be using the distribution source from the &lt;a href="https://github.com/nodesource/distributions/blob/master/README.md"&gt;Offical Source&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you are using Ubuntu, then just run this command in your terminal&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It will ask fro your password, provide your password and then press &lt;code&gt;Enter&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;After some time it will install nodejs in your system. &lt;/p&gt;

&lt;p&gt;To check that nodejs is installed in your system, paste below command into your terminal.&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;If it will give you some number, then your nodejs installation is complete.&lt;/p&gt;

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

</description>
      <category>beginners</category>
      <category>node</category>
      <category>installation</category>
      <category>linux</category>
    </item>
    <item>
      <title>How to get an Internship as a Student</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Mon, 20 Sep 2021 05:17:32 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/how-to-get-an-internship-as-a-student-3ocj</link>
      <guid>https://dev.to/ashadnasim52/how-to-get-an-internship-as-a-student-3ocj</guid>
      <description>&lt;p&gt;Getting an internship as a student is the best thing a student can have. As it will increase your knowledge as well as it will help you to earn some money. &lt;/p&gt;

&lt;p&gt;First of all, you need to learn some skills and become comfortable with them. For example, you can learn Android Development from youtube, udemy, blogs, and other mediums.&lt;/p&gt;

&lt;p&gt;After that, start applying to an internship on different portals like "Internshala", "Linkedin Jobs" etc. &lt;/p&gt;

</description>
      <category>programming</category>
      <category>programmingjob</category>
      <category>internship</category>
    </item>
    <item>
      <title>[React Native] Learn how to setup Wireless debugging in Physical device (Easy Way)</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Thu, 05 Aug 2021 18:47:41 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/react-native-learn-how-to-setup-wireless-debugging-in-physical-device-easy-way-1o58</link>
      <guid>https://dev.to/ashadnasim52/react-native-learn-how-to-setup-wireless-debugging-in-physical-device-easy-way-1o58</guid>
      <description>&lt;p&gt;First you need to install the app in the Physical app using the command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npx react-native run-android
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After the app gets install, remove the wire from your device and then shake your device to show to debugging menu&lt;/p&gt;

&lt;p&gt;After that press on the &lt;code&gt;Settings&lt;/code&gt;.&lt;/p&gt;

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

&lt;p&gt;After that click on &lt;code&gt;Debug server host &amp;amp; port for device&lt;/code&gt;&lt;/p&gt;

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

&lt;p&gt;After that add your IP in this format &lt;code&gt;IP:8081&lt;/code&gt;. For Example:- 192.158.1.38:8081&lt;/p&gt;

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

&lt;p&gt;Press &lt;code&gt;OK&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Press Back.&lt;/p&gt;

&lt;p&gt;Again shake your device and then click &lt;code&gt;Reload&lt;/code&gt;. &lt;/p&gt;

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

&lt;p&gt;If you had provided correct IP and your metro server is running then it will work fine.&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>debugging</category>
      <category>devtools</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Angular CLI - request deprecated error (Solution)</title>
      <dc:creator>ashad nasim</dc:creator>
      <pubDate>Tue, 03 Aug 2021 17:56:50 +0000</pubDate>
      <link>https://dev.to/ashadnasim52/angular-cli-request-deprecated-error-solution-1oam</link>
      <guid>https://dev.to/ashadnasim52/angular-cli-request-deprecated-error-solution-1oam</guid>
      <description>&lt;p&gt;Try this below command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ npm cache verify

$ npm cache clean --force
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then try again to install the angular CLI&lt;/p&gt;

&lt;p&gt;If you still get the error then install yarn package manager. &lt;/p&gt;

&lt;p&gt;Install yarn by running this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$  npm install -g yarn
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and then configure angular cli to use yarn package manager, by running this command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ ng config -g cli.packageManager yarn
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>angular</category>
      <category>angularcli</category>
      <category>requestdeprecated</category>
      <category>yarn</category>
    </item>
  </channel>
</rss>
