<?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: Bryn</title>
    <description>The latest articles on DEV Community by Bryn (@bluesbaka).</description>
    <link>https://dev.to/bluesbaka</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%2F175389%2Fdc0620d1-16c2-4c4d-9940-768faba1235b.jpeg</url>
      <title>DEV Community: Bryn</title>
      <link>https://dev.to/bluesbaka</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bluesbaka"/>
    <language>en</language>
    <item>
      <title>Data Structures for Everyone!</title>
      <dc:creator>Bryn</dc:creator>
      <pubDate>Thu, 08 Aug 2019 20:59:10 +0000</pubDate>
      <link>https://dev.to/bluesbaka/data-structures-for-everyone-56l0</link>
      <guid>https://dev.to/bluesbaka/data-structures-for-everyone-56l0</guid>
      <description>&lt;p&gt;As part of my code camp experience we've been introduced to a lot of new terminology and CS concepts.  The bulk of them have been primarily practical in nature; how to use ruby to implement a search, how to connect models in ORMs, what a route actually is and how to configure it, etc. Some of the more interesting theoretical concepts aren't as routinely discussed but are crucial for grasping the purpose behind any particular algorithm utilization. One of those core computting concepts is Data Structures.&lt;/p&gt;

&lt;p&gt;The concept of data structures is easy to grasp when you recognize how you already use them in your daily life. As humans, figuring out how to keep useful information around is a component of culture and our ability to work together on larger projects. &lt;/p&gt;

&lt;h2&gt;Human Centered Examples:&lt;/h2&gt;

&lt;ul&gt;*Dictionaries 

*Maps

*Tables

*Programming Conventions
&lt;/ul&gt;

&lt;p&gt;Everyday examples of data structures abound, they're ,very simply, the ways we've decided make the most sense for the type of information we have to store, in order to recall or present that information. During medieval times, we used songs and poetry to store data- because most people couldn't read, encoding the information of the day in an auditory format made the most sense.  &lt;/p&gt;

&lt;p&gt;Today, we use dictionaries for words in new languages, we store location information as gps coordinates and present them on a map; a 2-d, visual data structure with distance and terrain information encoded in the colors, topography, and oriented on a grid with cardinal directions. If you wanted to keep track of your book keeping information, you may prefer a balance sheet or an excel table. Programming conventions help us keep track of our code in an understable and transferable way. Often the purpose of our programs is to track, analyze, and present huge amount of data that very few humans would be interested in storing inside their heads. &lt;/p&gt;

&lt;h2&gt;Computer Centered Examples:&lt;/h2&gt;

&lt;ul&gt;*Arrays

*Linked lists

*Hash Tables

*Graphs

*Trees
&lt;/ul&gt;

&lt;p&gt;When working with particularly large data sets we turn to computers, and we've worked out ways to structure that information in ways that are better suited to their functionality. Arrays, queues, stacks, linked-lists, graphs, trees and their sub-derivative heaps, and hash-tables are some of the structures that we use to efficiently access the information again when we want it.  &lt;/p&gt;

&lt;p&gt;One of the key data storage possibilities is the array. Arrays are the basis for just about every other data storage structure. An array is a linear chunk of determined length as stored in memory. It will keep track of your information, in order, and it's very hard to access anything from the center. When you fill your array- it's necessary to find a new sequence of memory that you can copy your original information into and then specify a further amount of data for your new array, in order to add to it.&lt;/p&gt;

&lt;p&gt;A more complex data structure is the hash-table. Hash-tables are the basis of databases. Their job is to take a key value pair, pass it through the hash function, and then use the output to precisely locate a place for it to live. When accessing the information later, we pass the key back to the hash function and it will point us to that precise spot again. &lt;/p&gt;

&lt;p&gt;So, that's a basic explanation of what data structures are.  Understanding the nuances of how a particular structure works is actually pretty good reading and food for thought.  I hope this makes the concept more approachable and fun to work with!  &lt;/p&gt;

&lt;p&gt;Leave a comment below on your favorite algo/structure pairs!&lt;/p&gt;

