<?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: Jarmos</title>
    <description>The latest articles on DEV Community by Jarmos (@jarmosan).</description>
    <link>https://dev.to/jarmosan</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%2F344930%2F079debe3-8e13-4f35-b1da-d16fdf6b13d5.jpg</url>
      <title>DEV Community: Jarmos</title>
      <link>https://dev.to/jarmosan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jarmosan"/>
    <language>en</language>
    <item>
      <title>Troubled Setting Up Your Own Blog? Then Try Out What I did.</title>
      <dc:creator>Jarmos</dc:creator>
      <pubDate>Thu, 02 Apr 2020 10:41:21 +0000</pubDate>
      <link>https://dev.to/jarmosan/troubled-setting-up-your-own-blog-then-try-out-what-i-did-2j00</link>
      <guid>https://dev.to/jarmosan/troubled-setting-up-your-own-blog-then-try-out-what-i-did-2j00</guid>
      <description>&lt;p&gt;Earlier the other day, I shared my thoughts on why Data Scientists should try their hands on blogging. You can read more on it at &lt;a href="https://dev.to/jarmosan/as-a-data-scientist-what-s-your-excuse-to-not-blog-5cm"&gt;As A Data Scientist, What's Your Excuse to Not Blog?&lt;/a&gt;. It took me a while but it eventually hit me.&lt;/p&gt;

&lt;p&gt;Stating how to do it might benefit more than blatantly stating why they should do it instead. So I decided to share this article as a "hand-held" guide to setting up one's own blog!&lt;/p&gt;

&lt;p&gt;I used &lt;a href="https://gohugo.io/"&gt;Hugo&lt;/a&gt; which is an extremely fast Static Site Generator &amp;amp; also one of the most popular ones, on par with Gatsby &amp;amp; Jekyll. In fact, &lt;a href="https://www.netlify.com/blog/2016/05/02/top-ten-static-website-generators/"&gt;Netlify ranks it in no.3 as the most popular SSG&lt;/a&gt; out there!&lt;/p&gt;

&lt;h2&gt;
  
  
  So Why Hugo? Here Are My Reasons:
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;As a Data Scientist, &lt;strong&gt;I want to abstract my web development workflow&lt;/strong&gt; as much as possible. This way I'm focused on delivering DS/ML stuff than actual Web Dev stuff. If you're comfortable with CLI, Hugo will be your best friend as you'll see further into the post. Trust me on that!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hugo was built on Go, which gives it an unparalleled production speed. Check out &lt;a href="https://www.freecodecamp.org/news/author/learnitmyway/"&gt;David's&lt;/a&gt; &lt;a href="https://www.freecodecamp.org/news/gatsby-vs-hugo-a-detailed-comparison-e78d94f640fc/"&gt;Performance Test on freeCodeCamp&lt;/a&gt; where he got whooping 8.7 seconds load speed on a 2G connection. I wondered if all I want is to deliver reading resources for my audience, it doesn't matter if I've a login system or a backend system, etc. A simple easy-to-setup, fast &amp;amp; static blog is all I needed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;There're no additional dependencies to download onto my computer! Yes, you read it right. I didn't even have to download Golang to install Hugo. How cool is that? Simply download the required binary, install to &lt;code&gt;$PATH&lt;/code&gt; &amp;amp; you're good to go.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The list &lt;a href="https://themes.gohugo.io/"&gt;Hugo themes&lt;/a&gt; rival that of the ones available for Gatsby. Coupled with the ease of use, quick development time &amp;amp; modern-looking themes I couldn't find any reason to look elsewhere. Read ahead &amp;amp; I'll definitely suggest some themes for you to check out on your blog.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Now The Guide You've Been Eagerly Waiting For.
&lt;/h2&gt;

