<?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: JkImExploring</title>
    <description>The latest articles on DEV Community by JkImExploring (@jkimexploring).</description>
    <link>https://dev.to/jkimexploring</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%2F240379%2F56d4aecf-61dd-4cc6-a756-29db31ed678e.png</url>
      <title>DEV Community: JkImExploring</title>
      <link>https://dev.to/jkimexploring</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jkimexploring"/>
    <language>en</language>
    <item>
      <title>Why I used WordPress for my portfolio</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Sun, 11 Oct 2020 18:00:08 +0000</pubDate>
      <link>https://dev.to/jkimexploring/why-i-used-wordpress-for-my-portfolio-25o1</link>
      <guid>https://dev.to/jkimexploring/why-i-used-wordpress-for-my-portfolio-25o1</guid>
      <description>&lt;p&gt;September was a month for sure. There wasn't anything particularly off about it but being furloughed for this long is messing with my head a lot as well as going through the job hunt process and everything going on with Covid-19 and the election and stressing if I'll even get called back. So I decided to distract myself by redoing my portfolio, something I've been meaning to do since I first created it. &lt;/p&gt;

&lt;p&gt;I had done one around this time last year and was never fully happy with it. If you want to see it it's still live &lt;a href="https://jennakoslowski.github.io"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  I used WordPress because:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;I bought the URL for my book blog but decided to focus my time and effort on other things so I switched the URL for that back to the free .wordpress version.&lt;/li&gt;
&lt;li&gt;Easy updates. I don't want to have to spend a ton of time working though the code to add a page, post, photos or projects. It's not that I'm lazy, I just want to spend that time on other things. &lt;/li&gt;
&lt;li&gt;I missed WordPress. Not going to lie. I've used WordPress at my past couple jobs and haven't had an excuse to create one in a while so it was fun to mess around with it more. &lt;/li&gt;
&lt;li&gt;I want to create WordPress sites for others and I didn't have anything that fully showed what I was capable of so this is it. &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;And the final result is &lt;a href="https://jkimexploring.com/"&gt;here&lt;/a&gt;. I'm planning to update the copy after Halloween and I still have to do SEO on all the pages but for the most part it's done!&lt;/p&gt;

&lt;p&gt;Have you used WordPress before? What makes you decide whether to hard code or use WordPress?&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>portfolio</category>
      <category>wordpress</category>
    </item>
    <item>
      <title>Basics of switch cases and defaults</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Mon, 10 Aug 2020 18:21:27 +0000</pubDate>
      <link>https://dev.to/jkimexploring/basics-of-switch-cases-and-defaults-jbc</link>
      <guid>https://dev.to/jkimexploring/basics-of-switch-cases-and-defaults-jbc</guid>
      <description>&lt;p&gt;Switch cases were one of my favorite things to learn (and to use). Granted, they aren't always the best thing to use but when used I feel it makes the code cleaner than using if/else statements as well as slightly faster.&lt;/p&gt;

&lt;h4&gt;
  
  
  What is a switch case?
&lt;/h4&gt;

&lt;p&gt;A switch case is a chunk of code that will perform differently depending on the result of the expression passed through.&lt;/p&gt;

&lt;p&gt;The difference between the if/else statement and a switch is that in a switch statement you can continue to go through the statement even if one of the conditions is met. If not you can create a break statement.&lt;/p&gt;

&lt;h4&gt;
  
  
  Syntax:
&lt;/h4&gt;

&lt;p&gt;(taken from &lt;a href="https://www.w3schools.com/js/js_switch.asp"&gt;w3schools&lt;/a&gt;)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;switch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;expression&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;case&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="c1"&gt;// code block&lt;/span&gt;
    &lt;span class="k"&gt;break&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;case&lt;/span&gt; &lt;span class="nx"&gt;y&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="c1"&gt;// code block&lt;/span&gt;
    &lt;span class="k"&gt;break&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;default&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="c1"&gt;// code block&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Example in practice:
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;switch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
    &lt;span class="k"&gt;case&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
      &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Saturday&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="k"&gt;break&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;case&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
      &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Sunday&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="k"&gt;break&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;default&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
      &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;You have to work.&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="k"&gt;break&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This would return "You have to work." since the expression isn't equal to 0 or 1. &lt;/p&gt;

