<?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: Anuj</title>
    <description>The latest articles on DEV Community by Anuj (@anujgupta).</description>
    <link>https://dev.to/anujgupta</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%2F311702%2F81327958-90fc-4c28-a8f9-74cd402d4ee3.jpg</url>
      <title>DEV Community: Anuj</title>
      <link>https://dev.to/anujgupta</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anujgupta"/>
    <language>en</language>
    <item>
      <title>Create Hangman Game in Python [with Source Code]</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Sat, 29 May 2021 05:09:24 +0000</pubDate>
      <link>https://dev.to/anujgupta/create-hangman-game-in-python-with-source-code-5hfj</link>
      <guid>https://dev.to/anujgupta/create-hangman-game-in-python-with-source-code-5hfj</guid>
      <description>&lt;p&gt;Today, we will learn how to make the hangman game in python. After executing the code in this article, you will be able to build your own hangman game. The code can also be customized as per your choice. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before we begin, please bookmark rest of the projects in python project series:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://data-flair.training/blogs/library-management-system-python-project/"&gt;1. Library Management System&lt;/a&gt;&lt;br&gt;
&lt;a href="https://techvidvan.com/tutorials/python-game-project-tic-tac-toe/"&gt;2. Python Tic Tac Toe&lt;/a&gt;&lt;br&gt;
&lt;a href="https://projectgurukul.org/python-snake-game-program/"&gt;3. Python Snake Game&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  About the Hangman game
&lt;/h2&gt;

&lt;p&gt;It is a simple word guessing game in which we guess one character at a time. A row of dashes represents the word to be guessed. The player guesses an alphabet. &lt;/p&gt;

&lt;p&gt;If the given word contains that alphabet, then the letter is placed at all the places where it occurs in the word. If the letter is not present in the word, the player tries again. The player has a limited number of chances to correctly guess the word.&lt;/p&gt;
&lt;h2&gt;
  
  
  Python Hangman Project Implementation
&lt;/h2&gt;

&lt;p&gt;We start with the game by printing some initial messages. The module ‘time’ is used to add some pauses in the game using the sleep() function.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#start with the hangman game
import time
print("-----Hangman game-----")
print("Let's play!")
time.sleep(0.5)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We make the word to be guessed as ‘techvidvan’. This can be any word which the player will be guessing in our hangman game. Then we ask the user to start guessing the letters in the word.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#the word to be guessed
word = 'techvidvan'
print("\n-----Guess the letters in the word-----")
time.sleep(0.5)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Whatever letters the player will guess, we will add them in the initially empty string totalGuesses. The maximum number of tries here is taken to be 11. This is customizable and can be any value that you decide to set in your program.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#initial guesses are none
totalGuesses = ' '
tries = 11
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The user keeps guessing the alphabets in the secret word till the total number of tries is greater than 0. We take a variable incorrect that keeps track of the total number of failed guesses by the user. &lt;/p&gt;

&lt;p&gt;Initially, the value of the variable incorrect is 0. If the letter is guessed correctly by the user, we print the letter, otherwise we print a dash. &lt;/p&gt;

&lt;p&gt;For failed guesses, we also have to increment the value of the incorrect variable by 1. If the value of incorrect is 0, the player wins and we print the secret word. If there are no more tries left, the player will lose.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;while(tries &amp;gt; 0):
        #variable to count number of incorrect attempts
            incorrect = 0

            for letter in word:     
                        if letter in totalGuesses:
                        #print the correctly guessed letter if found
                                    print(letter)
                        else:
                        #print a dash if letter not in word
                                    print("_")
                                    incorrect += 1

            if incorrect == 0:
                        #player wins
                        print("You Win")

                        print("Word is - ", word)
                        break

            #input again if wrong letter guessed
            guess = input("\nGuess a letter in the word - ")

            #store guessed letters in totalGuesses
            totalGuesses += guess

            #if guess in not present in the word
            if guess not in word:               
                        tries -= 1
                        print("Wrong")

                        #print tries left for the player
                        print("You have ", + tries, 'guesses left')


                        if tries == 0:
                                    print("You Lose")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;We have successfully developed python hangman game. Hangman is apopular game and it's implementation in python is a fun and a good project for python beginners.&lt;/p&gt;

