<?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: Mwakaa D</title>
    <description>The latest articles on DEV Community by Mwakaa D (@mwakaaa).</description>
    <link>https://dev.to/mwakaaa</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%2F3708660%2Fea49a8ac-e350-4c44-8ea3-5695321f2cbd.jpg</url>
      <title>DEV Community: Mwakaa D</title>
      <link>https://dev.to/mwakaaa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mwakaaa"/>
    <language>en</language>
    <item>
      <title>Introduction To Power BI</title>
      <dc:creator>Mwakaa D</dc:creator>
      <pubDate>Sun, 29 Mar 2026 05:59:45 +0000</pubDate>
      <link>https://dev.to/mwakaaa/introduction-to-power-bi-5g8g</link>
      <guid>https://dev.to/mwakaaa/introduction-to-power-bi-5g8g</guid>
      <description>&lt;p&gt;&lt;em&gt;Power BI is a special tool used in management of data via simple  ways of manipulating data. Some ways to manipulate data is by use of relationships,joins and schemas. The above are going to be discussed below. Keeping in mind that power BI is not such a hard concept to understand but one has to give it a considerable amount of time and effort so as to ensure a smooth ease into the mind.&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  TYPES OF RELATIONSHIPS IN POWER BI
&lt;/h1&gt;

&lt;p&gt;Power BI supports multiple relationship types between tables, including one-to-one, one-to-many, and many-to-many, with options for single or both-directional filtering.&lt;/p&gt;

&lt;h2&gt;
  
  
  One to One
&lt;/h2&gt;

&lt;p&gt;This is where a single row in a table corresponds or rather relates to another singular row in a different table. The two row have to have different values so as to reinforce the 1:1 relationship.&lt;/p&gt;

&lt;h2&gt;
  
  
  One to Many
&lt;/h2&gt;

&lt;p&gt;This is where a single row in a table corresponds to multiple other rows in another table. For example in a supermarket, assuming that there is a customer row, it may relate to other rows showing the products purchased.&lt;/p&gt;

&lt;h2&gt;
  
  
  Many to Many
&lt;/h2&gt;

&lt;p&gt;This is where multiple rows in a table corresponds to multiple other rows in a different table. This can be done by creating multiple many to many relationships. &lt;/p&gt;

&lt;h3&gt;
  
  
  Filtering
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Single direction
&lt;/h3&gt;

&lt;p&gt;It filters contexts from the one table to the many table. IT is usually the most recommended one.&lt;/p&gt;

&lt;h3&gt;
  
  
  Both Direction
&lt;/h3&gt;

&lt;p&gt;It is also called Bi-direction. It filters contexts in both directions as the name suggests. This means that when a change is made in one table it reflects in the other table.&lt;/p&gt;

&lt;p&gt;Power BI allows multiple relationships between the same tables, but only one active relationship can be used by default in visuals. Inactive relationships can be activated in DAX calculations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Types of Schemas in power BI
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Star Schema
&lt;/h3&gt;

&lt;p&gt;It is called star because the fact table is usually at the centre with the dimension tables radiating outwards therefore resembling a star. A single fact table only contains quantitative data such as sales. A multiple dimension tables contains descriptive data such as product categories.&lt;br&gt;
&lt;em&gt;Advantages&lt;/em&gt;&lt;br&gt;
It simplifies queries and improves performance as most relationships are one to many.&lt;br&gt;
Easy to understand&lt;br&gt;
Optimized for DAX calculations.&lt;br&gt;
 It is used sales reporting, inventory management and wherever clear metrics are tied to multiple descriptive attributes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Snowflake Schema
&lt;/h3&gt;

&lt;p&gt;Dimensions are normalized into multiple related tables, therefore one can say its a variation of the star schema&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Advantages&lt;/em&gt;&lt;br&gt;
Can be used for complex data&lt;br&gt;
Saves storage space&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Disadvantages&lt;/em&gt;&lt;br&gt;
Harder to Navigate&lt;br&gt;
If not modelled carefully, complex queries can reduce performance.&lt;/p&gt;

&lt;h3&gt;
  
  
  Galaxy Schema