&lt;p&gt;References:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Data_structure"&gt;https://en.wikipedia.org/wiki/Data_structure&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.geeksforgeeks.org/data-structures/"&gt;https://www.geeksforgeeks.org/data-structures/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>beginners</category>
      <category>discuss</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Drinking from the Firehose and Avoiding Burnout</title>
      <dc:creator>Bryn</dc:creator>
      <pubDate>Thu, 01 Aug 2019 20:51:18 +0000</pubDate>
      <link>https://dev.to/bluesbaka/drinking-from-the-firehose-and-avoiding-burnout-5e5l</link>
      <guid>https://dev.to/bluesbaka/drinking-from-the-firehose-and-avoiding-burnout-5e5l</guid>
      <description>&lt;h3&gt;
  
  
  Burnout is defined by three criteria by the WHO
&lt;/h3&gt;

&lt;h4&gt;
  
  
  feelings of energy depletion or exhaustion
&lt;/h4&gt;

&lt;h4&gt;
  
  
  increased mental distance from one’s job or feelings negative towards one’s career
&lt;/h4&gt;

&lt;h4&gt;
  
  
  reduced professional productivity.
&lt;/h4&gt;

&lt;p&gt;You can usually identify the end stages of it- once productive members of the team now staring at their screens for large chunks of the day; less energy for interpersonal interaction, and a marked reduction in quality of the work that is completed. More than just feeling tired or unproductive, burnout can last for weeks or even months.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--e_Mp-YSR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://media1.tenor.com/images/dc7662160a37ed1e4c5a195f91722ede/tenor.gif%3Fitemid%3D5113971" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--e_Mp-YSR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://media1.tenor.com/images/dc7662160a37ed1e4c5a195f91722ede/tenor.gif%3Fitemid%3D5113971" alt="exhausted gif"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is such a pervasive issue in our modern world that the WHO has updated their definition is an effort to provide a better level of acknowledgment and support around this feature of our society.&lt;/p&gt;

&lt;p&gt;As a software developer one of the realities of the job is burnout- but it's often not really spoken about. There's a lot of value in being able to push a project through or just keep grinding away on a problem until it's done and Americans are have mastered the art of exhaustion flexing. Just think back to the last conversation you had where sleep came up- Was is someone declaiming how little sleep they got? Were they inviting compliments for their hard work and dedication in the same breath?&lt;/p&gt;

&lt;p&gt;My bootcamp experience with Flatiron has been incredible- I never would have believed that I could learn two different languages and a library of each in 3 months and become proficient in creating front and backend apps for the modern web. Over the last few weeks though I've noticed the enthusiasm of my once cheerful and energized cohort flagging though. We're all hanging in and we keep showing up everyday to school- most of us an hour or two early and staying an hour or so afterward to finish extra reading. Our dedication is apparent and the commitment we've made is carrying us through. &lt;/p&gt;

&lt;p&gt;It's been an intense program and all of us are learning to deal with the never ending process of learning and churning out another deliverable every three weeks. We're all coming to the realization that this is, in fact a key piece to the work that we're choosing to get into. As such, dealing with it in the long run is going to be about creating good habits now and building those into our lives and careers. Honestly, through all the reading I've done on the subject the key points are consistent-- Treat yourself like you'd treat your favourite pet!&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Feed yourself- preferably foods that are high in healthy fats- like fish, nuts, cheese, or my personal favourite breakfast food- chicken liver mousse. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Exercise- even a twenty minute walk will help reduce your stress levels, but a hour of cardio/weight training a few times a week will dramatically improve your life and ability to rebound from stressful situations&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Water- I know you know this, but still- get a water bottle and keep it on your desk. 32 oz a day will go a long way toward keeping yourself happy and functional.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sleep- even under normal circumstances adults NEED between 6-8 hours of sleep a night. More and more, studies are explicitly discovering connections with lack of sleep and chronic diseases. If you don't have time to sleep- you're probably fooling yourself about the quality of work you're putting out.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Social- We're mammals, we're at our best when we have meaningful emotional connections with the people we interact and work with. You don't need to be besties with your desk mate, but it helps everyone to feel seen to take fifteen minutes and trade stories about your day or anecdotes from your life. Schedule time to hang out with the people who are important to you as often as you can, find something fun to do and make sure you're getting a least an hour or two a week. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Self-care- I usually list this as hygiene and remind people to shower every morning, but it really goes further than that and includes whatever somatic/grooming/replenishing personal care that you find restorative. If you can't think of anything in that category- definitely take a shower every day and maybe wear that new shirt that you like.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ask for help from your team- talk to your team about what's going on for you and don't try to power through it for more than a week or two at most. &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Resources:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.projectmanager.com/blog/avoid-burn-out"&gt;https://www.projectmanager.com/blog/avoid-burn-out&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.healthline.com/health/mental-health/burnout-definition-world-health-organization#1"&gt;https://www.healthline.com/health/mental-health/burnout-definition-world-health-organization#1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.healthline.com/health/tips-for-identifying-and-preventing-burnout"&gt;https://www.healthline.com/health/tips-for-identifying-and-preventing-burnout&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.sleepfoundation.org/excessive-sleepiness/support/how-much-sleep-do-we-really-need"&gt;https://www.sleepfoundation.org/excessive-sleepiness/support/how-much-sleep-do-we-really-need&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.healthline.com/health/tips-for-identifying-and-preventing-burnout#how-you-can-help"&gt;https://www.healthline.com/health/tips-for-identifying-and-preventing-burnout#how-you-can-help&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.thezenteacher.com/overwhelm-or-drinking-from-the-firehose/"&gt;https://www.thezenteacher.com/overwhelm-or-drinking-from-the-firehose/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>bootcamp</category>
      <category>beginners</category>
      <category>selfcare</category>
      <category>balance</category>
    </item>
    <item>
      <title>Growth &gt; Comfort</title>
      <dc:creator>Bryn</dc:creator>
      <pubDate>Wed, 17 Jul 2019 20:59:16 +0000</pubDate>
      <link>https://dev.to/bluesbaka/growth-comfort-4hgo</link>
      <guid>https://dev.to/bluesbaka/growth-comfort-4hgo</guid>
      <description>&lt;p&gt;Asking for Help aka Eating your Ego or Beginner's Mind is the Road to Satori&lt;/p&gt;

