<?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>Forem: Lindsay Iveson</title>
    <description>The latest articles on Forem by Lindsay Iveson (@lindsive).</description>
    <link>https://forem.com/lindsive</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%2F168055%2Fabbb2663-731b-4f42-9016-c37c4bff6274.jpeg</url>
      <title>Forem: Lindsay Iveson</title>
      <link>https://forem.com/lindsive</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/lindsive"/>
    <language>en</language>
    <item>
      <title>Letting My Mind Rest: How Coding Gets Me Through Those Rough Days</title>
      <dc:creator>Lindsay Iveson</dc:creator>
      <pubDate>Wed, 14 Aug 2019 20:23:52 +0000</pubDate>
      <link>https://forem.com/lindsive/letting-my-mind-rest-how-coding-gets-me-through-those-rough-days-1hn6</link>
      <guid>https://forem.com/lindsive/letting-my-mind-rest-how-coding-gets-me-through-those-rough-days-1hn6</guid>
      <description>&lt;p&gt;There's a stigma around mental health. Those who suffer from it, and the topic as a whole, are not treated with the care and empathy that's deserved. &lt;/p&gt;

&lt;p&gt;This is why I'm here - to be open and honest about my story, help someone feel less alone, and demonstrate how coding can get me through my roughest days. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ready for me to get candid?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I was diagnosed with bipolar disorder and anxiety a few years back, and it was such a &lt;em&gt;relief&lt;/em&gt;. I finally understood why I was so angry or felt on top of the world one week, to then crash so hard I couldn't even get out of bed. It explained why there was this constant weight in the pit of my stomach and always having my heart in my throat.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TMI? Probably. Important to share? Absolutely.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Since then, I've settled quite a bit, and have learned techniques to managing my emotions if it all gets to be too much. Sometimes it's meditating, taking a nap, or eating a PB &amp;amp; J; but since beginning my coding journey, I've realized that coding has also become part of my technique repo.&lt;/p&gt;

&lt;p&gt;When I'm manic, I feel on top of the world, my head buzzing. Constant ideas bouncing around, never landing on one thing, because I can do it &lt;em&gt;all&lt;/em&gt;. (&lt;em&gt;Spoiler: It's exhausting!&lt;/em&gt;) But that's where beautiful, synchronous JavaScript comes into play. I can't just throw around functions or make random variables; I have to stop and think about what I need to accomplish.&lt;/p&gt;

&lt;h2&gt;
  
  
  doingGreat()
&lt;/h2&gt;



&lt;div class="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;arr&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;foo&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;bar&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;baz&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;random&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;arr&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;floor&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;random&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;arr&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt;&lt;span class="p"&gt;)];&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;doingGreat&lt;/span&gt;&lt;span class="p"&gt;()&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="nx"&gt;random&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nx"&gt;doingGreat&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h2&gt;
  
  
  notSoMuch()
&lt;/h2&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;notSoMuch&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;notSoMuch&lt;/span&gt;&lt;span class="p"&gt;()&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="nx"&gt;random&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;arr&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;foo&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;bar&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;baz&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;random&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;arr&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;floor&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;random&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;arr&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt;&lt;span class="p"&gt;)];&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;My beginning looks like this: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Start to code &lt;/li&gt;
&lt;li&gt;Mind jumps a few steps ahead &lt;/li&gt;
&lt;li&gt;Write my thought down&lt;/li&gt;
&lt;li&gt;Repeat&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;But having to think step by step is so calming. It turns my &lt;code&gt;notSoMuch()&lt;/code&gt; into a &lt;code&gt;doingGreat()&lt;/code&gt;. Even if my mind whirls begins again after I'm finished, I'm grateful JavaScript can give my mind a rest for that moment in time. &lt;/p&gt;

&lt;p&gt;(Now, that I think about it, I'm quite productive -- but I digress!)&lt;/p&gt;

&lt;p&gt;If anyone out there is struggling with the same, I hope you get the chance to try it out; maybe you'll add this to your technique repo as well!&lt;/p&gt;

&lt;p&gt;(Also, remember to always be kind to yourself during these times -- you'll get through it!)&lt;/p&gt;

</description>
      <category>mentalhealth</category>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Stuff I've Learned About Managing My Anxiety While Learning to Code</title>
      <dc:creator>Lindsay Iveson</dc:creator>
      <pubDate>Tue, 06 Aug 2019 19:49:00 +0000</pubDate>
      <link>https://forem.com/lindsive/stuff-i-ve-learned-about-managing-my-anxiety-while-learning-to-code-51i3</link>
      <guid>https://forem.com/lindsive/stuff-i-ve-learned-about-managing-my-anxiety-while-learning-to-code-51i3</guid>
      <description>&lt;p&gt;&lt;strong&gt;A little blog post about mental health, coding, and being kind to yourself.&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;I’ve been at a Bootcamp for about 4 months. It’s been rewarding, a struggle, and &lt;em&gt;very&lt;/em&gt; humbling.&lt;/p&gt;

&lt;p&gt;As a person who has anxiety, Bootcamp has been an uphill battle; yet it’s also taught me ways to manage my mental health. There are some of you out there who also struggle with this, and don’t want to share, but I’m here to help y’all out! (Because I was also one of those people).&lt;/p&gt;

&lt;p&gt;Here are some things that I’ve learned recently, and have helped me &lt;strong&gt;so much&lt;/strong&gt;. I want to share ‘em, even it only helps one person. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So, in the words of Mario, here we go!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One thing I’ve found that works wonders is having a designated space for coding. This helps get into - and out of - the coding zone. I would usually work in my bedroom or living room since it’s where I hang out the most. But, it’s important to have a space that is for you to relax and enjoy your time with family, friends, and Netflix.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It’s okay to take a break&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;It's not useful to stress about your app not working, or getting frustrated by not being able to solve a problem. Clear your head, change the scenery (!), and grab a drink of your favorite beverage (mine is Coca Cola). What has helped me out a lot is meditation. This doesn’t have to be a long 20-minute session with crystals and incense. It only takes 5 minutes to help you relax and calm that anxiety and frustration! I usually use a guided meditation, and my favorite app for this is Stop, Breathe &amp;amp; Think!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Remember that everyone is on their own coding journey&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;It might take you longer than others to understand constructors (guilty!), or figuring out how CSS positions work (also extremely guilty!). I know as a newbie, I compare myself to my peers far more than I should. And I have to remind myself every day that coding is a journey and not a destination (very corny but true!).&lt;/p&gt;

&lt;p&gt;So, I hope this helps you out! Remember, be kind to yourself; you got this!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>mentalhealth</category>
    </item>
  </channel>
</rss>
