<?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: Julianna Tetreault</title>
    <description>The latest articles on DEV Community by Julianna Tetreault (@juliannatetreault).</description>
    <link>https://dev.to/juliannatetreault</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%2F256524%2F85552f1f-8946-4054-a104-0cbb3a48e0ad.JPG</url>
      <title>DEV Community: Julianna Tetreault</title>
      <link>https://dev.to/juliannatetreault</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/juliannatetreault"/>
    <language>en</language>
    <item>
      <title>JSON-LD: What It Is and How DEV Uses It</title>
      <dc:creator>Julianna Tetreault</dc:creator>
      <pubDate>Thu, 14 May 2020 15:11:37 +0000</pubDate>
      <link>https://dev.to/juliannatetreault/json-ld-what-it-is-and-how-dev-uses-it-4d25</link>
      <guid>https://dev.to/juliannatetreault/json-ld-what-it-is-and-how-dev-uses-it-4d25</guid>
      <description>&lt;p&gt;Over the last six weeks, DEV has focused on improving its search engine optimization, and conforming the site to best practices. As the team member running point on this project, I've immersed myself in all things SEO. &lt;/p&gt;

&lt;p&gt;This article is an attempt to distill and un-silo my knowledge—we will briefly discuss JSON-LD versus traditional implementations that leverage meta tags and then explore how DEV has migrated to using JSON-LD for our site.&lt;/p&gt;

&lt;h2&gt;
  
  
  JSON- &lt;em&gt;What?&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;JSON-LD stands for JavaScript Object Notion for Linked Data. JSON-LD makes it simple to structure the data on a site for web crawlers by disambiguating elements, thus making the webpage using it more indexable, in turn bolstering the site’s SEO. The JSON-LD for a page is generally found within a &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tag in a page’s &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tag, though finding the data within a &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; tag is not uncommon. Placing structured data within the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tag is considered best practice, though, since crawlers generally begin searching for metadata in &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tags. &lt;/p&gt;

&lt;p&gt;What makes JSON-LD so usable is its syntax, which makes it easily readable by humans and machines. The linked data format consists of key-value pairs, containing &lt;a href="https://schema.org/"&gt;Schema.org&lt;/a&gt; vocabulary, a shared vocabulary for structuring data, so machines can quickly interpret the content of the page. Leveraging the Schema.org vocabulary makes it possible to describe a litany of item types and item properties, with varying detail—types can inherit from parent properties and other types. &lt;/p&gt;

&lt;p&gt;There a few basic attributes that make up the general JSON-LD structure, aside from essential&lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tags: &lt;code&gt;@context&lt;/code&gt;, &lt;code&gt;@type&lt;/code&gt;, and the attribute-value pairs for the given object. All of the essential elements that make up a basic JSON-LD structure, aside from the &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tags, can be found wrapped in double quotation marks (&lt;code&gt;“”&lt;/code&gt;) and ending with a comma. The &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tags containing the structured data will always specify its type as JSON-LD: &lt;code&gt;&amp;lt;script type=“application/ld+json”&amp;gt;&lt;/code&gt;. Similar to the &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tags, the &lt;code&gt;@context&lt;/code&gt; attribute should always specify Schema.org: &lt;code&gt;”@context”: “Schema.org”,&lt;/code&gt;. Unlike the other essential attributes that make up the data structure, &lt;code&gt;@type&lt;/code&gt; and the structure’s attribute-value pairs change depending on the item’s type and properties.&lt;/p&gt;

&lt;p&gt;For our visual learners, I have included an example below of what the structured data for a DEV Organization looks like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;“application/ld+json”&lt;/span&gt;&lt;span class="nt"&gt;&amp;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;@context&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;http://schema.org&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;@type&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;Organization&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;mainEntityOfPage&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="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&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;WebPage&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;@id&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;(@&lt;/span&gt;&lt;span class="nd"&gt;organization&lt;/span&gt;&lt;span class="p"&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;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;(@&lt;/span&gt;&lt;span class="nd"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;image&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;ProfileImage&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;new&lt;/span&gt;&lt;span class="p"&gt;(@&lt;/span&gt;&lt;span class="nd"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="kd"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;320&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&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="nd"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;description&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="nd"&gt;organization&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;summary&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;presence&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;404 bio not found&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Looking at the above structure, you’ll see the necessary attributes that make up the skeleton of a JSON-LD structure: &lt;code&gt;"&amp;lt;script type=“application/ld+json”&amp;gt;"&lt;/code&gt;,&lt;code&gt;"@context"&lt;/code&gt;, &lt;code&gt;"@type"&lt;/code&gt;. There are some additional attribute-value pairs pointing to necessary information that we at DEV have aimed to disambiguate for search crawlers, like Google's, as well.&lt;/p&gt;

