<?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: mjimenez3</title>
    <description>The latest articles on DEV Community by mjimenez3 (@mjimenez32).</description>
    <link>https://dev.to/mjimenez32</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%2F359829%2Fb41ca5d9-3aa6-45e2-818e-c9bc94640c7e.png</url>
      <title>DEV Community: mjimenez3</title>
      <link>https://dev.to/mjimenez32</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mjimenez32"/>
    <language>en</language>
    <item>
      <title>Thinking about Tailwind CSS</title>
      <dc:creator>mjimenez3</dc:creator>
      <pubDate>Thu, 23 Apr 2020 21:57:34 +0000</pubDate>
      <link>https://dev.to/mjimenez32/thinking-about-tailwind-css-4f2m</link>
      <guid>https://dev.to/mjimenez32/thinking-about-tailwind-css-4f2m</guid>
      <description>&lt;p&gt;When I first started to learn website design, every page I did was small and not very stylistic in terms of professional level work. Because of this my HTML and CSS files were easy to manage while adding or removing code. As I continue to learn, I am continually finding that my .css file grows by leaps and bounds as I input more style. It's slowly creeping to 100-200 lines of code and more. It became tiresome searching for all my classes and ids to change something simple. And even then, it would sometimes make changes that I didn't necessarily want.&lt;/p&gt;

&lt;p&gt;As with every aspect of technology, the question is always asked, "How can I do this better/easier/faster?" Bootstrap became a fan favorite for design. But the more you look into it, the more cookie cutter it can feel. What if you wanted something highly customized and unique to you and your business.&lt;/p&gt;

&lt;p&gt;Enter Tailwind CSS!&lt;/p&gt;

&lt;h1&gt;
  
  
  What is Tailwind?
&lt;/h1&gt;

&lt;p&gt;Tailwind, created by Adam Wathan and Steve Schoger, is a highly customizable, low-level CSS framework that uses utility classes that let you build completely custom designs without ever leaving your HTML.&lt;/p&gt;

&lt;p&gt;In other words, Tailwind allows you access to CSS attributes using class utilities right on your HTML document to customize unique designs, instead of having to choose from predesigned components. &lt;/p&gt;

&lt;p&gt;With a traditional CSS file, it grows as you build your site. You have to think of names_subnames_subsubnames_subsubsubnames in order to style different portions of your site. With Tailwind, you can add, remove, modify straight to the object.&lt;/p&gt;




&lt;h1&gt;
  
  
  Just Starting
&lt;/h1&gt;

&lt;p&gt;To download Tailwind, follow the directions &lt;a href="https://tailwindcss.com/docs/installation/"&gt;here&lt;/a&gt;. It is a little bit of a lengthy process, but provides an abundance of power behind it, including customization.&lt;/p&gt;

&lt;p&gt;If you are just wanting to take Tailwind for a spin, use the following CDN build:&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;link&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"stylesheet"&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;Although this will not give you full features of Tailwind, it will allow you to explore if this is something you would like to incorporate in future projects.&lt;/p&gt;




&lt;h1&gt;
  
  
  How To Use Tailwind
&lt;/h1&gt;

&lt;p&gt;Tailwind uses a mobile first breakpoint system, and uses four breakpoints: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Small (sm) min-width: 640px&lt;/li&gt;
&lt;li&gt;Medium (md) min-width: 768px&lt;/li&gt;
&lt;li&gt;Large (lg) min-width: 1024px&lt;/li&gt;
&lt;li&gt;Extra Large (xl) min-width: 1280px&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This means that utilities with no prefixes will be executed on all screen sizes, while prefixed utilities will only execute at their specified breakpoint and above. That being said, mobile screens will have no prefix.&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;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"bg-red-500 sm:bg-green-500 md:bg-blue-500 lg:bg-pink-500 xl:bg-teal-500"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here is the code for a simple splash site utilizing Tailwind CSS:&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;body&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"bg-grey-200"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;div&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"px-5 py-10 max-w-md mx-auto "&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"h-70 w-auto object-center"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://www.freelogodesign.org/file/app/client/thumb/e2c49719-4410-41b4-b0ce-83d3a22c3b6e_200x200.png?1587658842573"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Work from home logo"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"h-70 w-auto rounded-lg shadow-lg"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://images.propertycasualty360.com/contrib/content/uploads/sites/412/2019/03/RemoteWork.jpg"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"working at home"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;h1&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"mt-5 text-2xl text-grey-500 font-bold leading-tight "&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Easy commute! Great work atmosphere! &lt;span class="nt"&gt;&amp;lt;span&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"text-blue-700"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; Start Today!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;p&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"mt-3 text-sm text-grey-600 "&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Working from home allows you the freedom to be who you are, dress how you like, and go where you feel. Sign up today for a list of Work from home employers.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"inline-block mt-5 px-5 py-3 bg-blue-700 text-white rounded-lg shadow-lg uppercase tracking-wider font-semibold text-sm"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"#"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Sign up&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let's go over what some of this means.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;bg-grey-200 - Background color on scale from 100-900 in increments of 100. &lt;/li&gt;
&lt;li&gt;px-5 py-10 - padding, both horizontal and vertical.&lt;/li&gt;
&lt;li&gt;max-w-md - maximum width of medium no matter screen size (about 28rem).&lt;/li&gt;
&lt;li&gt;mx-auto - horizontal margin set to auto.&lt;/li&gt;
&lt;li&gt;w-auto - width set to auto.&lt;/li&gt;
&lt;li&gt;object-center - img set to center.&lt;/li&gt;
&lt;li&gt;rounded-lg - rounded corners and how tight they are rounded.&lt;/li&gt;
&lt;li&gt;shadow-lg - box shadow.&lt;/li&gt;
&lt;li&gt;mt-5 - margin top set to 5.&lt;/li&gt;
&lt;li&gt;text-2xl - text size 1.5rem.&lt;/li&gt;
&lt;li&gt;font-bold - darker, bolder font.&lt;/li&gt;
&lt;li&gt;leading-tight - spacing between lines of text.&lt;/li&gt;
&lt;li&gt;tracking-wider - spacing between letters.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those are the basics of what I used to make the sample splash site below:&lt;br&gt;
&lt;iframe height="600" src="https://codepen.io/mjimenez3/embed/mdeRRaG?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;