&lt;p&gt;In comparison this is what the code looks like as an if/else statement:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="o"&gt;==&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
   &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Saturday&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="o"&gt;==&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
    &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Sunday&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);}&lt;/span&gt;
&lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
   &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;You have to work.&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  What should be the default?
&lt;/h4&gt;

&lt;p&gt;I used to think it didn't matter but today I was working on the &lt;a href="https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/javascript"&gt;"Who likes it"&lt;/a&gt; kata on CodeWars and it clicked. The default is if it's equal to anything not previously covered. &lt;/p&gt;

&lt;p&gt;For example, I had the default as if no one likes the status it will return "no one likes this." (which, harsh but okay.) However, it was failing on the attempt tests because where I had case 4 as listing any other number after 3 people liking it, that was only catching exactly 4 people. The switch statements only work for that number. They don't work for ranges as if/else statements can.&lt;/p&gt;

&lt;p&gt;The solution to this was to make the return of "no one  likes this" as a case 0.  &lt;/p&gt;

&lt;h4&gt;
  
  
  Let me know if you have any questions below!
&lt;/h4&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Battling my imposter syndrome with projects</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Sun, 02 Aug 2020 18:21:29 +0000</pubDate>
      <link>https://dev.to/jkimexploring/battling-my-imposter-syndrome-with-projects-1o2n</link>
      <guid>https://dev.to/jkimexploring/battling-my-imposter-syndrome-with-projects-1o2n</guid>
      <description>&lt;p&gt;I recently finished my first personal project in a while. Between my cross-country move, job searches and Corona I haven't been coding as much as I should be. Because of this my imposter syndrome increased so much and I knew I needed to combat that before it got out of control.&lt;/p&gt;

&lt;p&gt;My first step was to take a deep look at what I know are gaps in my knowledge or things that I haven't gotten down as solid as I'd like. Some of those things are CSS pre-processors, APIs and SVG. &lt;/p&gt;

&lt;p&gt;I then created an &lt;a href="https://github.com/JennaKoslowski/Advice"&gt;advice generator&lt;/a&gt; to get more comfortable with all of those. I learned a lot and I was so proud of how it turned out... and then I decided to post it on social media and I realized something.&lt;/p&gt;

&lt;p&gt;My third step is something I'm trying to do more often which is post about what I'm doing and learning. That way you get more confident talking about coding and getting more comfortable with the verbiage and having people see your work. &lt;/p&gt;

&lt;p&gt;Instagram and Twitter I post things without feeling too much pressure. I've posted problems I've had and bits and pieces along the way, whether they look good or not. It's all about the process. It's more transparent and informal.&lt;/p&gt;

&lt;p&gt;However. I also know the importance of posting on LinkedIn and instantly my brain went in a million directions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What if no one likes it.&lt;/li&gt;
&lt;li&gt;It's not even that good.&lt;/li&gt;
&lt;li&gt;The design is mediocre/ trash.&lt;/li&gt;
&lt;li&gt;It's such a small project but still took me forever.&lt;/li&gt;
&lt;li&gt;It's a small project.&lt;/li&gt;
&lt;li&gt;It's nothing special.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Basically it boiled down to the fact that I'm not a designer mixed with imposter syndrome.&lt;/p&gt;

&lt;p&gt;My roommate made me post it anyway and there hasn't been any interaction within the 30+ people who've seen it. But the world hasn't ended. No one's commented saying it's trash.&lt;/p&gt;

&lt;p&gt;For me, the best way to combat my imposter syndrome is to not just code more but to post about it more. I'll create a project that mixes things I already know with things that make me want to tear my hair out in hopes of getting better.&lt;/p&gt;

&lt;p&gt;While just one (unsuccessful) LinkedIn post isn't the cure I feel it's a huge step. I've never shared my code work there before despite the fact I want to make the switch to a front-end job. &lt;/p&gt;