&lt;h2&gt;
  
  
  DEV- &lt;em&gt;How?&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;Now that we’ve covered the basics of JSON-LD and the vocabulary that it uses, it’s time to talk briefly about how DEV uses JSON-LD to structure its data and boost its SEO.&lt;/p&gt;

&lt;p&gt;Prior to switching to JSON-LD in the last six weeks, the DEV codebase previously relied on &lt;code&gt;&amp;lt;meta&amp;gt;&lt;/code&gt; tags in addition to specifying &lt;code&gt;itemType&lt;/code&gt;s and &lt;code&gt;itemProp&lt;/code&gt;s. While this approach works, it wasn’t working as well as  JSON-LD could and we weren’t feeling satisfied with its results. With our SEO plateauing, it was time to make our data more structured. The solution? Move away from using &lt;code&gt;&amp;lt;meta&amp;gt;&lt;/code&gt; tags, &lt;code&gt;itemType&lt;/code&gt;s, and &lt;code&gt;itemProp&lt;/code&gt;s and migrate towards structuring our data using JSON-LD.&lt;/p&gt;

&lt;p&gt;The switch to JSON-LD was nice because it is well documented, there are many examples to draw inspiration from, and there are useful testing tools, like Google’s own &lt;a href="https://search.google.com/structured-data/testing-tool/u/0/"&gt;Google Structured Data Testing Tool&lt;/a&gt;. The same is true for Schema.org—the vocabulary’s documentation is easy to parse and item type and property examples are plentiful. &lt;/p&gt;

&lt;p&gt;This being said, implementing JSON-LD was a learning experience for the entire team (as is any new coding endeavor!). Through our joint effort, we were able to structure the data for many of our major pages and our most important data in only a couple of weeks. Currently, the data for Article show pages, User profile pages, Organization profile pages, and Video show pages are structured using JSON-LD and the Schema.org vocabulary. &lt;/p&gt;

&lt;p&gt;This snippet shows what the structured data for a User’s profile page looks like. &lt;em&gt;Note: For brevity, I’ve included most, but not all, of the code for that makes up the structured data within the &lt;code&gt;Stories::Controller&lt;/code&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;In the &lt;code&gt;Stories::Controller&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;set_user_json_ld&lt;/span&gt;
 &lt;span class="vi"&gt;@user_json_ld&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="s2"&gt;"@context"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"http://schema.org"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"Person"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"mainEntityOfPage"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="s2"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"WebPage"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="s2"&gt;"@id"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;user&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="vi"&gt;@user&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt;
&lt;span class="s2"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;user&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="vi"&gt;@user&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
&lt;span class="s2"&gt;"sameAs"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[],&lt;/span&gt;
&lt;span class="s2"&gt;"image"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;ProfileImage&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;new&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="vi"&gt;@user&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="ss"&gt;width: &lt;/span&gt;&lt;span class="mi"&gt;320&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
&lt;span class="s2"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="vi"&gt;@user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"email"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;“”&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"jobTitle"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;“”&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"description"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="vi"&gt;@user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;summary&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;presence&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="s2"&gt;"404 bio not found"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="s2"&gt;"disambiguatingDescription"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[],&lt;/span&gt;
&lt;span class="s2"&gt;"worksFor"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
  &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="s2"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"Organization"&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt;
&lt;span class="p"&gt;],&lt;/span&gt;
&lt;span class="s2"&gt;"alumniOf"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="err"&gt;“”&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And in the &lt;code&gt;users/show&lt;/code&gt; Template:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;&lt;/span&gt;&lt;span class="err"&gt;%&lt;/span&gt; &lt;span class="na"&gt;unless&lt;/span&gt; &lt;span class="na"&gt;internal_navigation&lt;/span&gt;&lt;span class="err"&gt;?&lt;/span&gt; &lt;span class="err"&gt;||&lt;/span&gt; &lt;span class="na"&gt;user_signed_in&lt;/span&gt;&lt;span class="err"&gt;?&lt;/span&gt; &lt;span class="err"&gt;%&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"application/ld+json"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="o"&gt;&amp;lt;%=&lt;/span&gt; &lt;span class="p"&gt;@&lt;/span&gt;&lt;span class="nd"&gt;user_json_ld&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;to_json&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;html_safe&lt;/span&gt; &lt;span class="o"&gt;%&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;&lt;/span&gt;&lt;span class="err"&gt;%&lt;/span&gt; &lt;span class="na"&gt;end&lt;/span&gt; &lt;span class="err"&gt;%&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;

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

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;I should also note that in order to make our structured data reusable and to keep our views clean, we opted to extract all of the logic for our structured data out into the &lt;code&gt;set_user_json_ld&lt;/code&gt; method within the &lt;code&gt;Stories::Controller&lt;/code&gt;—we found that this implementation works best for us.&lt;/em&gt; &lt;/p&gt;