&lt;p&gt;In the bootcamp experience one of the most telling differences between folks excelling and the folks struggling is the ability to ask for help in a timely way. It's an imperative skill in developing and for life in general. It also has predictable roadblocks that are built into the human psyche. Many folks find asking for help to be one of the most difficult professional and personal skills to master. It's certainly among my most limiting personal challenges, but I'm getting sooooooooo many opportunities to work on it right now. And I'm getting better all the time.&lt;/p&gt;

&lt;p&gt;Please comment below with any things you do to remind yourself that asking questions is okay. &lt;/p&gt;

&lt;h2&gt;Why?&lt;/h2&gt;

&lt;p&gt;When a person asks for help they're expressly exposing that they don't have whatever it is that they need to accomplish their goals on their own. And while we all know this to be a categorically true statement in the abstract, it becomes more difficult to share our own personal vulnerabilities and gaps in knowledge. In a professional setting, this immediately goes along with the possibility of being judged as a 'bad hire' or someone who doesn't have an appropriate work ethic or culture fit. &lt;/p&gt;

&lt;p&gt;An ask for help can have a lot of layered meaning, "RTFM", "STFW", "That's so basic, it's not even worth answering.", or even, "You don't know that already? Seriously?", with a sneer can shut a person down pretty quickly if they don't already have a significant level of self esteem and confidence already.&lt;/p&gt;

&lt;p&gt;Admitting that I don't have the tools or know how to solve a problem has always had a lot of shame attached to it in my family.  Anyone who was in the unfortunate position of being ignorant was aggressively derided while the more knowledgeable party had an opportunity to 'teach'. Another common response to being asked a question was to ignore it and reject the asker. I know that I'm not alone in this experience of being made fun of or to feel like not knowing something was a personal failing. These particular ways of working with ignorance are some of the least helpful and most decisive ways to get people to hide their lack of facility on a subject.&lt;/p&gt;

&lt;p&gt;I think it's a particularly difficult skillset for women entering into the notably gendered field of software development or computer science.&lt;br&gt;
I can't even get through one google search for "women in tech" without running across articles about gender discrimination and &lt;a href="https://www.nytimes.com/2014/10/16/technology/gamergate-women-video-game-threats-anita-sarkeesian.html"&gt; Anita Sarkeesian's&lt;/a&gt; experiences during GamerGate. So many of us are coming into the field with a loaded sense of having to prove ourselves in a hostile environment. The sense of being able to ask questions is completely undermined when there is no sense of inclusion to the team.&lt;/p&gt;

&lt;p&gt;All this being said, I've pulled together a list of the most helpful books, articles, and thoughts I've gleaned during my bootcamp experience. I hope that you can relate and take away some information about how to ask better questions and be a more approachable team mate or teacher.&lt;/p&gt;