&lt;/h3&gt;

&lt;p&gt;Its where multiple fact table are connected as they may share common dimension. Its suitable where businesses have multiple areas of analysis like sales and inventory which share dimensions such as date and products.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Advantages&lt;/em&gt;&lt;br&gt;
Flexible for larger enterprises&lt;br&gt;
Enables combining different areas of business metrics in the same model&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Disadvantages&lt;/em&gt;&lt;br&gt;
Can be challenging to optimize DAX measures&lt;/p&gt;

&lt;h2&gt;
  
  
  Types of Joins in power BI
&lt;/h2&gt;

&lt;p&gt;Joins are used to merge two tables&lt;/p&gt;

&lt;h3&gt;
  
  
  Left outer
&lt;/h3&gt;

&lt;p&gt;All rows from the left table and matching rows from the right side table are joined. If they do not match, nulls are returned for the second/right table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Right outer
&lt;/h3&gt;

&lt;p&gt;Works the same as the left outer but with a little difference. So rows from the right table and matching rows from the left/first table are joined. But this time if there are no matches, nulls are returned to the first/left table as opposed to the left outer join where the nulls are returned to the right/second table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Full Outer
&lt;/h3&gt;

&lt;p&gt;All rows from the tables are joined with nulls returned for missing values.&lt;/p&gt;

&lt;h3&gt;
  
  
  inner
&lt;/h3&gt;

&lt;p&gt;Only rows that match from both tables are merged.&lt;/p&gt;

&lt;h3&gt;
  
  
  Left anti
&lt;/h3&gt;

&lt;p&gt;Rows in the first/left table that do not have a match with any rows in the right/second table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Right anti
&lt;/h3&gt;

&lt;p&gt;Rows in the second table that do not have a match with any rows in the first/left table.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;In conclusion, Power BI is a rather simple tool used in data management but if one does not give it the time and put in the amount of work, it may turn out hard for them to understand it fully. Most of functions, queries, DAX calculations... are to some extent interconnected therefore making them easier to relate to one another.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>luxdev</category>
    </item>
    <item>
      <title>Intoduction to MS Excel for Data Analytics</title>
      <dc:creator>Mwakaa D</dc:creator>
      <pubDate>Mon, 26 Jan 2026 11:40:57 +0000</pubDate>
      <link>https://dev.to/mwakaaa/intoduction-to-ms-excel-for-data-analytics-c73</link>
      <guid>https://dev.to/mwakaaa/intoduction-to-ms-excel-for-data-analytics-c73</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyyc2z65kxcn5rizk4dmm.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyyc2z65kxcn5rizk4dmm.jpg" alt=" " width="735" height="490"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Excel&lt;/strong&gt; is a some what simple tool that is available for most if not all windows but its version varies according to the version of windows being used.&lt;br&gt;
Some of the uses of MS Excel are data organisation and storage and its useful in even clear calculations which is performed using formulas.&lt;br&gt;
When you enter excel in your device, you are presented with a workbook. You can use as many workbooks as you feel obligated to which will be saved to your workbook&lt;br&gt;
Columns in your work sheet are labelled in letters while rows are labelled in numbers&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Froj6wv2ihndtdxkkucgz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Froj6wv2ihndtdxkkucgz.png" alt=" " width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Inputing data
&lt;/h2&gt;

&lt;p&gt;As i stated in the beginning excel can be used to store data. This data is usually simple to input as no formulas or commands are required but rather just a simple input of the exact data you want to work on.You can input data such as names, numbers etc&lt;br&gt;
Lets say you are a clerk in a school, you can input students names, school identification card numbers, even their class...etc&lt;br&gt;
Its not really a must for this to be said but your data has to be presantable so that in future when you need to find a student, it will be easy.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbhjatxj2mmy49d0mkxmw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbhjatxj2mmy49d0mkxmw.png" alt=" " width="490" height="227"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Formulas
&lt;/h2&gt;

