<?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: Okoro chimezie bright</title>
    <description>The latest articles on DEV Community by Okoro chimezie bright (@mezieb).</description>
    <link>https://dev.to/mezieb</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%2F912668%2Fe1905134-787b-4d0e-bed7-0094c2dcb4ba.jpeg</url>
      <title>DEV Community: Okoro chimezie bright</title>
      <link>https://dev.to/mezieb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mezieb"/>
    <language>en</language>
    <item>
      <title>I NEED HELP CAN SOMEONE SHARE THEIR EXPERIENCE IN USING HOSTINGER VPS FOR HOSTING WEB APP BUILT WITH ANGULAR,NODE.JS?</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Mon, 01 Jul 2024 10:28:07 +0000</pubDate>
      <link>https://dev.to/mezieb/i-need-help-can-someone-share-their-experience-in-using-hostinger-vps-for-hosting-web-app-built-with-angularnodejs-54cc</link>
      <guid>https://dev.to/mezieb/i-need-help-can-someone-share-their-experience-in-using-hostinger-vps-for-hosting-web-app-built-with-angularnodejs-54cc</guid>
      <description>&lt;p&gt;I NEED HELP CAN SOMEONE SHARE THEIR EXPERIENCE IN USING HOSTINGER VPS FOR HOSTING WEB APP BUILT WITH ANGULAR,NODE.JS,POSTGRESQL OR DJANGO? &lt;/p&gt;

&lt;p&gt;Please share your experience if it is managiable from developer point of view,i understand that we manage the server by ourself,is it developer-friendly?, looking forward for your honest reply in the comment section,so i can learn from you all thanks. we have some applications to go live with cost-effective.&lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
    <item>
      <title>How to install Bootstrap 5 in Angular 17... Standalone components Including css,js &amp; icons.</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Sun, 10 Mar 2024 14:05:34 +0000</pubDate>
      <link>https://dev.to/mezieb/how-to-install-bootstrap-5-in-angular-17-standalone-components-including-cssjs-icons-fag</link>
      <guid>https://dev.to/mezieb/how-to-install-bootstrap-5-in-angular-17-standalone-components-including-cssjs-icons-fag</guid>
      <description>&lt;p&gt;&lt;strong&gt;Sometimes&lt;/strong&gt; as a beginner in angular you wonder why so many tutorials in youtube and paid courses skip to include the bootstrap js and bootstrap-icons,while in realities you need all this goodness of bootstrap to build a powerful user interface for production purposes.&lt;/p&gt;

&lt;p&gt;That has created a learning gap in the community of angular developers for easy on boarding for a beginner to the  UI tools like bootstrap.&lt;/p&gt;

&lt;p&gt;Tooling make our life a bit easier rather than spending time writing basic functionality like toggles and reactivities that does n't need business logic.&lt;/p&gt;

&lt;p&gt;One will be thinking how can i use bootstrap via installation process so my app will not wait for network CDN LINKS to load the things that my application needs ?.&lt;/p&gt;

&lt;p&gt;If that is your case in your angular journey we will show you a beginner friendly way to do it step by step.&lt;/p&gt;

&lt;p&gt;We assume you are familiar  with your basics like HTML,CSS,JAVASCRIPT,TYPSCRIPT &amp;amp; ANUGULAR BASICS.&lt;br&gt;
That out of the way let's jump into it.&lt;br&gt;
  please note you must have node installed alrady for you to run the Angular cli.&lt;br&gt;
 for node download here is the link:&lt;br&gt;
&lt;a href="https://nodejs.org/en" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Step 1 : To install the Angular CLI, open a terminal window and run the following command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install -g @angular/cli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Step 2 : Run the CLI command ng new to create your workspace project name eg name my-app, as shown here:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ng new my-app&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Step 3 : Navigate to the workspace folder, such as my-app,Run the following command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cd my-app&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ng serve --open&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Step 4 : The --open (or just -o) option automatically opens your browser to &lt;a href="http://localhost:4200/" rel="noopener noreferrer"&gt;http://localhost:4200/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Congrats: my-app is runing in localhost.&lt;/p&gt;