&lt;p&gt;As a beginner in anything you have the right to be unfamiliar with the topic at hand. It is your right, as a person who is learning, not to know yet. As the participant in a coding school, bootcamp, or meetup- you have the right to ask questions and expect a constructive answer. This here was probably the most difficult for me to fully embrace, but give yourself a break and remember- it's not all that personal-- let yourself revel in not knowing while you learn.&lt;/p&gt;

&lt;p&gt;As a student, you are literally paying for the right to ask and get answers and to keep asking until they make sense to you. Do not feel guilty for asking to have it explained again. &lt;/p&gt;

&lt;p&gt;It's your responsibility to do something with the answers you get and to creatively apply them to your learning. But there's no glory in figuring something out for yourself when your desk partner would have gladly lead you to the solution an hour ago.&lt;/p&gt;

&lt;h2&gt;How to ask a question:&lt;/h2&gt;

&lt;p&gt;-assume good will and that you deserve to ask and have your question answered&lt;br&gt;
-be as specific as you can about your problem and desired outcome&lt;br&gt;
-ask people to help you individually, by name&lt;br&gt;
-don't give up until you actually have an improved understanding&lt;br&gt;
-let people feel good about helping you&lt;br&gt;
-be willing to hear "no, I can't help you with that"&lt;/p&gt;

&lt;h3&gt;Drawbacks for you:&lt;/h3&gt;

&lt;p&gt;-feeling exposed as lacking skill&lt;br&gt;
-momentary shame&lt;br&gt;
-fears of being judged&lt;br&gt;
-fear of rejection&lt;br&gt;
-developing a reputation for incompetence&lt;br&gt;
-guilt in diverting resources to yourself&lt;/p&gt;

&lt;h3&gt;Benefits for you:&lt;/h3&gt;

&lt;p&gt;-actually learning and building your confidence &lt;br&gt;
-developing a team mentality&lt;br&gt;
-refining your skills quickly&lt;br&gt;
-having an opportunity to make real connections with teachers and team mates&lt;/p&gt;

&lt;h3&gt;How to Offer Good Help&lt;/h3&gt;

&lt;p&gt;-understand the asker's perspective and level&lt;br&gt;
-clarify the question&lt;br&gt;
-encourage them to talk through the problem&lt;br&gt;
-build a rapport&lt;/p&gt;

&lt;h3&gt;How to Offer help Poorly&lt;/h3&gt;

&lt;p&gt;-scoff, minimize, or otherwise belittle or evade the question&lt;br&gt;
-allow your body language to convey your irritation&lt;br&gt;
-jump in without finding out if your help is going to be helpful&lt;br&gt;
-be 'helpy', don't get a clear picture of the end goal&lt;/p&gt;

&lt;h3&gt;Weird ways to ask---What to avoid at all costs.&lt;/h3&gt;

&lt;p&gt;-apologizing too much&lt;br&gt;
-minimizing the ask&lt;br&gt;
-manipulative asking&lt;br&gt;
-un clear asks&lt;br&gt;
-diffuse asks, not to a specific person&lt;/p&gt;

&lt;h3&gt;Outcomes:&lt;/h3&gt;

&lt;p&gt;Stronger cohesion of the group, better understanding, shared skills, ability to mentor and teach, positive feelings associated with helping. Better teams with more personal investment in one another and a culture that encourages questions and solution finding as a foundation for success.&lt;/p&gt;

&lt;p&gt;Heidi Grant PhD&lt;/p&gt;

&lt;p&gt;Youtube tedTalk&lt;br&gt;
&lt;a href="https://www.ted.com/talks/heidi_grant_how_to_ask_for_help_and_get_a_yes?language=en"&gt;https://www.ted.com/talks/heidi_grant_how_to_ask_for_help_and_get_a_yes?language=en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verge Article 6/22/18&lt;br&gt;
&lt;a href="https://www.theverge.com/2018/6/22/17475134/heidi-grant-reinforcements-help-social-psychology"&gt;https://www.theverge.com/2018/6/22/17475134/heidi-grant-reinforcements-help-social-psychology&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Mindset&lt;br&gt;
Dr. Carol Dweck&lt;br&gt;
&lt;a href="https://www.mindsetworks.com/science/"&gt;https://www.mindsetworks.com/science/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Specific to asking technical questions online&lt;/p&gt;