&lt;p&gt;Do you want to work on real-time python projects?&lt;br&gt;
If yes, please refer: &lt;a href="https://data-flair.training/blogs/python-project-ideas/"&gt;Real-time python projects&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;happy Coding&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>codenewbie</category>
      <category>project</category>
    </item>
    <item>
      <title>Footsteps a Python Programming aspirant must follow</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Wed, 19 Aug 2020 12:15:16 +0000</pubDate>
      <link>https://dev.to/anujgupta/footsteps-a-python-programming-aspirant-must-follow-1bjc</link>
      <guid>https://dev.to/anujgupta/footsteps-a-python-programming-aspirant-must-follow-1bjc</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“If I go around in any organization asking random questions on programming languages that aids in Data Science or any other latest technology, 8 out to 10 professionals would instantly speak up, Python.”&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;-Unanimous-&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;span&gt;Python, a programming language that has made millions of IT professionals awestruck by its incredible features. Whether it be an experienced candidate or a newbie, everyone’s adoring Python unlike any other programming language. It wouldn't be wrong if I say that Python has outperformed Java in terms of popularity. &lt;strong&gt;In short, Python is currently an unchallenged king of the realm of programming languages.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;And this is just a glimpse of how dominant Python has been in the IT industry since the last few years and it’s predicted to have the same influence for many more years to come. &lt;strong&gt;And the prime reason behind this supremacy of Python is its majestic features. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/spreadsheets/d/1eNBLcKqCVN9zZQvfGUmm5bAzsETqB_ugVOlUtmvJGYU/edit#gid=0"&gt;&lt;em&gt;&lt;strong&gt;'Coz this Cheat Sheet is a treat for all the Tech freaks&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;The features that Python is furnishing its programmers with are unmatchable and there’s possibly no other language that has such a complete blend of so many intriguing features. In addition to it, what adds more glory to it is its libraries. Python comprises a rich and extensive set of libraries to make its programmers life hassle-free.&lt;br&gt;&lt;/span&gt;&lt;strong&gt;All these things when combined together makes Python unbeatable.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;MY PYTHON STORY&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;&lt;span&gt;So, all those fancy quotes and facts about Python available on the internet instantly caught my attention and soon I made up my mind to have a career in this extremely popular programming language. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;So, after a fair amount of groundwork, I began with my Python journey. And soon as I began, I realized that if I wanted to be an expert of Python Programming, then my focus on practical implementations should be even more. And that’s when I turned my attention towards Python Projects.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;a href="https://t.me/pythonpundits"&gt;&lt;em&gt;&lt;strong&gt;Make your Python Programming career with your smartphone&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;Just after I was aware of a few of its concepts, I started trying out different projects. And believe me, &lt;strong&gt;working on projects since my initial days of Python journey was the best decision I made &lt;/strong&gt; and it ensured a smooth journey till the end.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So here are a few of the beginner-level Python Projects that I laid my hands at and were crucial in strengthening my Python concepts.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;BEGINNER-LEVEL PYTHON PROJECTS&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Hangman Python Project&lt;/strong&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;The aim of this project is to build our childhood’s one of the most played games, Hangman. Apart from a couple of modules i.e. the random and the time modules, this project doesn’t demand any other external module. Just a good command over Python functions and loops and you’ll be able to build this project quite easily.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/hangman-game-python-code/"&gt;&lt;em&gt;Python Project on Hangman&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dice Rolling Simulator Python Project&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;Almost all of us have rolled a dice at least once in your lives and we’re all aware of how a dice works. So, this project is all about making the dice roll and hence generating a random number. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/dice-rolling-simulator-python/"&gt;&lt;em&gt;Python Project of Dice Rolling Simulator&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Alarm Clock with GUI&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;An alarm clock is a highly essential ingredient of our daily lives and this Python project lets you build one of your own. It requires two of the most important Python libraries datetime and tkinter to get along with this project. In addition to it, you'll build an interactive GUI as well in this project. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/alarm-clock-python/"&gt;&lt;em&gt;Alarm Clock with Python&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Currency Converter in Python&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;This is quite an exciting Python Project which deals with converting various currencies into a desirable one. Again, in this project you’ll have to build a GUI using the tkinter API in Python. This is a project that will take you a step ahead of the beginner’s level.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/currency-converter-python/"&gt;&lt;em&gt;Currency Converter Python Project&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;COVID-19 Spread Analysis with Python&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;Depending upon the news channels to know about the spreading isn’t enough and that’s the reason for building this project. It lets you build a real-time dashboard to analyse the spread of COVID-19 pandemic.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/covid-19-spread-analysis-python/"&gt;&lt;em&gt;COVID-19 Analysis with Python&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Calculator in Python&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;Though it seems to be quite an easy project from the outset, this project is a must-do for all the Python aspirants. Build using Tkinter library, it involves all the operations and the required result to be displayed. You can further extend this project into a scientific calculator.&lt;/span&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/python-calculator-project/"&gt;&lt;em&gt;Build a Calculator in Python&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Library Management System&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;What makes this project different from other management system projects is that it will be a real-time system. Again, this project will be built using the Tkinter library with a variety of functionalities being provided to the user.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE:&lt;a href="https://data-flair.training/blogs/library-management-system-python-project/"&gt;&lt;em&gt; Python Project on Library Management System&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Calorie Calculator in Django&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;This project will be built using one of the finest Python frameworks, Django. This would be a web app project as Django has got a lot of inbuilt libraries for the same. This is a project that’s good for your health as well as your Python skills.&lt;/span&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/python-project-calorie-calculator-django/"&gt;&lt;em&gt;Calorie Calculator in Python Django&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Discussion Forum in Python Django&lt;/strong&gt;&lt;br&gt;