&lt;p&gt;TL;DR:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Figure out what you're not confident about&lt;/li&gt;
&lt;li&gt;Utilize those things in a project&lt;/li&gt;
&lt;li&gt;Share the process and/or finished project&lt;/li&gt;
&lt;li&gt;Talk about programming and code&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  How do you battle imposter syndrome?
&lt;/h3&gt;

</description>
      <category>career</category>
      <category>juniordeveloper</category>
      <category>impostersyndrome</category>
    </item>
    <item>
      <title>How do you decide when to share an app idea?</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Mon, 18 May 2020 00:20:59 +0000</pubDate>
      <link>https://dev.to/jkimexploring/how-do-you-decide-when-to-share-an-app-idea-1jlc</link>
      <guid>https://dev.to/jkimexploring/how-do-you-decide-when-to-share-an-app-idea-1jlc</guid>
      <description>&lt;p&gt;I've been pretty quiet on here so far this year. I mean to do a post a week and then I went through moving, I got a job within a week, I explored the area a bit, I got furloughed and I've been writing a lot more on my lifestyle blog and I've even started doing YouTube. But my favorite thing I've started is to learn Android App development and I've decided to create my own app.&lt;/p&gt;

&lt;p&gt;I feel like one of those frat boys that comes up to you and is like "I got an idea for an app. Can you make it?" Except it's me all the way. And that's a pretty amazing feeling. Granted, I know I'll need help along the way.&lt;/p&gt;

&lt;p&gt;However, I've been debating whether or not to share it. I'm in the very beginning stages of gathering information and designing before I start coding.&lt;/p&gt;

&lt;p&gt;On one hand I'd love to be able to talk to people about it and share and it'd be a lot of content creation. On the other hand I'm kind of worried someone will decide to code it faster and get it in the app store and I'll have to redo the design or functionality.&lt;/p&gt;

&lt;p&gt;I think part of it is that I like hiding all the work I do and then shocking people when I show them what I've done and I'm trying to battle that and show the process to encourage other people to start learning how to code and to get experience from more advanced developers.&lt;/p&gt;

&lt;p&gt;I think what I will be doing is writing up posts and sharing after I've gotten past a certain point that will be decided in the future.&lt;/p&gt;

&lt;h3&gt;When do you start sharing?&lt;/h3&gt;

</description>
      <category>mobile</category>
      <category>android</category>
      <category>discuss</category>
      <category>development</category>
    </item>
    <item>
      <title>Interesting videos I've found recently</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Mon, 13 Apr 2020 20:37:29 +0000</pubDate>
      <link>https://dev.to/jkimexploring/interesting-videos-i-ve-found-recently-94d</link>
      <guid>https://dev.to/jkimexploring/interesting-videos-i-ve-found-recently-94d</guid>
      <description>&lt;p&gt;Like most of us probably are I'm subscribe to quite a few developers on YouTube. Yesterday there was an interesting video that popped up and I've seen quite a few unique and/or helpful videos these past couple weeks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Workouts:&lt;/strong&gt; I've been doing &lt;a href="https://www.youtube.com/user/yogawithadriene"&gt;Yoga With Adriene&lt;/a&gt; but I also decided I felt like doing PiYo (a mix of pilates, yoga and a bit of zumba) and found a &lt;a href="https://www.youtube.com/watch?v=ZvgSCDnx5ws&amp;amp;t=1894s"&gt;new instructor&lt;/a&gt; online! It feels like I'm back at my college gym.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Career tips:&lt;/strong&gt; I follow Brandy Morgan for all of her tips and quality vlogs. I always leave with some new tidbit of advice. Her &lt;a href="https://www.youtube.com/watch?v=bwgmf5mifTU"&gt;most recent video&lt;/a&gt; was about how to use social media to get freelance clients but a lot of the advice is also applicable to getting full-time jobs and networking in general. I love how she emphasizes that it's not a one-day thing, it's really taking time to make connections over time. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Life advice:&lt;/strong&gt; Amy Landino is also a youtuber I follow who has created an amazing life for herself by helping others create their dream lives. She focuses on time management, focus, finding your passion and motivation. We are all going through massive changes with the shut downs and shelter in place or lockdowns and she did &lt;a href="https://www.youtube.com/watch?v=I1s7W1peuYA"&gt;a video&lt;/a&gt; about navigating through massive changes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Friendly advice:&lt;/strong&gt; I also follow &lt;a href="https://www.youtube.com/channel/UCh2_ulpQc_57Tcf49eSEmHA"&gt;Kalyn Nicholson&lt;/a&gt; quite closely and she is definitely more of a niche life advice person. I am sure a huge part of her appeal to me is that she's the same age as me and is going through the "what do I want to do with my life and how do I get there" and it's like listening to a friend. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Coding adventure:&lt;/strong&gt; Today Joma Tech uploaded a &lt;a href="https://www.youtube.com/watch?v=0KmUoTfGa34&amp;amp;t=28s"&gt;video&lt;/a&gt; about how he coded an entire app on his phone. I know some people don't have access to laptops so I was interested to find out if there was a way to do it all on the phone. You can check out his video for more information but I decided it's something I wouldn't do. I don't even like doing posts on my phone.&lt;/p&gt;