&lt;p&gt;How to Ask for Help Without Seeming Lazy&lt;br&gt;
Arit Amara&lt;br&gt;
&lt;a href="https://dev.to/msarit/how-to-ask-for-help-without-seeming-lazy-2hmh"&gt;https://dev.to/msarit/how-to-ask-for-help-without-seeming-lazy-2hmh&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How To Ask Questions The Smart Way&lt;br&gt;
Eric Steven Raymond&lt;br&gt;
&lt;a href="http://www.catb.org/%7Eesr/faqs/smart-questions.html"&gt;http://www.catb.org/~esr/faqs/smart-questions.html&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>feedback</category>
      <category>bootcamp</category>
      <category>womenintech</category>
    </item>
    <item>
      <title>Hyper Kyphosis and Coding</title>
      <dc:creator>Bryn</dc:creator>
      <pubDate>Thu, 13 Jun 2019 19:28:30 +0000</pubDate>
      <link>https://dev.to/bluesbaka/hyper-kyphosis-and-coding-32l</link>
      <guid>https://dev.to/bluesbaka/hyper-kyphosis-and-coding-32l</guid>
      <description>&lt;p&gt;Coming into coding world from my background in health and kinesthetics was a shocker.&lt;/p&gt;

&lt;p&gt;In my previous life- entire weekends were spent in retreats focused on spinal mobility and proper posture for strength, health, and ease of movement. As a dancer and instructor I pride myself on reading a person's physiology for clues about how they move and spend their time. Subtle developmental imbalances and reduced range of motion that could impact my student's ability to complete a set piece of choreography or inform the type or speed of response in a dance partner and allow me to lead my students toward a more natural and supportive spinal posture.&lt;/p&gt;

&lt;p&gt;Walking into a building full of devoted code monkeys- all focused on their amazing creations and complicated form submissions was like an ice bucket challenge for me. Everyday.  As a former dance instructor, my internal reaction to seeing the code monkey hunch is to immediately engage my core and ask the person to lift their chest sternum and correct their posture. &lt;/p&gt;

&lt;p&gt;Now- having joined the FlatIron crew, I too spend the majority of my day reading from my computer screen and coaxing the code into a working order. In order to continue doing so- I've needed to step up my spinal self care to compensate. Usually I do this by busting out a dozen push-ups a few times a day and finding ways to fit some yoga into my daily life in the office. The daily  demands of desk work are real and unique in modern human life. We're not actually very good at doing the same thing, all day, every day. Our bodies will adapt to the most efficient performance of our daily habits, not necessarily the healthiest.&lt;/p&gt;

&lt;p&gt;Healthy Spines:&lt;br&gt;
 A healthy spine has a distinct "s" curve, really more like a series of undulations from the neck to the pelvis- pulling the head back and bringing the chest forward. The bulk of the weight of your head should be balanced over the spinal cord in the center of the spine. Feel the sensation of a heavy cloak over your shoulders, allow your shoulder blades to come together and tuck your chin. This should feel good- maybe a little stretch and warmth between your shoulders, but mainly good.&lt;/p&gt;

&lt;p&gt;Kyphotic Spines:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OvBwKhEP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/b9xnphvmbikjszpftu1h.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OvBwKhEP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/b9xnphvmbikjszpftu1h.jpg" alt="Kyphosis, or Coder Hunch"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Kyphosis can be slight, just a rounding of the musculature, or severe, leading to an actual reversal of the curvature of the spine. The excessive forward rounding of the shoulders caused by typing and constantly having ones arms forward will almost always lead to compression of the nerves leading from the c-spine down through the shoulder and into the arms.  If anyone has ever had a pinched nerve or experienced the pins and needles feeling of sensation returning to a numb limb after sitting on it oddly for a few minutes- these are symptoms of radiculopathy. radi= radius, the fine bone of the forearm- opathy = a medical problem. Reduced sensation and strength in the side of the arms, along the triceps, down to the pinky, ring, and middle fingers are common complaints. Carpal tunnel syndrome is a form of radiculopathy.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kaSnWNI7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/d3i3k151p878qjgmyngw.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kaSnWNI7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/d3i3k151p878qjgmyngw.jpeg" alt="Head posture"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iuuRZxX4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/wu355hp0dbmhs97azkha.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iuuRZxX4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/wu355hp0dbmhs97azkha.jpg" alt="Radial Nerve Pain"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Nerve pathways through C-spine&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BVQCToLU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/2f4x15905wjzamrbllbz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BVQCToLU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/2f4x15905wjzamrbllbz.jpg" alt="Nerves through the neck"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Brachial Plexus and nerves of the arm&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8SBk_Hio--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/vy78eaeh9e0617i3fjo0.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8SBk_Hio--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/vy78eaeh9e0617i3fjo0.jpg" alt="Front Shoulder Nerves"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Traditional tx and medical intervention:&lt;/p&gt;

