<?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: namya</title>
    <description>The latest articles on DEV Community by namya (@namya).</description>
    <link>https://dev.to/namya</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%2F487688%2F3f744864-29e4-4e74-9e38-7f54954b7ea2.png</url>
      <title>DEV Community: namya</title>
      <link>https://dev.to/namya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/namya"/>
    <language>en</language>
    <item>
      <title>How to do daily tasks in linux without GUI 🐧 as a sigma user</title>
      <dc:creator>namya</dc:creator>
      <pubDate>Sat, 19 Nov 2022 23:32:09 +0000</pubDate>
      <link>https://dev.to/namya/how-to-do-daily-tasks-in-linux-without-gui-as-a-sigma-user-28e8</link>
      <guid>https://dev.to/namya/how-to-do-daily-tasks-in-linux-without-gui-as-a-sigma-user-28e8</guid>
      <description>&lt;p&gt;The Terminal is a powerful tool that can help you do many things efficiently, and a lot of people find it frustrating to use it, but I think it's not that hard to use it, so I decided to write this article to show you how to do handle wifi, bluetooth, screen resolution &lt;strong&gt;like a real man&lt;/strong&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Connect to wifi
&lt;/h1&gt;

&lt;p&gt;to connect to the wifi you can use the &lt;code&gt;iwctl&lt;/code&gt; command, it's a simple tool that can help you connect to wifi easily, so let's see how to use it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Connect to wifi using iwctl
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;First, you need to open iwctl by running the following command:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;iwctl
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you can see all the available commands by typing &lt;code&gt;help&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;so let's connect to wifi, to do that you need to type &lt;code&gt;station wlan0 scan&lt;/code&gt; to scan for available wifi networks, then type &lt;code&gt;station wlan0 get-networks&lt;/code&gt; to get the available networks, then type &lt;code&gt;station wlan0 connect &amp;lt;network name&amp;gt;&lt;/code&gt; to connect to the network.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;wlan0&lt;/strong&gt; is the name of the wifi interface, you can check the name of your wifi interface by typing&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;device list
station device get-networks
station device connect network_name
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;and that's it, you are connected to wifi😎.&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Connect to bluetooth
&lt;/h1&gt;

&lt;p&gt;Connecting to bluetooth is also easy, you can use the &lt;code&gt;bluetoothctl&lt;/code&gt; command to connect to bluetooth devices, but first you should install some packages (&lt;code&gt;bluez&lt;/code&gt; &lt;code&gt;bluez-utils&lt;/code&gt;), so let's see how to do that.&lt;/p&gt;

&lt;p&gt;if you are using arch based distro, you can install the packages by running the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;    &lt;span class="nb"&gt;sudo &lt;/span&gt;pacman &lt;span class="nt"&gt;-S&lt;/span&gt; bluez bluez-utils
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;if you are using debian based distro:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;    &lt;span class="nb"&gt;sudo &lt;/span&gt;apt &lt;span class="nb"&gt;install &lt;/span&gt;bluez bluez-utils
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;now to start the bluetooth service, you need to run the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;systemctl start bluetooth.services
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;then you should enable the bluetooth service :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;systemctl &lt;span class="nb"&gt;enable &lt;/span&gt;bluetooth.service
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and you are ready to go, lets power on the bluetooth device:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;power on
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;then you can scan for available devices by typing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;scan on
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;to connect to a device, you need to type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;connect &amp;lt;put_mac_adress_here&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and that's it, you are connected to bluetooth.&lt;br&gt;
&lt;code&gt;bluetoothctl&lt;/code&gt; is a powerful tool that can help you do many things, you can check the available commands by typing &lt;code&gt;help&lt;/code&gt; or the &lt;a href="https://wiki.archlinux.org/title/bluetooth"&gt;arch wiki&lt;/a&gt; for more information.&lt;/p&gt;