&lt;p&gt;The possibilities are endless on customized websites, made exactly to your liking. No cookie cutters here. &lt;/p&gt;

&lt;p&gt;Let me know what you think about Tailwind, and how it has made life easier or not for your web design.&lt;/p&gt;




&lt;p&gt;References&lt;br&gt;
&lt;a href="https://tailwindcss.com/"&gt;TailwindCSS Website&lt;/a&gt;&lt;br&gt;
&lt;a href="https://nerdcave.com/tailwind-cheat-sheet"&gt;Tailwind Cheat Sheet&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=21HuwjmuS7A&amp;amp;list=PL7CcGwsqRpSM3w9BT_21tUU8JN2SnyckR&amp;amp;index=1"&gt;Adam Wathan's Tailwind Tutorial&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tailwindcss</category>
      <category>css</category>
      <category>html</category>
    </item>
    <item>
      <title>Transitioned/ing Military and PMP</title>
      <dc:creator>mjimenez3</dc:creator>
      <pubDate>Tue, 07 Apr 2020 21:30:33 +0000</pubDate>
      <link>https://dev.to/mjimenez32/transitioned-ing-military-and-pmp-ke7</link>
      <guid>https://dev.to/mjimenez32/transitioned-ing-military-and-pmp-ke7</guid>
      <description>&lt;p&gt;As a military member, you do lots of things. You are told to do something, and you just get it done. That's what we do.  For example, being in the Navy, one of our owned spaces was the missile deck on a Destroyer. We were tasked with painting it. As the guy in charge of three sailors, I set out tasks for all three. These tasks encompassed everything. We checked the weather to see if it was raining. The ship's schedule to see how fast we were traveling. Gathering material like paint brushes, rollers, tape, pans, etc. Ensuring that there was the correct paint on board in the right quantities. Who was going to paint what, and then what day I would come back and make sure things were done the way they needed to be done. At the end of all this, our portion of the ship was painted and we could move on to other things (like playing video games). What I didn't know until it was explained to me was that..&lt;/p&gt;

&lt;h4&gt;
  
  
  I had just led a project, and had Project Manager Experience!
&lt;/h4&gt;

&lt;p&gt;This blew my mind. All this time I thought I had no experience that I could transfer to the real world when I got out. But no, I had successfully planned a project to include logistics, schedule, scope, people, quality assurance, and closing the project as I reported the results to my chain of command. &lt;/p&gt;

&lt;p&gt;We don't realize this, but we as military members have more experience than most people do after 10 years at any job. Sure, it may not be the field that you want, like in my case, but you can use that experience to help you leverage your way to any job. &lt;/p&gt;

&lt;p&gt;I used this aha moment to earn my Project Management Professional (PMP) and Professional Scrum Master I (PSM) Certifications. Using things like planning for deployments, painting the ship, upgrading software systems, preparing for ship certifications, I found that I had plenty of experience.  &lt;/p&gt;

&lt;p&gt;Searching for ways to study for PMP, I came across &lt;a href="https://ivmf.syracuse.edu/programs/career-training/"&gt;Onward 2 Opportunity&lt;/a&gt;. If you are in your last 6 months in the military, are already out, or are a spouse of a military member, you can apply to this program. It provides free training and certification exam through Syracuse University for a number of HR and IT programs. For PMP, they also pay for a 1 year membership to the &lt;a href="https://www.pmi.org/"&gt;Project Management Institute&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;In all my studying, which took about 2 months, I found that in the military, we do everything that Project Managers do, it's just not formalized. We don't call the phases:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Initializing &lt;/li&gt;
&lt;li&gt;Planning &lt;/li&gt;
&lt;li&gt;Executing &lt;/li&gt;
&lt;li&gt;Monitoring/Controlling &lt;/li&gt;
&lt;li&gt;Closing. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We called it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;We have to do this &lt;/li&gt;
&lt;li&gt;Let's do it &lt;/li&gt;
&lt;li&gt;We're working on it &lt;/li&gt;
&lt;li&gt;Looking Good &lt;/li&gt;
&lt;li&gt;We're Done
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Changing the way I thought of things, helped me to better understand everything I was studying. &lt;/p&gt;