&lt;h4&gt;Any videos or creators you'd like to share?&lt;/h4&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>How to get motivation back</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Thu, 19 Dec 2019 15:24:59 +0000</pubDate>
      <link>https://dev.to/jkimexploring/how-i-m-get-my-motivation-back-31ck</link>
      <guid>https://dev.to/jkimexploring/how-i-m-get-my-motivation-back-31ck</guid>
      <description>&lt;p&gt;These last couple days I've also been really unmotivated. My brain has been going every which way and I haven't been able to focus on anything for too long unless I see an immediate payoff. &lt;/p&gt;

&lt;p&gt;Then I came across this tweet:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fwi9qkgcleduoo7o771nu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fwi9qkgcleduoo7o771nu.png" alt="Dan Koe Tweet"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The answers can change but this really got me thinking about how far you can go if you put your mind to it and kind of gives more direction when you start thinking about the larger goals. I think about this all the time but I think I need to make a giant glowing sign with it on to see every morning.&lt;/p&gt;

&lt;p&gt;Sometimes just thinking about goals doesn't help. Sometimes thinking about the future can be overwhelming. Just as looking up motivational quotes and looking at the Instagrams and videos of people who inspire you can have the opposite effect.&lt;/p&gt;

&lt;p&gt;Here is how I've gotten back on track in the past: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;List everything I need to do the rest of Dec, Jan/Feb, end of 2020, and goals for 2025 (I'm going to be honest there's a 99% chance the 2025 ones will change but just to get myself thinking of where I could go).&lt;/li&gt;
&lt;li&gt;Make a plan. Put together a plan of what workouts to do what days, what lessons/ tasks to get done with and how many quality job applications to do each day. This helps with creating actionable and reasonable goals.&lt;/li&gt;
&lt;li&gt;Put app timers back on and cut some back. My phone has app timers included and I have them set for a reasonable amount of time.&lt;/li&gt;
&lt;li&gt;Get back to the gym. I've found when I'm physically in good shape my mind is a lot more with it and I think I'm finally over my cold.&lt;/li&gt;
&lt;li&gt;Morning study sessions. It's so hard for me to pay attention to things after work. I honestly have no clue why. I tell myself I'll do something and hours later I still haven't done that one thing. So morning sessions help with that&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Even going through the motions to try to get back on track sometimes helps. I think taking some time to plan out your upcoming days and get excited about life and changes will help a ton. &lt;/p&gt;

&lt;h3&gt;How do you get your motivation back?&lt;/h3&gt;

&lt;p&gt;View full article here: &lt;a href="https://jkimexploring.wordpress.com/2019/12/19/how-i-plan-to-get-my-motivation-back" rel="noopener noreferrer"&gt;https://jkimexploring.wordpress.com/2019/12/19/how-i-plan-to-get-my-motivation-back&lt;/a&gt;&lt;/p&gt;