A discussion forum is all about asking questions and keeping your point of view in front of others. Again, this would be a web development project built using Django because it makes this process hassle-free. This project will let you explore different dimensions of a web development project.&lt;span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/discussion-forum-python-django/"&gt;&lt;em&gt;Discussion Forum Python project&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;News Aggregator Web App&lt;/strong&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;span&gt;Yet another Django project that takes you into the wilderness of Django and apparently a highly-useful project at the same time. If you’re an avid news reader, then this project is meant for you. A project that piles up news on various different topics from a number of websites and sources at one place.  &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;strong&gt;SOURCE CODE: &lt;a href="https://data-flair.training/blogs/django-project-news-aggregator-app/"&gt;&lt;em&gt;News Aggregator Django Project&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;FINAL WORDS...&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;&lt;span&gt;So, this marks the end of a short list of projects that I tried my hands on during my initial days of Python journey. All these projects that I selected were different from each other in some way or other. And due to this, I was able to have an exposure of the versatility that Python has got.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Thanks for your time!!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>computerscience</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Top 10 Unique Django Projects</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 04 Aug 2020 11:46:14 +0000</pubDate>
      <link>https://dev.to/anujgupta/top-10-unique-django-projects-31c5</link>
      <guid>https://dev.to/anujgupta/top-10-unique-django-projects-31c5</guid>
      <description>&lt;p&gt;The first programming language that strikes our mind soon as we hear about Web Development might be Java. But here’s a fact Python’s not behind as well. &lt;strong&gt;DJANGO, one of the best Python frameworks which comes free of cost is specifically meant for web development.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;Django is an open-source and high-level web development framework that adds more glory to the versatility of Python.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before we start here’s a complete series of project ideas of all the Latest cutting-edge Technologies.&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-exclusive-data-science-projects-48l1"&gt;&lt;em&gt;&lt;strong&gt;Data Science Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1"&gt;&lt;em&gt;&lt;span&gt;Python Projects&lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-20-sparkling-machine-learning-projects-59i6"&gt;&lt;em&gt;&lt;span&gt;Machine Learning Projects&lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma"&gt;&lt;em&gt;&lt;span&gt;R Programming Projects&lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-20-thrilling-artificial-intelligence-projects-3eon"&gt;&lt;em&gt;&lt;span&gt;Artificial Intelligence Projects&lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-20-deep-learning-projects-189n"&gt;&lt;em&gt;&lt;span&gt;Deep Learning Projects&lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i"&gt;&lt;em&gt;&lt;strong&gt;Computer Vision Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo"&gt;&lt;em&gt;&lt;span&gt;IoT Projects &lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;span&gt;Here are a few topclass Django projects that will ease your way into the world of Web Development that too in the Most Demanded Programming Language on the Planet.&lt;/span&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;span&gt;Video Chatting Website&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Django Social Network App&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://data-flair.training/blogs/django-project-news-aggregator-app/"&gt;&lt;em&gt;&lt;strong&gt;News Aggregator&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Django Quiz App&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Notes App&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Clothes Online Store with Payment&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Interactive Web Maps&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Hospital Management System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Regex Query Tool&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Calorie Counter&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Working with Django can be regarded as much easier as compared to other web development frameworks as it takes care of much of the hassle encountered during a web development cycle. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;em&gt;&lt;strong&gt;Let your wisdom extend by having all the latest technology trends&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;All these projects ensures that you are on the right track of becoming top web developer with one of the best frameworks out there.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Thanks for reading!!  :-)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>django</category>
      <category>computerscience</category>
      <category>webdev</category>
    </item>
    <item>
      <title>An Exclusive Data Science Telegram Channel</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 14 Jul 2020 09:07:45 +0000</pubDate>
      <link>https://dev.to/anujgupta/an-exclusive-data-science-telegram-channel-1dl8</link>
      <guid>https://dev.to/anujgupta/an-exclusive-data-science-telegram-channel-1dl8</guid>
      <description>&lt;p&gt;&lt;a href="https://t.me/datasciencemorons"&gt;&lt;strong&gt;&lt;em&gt;Data Science Telegram Channel&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;a href="https://t.me/datasciencemorons"&gt;&lt;em&gt;&lt;br&gt;&lt;/em&gt;&lt;/a&gt;The most prominent way of conquering your dream of becoming a Data Scientist.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;The reason why this is a must join telegram channel is because you can access everything about Data Science on the go. Exclusive content on Data Science that you won’t find it anywhere else.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Science Telegram Channel offers to you-&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Data Science Tutorials that covers every concept&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Data Science Codes &amp;amp; Practicals&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Data Science Case Studies and Applications&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Top Data Science Projects with Source Code&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Data Science Interview Questions with Answers&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;&lt;strong&gt;In the spotlight - DATA SCIENCE&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Data Science and hottest career, two words that cannot be put in together in the same line. &lt;strong&gt;Out of all the hottest career options this generation has witnessed, Data Science in all senses has been the flag bearer for all of those. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;With being in the center of all the ming-boggling innovations going around the world, Data Science well and truly deserves the tag of &lt;strong&gt;“Hottest Career option of this Century.”&lt;br&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span&gt;A career option that is on the top of the wishlist of the majority of millennials out there.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1kABI6TP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dpcmo4k9n7gobkt5yula.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1kABI6TP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dpcmo4k9n7gobkt5yula.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;But on the flip side, with such immense and chart-topping popularity comes a fierce competition and challenge of getting into this dream field. An inch less than what makes you a Top Data Scientist and you’ll find yourself lagging miles behind the other Data Science aspirants. &lt;strong&gt;You gotta keep up with the pace always.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;YOUR DATA SCIENCE DREAM&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Considering all the points that are crucial for all the Data Science aspirants out there, &lt;strong&gt;this telegram channel ensures that you effortlessly leapfrog all the hurdles in your journey of being a Data Scientist.&lt;/strong&gt; A collection of top resources of Data Science that are specially curated by some of the most renowned Data Scientists of the industry.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://t.me/datasciencemorons"&gt;&lt;strong&gt;&lt;em&gt;It’s time to conquer your dream of Data Science&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;A Data Science resource that you’ll always have with you and is much easier to access compared to other resources. &lt;strong&gt;Since these resources are curated by industry veterans, it has each and everything of what it takes to be a Data Scientist.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>computerscience</category>
      <category>machinelearning</category>
      <category>python</category>
    </item>
    <item>
      <title>Top Python Telegram Channel</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Fri, 10 Jul 2020 07:21:21 +0000</pubDate>
      <link>https://dev.to/anujgupta/top-python-telegram-channel-4l53</link>
      <guid>https://dev.to/anujgupta/top-python-telegram-channel-4l53</guid>
      <description>&lt;p&gt;&lt;span&gt;&lt;a href="https://t.me/pythonpundits"&gt;&lt;strong&gt;Python Telegram Channel&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;&lt;em&gt;&lt;strong&gt;A unique way to learn the most popular programming language on the planet - Python.&lt;/strong&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;With the Python telegram channel you can learn while you are on the move. This telegram channel provides an exclusive series of content to master Python.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Python telegram channel brings to you-&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Python Tutorials that covers every concept&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Python Codes &amp;amp; Practicals&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Python Case Studies and Applications&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Top Python Projects with Source Code&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Python Interview Questions with Answers&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;&lt;strong&gt;THE RISE OF PYTHON&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;One programming language that is at the pinnacle of its popularity and has been at the center of development of almost every latest cutting edge technology is undoubtedly Python Programming Language.&lt;/span&gt;&lt;/p&gt; 