&lt;p&gt;Since switching to JSON-LD, DEV has seen a dramatic increase in its SEO. Through disambiguating elements and organization, we were able to boost our SEO by making it easier for Google and its crawlers to navigate our site and its pertinent information.&lt;/p&gt;

&lt;p&gt;How do you plan on implementing JSON-LD to improve your SEO? &lt;/p&gt;

</description>
      <category>seo</category>
      <category>meta</category>
      <category>webdev</category>
      <category>html</category>
    </item>
    <item>
      <title>I Just Joined the DEV Team</title>
      <dc:creator>Julianna Tetreault</dc:creator>
      <pubDate>Mon, 03 Feb 2020 20:02:24 +0000</pubDate>
      <link>https://dev.to/juliannatetreault/i-just-joined-the-dev-team-n2j</link>
      <guid>https://dev.to/juliannatetreault/i-just-joined-the-dev-team-n2j</guid>
      <description>&lt;p&gt;Hi, DEV! 👋🏼&lt;/p&gt;

&lt;p&gt;My name is Julianna and I am incredibly excited to announce that I have joined the DEV team as an Associate Software Engineer! This will be my second week working with the wonderful team behind DEV and I am thrilled to be here.&lt;/p&gt;

&lt;p&gt;My first introduction to DEV was in September of 2018 while I was attending the Flatiron School’s full-stack software engineering bootcamp, but I didn’t seriously start using the platform until October of 2019.&lt;/p&gt;

&lt;p&gt;I have been so inspired by the DEV community and cannot wait to give back to the amazing people who make DEV such a special place to be a part of.&lt;/p&gt;

&lt;h3&gt;
  
  
  About Me
&lt;/h3&gt;

&lt;p&gt;I am an East Coast native currently residing in the mountains of Colorado.&lt;/p&gt;

&lt;p&gt;I began as a self-taught programmer, working on open-source software over three years ago and graduated from a full-stack software engineering bootcamp a little over a year and a half ago. &lt;/p&gt;

&lt;p&gt;Since graduating, I have primarily worked on the backend of the stack, focusing on Ruby and Rails development and I am currently teaching myself how to program in Python.&lt;/p&gt;

&lt;p&gt;When I’m not writing code, I really enjoy reading, running, writing, traveling, and attempting to be a plant mom.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why DEV?
&lt;/h3&gt;

&lt;p&gt;My resume is eclectic—I am a published writer turned software engineer, making DEV the ultimate intersection of my skills. Being able to do what I love, while still continuing to be immersed in the world of writing is a dream come true.&lt;/p&gt;

&lt;p&gt;Coming from a non-traditional background, I cannot overemphasize how important it is to have an inclusive, supportive, and transparent community to learn and grow from, especially when you’re just starting out as a developer. &lt;/p&gt;

&lt;p&gt;Open-source software has been a large part of my journey as a developer. I first learned how to program through an open-source community and I began contributing (albeit, very minimally) to open-source within my first few months of programming. The open-source community was what made me feel comfortable as a new developer and helped me grow into the software engineer that I am today. Giving back to the community that gave so much to me is something I hold near-and-dear to my heart.&lt;/p&gt;

&lt;p&gt;I am so dedicated to making sure that I do my part in maintaining what makes DEV the amazing platform that it is.&lt;/p&gt;

&lt;p&gt;If you have questions, tips on how to care for succulents, or just want to get in touch, feel free to message me or email me (&lt;a href="mailto:julianna@dev.to"&gt;julianna@dev.to&lt;/a&gt;)! 👩🏻‍💻&lt;/p&gt;

</description>
      <category>meta</category>
      <category>career</category>
    </item>
  </channel>
</rss>