&lt;p&gt;In the next article we will see how to change screen resolution using the terminal using &lt;code&gt;xrandr&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Thanks for reading, and see you in the next article.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;always remember that you can do anything you want using the terminal, so don't be afraid to use it. like a chad linux enjoyer.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>linux</category>
      <category>archlinux</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Get your subreddit documented automatically 🤖</title>
      <dc:creator>namya</dc:creator>
      <pubDate>Sun, 16 Oct 2022 13:39:11 +0000</pubDate>
      <link>https://dev.to/namya/get-your-subreddit-documented-automatically-m8d</link>
      <guid>https://dev.to/namya/get-your-subreddit-documented-automatically-m8d</guid>
      <description>&lt;p&gt;I always wanted to document top posts of my favorite subreddit in markdown or pdf format, but I didn't find any tool that does that for me, so I decided to build one myself using some python magic.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--W0MOK42N--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/Ayman-s-Lab/reddox/blob/main/assets/reddox.png%3Fraw%3Dtrue" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--W0MOK42N--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/Ayman-s-Lab/reddox/blob/main/assets/reddox.png%3Fraw%3Dtrue" alt="Reddox" width="300" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Reddox 🤖
&lt;/h1&gt;

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

&lt;p&gt;Reddox is a tool that helps you document your subreddit posts in markdown and pdf format automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to use it?
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Clone the repo&lt;/li&gt;
&lt;li&gt;Install the requirements&lt;/li&gt;
&lt;li&gt;Run the script (reddox.py)&lt;/li&gt;
&lt;li&gt;Enter your subreddit name&lt;/li&gt;
&lt;li&gt;enter y to include the number of votes&lt;/li&gt;
&lt;li&gt;enter the number of posts you want to document&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;and that's it, you will find your markdown folder.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you want to document your posts in pdf format, you can use

&lt;code&gt;grip&lt;/code&gt;

and save it from your browser ,or use other methods suggested in the &lt;a href="https://github.com/Ayman-s-Lab/reddox"&gt;repo&lt;/a&gt;.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt; grip reddit.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How to contribute?
&lt;/h2&gt;

&lt;p&gt;You can contribute by:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reporting bugs&lt;/li&gt;
&lt;li&gt;Suggesting new features&lt;/li&gt;
&lt;li&gt;Fixing bugs&lt;/li&gt;
&lt;li&gt;Adding new features&lt;/li&gt;
&lt;li&gt;Improving documentation&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Improving code quality&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/Ayman-s-Lab/reddox"&gt;Github repo&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://twitter.com/NamyaTheWizard"&gt;twitter&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;I think one of the most interesting things about automation isn't on the practical side. I think it's about creating magic and wonder and moments of splendor. - Genevieve Bell&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>python</category>
      <category>productivity</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>how to start self hosting 🚀</title>
      <dc:creator>namya</dc:creator>
      <pubDate>Sat, 10 Sep 2022 10:50:49 +0000</pubDate>
      <link>https://dev.to/namya/how-to-start-self-hosting-1k63</link>
      <guid>https://dev.to/namya/how-to-start-self-hosting-1k63</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--R0rarifr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/Ayman-s-Lab/selfhosted-pi/raw/main/pics/main.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--R0rarifr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://github.com/Ayman-s-Lab/selfhosted-pi/raw/main/pics/main.jpg" alt="picture" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;in this article we will be setting up a raspberry pi server and installing docker and portainer on it. so you can selfhost your own services on it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/JSjjhv0tuiTGW6peHb/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/JSjjhv0tuiTGW6peHb/giphy.gif" alt="picture" width="480" height="270"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  First Steps
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;install the raspbian os on your sd card.
you can follow this tutorial from &lt;a href="https://www.youtube.com/watch?v=gyMpI8csWis&amp;amp;t=1304s"&gt;2:25&lt;/a&gt; ⏩ prep the Raspberry Pi.&lt;/li&gt;
&lt;li&gt;connect the raspberry pi to your wifi network.&lt;/li&gt;
&lt;li&gt;ssh into the raspberry pi using the ssh command.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh pi@ipaddress
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;update and upgrade the system using the command below.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt update &amp;amp;&amp;amp; sudo apt upgrade
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;and reboot the system.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo reboot
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;congratulations you have now installed the raspberry pi.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;now you can install the following software.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo apt install git
sudo apt install nvim
    ...
        ...
            ...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  installing docker
