<?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: Precious Chika</title>
    <description>The latest articles on DEV Community by Precious Chika (@pre22).</description>
    <link>https://dev.to/pre22</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%2F441453%2Fff6f5b07-f1ff-4efb-bf07-70a7e427c3e7.jpeg</url>
      <title>DEV Community: Precious Chika</title>
      <link>https://dev.to/pre22</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pre22"/>
    <language>en</language>
    <item>
      <title>Top 4 websites to get blockchain resources</title>
      <dc:creator>Precious Chika</dc:creator>
      <pubDate>Fri, 10 Sep 2021 01:09:46 +0000</pubDate>
      <link>https://dev.to/pre22/top-4-websites-to-get-blockchain-resources-1e2k</link>
      <guid>https://dev.to/pre22/top-4-websites-to-get-blockchain-resources-1e2k</guid>
      <description>&lt;p&gt;Listed below are websites to access blockchain materials for free.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/openblockchains/awesome-blockchains"&gt;Awesome Blockchain&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://cryptomarketpool.com/"&gt;CryptoMarketPool&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://pythonrepo.com/search?catalogid=0&amp;amp;q=blockchain"&gt;Python Repo&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://developer.ibm.com/gettingstarted/blockchain/"&gt;IBM Developer&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>Pip installation on Windows using python</title>
      <dc:creator>Precious Chika</dc:creator>
      <pubDate>Fri, 10 Sep 2021 00:50:54 +0000</pubDate>
      <link>https://dev.to/pre22/pip-installation-on-windows-using-python-4534</link>
      <guid>https://dev.to/pre22/pip-installation-on-windows-using-python-4534</guid>
      <description>&lt;p&gt;To get started with using pip, you should &lt;a href="https://www.python.org/downloads/"&gt;install Python&lt;/a&gt; on your system.&lt;/p&gt;

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

&lt;p&gt;PIP is a package management system used to install and manage software packages written in Python. It stands for “preferred installer program” or “Pip Installs Packages.”&lt;/p&gt;

&lt;h2&gt;
  
  
  Check for pip in your computer
&lt;/h2&gt;

&lt;p&gt;You have to check if you have a working Python with pip installed. This can be done by running the following commands&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ python --version
python 3.N.N
$ python -m pip --version
pip X.Y.Z from ... (python 3.N.N)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If that worked then you have no need to reinstall pip again. But incase otherwise, you will have to follow the instruction below.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to install pip on windows
&lt;/h2&gt;

&lt;p&gt;pip can be downloaded and installed using command-line by going through the following steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Download the &lt;a href="https://bootstrap.pypa.io/get-pip.py"&gt;get-pip.py&lt;/a&gt; file and store it in the same directory as python is installed.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1Iw2Z5YJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165504/pip-install-1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1Iw2Z5YJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165504/pip-install-1.jpg" alt="windows screen"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Change the current path of the directory in the command line to the path of the directory where the above file exists.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nlchoP-R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165502/pip-change-directory.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nlchoP-R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165502/pip-change-directory.jpg" alt="screen"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run the command given below:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;python get-pip.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--S6H1I7xI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165506/pip-installation.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--S6H1I7xI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://media.geeksforgeeks.org/wp-content/uploads/20200117165506/pip-installation.jpg" alt="screen"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;pip is now installed on your system.!&lt;/p&gt;

&lt;p&gt;Thank You for reading.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learning Python Road Map</title>
      <dc:creator>Precious Chika</dc:creator>
      <pubDate>Mon, 14 Sep 2020 01:36:41 +0000</pubDate>
      <link>https://dev.to/pre22/learning-python-road-map-30pa</link>
      <guid>https://dev.to/pre22/learning-python-road-map-30pa</guid>
      <description>&lt;p&gt;Python is a high-level, interpreted, interactive and object-oriented scripting language, easy to learn yet powerful and versatile scripting language, which makes it attractive for Application Development.&lt;/p&gt;

&lt;p&gt;Python's syntax and dynamic typing with its interpreted nature make it an ideal language for scripting and rapid application development.&lt;/p&gt;

&lt;p&gt;Python supports multiple programming pattern, including object-oriented, imperative, and functional or procedural programming styles.&lt;br&gt;
Python is a multipurpose language having a wide range of application in fields such as:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Web Development&lt;/li&gt;
&lt;li&gt;Data Science and Data Visualization&lt;/li&gt;
&lt;li&gt;Artificial Intelligence and Machine Learning&lt;/li&gt;
&lt;li&gt;Game Development
e.t.c
There are many ways to learn python programming language which depends on how best and fast you learn(also your application of the language).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;WEBSITES:&lt;br&gt;
&lt;a href="https://www.w3schools.com/python/default.asp"&gt;https://www.w3schools.com/python/default.asp&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.javatpoint.com/python-tutorial"&gt;https://www.javatpoint.com/python-tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VIDEOS&lt;br&gt;
&lt;a href="https://www.edureka.co/python-programming-certification-training"&gt;https://www.edureka.co/python-programming-certification-training&lt;/a&gt; (Paid)&lt;br&gt;
&lt;a href="https://udemy.com/course/python-the-complete-python-developer-course/(Paid)"&gt;https://udemy.com/course/python-the-complete-python-developer-course/(Paid)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;BOOKS&lt;br&gt;
Automate the boring stuff&lt;/p&gt;

&lt;p&gt;After finishing your prefer python tutorial you are expected to choose your prefer of application. All these can take up to 6 months or less depending on your learning speed.&lt;/p&gt;

</description>
      <category>career</category>
    </item>
  </channel>
</rss>