&lt;p&gt;Formulas are the kinda commands that are used with numerical values to work on them same as formulas in mathematics. These include &lt;em&gt;sum&lt;/em&gt;, &lt;em&gt;average&lt;/em&gt;, &lt;em&gt;count&lt;/em&gt;, &lt;em&gt;Max&lt;/em&gt;, &lt;em&gt;Min&lt;/em&gt;...etc. There are many formulas with different uses.&lt;br&gt;
When you select a cell where a formula was used, the formula is displayed at the formula bar above your data&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foyl0sf2cf5iornwa3mkp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foyl0sf2cf5iornwa3mkp.png" alt=" " width="800" height="49"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Sum
&lt;/h3&gt;

&lt;p&gt;This formula is used to sum up all the numerical values selected as the name suggests&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq3h8vbwxe4eq8tm0rx6k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq3h8vbwxe4eq8tm0rx6k.png" alt=" " width="592" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Average
&lt;/h3&gt;

&lt;p&gt;The formula is used to find the mean of the data selected&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc91ndj2uoyhx01qcc55s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc91ndj2uoyhx01qcc55s.png" alt=" " width="597" height="380"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Count
&lt;/h3&gt;

&lt;p&gt;It is used to find the number of numbers selected. What i mean is to find how many numbers have been selected to be worked on&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F43vau2266ygxc0a4kpq3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F43vau2266ygxc0a4kpq3.png" alt=" " width="600" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Max
&lt;/h3&gt;

&lt;p&gt;Finds out the highest value of the data selected&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw46xsvs3zh6z56zdzg2p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw46xsvs3zh6z56zdzg2p.png" alt=" " width="535" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Min
&lt;/h3&gt;

&lt;p&gt;Finds out the lowest value of the data selected&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmoju0px0q0f3piao31e6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmoju0px0q0f3piao31e6.png" alt=" " width="593" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Sorting and Filtering
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Sorting&lt;/strong&gt; is arranging data in a specific way so that it is more pleasing to the eye and easier to work with&lt;br&gt;
To sort your data, select your data by clicking &lt;em&gt;control + A&lt;/em&gt; then go to your home button and click sort to sort your data in a certain way. For numerical data you can arrange it from largest to smallest or smallest to largest while for text-like data you can sort it from A-Z or Z-A.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiya2akty5jt10ednoj9g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiya2akty5jt10ednoj9g.png" alt=" " width="800" height="186"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2crsc5ygo158ai697bti.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2crsc5ygo158ai697bti.png" alt=" " width="800" height="182"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Filtering&lt;/strong&gt; is basically working on only a small part of your data at a time of your own preference. This improves efficiency because by working on only a small part especially if you have a large dataset, you get to see exactly what you are working on at the time.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdab8ctzhrolqj0otgxri.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdab8ctzhrolqj0otgxri.png" alt=" " width="362" height="468"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Chart Analytics
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Charting&lt;/strong&gt; is basically displaying your data in form a chart. Charts are more pleasing to the eye than large text-form data therefore inorder to truly view your numerical data clearly, charting is highly advised. There are many types of charts and you can use them according to your preference. They include &lt;em&gt;bar&lt;/em&gt;, &lt;em&gt;line&lt;/em&gt;...and many more. For a large amount of data, You can use a &lt;em&gt;combo&lt;/em&gt; chart which combines different types of charts and different types of data. &lt;br&gt;
Charts are found at the insert part of your workbook&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftaa88b762lm5pre70mz4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftaa88b762lm5pre70mz4.png" alt=" " width="745" height="439"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr1b8e47rqn70doqx7zax.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr1b8e47rqn70doqx7zax.png" alt=" " width="796" height="505"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Using MS Excel is not necessarily a hard thing to do but the most advisable is to take it one step at a time so that you can practice any simple thing you do before you move on to the next. This will enhance remembrance rather than rushing through the learning process then later you remember very little.&lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
    <item>
      <title>Understanding The Markdown Language</title>
      <dc:creator>Mwakaa D</dc:creator>
      <pubDate>Fri, 16 Jan 2026 06:33:49 +0000</pubDate>
      <link>https://dev.to/mwakaaa/understanding-the-markdown-language-1i7d</link>
      <guid>https://dev.to/mwakaaa/understanding-the-markdown-language-1i7d</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fueb6n44run9iodpqz8tc.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fueb6n44run9iodpqz8tc.jpg" alt=" " width="736" height="736"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Understanding Git and Github
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Pushing and Pulling code
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Pushing code&lt;/em&gt; basically well how i understand it is, just as the name suggests. For example what happens when u push a pen into my hand, u just handed me a pen right, well pushing code is basically the same thing, adding a line of code to Git and the changes are observed in the repository in your Github. For this to be done, one must have made a repository in Github where there is a button in the Github home screen, one can add a name to the repository and alter its visibility to the public by either making it private or public. Lets name mine Project. Now the problem most people face is adding code to the git which will be applied to the github repository. So first one must make a typically a subfolder but in coding or rather in git its called a branch. So per say i named mine origin, so we have to first change our directory to the branch so that we can be working on it directly. We have to make a directory or a branch directly on git by using the command &lt;strong&gt;mkdir (origin)&lt;/strong&gt;. That command basically makes a directory. Then we are supposed to open the directory which is connected to the repository so that we can make changes to it by using the command &lt;strong&gt;cd (origin)&lt;/strong&gt;. That code line changes the directory to origin from the main branch. We can then add kind of subfolders in the branch origin. To do this we use the command line &lt;strong&gt;touch&lt;/strong&gt;, then the name of the subfolder.  so lets say you want to make a subfolder called Kenya, you will input in your Git the line &lt;strong&gt;touch Kenya&lt;/strong&gt;. Then to top it off we will add the line &lt;strong&gt;git add .&lt;/strong&gt;, so as to add the changes to the repository. So in the main repository called Project, we will have a branch called origin with a smaller branch called Kenya.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tracking Changes
&lt;/h3&gt;