&lt;p&gt;With reaching its highest ever rating in the TIOBE index of popularity of programming languages, Python’s soon gonna overtake Java and C++ as the most popular programming language there’s ever been.&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;strong&gt;And the fact is, being a skilled Python Developer these days is like being a part of a group that is one of the most demanded groups of professionals on the planet.&lt;/strong&gt; This is how huge stature Python has gained globally in the past few years. &lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;PYTHON’s POPULARITY&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;And deservingly so, the features Python offers makes it worthy of all these laurels. &lt;strong&gt;To be honest, there’s no other programming language more versatile than Python as of now.&lt;/strong&gt; And this is the main reason behind Python being the most preferred choice for the latest technologies like &lt;strong&gt;Data Science, Machine Learning, Artificial Intelligence, Deep Learning,&lt;/strong&gt; etc.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--89QOlqBQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e5n6mjcur9f18bdft45f.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--89QOlqBQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e5n6mjcur9f18bdft45f.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;So, being a Python Developer is no less than having a dream career for many. &lt;strong&gt;But you need to have access to some of the top resources for the same.&lt;/strong&gt; With it and proper guidance, this dream of yours will soon be a reality.&lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;CONQUER YOUR PYTHON DREAM&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Keeping all these in mind and the amount of resources available on the internet, I am here to give access to one of the finest resources available for learning Python. &lt;strong&gt;It's a kind of resource you will hardly get anywhere else and which is created with such finesse.&lt;/strong&gt; Because everyone claims to be the best, but the best prove it to the rest. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://t.me/pythonpundits"&gt;&lt;strong&gt;&lt;em&gt;The easiest yet the best guide to learn Python&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;You will now be able to have access to these fine resources on your smartphone. A resource of python that leaves no page unturned and with a sole aim of making you one of the top Python Developers out there.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>tutorial</category>
      <category>datascience</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>My First Machine Learning Mini-Adventure with Python</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Mon, 29 Jun 2020 09:56:34 +0000</pubDate>
      <link>https://dev.to/anujgupta/my-first-machine-learning-mini-adventure-with-python-5gk9</link>
      <guid>https://dev.to/anujgupta/my-first-machine-learning-mini-adventure-with-python-5gk9</guid>
      <description>&lt;p&gt;&lt;strong&gt;Being a Python Developer I have always heard about its application in all the latest technological advancements going on around the world.&lt;/strong&gt; This always fascinated me to delve into the details of how it is done.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gz3udSPI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/70gba5vzss1o74jb60jp.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gz3udSPI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/70gba5vzss1o74jb60jp.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And coincidentally, I heard a news about one of my relatives being suffering from Parkinson’s Disease and how they the doctors were unable to diagnose it in the earlier stages. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/3esKGHc"&gt;&lt;em&gt;&lt;strong&gt;Some of the Most Challenging Python Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is where I got the idea for my next adventure with Python. I decided to build a system that detects Parkinson's Disease quite easily.&lt;/strong&gt;Parkinson’s Disease is a disorder of the nervous system that affects the movement of few parts of the body. &lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;MY MACHINE LEARNING ADVENTURE WITH PYTHON&lt;/strong&gt;&lt;/h2&gt;

&lt;h3&gt;&lt;strong&gt;Insights of the Project&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;For this Machine Learning Project I used different Python libraries such as &lt;strong&gt;scikit-learn&lt;/strong&gt;, &lt;strong&gt;numpy&lt;/strong&gt;, &lt;strong&gt;pandas&lt;/strong&gt;, and &lt;strong&gt;xgboost&lt;/strong&gt; to build a model by using &lt;strong&gt;XGBClassifier&lt;/strong&gt;. The flow of project goes like this — loading the data, getting the features and labels, scaling the features, then splitting the dataset, building an XGBClassifier, and then calculating the accuracy of the model.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://t.me/pythonpundits"&gt;&lt;em&gt;&lt;strong&gt;The Power of Python at your fingertips&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;My Dataset&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;I used the &lt;strong&gt;UCI ML Parkinsons dataset &lt;/strong&gt;for my project. It has 24 columns and 195 records and is sized only 39.7 KB&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/2YyZL4G"&gt;&lt;em&gt;&lt;strong&gt;A huge collection of Datasets&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;Prerequisites&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;I installed the following libraries through pip:&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;pip install numpy pandas sklearn xgboost&lt;br&gt;&lt;br&gt;&lt;/strong&gt;&lt;/pre&gt;

&lt;p&gt;I also installed JupyterLab and then run through the following command:&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;C:\Users\Anuj&amp;gt;jupyter lab&lt;/strong&gt;&lt;/pre&gt;

&lt;p&gt;This prompted a new JupyterLab window into the browser. Then I created a new console and typed in my code, then I pressed Shift+Enter to execute the lines.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/spreadsheets/d/1eNBLcKqCVN9zZQvfGUmm5bAzsETqB_ugVOlUtmvJGYU/edit#gid=1276262674"&gt;&lt;em&gt;&lt;strong&gt;'Coz this Cheat Sheet is a treat for all the Tech freaks&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;BUILDING THE PROJECT&lt;/strong&gt;&lt;/h2&gt;