&lt;p&gt;On your keyboard Ctrl + c to stop the server.&lt;/p&gt;

&lt;p&gt;Step 5 : To install bootstrap run this command in your terminal.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ng add @ng-bootstrap/ng-bootstrap&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Just say yes by hiting your enter key on your keyboard then angular will configure everything for you.&lt;/p&gt;

&lt;p&gt;Step 6 : To install bootstrap-icons run this command in your terminal.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm i bootstrap-icons&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Step 7 : Include the bootstrap-icons in your global styles.css to use it like this&lt;/p&gt;

&lt;p&gt;file name : styles.css&lt;/p&gt;

&lt;p&gt;&lt;code&gt;@import "bootstrap-icons";&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;on top of your styles.css.&lt;/p&gt;

&lt;p&gt;Step 8 :  Include the NgbModule in your app or standalone components like this.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;import { NgbModule } from '@ng-bootstrap/ng-bootstrap';&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In my case file name : app.component.ts&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterLink, RouterOutlet } from '@angular/router';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';


@Component({
  selector: 'app-root',
  standalone: true,
  imports: [CommonModule, RouterOutlet,NgbModule,RouterLink],
  templateUrl: './app.component.html',
  styleUrl: './app.component.css'
})


export class AppComponent {
  title = 'my-app';
}

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

&lt;/div&gt;



&lt;p&gt;Congratulations your are done enjoy!!! .&lt;/p&gt;

&lt;p&gt;We can now build an example test project to see if everything is working well.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let's build a responsive navbar featuring those toggles,icons in angular way.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;go to your src/app/app.component.html&lt;br&gt;
add the following code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&amp;lt;nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top "&amp;gt;
    &amp;lt;div class="container-fluid"&amp;gt;
        &amp;lt;a class="navbar-brand" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Logo&amp;lt;/a&amp;gt;

        &amp;lt;!-- Step 3: Toggle the value of the property when the toggler button is clicked. --&amp;gt;
    &amp;lt;div class="p-2"&amp;gt;
        &amp;lt;button class="navbar-toggler  " type="button" (click)="isMenuCollapsed = !isMenuCollapsed"&amp;gt;&amp;amp;#9776;&amp;lt;/button&amp;gt;
    &amp;lt;/div&amp;gt;
        &amp;lt;!-- Step 2: Add the ngbCollapse directive to the element below. --&amp;gt;
        &amp;lt;div [ngbCollapse]="isMenuCollapsed" class="collapse navbar-collapse "&amp;gt;
            &amp;lt;ul class="navbar-nav "&amp;gt;
                &amp;lt;li class="nav-item active"&amp;gt;
                    &amp;lt;!-- Step 4: Close the menu when a link is clicked. --&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Home&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;
                &amp;lt;li class="nav-item"&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;About&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;
                &amp;lt;li class="nav-item"&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Services&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;
                &amp;lt;li class="nav-item"&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Testimonial&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;
                &amp;lt;li class="nav-item"&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Blog&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;
                &amp;lt;li class="nav-item"&amp;gt;
                    &amp;lt;a class="nav-link text-white" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;Contact-us&amp;lt;/a&amp;gt;
                &amp;lt;/li&amp;gt;



            &amp;lt;/ul&amp;gt;
    &amp;lt;div class=" col-md-7  text-end p-2"&amp;gt;
        &amp;lt;button type="button" class="btn btn-outline-light me-2 "&amp;gt;
            &amp;lt;a class="nav-link" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;
                &amp;lt;i class="bi bi-person"&amp;gt;&amp;lt;/i&amp;gt; Login&amp;lt;/a&amp;gt;
        &amp;lt;/button&amp;gt;
        &amp;lt;button type="button" class="btn btn-warning "&amp;gt;
            &amp;lt;a class="nav-link" [routerLink]="'.'" (click)="isMenuCollapsed = true"&amp;gt;
                &amp;lt;i class="bi bi-person-add"&amp;gt;&amp;lt;/i&amp;gt; Sign-Up&amp;lt;/a&amp;gt;
        &amp;lt;/button&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/nav&amp;gt;


    &amp;lt;h1 class="test mt-5 p-5 text-center"&amp;gt;
        icons work {{title}}&amp;lt;i class="bi bi-stopwatch p-2"&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/h1&amp;gt;


