<?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: Mohammad Ali</title>
    <description>The latest articles on DEV Community by Mohammad Ali (@karimi).</description>
    <link>https://dev.to/karimi</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%2F574303%2F7f3ee922-4a81-46c1-881d-a5c3a79ae446.jpg</url>
      <title>DEV Community: Mohammad Ali</title>
      <link>https://dev.to/karimi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/karimi"/>
    <language>en</language>
    <item>
      <title>Today I Learned... (TIL)- Week 3</title>
      <dc:creator>Mohammad Ali</dc:creator>
      <pubDate>Mon, 06 Mar 2023 04:14:24 +0000</pubDate>
      <link>https://dev.to/karimi/today-i-learned-til-week-3-2654</link>
      <guid>https://dev.to/karimi/today-i-learned-til-week-3-2654</guid>
      <description>&lt;ul&gt;
&lt;li&gt;Ruby Basics

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;em&gt;Instance variable vs local variable:&lt;/em&gt;&lt;/strong&gt;
When using variable inside a class, only instance variable, which are prefixed with the @ character, will be visible to all of the methods in the class. A variable that only exists inside of a code block or methods, is called local variable.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Today I learned... (TIL) - Week 2</title>
      <dc:creator>Mohammad Ali</dc:creator>
      <pubDate>Mon, 06 Mar 2023 04:11:39 +0000</pubDate>
      <link>https://dev.to/karimi/today-i-learned-til-5ab3</link>
      <guid>https://dev.to/karimi/today-i-learned-til-5ab3</guid>
      <description>&lt;p&gt;In week two, I learned about both hard and soft skills:&lt;/p&gt;




&lt;h4&gt;
  
  
  Soft Skills
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=YvnKWwbVTPk&amp;amp;t=33s&amp;amp;ab_channel=JamesRosseau%2CSr."&gt;SMART Goals&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=Ix2W1m6ZuR4&amp;amp;ab_channel=MakedaAndrews"&gt;Personal Branding&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/business/sales/blog/profile-best-practices/17-steps-to-a-better-linkedin-profile-in-2017"&gt;Having a better LinkedIn profile&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h4&gt;
  
  
  Hard (Technical) Skills
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Ruby Basics from Treehouse

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;em&gt;"for" loop vs "each" loop:&lt;/em&gt;&lt;/strong&gt;
The variable used to iterate in the for loop, exist outside the for loop. While in other iterators they exist only inside the block of code that's running.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Mac shortcuts and tricks &lt;/li&gt;
&lt;li&gt;Running Ruby locally&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Today I learned... (TIL) - Week 1</title>
      <dc:creator>Mohammad Ali</dc:creator>
      <pubDate>Thu, 16 Feb 2023 05:06:55 +0000</pubDate>
      <link>https://dev.to/karimi/today-i-learn-til-week-1-18ke</link>
      <guid>https://dev.to/karimi/today-i-learn-til-week-1-18ke</guid>
      <description>

&lt;p&gt;In this post, I want to write and share new concepts that I read, practiced, and learned in the first week of the Software Development Apprenticeship Program at Discovery Partners Institute (DPI).&lt;/p&gt;

&lt;h5&gt;
  
  
  I learned about:
&lt;/h5&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.flowrite.com/blog/email-etiquette-rules-tips" rel="noopener noreferrer"&gt;Email Etiquette Rules and Tips&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://firstdraft.slides.com/raghubetina/html-and-css-recap?token=8gU8ghvw#/1" rel="noopener noreferrer"&gt;HTML &amp;amp; CSS recap&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://chapters.firstdraft.com/chapters/788" rel="noopener noreferrer"&gt;Design Reading &amp;amp; Resources &lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://wattenberger.com/blog/css-cascade" rel="noopener noreferrer"&gt;The CSS Cascade&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML Fundamental Syntax:&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;u&gt;Boilerplate:&lt;/u&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A declaration on line 1, stating that it's an HTML document
&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;An html element that is the ancestor of all other elements.
&lt;code&gt;&amp;lt;html&amp;gt; &amp;lt;/html&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;The html element should have two children: a head element and a body element. &lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;head&amp;gt; &amp;lt;/head&amp;gt;&lt;/code&gt; element is where we tell the browser how to process the document; things like what title to put in the browser tab, what style sheets to load, what language to use (we will always use a character set called UTF-8 &lt;code&gt;&amp;lt;meta charset="UTF-8"&amp;gt;&lt;/code&gt;, which allows for all languages as well as things like emoji), etc.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;body&amp;gt; &amp;lt;/body&amp;gt;&lt;/code&gt; element contains the actual content for the user.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;




&lt;blockquote&gt;
&lt;p&gt;Stay Hungry; Stay Foolish!&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>ai</category>
      <category>chatgpt</category>
      <category>coding</category>
      <category>discuss</category>
    </item>
    <item>
      <title>First Things First!</title>
      <dc:creator>Mohammad Ali</dc:creator>
      <pubDate>Wed, 15 Feb 2023 06:03:04 +0000</pubDate>
      <link>https://dev.to/karimi/first-things-first-lk3</link>
      <guid>https://dev.to/karimi/first-things-first-lk3</guid>
      <description>&lt;p&gt;I will start writing about my learning journey as a software developer, where I will talk about the hard and soft skills I learn, and this is my first post. Since it will include technical concepts, I wanted to share some articles about technical writing, and I hope you find them useful!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://dev.to/elizabethschafer/a-starting-point-for-writing-technical-blog-posts-n2o"&gt;A Starting Point for writing Technical Blog Posts&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://dev.to/the_greatbonnie/technical-writing-process-how-to-write-a-good-technical-article-j67"&gt;Technical Writing Process: How to write a Good Technical Article&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://dev.to/radiomorillo/a-brief-introduction-to-technical-writing-53bh"&gt;A brief Introduction to Technical Writing&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Stay Hungry; Stay Foolish!
&lt;/h4&gt;

</description>
      <category>discuss</category>
      <category>community</category>
      <category>requestforpost</category>
    </item>
  </channel>
</rss>