</description>
      <category>motivation</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>7 projects, 12 months</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Thu, 12 Dec 2019 16:09:23 +0000</pubDate>
      <link>https://dev.to/jkimexploring/7-projects-12-months-53ek</link>
      <guid>https://dev.to/jkimexploring/7-projects-12-months-53ek</guid>
      <description>&lt;p&gt;So originally I was planning to do a 12 projects, 12 months year-long project. I only had two ideas and one is a bigger one. Someone gave me the idea of doing sprints for it and develop it in different phases.&lt;/p&gt;

&lt;p&gt;But I still want to do other projects along the way so I decided to switch off months, or do a couple months of sprints and then switch to a different project but I’ve decided to talk about some projects exactly I want to do.&lt;/p&gt;

&lt;p&gt;I honestly haven’t decided all of them but getting started on these will take me through September so I’m sure I’ll have more ideas later.&lt;/p&gt;

&lt;h2&gt;PROJECTS TO BE COMPLETED:&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Workout Calendar&lt;/strong&gt;- This is going to be my larger project. I’m hoping to do six different sprints in order to get it up and running and quality. I’m hoping to have it to at least a usable state by April at the latest. I also want to create this as an app which I have never done before. If anyone knows if there is an android equivalent to &lt;a href="https://approadmap.io"&gt;this site&lt;/a&gt; let me know.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Color picker that changes site colors&lt;/strong&gt;-  I saw &lt;a href="https://jackharner.com"&gt; Jack &lt;/a&gt; do this on his portfolio site. Basically he takes into account the color contrast for accessibility and when you choose a new focus color it’ll update the rest of the site to maintain color contrast. I thought that was super awesome so I want to try it out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Build a react component&lt;/strong&gt;-  This seems like something that will be really quick but I want an idea for something I will reuse time and time again to do it for. I don’t necessarily care if it’s been done before but everything I’ve coded before are complete projects so I want to try to do something that can be put in multiple.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Breakout&lt;/strong&gt;- This is one of those games I loved playing as a kid. I want to recreate this using C++ so that I have more experience instead of just lessons. Break out of the tutorial stage… get it? I’ll see myself out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WordPress theme&lt;/strong&gt;- I’ve wanted to create my own theme for a while now. Granted I do love my current one I do want something personalized.&lt;/p&gt;

&lt;p&gt;Basically I want my GitHub to be a lot more entertaining than it was this year. I think this year I was stuck in a “I don’t know what I want to create.”&lt;/p&gt;

&lt;p&gt;And who knows what 2020 will bring. If I get selected for the second part of the scholarship I’ll be doing 5 projects with the Nanodegree.&lt;/p&gt;

&lt;h3&gt;What projects do you have planned for 2020?&lt;/h3&gt;

&lt;p&gt;Originally published : &lt;a href="https://jkimexploring.wordpress.com/2019/12/12/7-projects-12-months/"&gt;https://jkimexploring.wordpress.com/2019/12/12/7-projects-12-months/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>goals</category>
      <category>webdev</category>
      <category>portfolio</category>
    </item>
    <item>
      <title>My first programming interview</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Mon, 09 Dec 2019 02:43:51 +0000</pubDate>
      <link>https://dev.to/jkimexploring/my-first-programming-interview-319b</link>
      <guid>https://dev.to/jkimexploring/my-first-programming-interview-319b</guid>
      <description>&lt;p&gt;I've decided to write some posts about my experiences interviewing and doing cover letters and the journey and I'll post them when I want to.I was looking for a new job and came across this company that creates data management systems for large companies. The company also focuses on helping the community and bettering their employees. This sounded amazing to me so I applied for the job and put a lot of effort into my cover letter and application.&lt;/p&gt;

&lt;p&gt;I heard back a couple days later to schedule a phone interview.I scheduled one and woke up an hour early each day to do CodeWars and LeetCode problems. After work all that week I did either that or looked into the company more.&lt;/p&gt;