&lt;p&gt;Downloading &amp;amp; installing Hugo locally is fairly straightforward. Also it's very well documented in the official &lt;a href="https://gohugo.io/getting-started/installing/"&gt;Getting Started&lt;/a&gt; guide, so definitely check it out. Regardless, here's an overview:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://gohugo.io/getting-started/installing/#quick-install"&gt;Install Hugo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gohugo.io/getting-started/quick-start/#step-2-create-a-new-site"&gt;Create the site locally&lt;/a&gt; using the &lt;code&gt;hugo new site &amp;lt;DIRNAME&amp;gt;&lt;/code&gt; command.&lt;/li&gt;
&lt;li&gt;Choose a &lt;a href="https://themes.gohugo.io/"&gt;Hugo theme&lt;/a&gt; &amp;amp; &lt;a href="https://gohugo.io/getting-started/quick-start/#step-3-add-a-theme"&gt;add it as a submodule inside the &lt;code&gt;&amp;lt;DIRNAME&amp;gt;&lt;/code&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gohugo.io/getting-started/quick-start/#step-4-add-some-content"&gt;Add content&lt;/a&gt; using the &lt;code&gt;hugo new &amp;lt;FILENAME.md&amp;gt;&lt;/code&gt; command.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gohugo.io/getting-started/quick-start/#step-5-start-the-hugo-server"&gt;Check if your site is fine&lt;/a&gt; as per your requirements using the &lt;code&gt;hugo server&lt;/code&gt; command.&lt;/li&gt;
&lt;li&gt;And finally, &lt;a href="https://gohugo.io/getting-started/quick-start/#step-7-build-static-pages"&gt;build the static pages&lt;/a&gt; using the &lt;code&gt;hugo&lt;/code&gt; command.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it! You're done, well almost! But rest assured the scary part is far behind you now. &lt;/p&gt;

&lt;h2&gt;
  
  
  Hosting The Site
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;So create a &lt;a href="https://repo.new"&gt;&lt;code&gt;&amp;lt;REPO_NAME&amp;gt;&lt;/code&gt;&lt;/a&gt; repository on GitHub &amp;amp; push your local repository up there.&lt;/li&gt;
&lt;li&gt;Login to &lt;a href="https://app.netlify.com"&gt;Netlify&lt;/a&gt; &amp;amp; click on "&lt;a href="https://app.netlify.com/start"&gt;New site from Git&lt;/a&gt;" which should take you to the following page:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zmA-0ss5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3to3i0dfijggjlzxbrws.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zmA-0ss5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3to3i0dfijggjlzxbrws.jpg" alt="Create a New Site on Netlify"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on the &lt;code&gt;GitHub&lt;/code&gt; button &amp;amp; select the appropriate repo as the image below.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--q1QV7q4T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dbbbkczk6aur998bzxsb.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--q1QV7q4T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/dbbbkczk6aur998bzxsb.jpg" alt="Select GitHub repo for Netlify to build the site from"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Under &lt;code&gt;Basic Build Settings&lt;/code&gt; type the &lt;code&gt;Hugo&lt;/code&gt; command &amp;amp; &lt;code&gt;Publish&lt;/code&gt; under the "Build Command" &amp;amp; "Publish Directory" respectively.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;Deploy site! Change the URL to something that's more human-readable &amp;amp; that's it.
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--or6nTLAU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3ja5uy6p2a8gcs9wqj5m.jpg" alt="Change the URL name to something more human-readable"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You're done! Your personal blog was developed &amp;amp; deployed in less than an hour. If it's that easy I really wonder, &lt;a href="https://dev.to/jarmosan/as-a-data-scientist-what-s-your-excuse-to-not-blog-5cm"&gt;&lt;em&gt;As A Data Scientist,s What's Your Excuse To Not Blog?&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cover Photo by &lt;a href="https://unsplash.com/@srz?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;&lt;strong&gt;Sydney Rae&lt;/strong&gt;&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/encourage?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blogging</category>
      <category>hugo</category>
    </item>
    <item>
      <title>As a Data Scientist, what's your excuse to not blog?</title>
      <dc:creator>Jarmos</dc:creator>
      <pubDate>Fri, 13 Mar 2020 07:09:14 +0000</pubDate>
      <link>https://dev.to/jarmosan/as-a-data-scientist-what-s-your-excuse-to-not-blog-5cm</link>
      <guid>https://dev.to/jarmosan/as-a-data-scientist-what-s-your-excuse-to-not-blog-5cm</guid>
      <description>&lt;p&gt;Part of working in a Data Science role is about "storytelling". Yes, you read it right &amp;amp; I'm not joking either.&lt;/p&gt;