&lt;h3&gt;&lt;strong&gt;STEP №1&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;The first step of any project is to make all the necessary imports for the project. I used the following commands for the same.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;import numpy as np
import pandas as pd
import os, sys
from sklearn.preprocessing import MinMaxScaler
from xgboost import XGBClassifier
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score&lt;/strong&gt;&lt;/pre&gt;

&lt;h3&gt;&lt;strong&gt;STEP №2&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;Now the next step was to read the data into a DataFrame so that I get the first 5 records.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj— Read the data
df=pd.read_csv(‘D:\\Rinu\\parkinsons.data’)
df.head()&lt;/strong&gt;&lt;/pre&gt;

&lt;h4&gt;Screenshot:&lt;/h4&gt;

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

&lt;h3&gt;&lt;strong&gt;STEP №3&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;Then I got the features and labels from the DataFrame (dataset). The features are all the columns except, and the labels are those in the column.&lt;/p&gt;

&lt;pre&gt;#Anuj — Get the features and labels
features=df.loc[:,df.columns!=’status’].values[:,1:]
labels=df.loc[:,’status’].values&lt;/pre&gt;

&lt;h3&gt;&lt;strong&gt;STEP №4&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;The ‘status’ column has values 0 and 1 as labels; then I counted the labels for both 0 and 1.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj— Get the count of each label (0 and 1) in labels
print(labels[labels==1].shape[0], labels[labels==0].shape[0])&lt;/strong&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;There are 147 ones and 48 zeros in the status column in the dataset.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;&lt;strong&gt;STEP №5&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;So, now I initialized a MinMaxScaler and scaled the features to between -1 and 1 to normalize them. The MinMaxScaler is meant to transform the features by scaling them to a given range. The fit_transform() method does two things; fits to the data and then transforms it. There's no need to scale the labels.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj — Scale the features to between -1 and 1
scaler=MinMaxScaler((-1,1))
x=scaler.fit_transform(features)
y=labels&lt;/strong&gt;&lt;/pre&gt;

&lt;h3&gt;&lt;strong&gt;STEP №6&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;Time to split the dataset into training and testing sets keeping only 20% of the data for testing.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj — Split the dataset
x_train,x_test,y_train,y_test=train_test_split(x, y, test_size=0.2, random_state=7)&lt;/strong&gt;&lt;/pre&gt;

&lt;h3&gt;&lt;strong&gt;STEP №7&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;I then initialized an XGBClassifier and trained the model. The classification is done using eXtreme Gradient Boosting, i.e. using gradient boosting algorithms for modern Data Science problems. This comes under the category of Ensemble Learning in ML, where we train and predict using many models to produce one superior output.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj — Train the model
model=XGBClassifier()
model.fit(x_train,y_train)&lt;/strong&gt;&lt;/pre&gt;

&lt;h4&gt;&lt;strong&gt;Screenshot:&lt;/strong&gt;&lt;/h4&gt;

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

&lt;h3&gt;&lt;strong&gt;STEP №8&lt;/strong&gt;&lt;/h3&gt;

&lt;p&gt;The final step is to generate y_pred (predicted values for x_test) and to calculate the accuracy for the model. Finally I printed it.&lt;/p&gt;

&lt;pre&gt;&lt;strong&gt;#Anuj — Calculate the accuracy
y_pred=model.predict(x_test)
print(accuracy_score(y_test, y_pred)*100)&lt;/strong&gt;&lt;/pre&gt;

&lt;h4&gt;&lt;strong&gt;Screenshot:&lt;/strong&gt;&lt;/h4&gt;

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