&lt;p&gt;The more I researched the company the more I wanted to work there. Seriously. This place is amazing. I also hung out with friends and still went to the gym so don't worry. I didn't burn out that much.The time for my interview came and I was nervous. They had sent me a link for a live coding exercise so I knew it was going to be a code-based interview. I was asked two questions:&lt;/p&gt;

&lt;p&gt;Tell me about yourself.&lt;br&gt;
What was your favorite project in your portfolio?&lt;/p&gt;

&lt;p&gt;The super easy questions. Then came the programming part. The reason for these is to see how you think. It doesn't mean I like them, but I get why they do them.I had two different exercises and the first one took the majority of the time. I created for loops and if/else statements and then I walked him through my logic and made changes to make it work properly. Then we did the same thing with a second problem.&lt;/p&gt;

&lt;p&gt;Overall I think it was good? They didn't run it through to see if it actually would work which really threw me off.I did send a thank you note later, but I ended up not getting the job. It was actually really cool to be able to talk about programming with someone who understands what I'm talking about. I don't really have that in my life.&lt;/p&gt;

&lt;h3&gt;Do you get nervous before interviews? How do you handle the nerves?&lt;/h3&gt;

&lt;p&gt;Original article here: &lt;a href="https://jkimexploring.wordpress.com/2019/12/07/my-first-programming-interview/"&gt;https://jkimexploring.wordpress.com/2019/12/07/my-first-programming-interview/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
    </item>
    <item>
      <title>What are CSS variables?</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Wed, 04 Dec 2019 15:42:54 +0000</pubDate>
      <link>https://dev.to/jkimexploring/what-are-css-variables-24kh</link>
      <guid>https://dev.to/jkimexploring/what-are-css-variables-24kh</guid>
      <description>&lt;p&gt;Today's a coding post day! One thing I want to do in 2020 is to start one coding post a week so if there's anything you want to learn about let me know!&lt;/p&gt;

&lt;p&gt;I cam across the concept of CSS variables quite a while ago and it was a game changer. Utilizing this concept makes massive (and minor) color scheme changes.... which I do quite a bit.&lt;/p&gt;

&lt;p&gt;In order to start playing around with CSS variables back in September I decided to take my memory game project from my Nanodegree course and switch over the colors to utilize CSS variables. The code examples following will be taken from that but the Github for it is &lt;a href="https://github.com/JennaKoslowski/fend-memory-project"&gt;here&lt;/a&gt; and the photo of what it looks like is the feature image.&lt;/p&gt;

&lt;h2&gt;What are CSS variables?&lt;/h2&gt;

&lt;p&gt;CSS variables are a way to create consistency between all of the colors. It makes it easier to change the color scheme at one time instead of going through and making sure you don't miss any of the CSS colors.&lt;/p&gt;

&lt;p&gt;So far I have only played around with using CSS variables when it comes to colors. But you can use it for so much more. I've seen them used for paddings or margins as well.&lt;/p&gt;

&lt;h2&gt;How do you create a CSS variable?&lt;/h2&gt;

&lt;p&gt;For some reason I had this assumption that CSS variables would be difficult to learn or somehow that they would be more complex than necessary. I was surprised when I found out how easy it was.&lt;/p&gt;

&lt;p&gt;Basically create the :root psuedo-class so the variables are applied to the entire project. Then  simply type --variablename: whatever the color/size/whatever it is you want.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--O8_I45_0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://jkimexploring.files.wordpress.com/2019/12/css-variable-declaration.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--O8_I45_0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://jkimexploring.files.wordpress.com/2019/12/css-variable-declaration.jpg" alt="CSS variable declaration" width="487" height="193"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;How do you implement a CSS variable?&lt;/h2&gt;