&lt;/h3&gt;

&lt;p&gt;to install docker, clone this repo and run the install script.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/Ayman-s-Lab/selfhosted-pi.git
cd selfhosted-pi/installation-scripts
chmod +rx docker.sh
./docker.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Remember to logout/reboot for the changes to take effect.&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;ssh into the raspberry pi again&lt;/p&gt;

&lt;h3&gt;
  
  
  installing portainer
&lt;/h3&gt;

&lt;p&gt;portainer is a web application that can be used to manage and easily deploy your docker containers .&lt;/p&gt;

&lt;p&gt;to install portainer, open th installation-scripts folder and run the install script.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd installation-scripts
chmod +rx portainer.sh
./portainer.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;yeah, now you can access portainer at &lt;a href="http://ipaddress:9000"&gt;http://ipaddress:9000&lt;/a&gt; .&lt;/p&gt;

&lt;p&gt;you created a new administrator user and chose docker as a container env aaand you are ready to go🎆.&lt;/p&gt;

&lt;p&gt;Click Settings, in the bottom-left corner, and paste the Portainer v2 json file link from below into the "App Templates" box.&lt;br&gt;
this is the one i use for my portainer.&lt;br&gt;
i will create my own soon.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://raw.githubusercontent.com/ntv-one/portainer/main/template.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You're done! Now just click App Templates and deploy applications!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/CRbvUItILGRs4/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/CRbvUItILGRs4/giphy.gif" alt="done" width="270" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading this article, i hope you enjoyed it.&lt;/p&gt;

&lt;p&gt;if you have any questions or suggestions, feel free to contact me on &lt;a href="https://twitter.com/NamyaTheWizard"&gt;twitter&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;dont forget to give this &lt;a href="https://github.com/Ayman-s-Lab/selfhosted-pi"&gt;project&lt;/a&gt; a star⭐ to support me.&lt;/p&gt;

</description>
      <category>docker</category>
      <category>linux</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>What is a Synchronous &amp; Asynchronous Programming? 🚀</title>
      <dc:creator>namya</dc:creator>
      <pubDate>Mon, 11 Jul 2022 23:42:18 +0000</pubDate>
      <link>https://dev.to/namya/what-is-a-synchronous-asynchronous-programming-56m0</link>
      <guid>https://dev.to/namya/what-is-a-synchronous-asynchronous-programming-56m0</guid>
      <description>&lt;h2&gt;
  
  
  What is Synchronous Programming ?
&lt;/h2&gt;

&lt;p&gt;Synchronous operations tasks performed one at a time &lt;br&gt;
  and as that task is completed, the following task is unlocked. &lt;br&gt;
  In other words, you would like to hold up for the task to be executed to move to the following one.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Asynchronous Programming ?
&lt;/h2&gt;

&lt;p&gt;Asynchronous operations may execute the next following task before the previous one is completed ,&lt;br&gt;
  ( its like multitasking ) . so it execute all tasks synchronously till it hitt something thats asynchronous and &lt;br&gt;
  it will complete that and the rest of the tasks simultaneously . &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Wtv0KQSg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.redd.it/lpf0u9nbj7w41.jpg" alt="sync and async" width="779" height="407"&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  learn more 🤓:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://youtu.be/Kpn2ajSa92c"&gt;🎥 Asynchronous Vs Synchronous Programming&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://blog.devgenius.io/multi-threading-vs-asynchronous-programming-what-is-the-difference-3ebfe1179a5"&gt;📜 The Difference Between Asynchronous And Multi-Threading&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;







&lt;p&gt;Thank you for reading, and let's connect!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>discuss</category>
      <category>javascript</category>
    </item>
    <item>
      <title>AI .. What is it all about , is it good or is it whack</title>
      <dc:creator>namya</dc:creator>
      <pubDate>Mon, 11 Jul 2022 23:30:25 +0000</pubDate>
      <link>https://dev.to/namya/ai-what-is-it-all-about-is-it-good-or-is-it-whack-35p5</link>
      <guid>https://dev.to/namya/ai-what-is-it-all-about-is-it-good-or-is-it-whack-35p5</guid>
      <description>&lt;p&gt;Many people are worried that the commonness of AI will negatively impact our planet, it will kill our jobs (which is mostly right) or AI will reach a point where it doesn’t care for or about the existence of humanity anymore, something along the lines of The Terminator movie.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QLQTv8c6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgflip.com/22bjx7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QLQTv8c6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgflip.com/22bjx7.jpg" alt="AI" width="634" height="398"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here are the top uses of AI and how it has made our lives much more easier:&lt;/p&gt;