&lt;p&gt;Once I passed my PMP Exam, I knew I wanted to get into the IT realm. I heard that &lt;a href="https://www.scrum.org/professional-scrum-master-i-certification"&gt;Scrum Master&lt;/a&gt; is the Project Manager of the IT world. So I began studying and found that they are very similar, except things are done in increments vice whole projects. There are other small differences, but after studying for 1 week, I took and passed the PSM exam. &lt;/p&gt;

&lt;p&gt;Being in the military has given you many different experiences. You need to find out how to leverage that experience for the "real" world. How you word things is a big factor in doing that leverage as I wrote above. Below are some of the resources I used to study for the PMP Exam.  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://edward-designer.com/web/list-of-free-pmp-exam-questions/"&gt;https://edward-designer.com/web/list-of-free-pmp-exam-questions/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.oliverlehmann.com/pmp-self-test/100-free-questions.htm"&gt;https://www.oliverlehmann.com/pmp-self-test/100-free-questions.htm&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.oliverlehmann.com/contents/free-downloads/200_PMP_Sample_Questions.pdf"&gt;https://www.oliverlehmann.com/contents/free-downloads/200_PMP_Sample_Questions.pdf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.simplilearn.com/pmp-exam-prep-free-practice-test?source=PracticeTestCTA"&gt;https://www.simplilearn.com/pmp-exam-prep-free-practice-test?source=PracticeTestCTA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.edwel.com/Free-Resources/PMP-Certification-Practice-Exam.aspx"&gt;https://www.edwel.com/Free-Resources/PMP-Certification-Practice-Exam.aspx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.greycampus.com/opencampus/project-management-professional/practise-exams"&gt;https://www.greycampus.com/opencampus/project-management-professional/practise-exams&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.whizlabs.com/project-management-professional-pmp/"&gt;https://www.whizlabs.com/project-management-professional-pmp/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.pm-exam-simulator.com/pmp-exam-simulator/free-pmp-exam-simulator"&gt;https://www.pm-exam-simulator.com/pmp-exam-simulator/free-pmp-exam-simulator&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Become a better you than you were yesterday!
&lt;/h3&gt;

</description>
    </item>
    <item>
      <title>My Story</title>
      <dc:creator>mjimenez3</dc:creator>
      <pubDate>Fri, 03 Apr 2020 02:13:18 +0000</pubDate>
      <link>https://dev.to/mjimenez32/my-story-5869</link>
      <guid>https://dev.to/mjimenez32/my-story-5869</guid>
      <description>&lt;p&gt;When I joined the Navy in 1999, I knew computers were the way of the future. I decided to take a job that would work with computers and the Recruiters sold me on the Advanced Electronic Computer Field.  Sounded amazing, and in fact it was amazing. I worked with missile systems shooting missiles! But it wasn't what I had originally wanted when I signed up.&lt;/p&gt;




&lt;p&gt;Twenty years later, I still know computers are the way of the future. I still want a do get a job that will work with computers. I thought cyber security was interesting, and one of my co-workers was planning to do that when he got out of the Navy. So I dabbled in that and got my Security+ cert. But the more I learned the less I wanted to do that full time. I also got my Project Management Professional and Professional Scrum Master I certifications thinking that I could backdoor my way in by being an IT PM or SM. The more I learned, the less I wanted to do anything strictly PM. &lt;/p&gt;




&lt;p&gt;I started looking at coding, and web development. I enjoyed making something from nothing. Designing, building, and writing something of my own and having a finished product. Being as creative as I could be, and finding a solution to something I didn't know. I was hooked. &lt;/p&gt;




&lt;p&gt;I searched Google for everything I could learn in coding. I wanted to start with Python, but couldn't wrap my mind around it since I was new to everything. It gave me more information than I could ever process, telling to start here, and there, and over here. I signed up for some Udemy courses, but found it difficult to learn from the instructors that I got (not sure why since I had done Mike Myers' Sec+ course on Udemy). So I began to look for coding bootcamps. I came across Vets Who Code who gave you pre-work and a two-week deadline to read, comprehend, and make an "About Me" website. I learned so much and enjoyed every second as I stayed up to the wee hours in the morning trying to figure out how to make a text box stay where I wanted it to stay. I was hooked before, and now I was caught.  &lt;/p&gt;




&lt;p&gt;I was ecstatic when I found out that I had made the Vets Who Code cohort, and started consuming information so that I could have a great start.  Almost five weeks into the cohort, and I am learning by leaps and bounds. I can do far more, and understand far more than I ever thought at this point. Just yesterday, I  decided to do some reading on Python for a break from the computer screen. To my amazement, as it explained Python, I could see and understand what they were talking about, even in the different syntax, just from what I have learned in Javascript. My mind is blown and I look forward to the rest of this cohort, and lifelong learning in coding and programming.&lt;/p&gt;




&lt;h2&gt;
  
  
  TO BE CONTINUED...
&lt;/h2&gt;

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