&lt;h2&gt;&lt;strong&gt;THE FINAL NOTE...&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;In this Machine Learning project of mine, I detected the presence of Parkinson’s Disease in people using various factors. &lt;strong&gt;For this, I used an XGBClassifier and made use of the sklearn library to prepare the dataset.&lt;/strong&gt; Through this I achieved an &lt;strong&gt;accuracy of 94.87%&lt;/strong&gt;, which is more than decent considering the number of lines of code in this Python project.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;em&gt;&lt;strong&gt;Have all the Latest Technology Trends before your friends&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>machinelearning</category>
      <category>computerscience</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Twinkle twinkle little staR, have you tried these Data Science Projects with ‘R’?</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 16 Jun 2020 08:53:17 +0000</pubDate>
      <link>https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma</link>
      <guid>https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;If Data Science is a war, the easiest way to win it is with R.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;span&gt;One programming language that’s highly underrated and doesn’t get the due that it deserves is surely R Programming Language. &lt;/span&gt;&lt;strong&gt;The R Programming language has so much to offer and is undoubtedly the easiest way to conquer your dream of becoming a Data Scientist.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;To beat the heat of the competition among Data Science aspirants, R Programming language is definitely the one you must go for.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before we start here’s a complete series of project ideas of all the Latest cutting-edge Technologies.&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1"&gt;&lt;em&gt;&lt;strong&gt;Python Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-exclusive-data-science-projects-48l1"&gt;&lt;em&gt;&lt;strong&gt;Data Science Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-sparkling-machine-learning-projects-59i6"&gt;&lt;em&gt;&lt;strong&gt;Machine Learning Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-10-unique-django-projects-31c5"&gt;&lt;em&gt;Django Projects&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-thrilling-artificial-intelligence-projects-3eon"&gt;&lt;em&gt;&lt;strong&gt;Artificial Intelligence Projects&lt;strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-deep-learning-projects-189n"&gt;&lt;em&gt;&lt;strong&gt;Deep Learning Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i"&gt;&lt;em&gt;&lt;strong&gt;Computer Vision Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo"&gt;&lt;em&gt;&lt;strong&gt;IoT Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;So, here’s a complete list of Top Class R Projects that makes sure that you’re heading in the right direction towards your Data Science dream.&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;span&gt;Insurance Claims Severity Prediction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;PUBG Finish Placement&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Predict Macroeconomic Trends&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/3fskjBf"&gt;&lt;strong&gt;&lt;em&gt;Customer Segmentation&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Predict Census Income&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Zillow’s Home Value Prediction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/37JyNdD"&gt;&lt;strong&gt;&lt;em&gt;Movie Recommendation System&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Coupon Purchase Prediction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Wine Preference&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Classifying Loan Applications&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/30Nk1B8"&gt;&lt;strong&gt;&lt;em&gt;Sentiment Analysis Model&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Human Activity Prediction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Tweet Classification&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Iris Flower Classification &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/2B8iivg"&gt;&lt;strong&gt;&lt;em&gt;Credit Card Fraud Detection&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Taxi Trajectory Prediction&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Instacart Market Basket Analysis&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/2Yx4pyA"&gt;&lt;strong&gt;&lt;em&gt;Uber Data Analysis&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;COVID-19 Data Analysis&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Network Analysis of Game of Thrones&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;span&gt;To all the Data Science aspirants out there, these R Programming Projects are all you need to get closer to having a career in the hottest field of this century. &lt;/span&gt;&lt;strong&gt;Because being a Data Scientist is like being a part of a group of most demanded professionals in the world.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/spreadsheets/d/1eNBLcKqCVN9zZQvfGUmm5bAzsETqB_ugVOlUtmvJGYU/edit#gid=0"&gt;&lt;em&gt;&lt;strong&gt;'Coz this Cheat Sheet is a treat for all the Tech Freaks&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>computerscience</category>
      <category>tutorial</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Top 20 Fascinating IoT Projects</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Mon, 08 Jun 2020 10:08:22 +0000</pubDate>
      <link>https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo</link>
      <guid>https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo</guid>
      <description>&lt;blockquote&gt;&lt;strong&gt;&lt;em&gt;The Internet of Things (IoT) will transform the world in so many ways. Either you learn about it or get left behind.&lt;/em&gt;&lt;/strong&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Internet of Things (IoT), a field that has magic and madness both intertwined.&lt;/strong&gt; An absolutely astonishing field that connects smart devices across the globe digitally. IoT is no less than a wonderland that’s way better than Alice had been into.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here’s a complete series of projects ideas of all the Latest cutting-edge Technologies-&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1"&gt;&lt;strong&gt;&lt;em&gt;Python Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-exclusive-data-science-projects-48l1"&gt;&lt;strong&gt;&lt;em&gt;Data Science Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-sparkling-machine-learning-projects-59i6"&gt;&lt;strong&gt;&lt;em&gt;Machine Learning Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma"&gt;&lt;em&gt;&lt;strong&gt;R Programming Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-10-unique-django-projects-31c5"&gt;&lt;em&gt;Django Projects&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-thrilling-artificial-intelligence-projects-3eon"&gt;&lt;strong&gt;&lt;em&gt;Artificial Intelligence Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-deep-learning-projects-189n"&gt;&lt;strong&gt;&lt;em&gt;Deep Learning Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i"&gt;&lt;strong&gt;&lt;em&gt;Computer Vision Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;So, if you got that madness to be a part of this fascinating field of IoT, here’s something specially meant to satiate your appetite for the same-&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;span&gt;Flood Detection and Avoidance System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Mirror&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Heart Rate Monitoring &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/3dUjyQY"&gt;&lt;em&gt;&lt;strong&gt;Video Surveillance&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Weather Reporting System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Intelligent Traffic Management System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/2XHqPhx"&gt;&lt;em&gt;&lt;strong&gt;Traffic Signs Recognition&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Irrigation System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Parking System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/2AcDrnY"&gt;&lt;em&gt;&lt;strong&gt;Image Recognition and Classification&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Waste Management System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Home Automation&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Gas Leakage Monitoring&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Soil Moisture Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://bit.ly/2zdu8nj"&gt;&lt;em&gt;&lt;strong&gt;Color Detection&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Air Pollution Monitoring&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Self-Balancing Robot&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Automatic Coffee Maker&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Facial Recognition Door Unlock&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Night Patrolling Robot&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Having a career in IoT means that you’re class apart from all the other professionals.&lt;/strong&gt;&lt;span&gt; All these projects will ensure your smooth journey into the most fascinating field of this generation. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;strong&gt;&lt;em&gt;Let your wisdom extend by having all the latest technology trends&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>python</category>
      <category>productivity</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>ANDROID TELEGRAM CHANNEL - All you need to become Top Class Android Developer</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 02 Jun 2020 06:54:41 +0000</pubDate>
      <link>https://dev.to/anujgupta/android-telegram-channel-all-you-need-to-become-top-class-android-developer-42ji</link>
      <guid>https://dev.to/anujgupta/android-telegram-channel-all-you-need-to-become-top-class-android-developer-42ji</guid>
      <description>&lt;p&gt;&lt;strong&gt;An Android Telegram Channel that smoothens your journey of becoming a Top Android Developer with finely written tutorials and even better real-time projects.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;There are 3,500,000,000 smartphone users across the globe at present and out of these, a staggering 74% of which are Android users only. &lt;strong&gt;And this is enough to depict the supremacy of Android OS in the world of smartphones.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://t.me/LearnAndroidDev"&gt;&lt;strong&gt;&lt;em&gt;Android Telegram Channel for all the Android Aspirants out there&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;This also indicates that Android App development ain’t going out of fashion anytime soon or probably never. &lt;strong&gt;Android Developers will always be in demand no matter what.&lt;/strong&gt; But this also introduces a fierce competition among Android App Developers.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://t.me/LearnAndroidDev"&gt;&lt;strong&gt;&lt;em&gt;Be an Android Developer in the best possible way&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;To be one and be able to make through this competition, you need to be skilled enough and even more than that. &lt;strong&gt;Being an Android Developer is a sure shot guarantee of a really bright career but you need to put those extra efforts as well.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;So, keeping all of these in mind, we bring you &lt;strong&gt;Telegram Channel that makes sure that you end up being a top class Android Developer. &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;This channel makes it sure with the finest of Android Tutorials available on the internet. &lt;strong&gt;All these tutorials are specially designed by some of the top industry experts out there.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;strong&gt;&lt;em&gt;All the Latest Technology Trends at your fingertips&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>android</category>
      <category>tutorial</category>
      <category>computerscience</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>WHAT IS DATA SCIENCE? - Minute details that a beginner must know</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 26 May 2020 09:20:00 +0000</pubDate>
      <link>https://dev.to/anujgupta/what-is-data-science-minute-details-that-a-beginner-must-know-3l2f</link>
      <guid>https://dev.to/anujgupta/what-is-data-science-minute-details-that-a-beginner-must-know-3l2f</guid>
      <description>&lt;p&gt;&lt;strong&gt;The first term that strikes almost everyone’s mind when they hear the word hottest buzzword is undoubtedly Data Science.&lt;/strong&gt;&lt;span&gt; So what is Data Science all about, in this article we will discuss this along with Data Science applications, tools, libraries, jobs, requirements and much more.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uuKihqUP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3mo0soa59935udqb8qk9.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uuKihqUP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3mo0soa59935udqb8qk9.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;And deservingly so, Data Science has been a revolutionary term for businesses of all kinds across the globe. Also, as a profession, &lt;/span&gt;&lt;strong&gt;Data Science is the topmost choice for beginners even from non-tech fields as well.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WAIT!!&lt;/strong&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;strong&gt;Are you already on your journey of Data Science&lt;/strong&gt;&lt;span&gt;? If &lt;/span&gt;&lt;strong&gt;YES&lt;/strong&gt;&lt;span&gt;, then it’s time to test your skills as a Data Scientist.&lt;/span&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://bit.ly/2ysM2Su"&gt;&lt;strong&gt;&lt;em&gt;Challenging Data Science Projects that you must try atleast once&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span&gt; &lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;span&gt;Speaking about Data Science as a career, it has been a top priority for a lot of millennials out there. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;strong&gt;But before just jumping into it blindly, here’s all you need to know about Data Science as a beginner or a non-tech candidate.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;WHAT IS DATA SCIENCE?&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Data Science is a field of study that is all about three things, data, data, and more data. It involves processing of data on different levels such as extraction, preparation, analysis, and visualization. This processing of data is done with a sole reason of getting valuable insights out of it and thus helping businesses to make better decisions.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/2A5ibAc"&gt;&lt;strong&gt;&lt;em&gt;Your first interaction with Data Science&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--adBEKeAw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/zp0dnuktysbeyv1eb00h.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--adBEKeAw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/zp0dnuktysbeyv1eb00h.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;WHY DATA SCIENCE?&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Data Science has been regarded as the hottest career option of this century and Glassdoor recons it as the topmost career choice among beginners. Data is possibly the most valuable asset for companies out there and they need Data Scientists to harness this data. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/2B07X4z"&gt;&lt;strong&gt;&lt;em&gt;Why is Data Science known as the hottest career?&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;&lt;span&gt;The biggest reason that proves that choosing Data Science as your career is a boss move is the lucrative salaries that Data Scientists are paid these days. Apparently, there’s a huge gap between the demand and supply of well-skilled Data Scientists. Almost every industry today has been looking out for skilled Data Scientists and this high demand for them will not slow down anytime soon.&lt;/span&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;APPLICATIONS OF DATA SCIENCE&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;One of the major reasons behind the chart-topping popularity of Data Science is the ease with which it can be applied in the various fields. Be it the healthcare industry or the education sector, Data Science has found its foothold in every domain. Not just the foothold, Data Science has also been a sort of revolution to all these industries including banking, manufacturing, e-commerce, travel, and whatnot. &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/3geumeB"&gt;&lt;strong&gt;&lt;em&gt;Data Science - A revolution in the making&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;TOP DATA SCIENCE TOOLS&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;Dealing with data is an art, and you need a proper set of tools to be an artist. Data Science is no less than a goldmine and you need some top tools to dig it. All those huge amounts of data will rather seem to be futile if right tools aren’t used for harnessing it. Some of the top tools include Apache Hadoop, SAS, Tableau, ggplot, &lt;/span&gt;&lt;a href="https://bit.ly/36rALi1"&gt;&lt;strong&gt;TensorFlow&lt;/strong&gt;&lt;/a&gt;&lt;span&gt;, and many more.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/3cZ7Fc8'"&gt;&lt;strong&gt;&lt;em&gt;10 Crimes that a Data Scientist must do&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;Wrapping it up…&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;&lt;span&gt;For all the Data Science aspirants out there, learning Data Science is surely gonna be one of the smartest decisions you will ever make. This is a dream career one could go for but, you need to be skilled enough to be able to achieve your dream as the competition in this field is quite fierce.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://bit.ly/2LSO69H"&gt;&lt;strong&gt;&lt;em&gt;Your boarding pass for the final destination of Data Science&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>computerscience</category>
      <category>python</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Top 20 Career Defining Python Projects</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 19 May 2020 10:07:41 +0000</pubDate>
      <link>https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1</link>
      <guid>https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1</guid>
      <description>&lt;p&gt;&lt;span&gt;One programming language that’s currently on everyone’s mind is undoubtedly Python. &lt;/span&gt;&lt;strong&gt;There’s no denying the fact that the IT industry is currently high on Python.&lt;/strong&gt;&lt;span&gt; Python Programmers are currently among the most demanded professionals on the planet right now.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;And this is what induces fierce competition among them as well and you gotta be right up there to become a stand out Python Programmer.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before we start here’s a complete series of project ideas of all the Latest cutting-edge Technologies.&lt;/strong&gt;
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-exclusive-data-science-projects-48l1"&gt;Data Science Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-sparkling-machine-learning-projects-59i6"&gt;Machine Learning Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma"&gt;&lt;em&gt;&lt;strong&gt;R Programming Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-10-unique-django-projects-31c5"&gt;&lt;em&gt;Django Projects&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-thrilling-artificial-intelligence-projects-3eon"&gt;Artificial Intelligence Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-deep-learning-projects-189n"&gt;Deep Learning Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i"&gt;Computer Vision Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo"&gt;&lt;strong&gt;&lt;em&gt;IoT Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Here’s all you need to take a step ahead in this fierce competition among top Python programmers.&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://bit.ly/2Zo3DX3"&gt;Colorize Black &amp;amp; White Images with Python&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Youtube Videos Downloader&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://projectgurukul.org/deep-learning-project-face-recognition-with-python-opencv/"&gt;Face Recognition and Identification&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Music Player&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Plagiarism Checker&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://bit.ly/2LHiFig"&gt;Typing Speed Test&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Regex Query Tool&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Twitter and Instagram Bot&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Color Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://bit.ly/3fZIb09"&gt;Driver Drowsiness Detection&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Image Caption Generator&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;License Plate Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Motion Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Bluetooth LED Light Controller&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://bit.ly/3g2GYFv"&gt;Parkinson’s Disease Detection&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Goal Line Technology&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Mirror&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Voice Controlled 3D Printer&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Attendance System&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Weather Station&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In this tough times of crisis, you can easily be a victim of layoffs anyday. &lt;strong&gt;And Python has got the power to save you from the layoff’s radar.&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;Get your hands on these projects to sharpen your Python skills and save yourself from these ongoing layoffs.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;strong&gt;&lt;em&gt;Time to satiate your appetite for all the latest technology trends&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for your time!!   :-)&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>datascience</category>
      <category>computerscience</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Top 20 Scintillating Computer Vision Projects</title>
      <dc:creator>Anuj</dc:creator>
      <pubDate>Tue, 12 May 2020 10:43:22 +0000</pubDate>
      <link>https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i</link>
      <guid>https://dev.to/anujgupta/top-20-scintillating-computer-vision-projects-389i</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Mark Zuckerberg&lt;/strong&gt;&lt;span&gt; said, &lt;/span&gt;&lt;strong&gt;&lt;em&gt;“If we are able to build computers that could understand what’s in an image and tell a blind person who otherwise couldn’t see that image, that would be pretty amazing as well.”&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Computer Vision, a sub-field of AI that has a mission to make computers more intelligent than ever.&lt;/strong&gt; Computer vision enabled computers to perceive the world and analyze it in real-time to generate insights.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here’s a complete series of projects ideas of all the Latest cutting-edge Technologies-&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-career-defining-python-projects-51d1"&gt;Python Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-exclusive-data-science-projects-48l1"&gt;Data Science Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-sparkling-machine-learning-projects-59i6"&gt;Machine Learning Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/twinkle-twinkle-little-star-have-you-tried-these-data-science-projects-with-r-1gma"&gt;&lt;em&gt;&lt;strong&gt;R Programming Projects&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;a href="https://dev.to/anujgupta/top-10-unique-django-projects-31c5"&gt;&lt;em&gt;Django Projects&lt;/em&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-thrilling-artificial-intelligence-projects-3eon"&gt;Artificial Intelligence Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="https://dev.to/anujgupta/top-20-deep-learning-projects-189n"&gt;Deep Learning Projects&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/anujgupta/top-20-fascinating-iot-projects-4pdo"&gt;&lt;strong&gt;&lt;em&gt;IoT Projects&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;So, if you’re eager to be a part of this mission of Computer Vision, then these projects are for you-&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://bit.ly/2WWbkAX"&gt;Face Detection&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Camera Motion Sensing&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Theft Detection Device&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://bit.ly/3dqD1rY"&gt;Image Classification&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Colour Detection Project&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Vehicle Counting&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Gender and Age Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://projectgurukul.org/deep-learning-project-face-recognition-with-python-opencv/"&gt;Face Recognition &amp;amp; Identification&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Rubik’s Cube Detection&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart Selfie Application&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Surveillance Robotics Project&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Computer Vision based mouse&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://bit.ly/2Ljo4fy"&gt;Handwritten Digit Recognition&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Text Scanner&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Barcode and QR Code Scanner&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Image Reverse Search Engine&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href="https://bit.ly/35NoWCo"&gt;Driver Drowsiness Detection&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Detection of cancer &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Smart White board&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Estimating Roulette game outcome&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;span&gt;So, these projects are all you need to &lt;/span&gt;&lt;strong&gt;conquer the mission of Computer Vision&lt;/strong&gt;&lt;span&gt; and take &lt;/span&gt;&lt;strong&gt;a step ahead in the field of Artificial Intelligence.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/anujgupta/stay-ahead-of-your-friends-with-all-the-latest-technology-trends-43k3"&gt;&lt;em&gt;&lt;strong&gt;Get all the Latest Technology Trends while you're on the move&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thanks for your time!!&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>machinelearning</category>
      <category>computerscience</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
