<?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: ajmompr</title>
    <description>The latest articles on DEV Community by ajmompr (@ajmompr).</description>
    <link>https://dev.to/ajmompr</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%2F1120428%2F94b58818-1ff6-4370-b8f1-8ac4eef0a716.png</url>
      <title>DEV Community: ajmompr</title>
      <link>https://dev.to/ajmompr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajmompr"/>
    <language>en</language>
    <item>
      <title>TIL about building gradients in CSS</title>
      <dc:creator>ajmompr</dc:creator>
      <pubDate>Tue, 25 Jul 2023 01:56:24 +0000</pubDate>
      <link>https://dev.to/ajmompr/til-about-building-gradients-in-css-29e6</link>
      <guid>https://dev.to/ajmompr/til-about-building-gradients-in-css-29e6</guid>
      <description>&lt;p&gt;While creating my link-in bio project, I ran into some difficulty with styling my background to include an animated gradient, and I plan to discuss my roadblocks with a TA this week. Although I had issues figuring out the animated gradient, I did learn more about using the &lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient"&gt;CSS linear-gradient function.&lt;/a&gt; through reading documentation on MDN!&lt;/p&gt;

&lt;p&gt;Gradients allow developers to create smooth transitions between multiple colors, and there are 3 basic types of CSS gradients:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient"&gt;Linear Gradients&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/radial-gradient"&gt;Radial Gradients&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/conic-gradient"&gt;Conic Gradients&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Below is an example of a simple linear-gradient with two color stops:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.simple-linear&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;linear-gradient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="no"&gt;blue&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="no"&gt;pink&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;The three CSS gradient functions include a &lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_images/Using_CSS_gradients"&gt;number of properties&lt;/a&gt; that allow for endless customization!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL more about flexbox...</title>
      <dc:creator>ajmompr</dc:creator>
      <pubDate>Mon, 24 Jul 2023 01:16:12 +0000</pubDate>
      <link>https://dev.to/ajmompr/til-more-about-flexbox-2oo5</link>
      <guid>https://dev.to/ajmompr/til-more-about-flexbox-2oo5</guid>
      <description>&lt;p&gt;Thanks to the &lt;a href="https://flexboxfroggy.com/"&gt;Flexbox Froggy&lt;/a&gt; exercise, I finally feel like I have a better grasp on flexbox. Although I took an HTML &amp;amp; CSS mini-course about 3 years ago, I have always felt a little fuzzy on the concept.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is flexbox?
&lt;/h3&gt;

&lt;p&gt;Flexbox refers to the flexible box layout system in CSS, and it is a particularly useful tool when styling elements in a 1-dimensional row such as component layouts. &lt;/p&gt;

&lt;p&gt;Example of the CSS display flex property:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.container&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;flex&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;h3&gt;
  
  
  What new things did you learn?
&lt;/h3&gt;

&lt;p&gt;During the exercise, I learned about the &lt;code&gt;flex-flow&lt;/code&gt; CSS property which is a shorthand property that allows us to combine both the &lt;code&gt;flex-direction&lt;/code&gt; and &lt;code&gt;flex-wrap&lt;/code&gt; properties.  &lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.container&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nl"&gt;flex-flow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;column-reverse&lt;/span&gt; &lt;span class="n"&gt;wrap-reverse&lt;/span&gt;&lt;span class="p"&gt;;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>TIL that starting is the hardest part!</title>
      <dc:creator>ajmompr</dc:creator>
      <pubDate>Sun, 16 Jul 2023 01:49:14 +0000</pubDate>
      <link>https://dev.to/ajmompr/til-that-starting-is-the-hardest-part-24fj</link>
      <guid>https://dev.to/ajmompr/til-that-starting-is-the-hardest-part-24fj</guid>
      <description>&lt;p&gt;Last year, after transitioning out of my career in healthcare and social services, I made the decision to uproot my life and move to my dream city, Chicago, IL and also pursue a career change into tech. &lt;/p&gt;

&lt;p&gt;After searching the web for different bootcamp and apprenticeship options, I learned about DPI, and I simply could not believe that a program like this existed! For context, my little brother completed an unpaid training program, Per Scholas, in Atlanta and was able to successfully transition into a career in IT. However, due to my financial circumstances, I simply could not afford to attend an unpaid training program. &lt;/p&gt;

&lt;p&gt;I was incredibly excited to register for Tech Prep 2.0; strangely enough, however, my excitement quickly turned into a bit of panic and a whole lot of fear. I was terrified to log into Canvas!&lt;/p&gt;

&lt;p&gt;After journaling about my anxieties and reaching out to my loved ones for support, I finally got the courage to start the course today, and I could not be happier! In this week's learning modules, it was incredibly encouraging to hear about Raghu Betina's non-traditional journey into application development. And, during my studying today, I recognized that sometimes, getting started is the hardest part.&lt;/p&gt;

&lt;p&gt;Going forward, I have scheduled my daily "deep work" sessions (shoutout to Dr. Cal Newport and his book, &lt;em&gt;Deep Work&lt;/em&gt;) so that I can help reduce any anxiety and activation energy associated with starting my coursework. I'm so excited to see where this journey will take me, and I am already so inspired by the work of my cohort!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