&lt;p&gt;It doesnt have to go by saying that whatever you input to your repository has to be to your liking. Therefore one must be able to track the changes that they input to their repository. To do this, you have to type the command &lt;strong&gt;git config --list&lt;/strong&gt;&lt;br&gt;
That line of code makes it that the changes that you had made while pushing your codes ca be viewed all in one place so that you know if you hade input the right codes&lt;/p&gt;

&lt;h3&gt;
  
  
  Version Control
&lt;/h3&gt;

&lt;p&gt;This is typically being able to know if the version of git in your device is compatible with your machine so as to ensure its use to its full capacity. Doing this makes it that your projects are easier in both doing them and even saving them to your repository. To do this one has to put in the command &lt;strong&gt;git --version&lt;/strong&gt; &lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;As observed by the short examples i was able to give, the markdown language is easily understandable and if put into practice, hardly unforgettable.  &lt;/p&gt;

&lt;h3&gt;
  
  
  Last but not least
&lt;/h3&gt;

&lt;h4&gt;
  
  
  This is just a short introduction that i should have done at the beginning
&lt;/h4&gt;

&lt;p&gt;My coding experience as far as the year has proceeded has been very smooth even as i learned Markdown, Python and even other languages. All these I have been able to do through the support of the staff of &lt;em&gt;The Lux Dev Community&lt;/em&gt;. They have been very supportive in my endearvors as i proceed together with them.&lt;br&gt;
Lux Dev is a school located at Garden estate, &lt;em&gt;Kanyagia drive&lt;/em&gt;.I learned about them through a friend who recommended me to them because as he said, He likes the way they teach as they make coding easier. Of course i had to check this out for myself so i did a little bit of research and found out that even though it was founded in 2019, it has a vast allumni where you find that most of them are doing pretty well in the real world. I dont know its just the effect that comes with being one of their allumni but i was intrigued so i enrolled in their Data science and Analytics course. They also offer Data Engineering. One thing that  makes me happy to be a part of the school is the support they offer when your stay with them is not smooth for you. It really motivates one to work hard during their stay there. &lt;br&gt;
My hopes are that i really benefit from this not just coding-wise but even in the interactions that happen on a day to day. &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>datascience</category>
      <category>luxdevhq</category>
    </item>
  </channel>
</rss>