&amp;lt;div class="row"&amp;gt;
    &amp;lt;div class="col text-center"&amp;gt;
        &amp;lt;div ngbDropdown class="d-inline-block"&amp;gt;
            &amp;lt;button type="button" class="btn btn-outline-primary" id="dropdownBasic1" ngbDropdownToggle&amp;gt;
                Toggle dropdown
            &amp;lt;/button&amp;gt;
            &amp;lt;div ngbDropdownMenu aria-labelledby="dropdownBasic1"&amp;gt;
                &amp;lt;button ngbDropdownItem&amp;gt;Action - 1&amp;lt;/button&amp;gt;
                &amp;lt;button ngbDropdownItem&amp;gt;Another Action&amp;lt;/button&amp;gt;
                &amp;lt;button ngbDropdownItem&amp;gt;Something else is here&amp;lt;/button&amp;gt;
            &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;



&amp;lt;router-outlet&amp;gt;&amp;lt;/router-outlet&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At this stage your will be geting some typscript warning so to make it go away go to your app.component.ts&lt;br&gt;
to add the following.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;isMenuCollapsed: any;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;app.component.ts will look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterLink, RouterOutlet } from '@angular/router';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';


@Component({
  selector: 'app-root',
  standalone: true,
  imports: [CommonModule, 
            RouterOutlet,
            NgbModule,
            RouterLink
            ],
  templateUrl: './app.component.html',
  styleUrl: './app.component.css'
})


