Skip to content

Instantly share code, notes, and snippets.

View felixdusengimana's full-sized avatar
👀
Ice on face, wooooh!

Felix DUSENGIMANA felixdusengimana

👀
Ice on face, wooooh!
View GitHub Profile

[ { "id": 1, "name": "Rwanda", "capital": "Kigali", "flag": "🇷🇼", "currency": "Rwandan Franc", "shortCode": "RW", "currencyCode": "RWF", "callingCode": "+250",

@felixdusengimana
felixdusengimana / meta-tags.md
Created May 18, 2022 17:10 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
Canidae
Felidae
Cat
Cattle
Dog
Donkey
Goat
Guinea pig
Horse
Pig
@felixdusengimana
felixdusengimana / CircularQueueArray.cpp
Last active October 20, 2021 07:48
Implementation of circular Queue using linked list and Array in c++
/*implementation of circular queue using array */
#include<iostream>
using namespace std;
int front=-1,rear=-1;
int size=0;
void createQueue(){
cout<<"How many Element you want to create in Queue:: ";