&lt;p&gt;I had been expecting it to be similar to variables in JavaScript where you just type it in. Nope. Now for CSS you have to write that it's a variable. Luckily, it's not a super long code that has to be implemented. This is the same whether you're using it for colors, margins or anything else.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Kiw-8OTK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://jkimexploring.files.wordpress.com/2019/12/css-variable-implementation.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Kiw-8OTK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://jkimexploring.files.wordpress.com/2019/12/css-variable-implementation.jpg" alt="CSS variable implementation" width="267" height="133"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Are there any down sides?&lt;/h2&gt;

&lt;p&gt;Yes actually! Internet Explorer doesn't support them. Are any of us surprised? Nope. So the way around this to add it after the variables. But IE... please get it together.&lt;/p&gt;


&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--puhrP9BB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://jkimexploring.files.wordpress.com/2019/12/css-variables-internet-explorer.jpg" alt="CSS Variables Internet Explorer" width="833" height="129"&gt;Taken from Mozilla &lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties"&gt;documentation&lt;/a&gt;.

&lt;h3&gt;Have you used CSS variables before? Let me know if you have any questions!&lt;/h3&gt;

&lt;p&gt;View original article here: &lt;a href="https://jkimexploring.wordpress.com/2019/12/04/blogmas-what-are-css-variables"&gt;https://jkimexploring.wordpress.com/2019/12/04/blogmas-what-are-css-variables&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>beginners</category>
      <category>style</category>
    </item>
    <item>
      <title>Bertelsmann Scholarship: AI track</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Sun, 24 Nov 2019 17:59:38 +0000</pubDate>
      <link>https://dev.to/jkimexploring/bertelsmann-scholarship-ai-track-252l</link>
      <guid>https://dev.to/jkimexploring/bertelsmann-scholarship-ai-track-252l</guid>
      <description>&lt;p&gt;Last Friday I got an email saying I was awarded the Bertelsmann Technology Scholarship Challenge Course. The course is an &lt;a href="https://www.udacity.com/course/deep-learning-pytorch--ud188"&gt;Intro to Deep Learning with PyTorch&lt;/a&gt; through Udacity. It utilizes Python as the programming language and is the fundamentals of AI (Artificial Intelligence). The classroom opened yesterday so I've already started. This is actually a free course on Udacity as well if anyone would like to take it!&lt;/p&gt;

&lt;h2&gt;So what makes the challenge course different?&lt;/h2&gt;

&lt;p&gt;Well, I'm glad you asked. Bertelsmann awarded around 45,000 scholarships to three tracks. AI, Data Analysis and Cloud Computing. That's 15,000 people per course. Then the top 1,500 people will get the full nanodegree. They take into account if you completed the entire course as well as the amount and quality of participation in the Slack group.&lt;/p&gt;

&lt;h2&gt;What I expect:&lt;/h2&gt;

&lt;p&gt;The recommended study time is 10 hours a week. During my last scholarship through them I definitely procrastinated on studying the first month since it was a topic I was already familiar with so I'm not doing the this time.&lt;/p&gt;

&lt;p&gt;I have no AI experience and very minimal Python experience so I know it's going to take a lot more than the 10 hours. Thankfully on Slack we have a beginners channel to share resources and there are channels to get help.&lt;/p&gt;

&lt;p&gt;I had started this course before but was quickly overwhelmed by the speed so having the extra help (and a deadline) is already helping. Personally, I tend to stay off Slack for the first week because it's a lot of people introducing themselves, posting just to post, repeat questions and not threading anything. It's unnecessary and very overwhelming. After the orientation and an AMA session I'm sure it'll calm down.&lt;/p&gt;

&lt;h3&gt;Have you done any AI? Is it something you're interested in?&lt;/h3&gt;

&lt;p&gt;View full article on &lt;a href="https://jkimexploring.wordpress.com/2019/11/24/bertelsmann-scholarship-ai-track/"&gt;https://jkimexploring.wordpress.com/2019/11/24/bertelsmann-scholarship-ai-track/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>pytorch</category>
      <category>scholarship</category>
    </item>
    <item>
      <title>Halfway Point: Hacktoberfest</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Tue, 15 Oct 2019 14:19:37 +0000</pubDate>
      <link>https://dev.to/jkimexploring/halfway-point-hacktoberfest-a8</link>
      <guid>https://dev.to/jkimexploring/halfway-point-hacktoberfest-a8</guid>
      <description>&lt;p&gt;While I wrote that title I heard the voice of my training app in my head… so that’s fun.&lt;/p&gt;

