<?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: Samuel Ajibade</title>
    <description>The latest articles on DEV Community by Samuel Ajibade (@ajibsbaba).</description>
    <link>https://dev.to/ajibsbaba</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%2F272434%2Fc0ffad13-7ada-425d-80f0-efc5ff0b25ce.png</url>
      <title>DEV Community: Samuel Ajibade</title>
      <link>https://dev.to/ajibsbaba</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajibsbaba"/>
    <language>en</language>
    <item>
      <title>My Machine Learning Journey</title>
      <dc:creator>Samuel Ajibade</dc:creator>
      <pubDate>Thu, 11 Jun 2020 21:08:49 +0000</pubDate>
      <link>https://dev.to/ajibsbaba/my-machine-learning-journey-jp1</link>
      <guid>https://dev.to/ajibsbaba/my-machine-learning-journey-jp1</guid>
      <description>&lt;p&gt;I have been a python developer for about 2 years now I've dabbled from the basics to writing functions, working with frameworks like Django and flask also building APIs with the Django rest framework and I finally decided to go into machine learning/Data science yeah machine learning or data science people believe that the two fields are different they are not actually they are interwoven machine learning has some data science in it likewise data science has some machine learning in it just that data science deals with more data than machine learning models.&lt;/p&gt;

&lt;p&gt;How did I begin the journey&lt;/p&gt;

&lt;p&gt;Just like anyone else I did a lot of research, read tons of  articles, watched a lot of videos I would suggest that start your journey by going through google's &lt;a href="https://developers.google.com/machine-learning/crash-course"&gt;machine learning crash course&lt;/a&gt; then you can also check &lt;a href="https://www.udemy.com"&gt;Udemy&lt;/a&gt; for some high rated machine learning courses Before I got into machine learning I thought it was a very complex field of computing it is actually hard but in the real sense like when you get into it you'll find out it's not that complex&lt;/p&gt;

&lt;h2&gt;
  
  
  Thanks for reading...
&lt;/h2&gt;

</description>
      <category>python</category>
      <category>machinelearning</category>
      <category>datascience</category>
      <category>jupyter</category>
    </item>
    <item>
      <title>Setting up your computer for Data Science</title>
      <dc:creator>Samuel Ajibade</dc:creator>
      <pubDate>Fri, 13 Mar 2020 01:28:32 +0000</pubDate>
      <link>https://dev.to/ajibsbaba/setting-up-your-computer-for-data-science-46ad</link>
      <guid>https://dev.to/ajibsbaba/setting-up-your-computer-for-data-science-46ad</guid>
      <description>&lt;p&gt;Before you start this I'd recommend that you use Linux or the Macintosh operating system for data science as it a better option than using Microsoft Windows&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install Anaconda
 There's usually a controversy between using Anaconda or Pypi for data science based on experience and research I have found that Anaconda is a better option because virtual environments are built directly into it and its compatibility with R.&lt;/li&gt;
&lt;li&gt;After downloading the file from the official website &lt;a href="https://www.anaconda.com/distribution/"&gt;https://www.anaconda.com/distribution/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Navigate to the directory&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run the installation with "bash " and follow the on-screen prompts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Install common python packages for Data Science &lt;br&gt;
For macOS or Linux anaconda's virtual environment is activated using the following command :&lt;br&gt;
 conda activate&lt;br&gt;
and it is deactivated using the following command :&lt;br&gt;
 conda deactivate&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Jupyter Notebook &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Jupyter Notebook is a tool for doing interactive data science work in your browser. Jupyter notebook is activated in your bash terminal &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Type the following command jupyter notebook .  A browser window will open, showing the Juptyer environment. By default, you will be in a file browser view.  In the file browser, find where you have a Jupyter notebook. If you don't have materials for a course or tutorial that you have downloaded, you can download this fun Jupyter notebook and then open it in the file browser.  Click on one of the notebooks (*.ipynb) files to get started!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To stop Jupyter notebook:&lt;br&gt;
Ctrl+c is used to stop the Jupyter notebook server running on your machine. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>jupyter</category>
      <category>bash</category>
      <category>linux</category>
    </item>
    <item>
      <title>Starting activities with buttons using Kotlin</title>
      <dc:creator>Samuel Ajibade</dc:creator>
      <pubDate>Thu, 16 Jan 2020 00:26:48 +0000</pubDate>
      <link>https://dev.to/ajibsbaba/start-activities-with-buttons-using-kotlin-2b5</link>
      <guid>https://dev.to/ajibsbaba/start-activities-with-buttons-using-kotlin-2b5</guid>
      <description>&lt;p&gt;I just started android development and i had some issues which i would like to address for beginners so that they wouldn't have to go through too much stress to solve issues relating to android development with the Kotlin programming language.&lt;/p&gt;

&lt;p&gt;First of all you have state the id for your button so let's assume the id for my button = btnLogin&lt;br&gt;
You will call on "setOnClickListener" which listens to button clicks, then you will have to call on the name of the activity in order to start it.&lt;br&gt;
"this" refers to the context of the application&lt;/p&gt;

&lt;p&gt;btnLogin.setOnClickListener {&lt;br&gt;
       startActivity(Intent(this, LoginActivity:class.java))&lt;br&gt;
}&lt;/p&gt;

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

</description>
      <category>kotlin</category>
      <category>android</category>
    </item>
  </channel>
</rss>