export class AppComponent {
  title = 'my-app';
  isMenuCollapsed: any;


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

&lt;/div&gt;



&lt;p&gt;Congratulations the output should look like this both desktop and mobile version:&lt;/p&gt;

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

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

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

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

&lt;p&gt;For further reading visit this links:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://angular.io/guide/setup-local" rel="noopener noreferrer"&gt;https://angular.io/guide/setup-local&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ng-bootstrap.github.io/#/getting-started" rel="noopener noreferrer"&gt;https://ng-bootstrap.github.io/#/getting-started&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://icons.getbootstrap.com/" rel="noopener noreferrer"&gt;https://icons.getbootstrap.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For source code :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/mezieb/angular17-bootstrap5" rel="noopener noreferrer"&gt;https://github.com/mezieb/angular17-bootstrap5&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy Learning&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>angular</category>
      <category>frontend</category>
    </item>
    <item>
      <title>No need of memorizing, searching on google or save git commend in your notepad for beginners.</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Sun, 30 Jul 2023 16:07:47 +0000</pubDate>
      <link>https://dev.to/mezieb/no-need-of-memorizingsearching-on-google-or-save-git-commend-in-your-notepad-for-beginners-34h1</link>
      <guid>https://dev.to/mezieb/no-need-of-memorizingsearching-on-google-or-save-git-commend-in-your-notepad-for-beginners-34h1</guid>
      <description>&lt;p&gt;If you are a beginner in web development git and github is one of the challenges you will face in personal projects,group projects and production project for a real clients.&lt;/p&gt;

&lt;h2&gt;
  
  
  Confusion Stage
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;. 1 How do i wrap my head around git and github?&lt;br&gt;
First answer that will come in your mind after learning git and github from paid courses,bootcamp and youtube is i will make a folder,file and save all the git commends i will be needing as a developer on a daily bases.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;2 How can i master git commends like others?&lt;br&gt;
Another answer that will come to your mind is to spend time trying to memorize git commends.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;3 How can i be fast to commit my task in the code base after i have finished it already but is still in my pc and is working well?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;4 Oh! no how can i meet up with the deadline people are complaining they have not see my task yet?.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;5 I want to try open source project but my worry is that they are senior developers who knows git commends because their is alot of heavy lifting via git and github it will slow down my pc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;6 How can i work with different frameworks within some minutes or hours intervels without my system breaking down?.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If that is your case rejoice!!! &lt;br&gt;
We got you in your time the process is simplified  "GITHUB DESKTOP" is the answer.&lt;br&gt;
click here:  &lt;a href="https://desktop.github.com/" rel="noopener noreferrer"&gt;https://desktop.github.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How do i use github desktop  ?&lt;br&gt;
please watch this video for step by step guide: &lt;a href="https://www.youtube.com/watch?v=RPagOAUx2SQ&amp;amp;t=20s" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=RPagOAUx2SQ&amp;amp;t=20s&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also watch this video for quick recap: &lt;a href="https://www.youtube.com/watch?v=8Dd7KRpKeaE" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=8Dd7KRpKeaE&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have fun,join any project with confidence and enjoy the power of what you can do on time like others.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How a Coding Boot Camp Helped This Learner Upskill Fast, Kickstart His Career, and Get Back on Track for College</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Sat, 12 Nov 2022 06:27:15 +0000</pubDate>
      <link>https://dev.to/mezieb/how-a-coding-boot-camp-helped-this-learner-upskill-fast-kickstart-his-career-and-get-back-on-track-for-college-493e</link>
      <guid>https://dev.to/mezieb/how-a-coding-boot-camp-helped-this-learner-upskill-fast-kickstart-his-career-and-get-back-on-track-for-college-493e</guid>
      <description>&lt;p&gt;&lt;a href="https://blog.edx.org/how-a-coding-boot-camp-helped-this-learner-upskill-fast-kickstart-his-career-and-get-back-on-track-for-college" rel="noopener noreferrer"&gt;https://blog.edx.org/how-a-coding-boot-camp-helped-this-learner-upskill-fast-kickstart-his-career-and-get-back-on-track-for-college&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;click the link above to read the story.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>senior developers check out this opportunity</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Sat, 12 Nov 2022 03:23:02 +0000</pubDate>
      <link>https://dev.to/mezieb/senior-developers-check-out-this-opportunity-25dh</link>
      <guid>https://dev.to/mezieb/senior-developers-check-out-this-opportunity-25dh</guid>
      <description>&lt;p&gt;&lt;a href="https://vanhack.com/vanhackcon/chimezieokor" rel="noopener noreferrer"&gt;https://vanhack.com/vanhackcon/chimezieokor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;click this link above for details.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Most popular programming languages 2022.</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Tue, 08 Nov 2022 14:22:36 +0000</pubDate>
      <link>https://dev.to/mezieb/most-popular-programming-languages-2022-4l3h</link>
      <guid>https://dev.to/mezieb/most-popular-programming-languages-2022-4l3h</guid>
      <description>&lt;p&gt;Which are the most popular programming languages in 2022? There are different lists of the most commonly used programming languages: the PYPL ranking (monthly updated) and the list of Stack Overflow’s Developer Survey 2022.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.stackscale.com/blog/most-popular-programming-languages/" rel="noopener noreferrer"&gt;https://www.stackscale.com/blog/most-popular-programming-languages/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Django Skills Roadmap To Getting A Job</title>
      <dc:creator>Okoro chimezie bright</dc:creator>
      <pubDate>Sun, 11 Sep 2022 09:51:56 +0000</pubDate>
      <link>https://dev.to/mezieb/django-skills-roadmap-to-getting-a-job-4cme</link>
      <guid>https://dev.to/mezieb/django-skills-roadmap-to-getting-a-job-4cme</guid>
      <description>&lt;p&gt;As a django beginner(junior dev)you are  face with confusion of where to start because there are too many information out there for you to learn.&lt;/p&gt;

&lt;p&gt;As a reader and a researcher I came across this blog post that is well detailed about django roadmap in to getting a job.&lt;/p&gt;

&lt;p&gt;Please read it here to remain focus in your web development journey.&lt;br&gt;
 Goodluck, we got you covered.&lt;br&gt;
&lt;a href="https://dennisivy.com/django-skills-roadmap" rel="noopener noreferrer"&gt;https://dennisivy.com/django-skills-roadmap&lt;/a&gt;&lt;/p&gt;

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