&lt;p&gt;Working in a Data Science team involves a ton of communication while keeping the context simple, straight-forward &amp;amp; easy-to-understand for the non-technical higher-ups in a corporate setting. In fact, contrary to popular belief, an individual working in a Data Science role would rarely be building state-of-the-art predictive models to identify if an approaching celestial object in the sky is a meteorite or a black hole, &lt;em&gt;pun intended&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Sorry to break to you, if you were thinking otherwise&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Suffice to say, besides coding, a Data Science role demands more than what's usually comprehended. Like, Domain Knowledge, among a few other skills, is often overlooked &amp;amp; considered as an underrated skill set. While quite opposite to the fact, Domain Knowledge can prove to be uplifting for the overall capabilities of the Data Science team.&lt;/p&gt;

&lt;p&gt;I've shared an article towards the ends of this post, about Domain Knowledge and its use case. Check it out, I'm sure you might learn a thing or two ;)&lt;/p&gt;

&lt;p&gt;Besides, while working with real-life datasets, it isn't uncommon to come across unclean &amp;amp; unprocessed data adding up the additional skillset requirements! For example, "&lt;em&gt;handling missing values, &lt;em&gt;properly&lt;/em&gt;&lt;/em&gt;" is a task, requiring careful assumptions and meticulous investigations. Failure to do so can allow bias to creep in &amp;amp; might as well make the model useless or not generalize well to real-world scenarios.&lt;/p&gt;

&lt;p&gt;Well, unfortunate for us, the thing is, observed values might be missing for a variety of reasons, unknown to the analyst. Hence, it is critical to figure out the exact reasoning behind the missing values or at least if possible make certain plausible assumptions about them. &lt;/p&gt;

&lt;p&gt;But, the topic of &lt;em&gt;Missing Values&lt;/em&gt; is unrelated to this write-up, So I wrote a fairly detailed piece of article here - &lt;a href="https://towardsdatascience.com/few-reasons-to-not-drop-missing-values-575a8d2b6a41?source=friends_link&amp;amp;sk=5ab68ad59ac67dceaa2fa3c00556068e"&gt;Dropping Missing Values? You Probably Shouldn't&lt;/a&gt;. I highly suggest that you take a look at it.&lt;/p&gt;

&lt;p&gt;Regardless, my point is, if you're working in a Data Science role or if you plan on working someday, then prepare yourself because communicating your findings is equally crucial, just as the rest of your job. So, my advice? Start working on the next Data Science project &amp;amp; blog about your findings if you've not started it already.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;&lt;strong&gt;Interested in reading more of my writings?&lt;/strong&gt;&lt;/em&gt; Then you might like what I've written elsewhere too!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A short abridged version of this topic is available at - &lt;a href="https://medium.com/series/data-scientists-are-actually-domain-specific-storytellers-18c78458afa3"&gt;Data Scientists &lt;strong&gt;ARE&lt;/strong&gt; Actually Storytellers&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Want to read how your extensive years of Domain Knowledge might turn out to be useful to a Data Science team? Then check out - &lt;a href="https://towardsdatascience.com/the-second-most-important-skill-to-have-as-a-data-scientist-2311f9efa143?source=friends_link&amp;amp;sk=ea5c67c869b44ccf6a9cc225f2176a3a"&gt;Domain Knowledge - Perhaps the Second Most Important Skill in Data Science&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Besides, would you like to reach out to me? Then feel free to drop a tweet on &lt;a href="https://twitter.com/Jarmosan"&gt;Twitter&lt;/a&gt; or subscribe to my &lt;a href="https://mailchi.mp/a8b6248f6369/jarmos-analytics-updates"&gt;mailing list&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Cover Photo by &lt;a href="https://unsplash.com/@corinnekutz?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Corinne Kutz&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/blogging?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blog</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