&lt;p&gt;This month I’ve been doing more than normal and I honestly have no clue how I’m balancing it all. Last night I relaxed and watched Idiocracy and After and blogged a bit, neither took a ton of concentration which was exactly what I needed.&lt;/p&gt;

&lt;p&gt;HACKTOBERFEST:&lt;br&gt;
I am participating in Hacktoberfest this month. My plan was to do one the first couple days and then one each Saturday. Basically I’m one behind where I was planning to be at.&lt;/p&gt;

&lt;p&gt;First Pull Request:&lt;/p&gt;

&lt;p&gt;This was a super simple one just to get used to the process of doing a PR. There was good documentation and I basically just had to put in a new JavaScript object of a movie, emojis, etc.&lt;/p&gt;

&lt;p&gt;Second Pull Request:&lt;/p&gt;

&lt;p&gt;I had a goal to do something in C++ and since I’m just learning I decided to do one that was a HackerRank problem. I didn’t want people to just be able to copy the answer blindly so I also added in a couple comments about why the answer is what it is and why it isn’t as straightforward as I thought it’d be. I did one on a for loop and one on pointers.&lt;/p&gt;

&lt;p&gt;I had only done pointers and then I was looking at PRs other people have put in and someone else had already done that. So note to myself (and others): LOOK AT THE PENDING PRs.&lt;/p&gt;

&lt;p&gt;How's everyone else's Hacktoberfest going?&lt;/p&gt;

&lt;p&gt;View full article here: &lt;a href="http://www.jkimexploring.wordpress.com/2019/10/15/halfway-point-october/"&gt;http://www.jkimexploring.wordpress.com/2019/10/15/halfway-point-october/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devjournal</category>
      <category>hacktoberfest</category>
    </item>
    <item>
      <title>My #Hacktoberfest Goals</title>
      <dc:creator>JkImExploring</dc:creator>
      <pubDate>Tue, 01 Oct 2019 15:42:49 +0000</pubDate>
      <link>https://dev.to/jkimexploring/my-hacktoberfest-goals-2pl5</link>
      <guid>https://dev.to/jkimexploring/my-hacktoberfest-goals-2pl5</guid>
      <description>&lt;p&gt;Every year Digital Ocean puts on a hackathon in October called Hacktoberfest and this year they are partnering with DEV. As some may remember last October was the very end of my nanodegree program so I didn’t participate.&lt;/p&gt;

&lt;p&gt;WHY I’M PARTICIPATING&lt;br&gt;
I’ve been wanting to get into open source for a couple months now to be able to use the skills I’ve been learning and interact with others’ code again since I miss that and I feel as though participating in something globally, like Hacktoberfest, will help motivate me to actually start.&lt;/p&gt;

&lt;p&gt;Since it is my first time doing open source I’m going to start off with easier issues, but would I really be me if I didn’t add on more goals for myself?&lt;/p&gt;

&lt;p&gt;HACKTOBERFEST GOALS:&lt;br&gt;
Contribute to one climate change- based project&lt;br&gt;
Do one PR where I have to learn something new&lt;br&gt;
One contribution using C++ (if I fail on any this will be it since it’s a super new language to me)&lt;br&gt;
One contribution utilizing React or Vue frameworks&lt;/p&gt;

&lt;p&gt;What are your October goals? Who else is participating? Have you contributed to open source before?&lt;/p&gt;

&lt;p&gt;Full text here: &lt;a href="https://jkimexploring.wordpress.com/2019/10/01/hacktoberfest-2019/"&gt;https://jkimexploring.wordpress.com/2019/10/01/hacktoberfest-2019/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>hacktoberfest</category>
      <category>github</category>
      <category>devjournal</category>
    </item>
  </channel>
</rss>