&lt;h3&gt;
  
  
  AI in artistic creativity
&lt;/h3&gt;

&lt;p&gt;Musicians, artists, also normal people can use machine learning and neural networks to create art and &lt;a href="https://openai.com/blog/musenet/"&gt;music&lt;/a&gt; depending on what people consume to more often. This makes sure that the artists are following modern trends and, thus, earning more money.&lt;/p&gt;

&lt;h3&gt;
  
  
  AI in social media
&lt;/h3&gt;

&lt;p&gt;Our activity patterns on social media are used to recommend the pages, promoted ads, videos, or posts we might be interested in. Social media platforms use our data to recommend ads for the products we might be interested in(or maybe not :( ).&lt;/p&gt;

&lt;p&gt;Another common example of machine learning and AI is Facebook detecting facial features to tag you and your friends in pictures.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qH7ib_jT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.pinimg.com/originals/d4/cd/37/d4cd379ae02df0e5d3e66f196173b917.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qH7ib_jT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.pinimg.com/originals/d4/cd/37/d4cd379ae02df0e5d3e66f196173b917.jpg" alt="image" width="800" height="560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  AI in chatbots
&lt;/h3&gt;

&lt;p&gt;Virtual assistants have become very common nowadays like &lt;a href="https://www.alexa.com/"&gt;alexa&lt;/a&gt; &lt;a href="https://assistant.google.com/"&gt;Google Assistant&lt;/a&gt; . They use speech recognition and natural language processing to perform common day tasks on command. These include ordering food, controlling lights, checking for your schedule ...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zqxzDK_0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://y.yarn.co/b881eaac-09bd-41a5-98fa-d85a898e08c7_text.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zqxzDK_0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://y.yarn.co/b881eaac-09bd-41a5-98fa-d85a898e08c7_text.gif" alt="lol" width="400" height="225"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Potential Risks of AI
&lt;/h1&gt;

&lt;p&gt;there are downsides of anything and AI too.&lt;br&gt;
AI should be used with caution to avoid any potential risks like :&lt;/p&gt;

&lt;h3&gt;
  
  
  dependency on technology
&lt;/h3&gt;

&lt;p&gt;it can be a bad habit to rely on a technology to make a decision for us, it may be causing lazyness and losing our problem solving skills.&lt;/p&gt;

&lt;h3&gt;
  
  
  AI is a Job Killer
&lt;/h3&gt;

&lt;p&gt;yeah its true, a smart machine that performs well can be replacing a human being, maybe we can create more jobs that we can do better who knows.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Terminator
&lt;/h3&gt;

&lt;p&gt;What if AIs get so smart that they realize people are a waste of space?&lt;/p&gt;




&lt;h2&gt;
  
  
  Thank you for reading my blog. Feel free to connect &lt;a href="https://twitter.com/DevNamya"&gt;Twitter&lt;/a&gt; ...
&lt;/h2&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://github.com/AymanLar"&gt;Github&lt;/a&gt;
&lt;/h2&gt;




&lt;p&gt;learn more about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.imdb.com/title/tt0088247/"&gt;The Terminator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.forbes.com/sites/cognitiveworld/2019/10/31/should-we-be-afraid-of-ai/?sh=7df29a824331"&gt;Should We Be Afraid of AI?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.forbes.com/sites/cognitiveworld/2019/10/31/ai-in-the-workplace/?sh=7df29a824331"&gt;AI in the workplace&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.artbreeder.com/browse"&gt;Artbreeder&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=xx5t5ps-bwc"&gt;Ali G - Science&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>machinelearning</category>
      <category>ai</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