&lt;p&gt;Traditionally, once your notice the nerve pain, changes in your daily life are necessary to resolve it. Changing the height of your desk, more focus on ergonomics, an expensive MRI or two, and a few weeks of physical therapy will result in a return to function for 80% of people. &lt;/p&gt;

&lt;p&gt;Postural correctors:&lt;/p&gt;

&lt;p&gt;There's an entirely new set of gadgets available for this. Everything from mechanical braces, and holster style shoulder straps, to electric monitors that will shock you if your posture slips. Pavlov, anyone?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.verywellhealth.com/best-posture-correctors-4171981"&gt;https://www.verywellhealth.com/best-posture-correctors-4171981&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Prevention exercises:&lt;/p&gt;

&lt;p&gt;With anything here- if you have doubts about your ability to perform with good form, ask for help from a professional!&lt;/p&gt;

&lt;p&gt;Instead of waiting for the inevitable discomfort and expensive diagnostic and treatment options, setting yourself up for success and health is much easier- in the long run. To start, you may have trouble with even body weight- particularly if you haven't had the chance or inclination to develop these muscles in your life up to now. It's shocking how much functional strength I lost in the last five weeks of sitting for 8 hours a day. &lt;/p&gt;

&lt;p&gt;Y-T-W with weights or without to start&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/XU_6-HlDlZo"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;wrist crawls up the wall&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/3EHYr5trXKQ"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Yoga:&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/lMTyp5npt78"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Cat/Cows &lt;/p&gt;

&lt;p&gt;Down Dog&lt;/p&gt;

&lt;p&gt;Bent Hang&lt;/p&gt;

&lt;p&gt;Bent Hang + Superman Arms&lt;/p&gt;

&lt;p&gt;Classics to build up to:&lt;/p&gt;

&lt;p&gt;push ups - with your elbows tight in to your rib cage. If these aren't comfortable on the ground, find a flight of stairs or a stable desk and do them at an incline, with your elbows tucked in and your shoulder girdle "packed"- meaning with your shoulder blades pulled down along your back and the space between them engaged.&lt;/p&gt;

&lt;p&gt;pull ups- get a bar, start with palms toward you (chin-up position, uses more of the bicep) and then hang with bent arms to start, trying to find the same kind of "packed" shoulder described in the push up.&lt;/p&gt;

&lt;p&gt;Advanced: take these on after you're very comfortable doing at least a dozen pushups and can perform at least three sets of ten Y-T-W's with five pounds and good form. &lt;/p&gt;

&lt;p&gt;Handstands&lt;/p&gt;

&lt;p&gt;Handstand pushups&lt;/p&gt;

&lt;p&gt;Citations: &lt;/p&gt;

&lt;p&gt;Radiculopathy and Cervical Spine Compression&lt;br&gt;
&lt;a href="https://www.spine.org/KnowYourBack/Conditions/Degenerative-Conditions/Cervical-Stenosis-Myelopathy-and-Radiculopathy"&gt;https://www.spine.org/KnowYourBack/Conditions/Degenerative-Conditions/Cervical-Stenosis-Myelopathy-and-Radiculopathy&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Complex breakdown of nervous pathways and branches of the cervical and brachial plexuses:&lt;br&gt;
&lt;a href="https://antranik.org/peripheral-nervous-system-spinal-nerves-and-plexuses/"&gt;https://antranik.org/peripheral-nervous-system-spinal-nerves-and-plexuses/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;American Family Physicians website:&lt;br&gt;
&lt;a href="https://www.aafp.org/afp/2010/0101/p33.html"&gt;https://www.aafp.org/afp/2010/0101/p33.html&lt;/a&gt;&lt;/p&gt;

</description>
      <category>kinesthetics</category>
      <category>nerves</category>
      <category>cspine</category>
      <category>kyphosis</category>
    </item>
  </channel>
</rss>
