From f07974fda707152d3d1caa71085a2ffcae2177f4 Mon Sep 17 00:00:00 2001 From: Sonde Omobolaji Date: Tue, 16 Aug 2022 08:51:29 +0100 Subject: [PATCH 001/115] Wrote search contributors functionality --- searchContributors.mjs | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 searchContributors.mjs diff --git a/searchContributors.mjs b/searchContributors.mjs new file mode 100644 index 00000000..6ffcf26f --- /dev/null +++ b/searchContributors.mjs @@ -0,0 +1,43 @@ +import { readFile } from "fs/promises"; +import { dirname, join } from "path"; +import { EOL } from "os"; +import { fileURLToPath } from "url"; +import { createInterface } from "readline"; +import process from "process"; + +const __dirname = dirname(fileURLToPath(import.meta.url)); // Gets Current working directory + +const PATH_TO_FILE = join(__dirname, "names.txt"); + +const readline = createInterface({ + input: process.stdin, + output: process.stdout, +}); + +const searchHandler = async function (answer) { + try { + const searchQuery = answer.trim(); + if (!searchQuery) { + console.log(`\n\n You did not search for any contributor.`); + return; + } + const data = await readFile(PATH_TO_FILE, { encoding: "utf8" }); + const names = data.split(EOL); + const matchedNames = names.filter((name) => name.trim().toLowerCase().includes(searchQuery.toLowerCase())); + const header = `\n\nShowing results for "${searchQuery}"\n`; + if (!matchedNames.length) { + console.log(`${header}No match found!`); + return; + } + const toBeDisplayedResult = matchedNames.join(EOL); + console.log(`${header}${toBeDisplayedResult}`); + } catch (err) { + console.log("Opps! Something went wrong!"); + } finally { + readline.close(); + } +}; + +readline.question("Search contributors: ", searchHandler); + +// - TO USE, JUST "cd" INTO "altschool-opensource-names" DIRECTORY AND RUN "node searchContributors.mjs" \ No newline at end of file From 6c07374c0b27bf40141bfe3d949382a8108bd726 Mon Sep 17 00:00:00 2001 From: olakayCoder1 Date: Tue, 16 Aug 2022 22:14:03 +0100 Subject: [PATCH 002/115] Add Olanreaju Kabiru to the list of names and created contributorsListGithubApi HTML file --- contributionsListGithubApi.html | 59 +++++++++++++++++++++++++++++++++ names.txt | 2 ++ 2 files changed, 61 insertions(+) create mode 100644 contributionsListGithubApi.html diff --git a/contributionsListGithubApi.html b/contributionsListGithubApi.html new file mode 100644 index 00000000..943c0b52 --- /dev/null +++ b/contributionsListGithubApi.html @@ -0,0 +1,59 @@ + + + + + + + + Contributors + + + +

ALTSCHOOL Open Source live class playground

+ +

The following users are people that contributed to the project

+ +
+
+ + + + \ No newline at end of file diff --git a/names.txt b/names.txt index 1d24c7d0..ecf99263 100644 --- a/names.txt +++ b/names.txt @@ -7,6 +7,7 @@ Oluwasetemi Ojo Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen Sharafdeen Quadri +Olanrewaju Kabiru Olatunde Eloghosa Morgan Daniel Amadi Abdulbasit Yusuf @@ -153,6 +154,7 @@ Akinsulere Olajobi Oseghale Eseosa Favour Madamori Joyce Oluwatosin Lasisi +Sifon Solomon Odunayo Davies Idowu Owolabi Babatunde Omoregbe Daniel From 5464b380627c59919e9434dc37fe75d6a68bedbd Mon Sep 17 00:00:00 2001 From: Oyinlola Date: Wed, 17 Aug 2022 20:20:00 +0100 Subject: [PATCH 003/115] I added my own name myself, there Daddy! --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index f623cbf6..fa1c43e4 100644 --- a/names.txt +++ b/names.txt @@ -320,3 +320,4 @@ kperusi famous sunday Adegoke Abdsalam Ajala Hameed Owoade John Adekoya Adebisi +Adepitan oyinlola \ No newline at end of file From 92c171967ac4bacad7b0cc93cb23bcc9808b1331 Mon Sep 17 00:00:00 2001 From: Omage Sandra Date: Thu, 18 Aug 2022 16:49:25 +0100 Subject: [PATCH 004/115] Add Omage Sandra to the list of the names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 9f25b081..a4807527 100644 --- a/names.txt +++ b/names.txt @@ -211,6 +211,7 @@ Ashibuogwu Williams Victor Bernard Patrick Adeliyi Olumide Samuel Oso +Omage Sandra Yvonne Dien Anietie Akpanumoh Adaobi Chuma-Okeke From 54e88668bd3a5af48e7f70e83071210643cc4883 Mon Sep 17 00:00:00 2001 From: Juliana Hassan Date: Fri, 19 Aug 2022 00:06:03 -1200 Subject: [PATCH 005/115] added juliet to the list of names --- names.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/names.txt b/names.txt index c639aee1..af21209c 100644 --- a/names.txt +++ b/names.txt @@ -335,3 +335,5 @@ John Adekoya Adebisi Taofeek ogungbade Marvellous chimaraoke Omokolade Adelekan +Juliana Hassan + From 58a562cd2bc554fe32251526048ef85eaa1e25e6 Mon Sep 17 00:00:00 2001 From: thereson Date: Fri, 19 Aug 2022 17:45:05 +0100 Subject: [PATCH 006/115] added my name --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index d4ede435..7743c33d 100644 --- a/names.txt +++ b/names.txt @@ -354,4 +354,4 @@ Omokolade Adelekan Precious Eseose Agboinghale Ajayi Emmanuel Damilola Ogun - +chukwuebuka gerard okolie From d844ba4f606f152520a825c0b8de70151702260c Mon Sep 17 00:00:00 2001 From: Habeeb Date: Fri, 19 Aug 2022 19:00:31 +0100 Subject: [PATCH 007/115] Habeeb Oluwagbenga Bankole to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index d4ede435..4b71a876 100644 --- a/names.txt +++ b/names.txt @@ -354,4 +354,4 @@ Omokolade Adelekan Precious Eseose Agboinghale Ajayi Emmanuel Damilola Ogun - +Habeeb Oluwagbenga Bankole From 6098845360be3472236549b06ff1dedd583718ba Mon Sep 17 00:00:00 2001 From: CindyChinma Date: Fri, 19 Aug 2022 23:56:03 +0100 Subject: [PATCH 008/115] finally added my name, Halleluyah! --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 50f771aa..7099ad33 100644 --- a/names.txt +++ b/names.txt @@ -69,4 +69,5 @@ Akinsulere Olajobi Oluwatosin Lasisi Owolabi Babatunde Omoregbe Daniel -Akande Oladayo \ No newline at end of file +Akande Oladayo +Nwabuisi Chidinma Cindy From 620500d224080652cba5d46de6a147326809b5b4 Mon Sep 17 00:00:00 2001 From: Wonuola Date: Sat, 20 Aug 2022 12:41:04 +0100 Subject: [PATCH 009/115] Added Alonge Wonuola --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..7ab9fd88 100644 --- a/names.txt +++ b/names.txt @@ -357,6 +357,7 @@ Taofeek ogungbade Olubunmi Oluwatobi James Marvellous chimaraoke Omokolade Adelekan +Alonge Wonuola Emmanuel Chibuzor Isu-Idam Ayeni Olusola Jumoke Precious Eseose Agboinghale From d718621bbb0fac6ecb99f8c76816aff1cc41d719 Mon Sep 17 00:00:00 2001 From: faemous Date: Sat, 20 Aug 2022 05:17:06 -0700 Subject: [PATCH 010/115] Lucky Abiom --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..86991f9b 100644 --- a/names.txt +++ b/names.txt @@ -117,6 +117,7 @@ James Uyi Yusuf Salim Adisa Barakat Adekemi Mgbemena Chimaobi Ephraim +Lucky Abiom Lucious Charchea Simon Oluwaseyi Akinnawo Sam Abasifreke From 0b1108d2d914c99d78e3efca928a57051530b443 Mon Sep 17 00:00:00 2001 From: hassana123 Date: Sat, 20 Aug 2022 14:43:50 +0100 Subject: [PATCH 011/115] added Hassana Abdullahi --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..63ac8975 100644 --- a/names.txt +++ b/names.txt @@ -21,6 +21,7 @@ Adeyinka Michael Abdulbasit Yusuf Allename Anthony Adeagbo Toheeb +Hassana Abdullahi Blessing Nfeh Jason Kojo Simtema Adeola Adetunji From 580186b4fac66328eef0fd5e769d929850ecac6b Mon Sep 17 00:00:00 2001 From: Oluwatoniloba Adekola Date: Sat, 20 Aug 2022 16:27:43 +0100 Subject: [PATCH 012/115] Add Adekola Oluwatoniloba Emmanuel to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..20578c9f 100644 --- a/names.txt +++ b/names.txt @@ -11,6 +11,7 @@ Lawal Ayobami Ozuem Eugene Oluwasetemi Ojo Muhammad Ibrahim +Adekola Oluwatoniloba Emmanuel Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen Sharafdeen Quadri From 5bad26a57ceb9c7cb090544343e32ec7a2c10c66 Mon Sep 17 00:00:00 2001 From: Omage Sandra Date: Sat, 20 Aug 2022 17:03:59 +0100 Subject: [PATCH 013/115] Add Omage Sandra to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index a4807527..35aa5464 100644 --- a/names.txt +++ b/names.txt @@ -247,6 +247,7 @@ Philemon Nwanne Thankgod Chimeremeze Ikekwem Adegbuyi Oluwakayode Banjo Elizabeth Ololade +Omage Sandra Courage Ujiagbe Noibi Abdulrasaq Olamilekan Edet Emmanuel Asuquo From 589f3f2ee084ea1fb61323fee994d58c65d323e5 Mon Sep 17 00:00:00 2001 From: Olanrewaju Shogbolu Date: Sat, 20 Aug 2022 17:24:53 +0100 Subject: [PATCH 014/115] Update names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..93a9f278 100644 --- a/names.txt +++ b/names.txt @@ -249,6 +249,7 @@ Oloto Samson Sulaiman Yahaya Adamu Alabi Olalekan Emmanuel Samuel Akinmarin +Olanrewaju Shogbolu Adegboye Michael Olanrewaju Aminat Ahmed Samuel Aniekeme From 8a7af62f9a3f65be3b49ebb059a220b53b10f044 Mon Sep 17 00:00:00 2001 From: "ollunimati@gmail.com" Date: Sat, 20 Aug 2022 19:55:27 +0100 Subject: [PATCH 015/115] Add Olumide D Fakorede to the list of names --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index b8d11e18..9adb5c97 100644 --- a/names.txt +++ b/names.txt @@ -358,7 +358,8 @@ Olubunmi Oluwatobi James Marvellous chimaraoke Omokolade Adelekan Emmanuel Chibuzor Isu-Idam -Ayeni Olusola Jumoke +Ayeni Olusola Jumokgie Precious Eseose Agboinghale Ajayi Emmanuel +Olumide D. Fakorede Damilola Ogun From c4ae521e05824333b99c209996c562561d86d512 Mon Sep 17 00:00:00 2001 From: olakayCoder1 Date: Sun, 21 Aug 2022 00:17:26 +0100 Subject: [PATCH 016/115] Added a contributor html --- contributionsListGithubApi.html | 2 +- names.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/contributionsListGithubApi.html b/contributionsListGithubApi.html index 943c0b52..7895b6a3 100644 --- a/contributionsListGithubApi.html +++ b/contributionsListGithubApi.html @@ -56,4 +56,4 @@

ALTSCHOOL Open Sourc getContributors() - \ No newline at end of file + diff --git a/names.txt b/names.txt index ecf99263..aa496fa8 100644 --- a/names.txt +++ b/names.txt @@ -7,7 +7,6 @@ Oluwasetemi Ojo Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen Sharafdeen Quadri -Olanrewaju Kabiru Olatunde Eloghosa Morgan Daniel Amadi Abdulbasit Yusuf From d4fbcab5c3841b1a9115609b82ee3a252676c7d1 Mon Sep 17 00:00:00 2001 From: olakayCoder1 Date: Sun, 21 Aug 2022 00:23:02 +0100 Subject: [PATCH 017/115] Added a my name to the names.txt file --- contributionsListGithubApi.html | 59 --------------------------------- names.txt | 1 + 2 files changed, 1 insertion(+), 59 deletions(-) delete mode 100644 contributionsListGithubApi.html diff --git a/contributionsListGithubApi.html b/contributionsListGithubApi.html deleted file mode 100644 index 7895b6a3..00000000 --- a/contributionsListGithubApi.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - Contributors - - - -

ALTSCHOOL Open Source live class playground

- -

The following users are people that contributed to the project

- -
-
- - - - diff --git a/names.txt b/names.txt index aa496fa8..0fcc5e96 100644 --- a/names.txt +++ b/names.txt @@ -7,6 +7,7 @@ Oluwasetemi Ojo Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen Sharafdeen Quadri +Olanrewaju Kabiru Eloghosa Morgan Daniel Amadi Abdulbasit Yusuf From cd043024454554491acd014c1fef21fc19357510 Mon Sep 17 00:00:00 2001 From: Henry Okam Date: Sun, 21 Aug 2022 00:38:56 +0100 Subject: [PATCH 018/115] Added Henry Okam to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..18bb161a 100644 --- a/names.txt +++ b/names.txt @@ -22,6 +22,7 @@ Abdulbasit Yusuf Allename Anthony Adeagbo Toheeb Blessing Nfeh +Henry Okam Jason Kojo Simtema Adeola Adetunji Emmanuel Oloke From 4f3fb2eedf433df92803dd51afd3502f8607d083 Mon Sep 17 00:00:00 2001 From: Your NameAbunuman Date: Sun, 21 Aug 2022 00:52:13 +0100 Subject: [PATCH 019/115] Add Toyyib Muhammad-Jamiu Toyyib to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index b8d11e18..405410dc 100644 --- a/names.txt +++ b/names.txt @@ -34,6 +34,7 @@ Carmen Amba Imonikosaye Omafovbe Benjamin Nomba Success Chikezie +Toyyib Muhammad-Jamiu Ayush Yadav Ayoola Paul Omitogun Olamide From 946fdb3d41493ecb775fd1d44984b7131b618673 Mon Sep 17 00:00:00 2001 From: Japheth Jessica Date: Sun, 21 Aug 2022 17:17:59 +0100 Subject: [PATCH 020/115] Add Japheth Olayide Jessica to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index aeda4cea..b3487591 100644 --- a/names.txt +++ b/names.txt @@ -163,6 +163,7 @@ Ope Kareem Gladys Oviawe Mary Omode Ayo Owolabi +Japheth Olayide Jessica Akinsulere Olajobi Noah Useghan Oseghale Eseosa Favour From ff15a4ac44ffc295c3e356018fce204d47f77ad6 Mon Sep 17 00:00:00 2001 From: J-Gloria Date: Sun, 21 Aug 2022 18:03:40 +0100 Subject: [PATCH 021/115] Added Gloria John to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..3c44f967 100644 --- a/names.txt +++ b/names.txt @@ -362,4 +362,5 @@ Emmanuel Chibuzor Isu-Idam Ayeni Olusola Jumoke Precious Eseose Agboinghale Ajayi Emmanuel +Gloria John Damilola Ogun From e7a6ab093183b799decf2e9fd2afe35809325317 Mon Sep 17 00:00:00 2001 From: Tech-Girl Date: Sun, 21 Aug 2022 18:52:07 +0100 Subject: [PATCH 022/115] Tech Girl added het name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..66c09f03 100644 --- a/names.txt +++ b/names.txt @@ -243,6 +243,7 @@ Ayodeji Oladeinde Dannon Abayomi David Odoma Yakub Bakare Olla Olamide +CHUKWUMA ABUNDANCE Sarah Aligbe Onyia Edna Chidinma Oloto Samson From bf4868871bf8d6be00b25f806fe4df60921dc381 Mon Sep 17 00:00:00 2001 From: Favour-Cay Date: Sun, 21 Aug 2022 20:11:30 +0100 Subject: [PATCH 023/115] added name to names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..b4de4333 100644 --- a/names.txt +++ b/names.txt @@ -363,3 +363,4 @@ Ayeni Olusola Jumoke Precious Eseose Agboinghale Ajayi Emmanuel Damilola Ogun +Favour Keshi Chiamaka From 38584a3704426127986edafe81907d6b9e6aeba5 Mon Sep 17 00:00:00 2001 From: Agw-a Date: Sun, 21 Aug 2022 23:00:37 +0300 Subject: [PATCH 024/115] Add: Elizabeth Agwa to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..251ec09c 100644 --- a/names.txt +++ b/names.txt @@ -43,6 +43,7 @@ Raphael Ibrahim Popoola Emmanuel MAxwell Ahmadu Gideon Aleonogwe +Elizabeth Agwa Oluwaseun Abiola Francis Theophilous Ahachi John From d34f1c5189a0b738fe582483c84f2f4701c5a803 Mon Sep 17 00:00:00 2001 From: Ndollawa Date: Sun, 21 Aug 2022 21:17:57 +0100 Subject: [PATCH 025/115] Added name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4c979b23..f8fc7358 100644 --- a/names.txt +++ b/names.txt @@ -31,6 +31,7 @@ Adeniyi Olanrewaju Mark Shittu Saheed Adewale Jamilu Jibrilla Olaegbe Abdul-Rahmon +Ndubuisi Ollawa Adelakun Wasiu Olaiya Israel Ademola Oladeji Adeshina From fc6d8558885859781b3a2ffd6a80658ea70ff8f1 Mon Sep 17 00:00:00 2001 From: Gbemisola Oduwaiye Date: Mon, 22 Aug 2022 02:09:17 +0100 Subject: [PATCH 026/115] Update names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..385112b7 100644 --- a/names.txt +++ b/names.txt @@ -9,6 +9,7 @@ Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami Ozuem Eugene +Gbemisola Oduwaiye Oluwasetemi Ojo Muhammad Ibrahim Onyegbuchunam Julian Ifesiokwu From cbe7f505283482a5e6c698d2c1f8c937e36c954e Mon Sep 17 00:00:00 2001 From: Hauwa Ibrahim Date: Mon, 22 Aug 2022 14:31:18 +0100 Subject: [PATCH 027/115] Added Hauwa Ibrahim to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..298694d1 100644 --- a/names.txt +++ b/names.txt @@ -149,6 +149,7 @@ Tobiloba Sobayo Ibimina Hart Oluwapelumi Odueso Peter D. Ogunjinmi +Hauwa Ibrahim Abdulkareem Babatunde Bukola Testimony mbanugo franklyn From 73437544f43186249861594598e7b5b43668398c Mon Sep 17 00:00:00 2001 From: Durojaye Sekinat Date: Mon, 22 Aug 2022 16:12:45 +0100 Subject: [PATCH 028/115] Add Durojaye Sekinat Abisola to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6890ba78..be4d34b7 100644 --- a/names.txt +++ b/names.txt @@ -348,6 +348,7 @@ Oritsedere Precious Oghenerukevwe Abdullahi Kwapke Chindo Nmesoma Olivia Akabogu Aniekan Sunday Edet +Durojaye Sekinat Abisola SnrDev Adeyanju-Fawaz kperusi famous sunday Adegoke Abdsalam Ajala From 1dbf81ab88d62e4c7c606567200030d8751ae095 Mon Sep 17 00:00:00 2001 From: 0xlarmideh Date: Tue, 23 Aug 2022 11:56:17 +0100 Subject: [PATCH 029/115] Voila! Added me name to list --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..d08bcc28 100644 --- a/names.txt +++ b/names.txt @@ -1,6 +1,7 @@ Osariemen Aibueku Olayinka Daniel TechMomma Okonkwo +Abdulhameed Busari Tatyana Effa Adeyemi Akinyemi Nwabuwa Philip Emeka From e0b3189193d1e40055de8d8d7ebf9a5e2d08933c Mon Sep 17 00:00:00 2001 From: G-oracle Date: Tue, 23 Aug 2022 12:14:54 +0100 Subject: [PATCH 030/115] Add Akinlolu Gbemisola John to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..d60438b3 100644 --- a/names.txt +++ b/names.txt @@ -377,4 +377,5 @@ Precious Eseose Agboinghale Ajayi Emmanuel Gloria John Damilola Ogun +Akinlolu Gbemisola John Habeeb Oluwagbenga Bankole From c8fe3e42d70a2969de8db0ae6f946943ec6dac69 Mon Sep 17 00:00:00 2001 From: Saka Abass Date: Tue, 23 Aug 2022 12:38:01 +0100 Subject: [PATCH 031/115] Added my name to the list on names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..c28e99e5 100644 --- a/names.txt +++ b/names.txt @@ -378,3 +378,4 @@ Ajayi Emmanuel Gloria John Damilola Ogun Habeeb Oluwagbenga Bankole +Saka Abass Olaide From f4a3f4a9707f6a9a868562d27306c83777964b6e Mon Sep 17 00:00:00 2001 From: Abdulazeez Popoola Date: Tue, 23 Aug 2022 15:59:39 +0100 Subject: [PATCH 032/115] Update names.txt Add Abdulazeez Popoola to the list of names --- names.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/names.txt b/names.txt index fce2e8d0..73853e50 100644 --- a/names.txt +++ b/names.txt @@ -377,4 +377,6 @@ Precious Eseose Agboinghale Ajayi Emmanuel Gloria John Damilola Ogun +Abdulazeez Popoola Habeeb Oluwagbenga Bankole + From abb079f8ce7e0ded557f0b6c784d065574be7c9e Mon Sep 17 00:00:00 2001 From: Daniel_Madaki Date: Tue, 23 Aug 2022 21:20:02 +0100 Subject: [PATCH 033/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 681f2e1f..37e0085c 100644 --- a/names.txt +++ b/names.txt @@ -280,3 +280,4 @@ Abdulrazzaq Fahd Achebe Okechukwu Peter George Owoh Bakare Rilwan Temitope +Daniel Kennie Madaki From 81c9ebff9fb510982b30f5708f1b754b6155a2f3 Mon Sep 17 00:00:00 2001 From: "ollunimati@gmail.com" Date: Tue, 23 Aug 2022 22:26:57 +0100 Subject: [PATCH 034/115] Extra line fixed --- names.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/names.txt b/names.txt index 9adb5c97..88fb6630 100644 --- a/names.txt +++ b/names.txt @@ -358,8 +358,8 @@ Olubunmi Oluwatobi James Marvellous chimaraoke Omokolade Adelekan Emmanuel Chibuzor Isu-Idam -Ayeni Olusola Jumokgie +Ayeni Olusola Jumoke Precious Eseose Agboinghale Ajayi Emmanuel Olumide D. Fakorede -Damilola Ogun +Damilola Ogun \ No newline at end of file From 35dcff6a1b33c3be1040f614cb02ae6b7c8cbd52 Mon Sep 17 00:00:00 2001 From: Light Osita Date: Tue, 23 Aug 2022 22:38:49 +0100 Subject: [PATCH 035/115] add light-Ihechi-Osita-Amaechi to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..5c5854a1 100644 --- a/names.txt +++ b/names.txt @@ -373,6 +373,7 @@ Omokolade Adelekan Alonge Wonuola Emmanuel Chibuzor Isu-Idam Ayeni Olusola Jumoke +light Ihechi Osita-Amaechi Precious Eseose Agboinghale Ajayi Emmanuel Gloria John From 383c991814c9f1b2ede6abccef420d816542880d Mon Sep 17 00:00:00 2001 From: Kaempy Date: Wed, 24 Aug 2022 01:48:39 +0100 Subject: [PATCH 036/115] Added Adebanjo Abolanle Mary to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..29bf6e76 100644 --- a/names.txt +++ b/names.txt @@ -4,6 +4,7 @@ TechMomma Okonkwo Tatyana Effa Adeyemi Akinyemi Nwabuwa Philip Emeka +Adebanjo Abolanle Mary Ephraim Haruna Mamman Obiorah Ignatius Michael Chijioke Nweke From 5b59d14a2d8d114de6008f02749fb7aa75d166fa Mon Sep 17 00:00:00 2001 From: Omience Date: Wed, 24 Aug 2022 08:16:50 +0100 Subject: [PATCH 037/115] Add Aremu Oluwafunmilayo Patience to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..dfbc447e 100644 --- a/names.txt +++ b/names.txt @@ -318,6 +318,7 @@ Marvellous Chukueggu Lewis Tanguhwar Obaloluwa Oladunjoye Prince Chimaobi +Aremu Oluwafunmilayo Patience Chinecherem Ugwuanyi Kingsley Kwesi Salvo Oyinkansola Shoroye From 138363271fd8d69a03dccb1388ccc69ef88ddd1a Mon Sep 17 00:00:00 2001 From: Munir Abdullahi Date: Wed, 24 Aug 2022 12:11:07 +0000 Subject: [PATCH 038/115] Adding Munir Adavize Abdullahi to names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..ddb2ec0d 100644 --- a/names.txt +++ b/names.txt @@ -5,6 +5,7 @@ Tatyana Effa Adeyemi Akinyemi Nwabuwa Philip Emeka Ephraim Haruna Mamman +Munir Adavize Abdullahi Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami From db011030fca5653dc2d23ae818ae523cca52df8c Mon Sep 17 00:00:00 2001 From: Munir Abdullahi Date: Wed, 24 Aug 2022 12:55:34 +0000 Subject: [PATCH 039/115] Adding the toggle theme functionality --- index.html | 80 ++++++++++++----- resources/main.css | 214 ++++++++++++++++++++++++++++++-------------- resources/script.js | 11 ++- 3 files changed, 218 insertions(+), 87 deletions(-) diff --git a/index.html b/index.html index a39dee43..2b559044 100644 --- a/index.html +++ b/index.html @@ -1,24 +1,62 @@ + + + + + + AltSchool OpenSource Names + - - - - - - AltSchool OpenSource Names - - - -
- -
-
-

AltSchool Africa OpenSource Contributors

-
-
- - - - - \ No newline at end of file + +
+ +
+ + +
+
+
+

AltSchool Africa OpenSource Contributors

+
+
+ + + + diff --git a/resources/main.css b/resources/main.css index ce0d96c0..ef342882 100644 --- a/resources/main.css +++ b/resources/main.css @@ -1,100 +1,184 @@ -@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;800&display=swap'); +@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400;800&display=swap"); :root { - --primary-color: #4a4a4a; - --secondary-color: rgb(252, 197, 17); - --secondary-color-hover: rgb(255, 198, 75); - --tertiary-color: #1a1a1a; - --quaternary-color: #f4f4f4; + --primary-color: #4a4a4a; + --secondary-color: rgb(252, 197, 17); + --secondary-color-hover: rgb(255, 198, 75); + --tertiary-color: #1a1a1a; + --quaternary-color: #f4f4f4; } html { - font-family: 'Sen', sans-serif; - min-height: 100vh; + font-family: "Sen", sans-serif; + min-height: 100vh; } body { - display: flex; - flex-direction: column; - align-items: center; - margin: 0 auto; - background-color: var(--tertiary-color); - color: var(--quaternary-color); - line-height: 1.7rem; - box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + margin: 0 auto; + background-color: var(--tertiary-color); + color: var(--quaternary-color); + line-height: 1.7rem; + box-sizing: border-box; +} + +body.light { + background-color: #fff6ea; + color: var(--tertiary-color); } #logo-area { - position: fixed; - top: 0; - width: 40%; - height: 100px; - margin-bottom: 1rem; - padding: 1rem 3rem; - background-color: #05070d; - text-align: center; - border-radius: 0 0 10px 10px; - z-index: 2; + position: fixed; + top: 0; + width: 40%; + height: 100px; + margin-bottom: 1rem; + padding: 1rem 3rem; + background-color: #05070d; + text-align: center; + border-radius: 0 0 10px 10px; + z-index: 2; } h1 { - color: var(--secondary-color); - text-align: center; - line-height: 1.3em; + color: var(--secondary-color); + text-align: center; + line-height: 1.3em; +} + +#headline:hover { + color: #ffff; + text-shadow: 2px 2px 2px #0c0244; } -#list-wrapper > h1:hover{ - color:#ffff; - text-shadow: 2px 2px 2px #0c0244; - +#headline.light { + color: #1a1a40; +} + +#headline.light:hover { + color: #ff8fb1; } #logo { - margin: 1rem 2rem; + margin: 1rem 2rem; } #list-wrapper { - position: relative; - top: 200px; - width: 60%; + position: relative; + top: 200px; + width: 60%; } #names-list { - font-size: 1.2rem; - line-height: 3em; - text-align: center; - z-index: 1; + font-size: 1.2rem; + line-height: 3em; + text-align: center; + z-index: 1; } #reload-btn { - width: 64px; - height: 64px; - border-radius: 50%; - margin: 1rem; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='%233a3a3a'%3E%3Cpath fill-rule='evenodd' d='M4 2a1 1 0 011 1v2.101a7.002 7.002 0 0111.601 2.566 1 1 0 11-1.885.666A5.002 5.002 0 005.999 7H9a1 1 0 010 2H4a1 1 0 01-1-1V3a1 1 0 011-1zm.008 9.057a1 1 0 011.276.61A5.002 5.002 0 0014.001 13H11a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0v-2.101a7.002 7.002 0 01-11.601-2.566 1 1 0 01.61-1.276z' clip-rule='evenodd' /%3E%3C/svg%3E"); - background-size: 32px; - background-position: center; - background-repeat: no-repeat; - background-color: var(--secondary-color); - position: fixed; - bottom: 1rem; - right: 1rem; - cursor: pointer; - border: none; + width: 64px; + height: 64px; + border-radius: 50%; + margin: 1rem; + /* SVG NOW IN HTML FILE */ + /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='%233a3a3a'%3E%3Cpath fill-rule='evenodd' d='M4 2a1 1 0 011 1v2.101a7.002 7.002 0 0111.601 2.566 1 1 0 11-1.885.666A5.002 5.002 0 005.999 7H9a1 1 0 010 2H4a1 1 0 01-1-1V3a1 1 0 011-1zm.008 9.057a1 1 0 011.276.61A5.002 5.002 0 0014.001 13H11a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0v-2.101a7.002 7.002 0 01-11.601-2.566 1 1 0 01.61-1.276z' clip-rule='evenodd' /%3E%3C/svg%3E"); */ + background-size: 32px; + background-position: center; + background-repeat: no-repeat; + background-color: var(--secondary-color); + position: fixed; + bottom: 1rem; + right: 1rem; + cursor: pointer; + border: none; +} + +#reload-btn svg { + fill: var(--primary-color); +} +#reload-btn.light svg { + fill: #f7e9d7; } #reload-btn:hover { - background-color: var(--secondary-color-hover); - transition: all 0.3s ease-in-out; + background-color: var(--secondary-color-hover); + transition: all 0.3s ease-in-out; +} + +#reload-btn.light { + background-color: #1a1a40; + fill: black; + background-size: 32px; + width: 64px; + height: 64px; +} + +#reload-btn.light:hover { + background-color: #38385c; +} + +/* THEME TOGGLE SWITCH */ +.toggle { + position: absolute; + top: 110px; + left: 350px; +} +.label { + position: relative; + background-color: #bbbbbb; + display: flex; + align-items: center; + justify-content: space-between; + padding: 5px; + height: 20px; + width: 50px; + border-radius: 50px; +} + +.checkbox { + opacity: 0; + position: absolute; +} + +.checkbox:checked + .label .ball { + transform: translateX(31px); +} + +.fa-moon { + fill: #222831; + height: 20px; + width: 20px; +} +.fa-sun { + fill: #f39c12; + height: 20px; + width: 20px; +} + +.ball { + position: absolute; + width: 22px; + height: 22px; + background-color: #fff; + top: 4px; + left: 3px; + border-radius: 50px; + transition: transform 0.2s linear; } /* Media Queries */ @media screen and (max-width: 1024px) { - #list-wrapper { - width: 80%; - } - - #logo-area { - width: 100%; - } -} \ No newline at end of file + #list-wrapper { + width: 80%; + } + + #logo-area { + width: 100%; + } + .toggle { + left: 200px; + } +} diff --git a/resources/script.js b/resources/script.js index 69bc9335..136ed5a4 100644 --- a/resources/script.js +++ b/resources/script.js @@ -12,4 +12,13 @@ xmlhttp.onreadystatechange = function () { } } xmlhttp.open("GET", "names.txt", true); -xmlhttp.send(); \ No newline at end of file +xmlhttp.send(); + +// THEME TOGGLE + +const checkbox = document.getElementById("checkbox"); +checkbox.addEventListener("change", () => { + document.body.classList.toggle("light"); + document.querySelector("#headline").classList.toggle("light"); + document.querySelector("#reload-btn").classList.toggle("light"); +}); \ No newline at end of file From 0704e2bb5531968cb1e814ff8ebc9211ac9b4a9a Mon Sep 17 00:00:00 2001 From: Emosairue Okiemute Daniel Date: Wed, 24 Aug 2022 22:53:56 +0800 Subject: [PATCH 040/115] add Emosairue Okiemute Daniel to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..49939be9 100644 --- a/names.txt +++ b/names.txt @@ -366,6 +366,7 @@ Adegoke Abdsalam Ajala Hameed Owoade John Adekoya Adebisi Adepitan oyinlola +Emosairue Okiemute Daniel Taofeek ogungbade Olubunmi Oluwatobi James Marvellous chimaraoke From 560f9e5cafc26cf52cc820869b7e6c15baf24b18 Mon Sep 17 00:00:00 2001 From: Ikuesiri Onosemuode Date: Wed, 24 Aug 2022 17:29:54 +0100 Subject: [PATCH 041/115] Added my name: Onosemuode Ikuesiri Kola --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..2709ccdc 100644 --- a/names.txt +++ b/names.txt @@ -34,6 +34,7 @@ Zacheus Oluwasegun Israel Victor Abbah Mamodu Joshua Shoyombo Gabriel Ayomide +Onosemuode Ikuesiri Kola Carmen Amba Imonikosaye Omafovbe Benjamin Nomba From ea785258c9d4c3e2456a00f3d7236e03ef8d48fc Mon Sep 17 00:00:00 2001 From: Yaqub Olawale Date: Wed, 24 Aug 2022 18:40:52 +0100 Subject: [PATCH 042/115] I added my name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..6f62ebc2 100644 --- a/names.txt +++ b/names.txt @@ -16,6 +16,7 @@ Adekola Oluwatoniloba Emmanuel Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen Sharafdeen Quadri +Yaqub Olawale Eloghosa Morgan Modupe Edith Yeku Daniel Amadi From 44932b1e6bba1fe682d84fd12749bcf657872ef0 Mon Sep 17 00:00:00 2001 From: Okesanjo Quamarudeen Date: Wed, 24 Aug 2022 19:56:28 +0100 Subject: [PATCH 043/115] Added Okesanjo Quamarudeen Okedayo to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1037997b..cb40c700 100644 --- a/names.txt +++ b/names.txt @@ -381,4 +381,5 @@ Olumide D. Fakorede Gloria John Damilola Ogun Akinlolu Gbemisola John +Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole From b37d095b7523740748a470228365997ee413d30c Mon Sep 17 00:00:00 2001 From: Daniel_Madaki Date: Wed, 24 Aug 2022 22:46:23 +0100 Subject: [PATCH 044/115] Add to the list of names --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 37e0085c..3302df98 100644 --- a/names.txt +++ b/names.txt @@ -256,6 +256,7 @@ Onyeanuna Prince Nwankwo Kingsley Uzoma Nzubechi Ahamefula Peace Ben +Daniel Kennie Madaki Abegunde Olanrewaju Ebeledike Arinze Stanley Adebayo Ridwan @@ -275,9 +276,9 @@ Kofoworola Oyinlola Cole Glory Yusuf Olutayo Babem Alabi Ololade + Mbah Victor Somtochukwu Abdulrazzaq Fahd Achebe Okechukwu Peter George Owoh Bakare Rilwan Temitope -Daniel Kennie Madaki From a91322131bc9c1aaf19e707a9ffe58057cd9c808 Mon Sep 17 00:00:00 2001 From: Daniel_Madaki Date: Wed, 24 Aug 2022 23:34:57 +0100 Subject: [PATCH 045/115] Add to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 3302df98..3f0f0c74 100644 --- a/names.txt +++ b/names.txt @@ -276,7 +276,7 @@ Kofoworola Oyinlola Cole Glory Yusuf Olutayo Babem Alabi Ololade - +Daniel Kennie Madaki Mbah Victor Somtochukwu Abdulrazzaq Fahd Achebe Okechukwu Peter From 6b014de7103550cd267c43a7fb40a046bf55d9a2 Mon Sep 17 00:00:00 2001 From: Favour Boi Date: Thu, 25 Aug 2022 11:40:25 +0100 Subject: [PATCH 046/115] Add Favour Oluchi Boi to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4a84b356..b223c6ef 100644 --- a/names.txt +++ b/names.txt @@ -220,6 +220,7 @@ Owojori Micheal Dahunsi Timilehin Osunronbi Okikiola Qudus Okoyomoh Adenomoh +Favour Oluchi Boi Akande Oladayo Odufejo Ufoma Ibukunoluwa Charles Obuzor From 45258fa131e3d4dbc167a5b323a2939c27b1a7f2 Mon Sep 17 00:00:00 2001 From: Joel Aboderin Date: Thu, 25 Aug 2022 13:57:04 +0200 Subject: [PATCH 047/115] I have made a new branch --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4a84b356..fb74b6cb 100644 --- a/names.txt +++ b/names.txt @@ -390,3 +390,4 @@ Damilola Ogun Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole +Joel Oluwaremilekun Aboderin \ No newline at end of file From 4059efe7ea7d23224a3cfcd8a01213d80f737eb3 Mon Sep 17 00:00:00 2001 From: DaNny Date: Thu, 25 Aug 2022 14:53:36 +0100 Subject: [PATCH 048/115] Add Ekpa Daniel Egowke to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4a84b356..17815e25 100644 --- a/names.txt +++ b/names.txt @@ -168,6 +168,7 @@ Bukola Testimony mbanugo franklyn Motunrayo Ilawole Nonso Ugbodu +Ekpa Daniel Egwoke Olarotimi Adamson Moyinoluwa Adelowo Onuche Uhiene Achema From 5c1b2b98faf610c84903549604aad9119c8e6bfc Mon Sep 17 00:00:00 2001 From: Favour-Cay Date: Thu, 25 Aug 2022 16:31:36 +0100 Subject: [PATCH 049/115] my first commit --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 45e068d6..cb708431 100644 --- a/names.txt +++ b/names.txt @@ -82,3 +82,4 @@ Alabi Olalekan Emmanuel Adegboye Michael Olanrewaju Samuel Aniekeme Marrilyn Olungweonwi +Keshi Favour Chiamaka From c05863a37d9efb925df02e84687f69d709e78c70 Mon Sep 17 00:00:00 2001 From: jennydunix Date: Thu, 25 Aug 2022 18:49:33 +0100 Subject: [PATCH 050/115] Add Odunze Jennifer Oluchukwu to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4a84b356..ac9045bf 100644 --- a/names.txt +++ b/names.txt @@ -148,6 +148,7 @@ Aliyu Gambo Aliyu Michael Ashibuogwu Clinton Mekwunye Lilian Anya Galadima +Odunze Jennifer Oluchukwu Oyindamola Kushimo Okoro Gift Emmanuel kabari From c2edf2a03a10d682ee15744e45dc0460a7ecfb83 Mon Sep 17 00:00:00 2001 From: Ndollawa Date: Thu, 25 Aug 2022 18:58:55 +0100 Subject: [PATCH 051/115] added my name --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index f8fc7358..7fe226c8 100644 --- a/names.txt +++ b/names.txt @@ -31,7 +31,7 @@ Adeniyi Olanrewaju Mark Shittu Saheed Adewale Jamilu Jibrilla Olaegbe Abdul-Rahmon -Ndubuisi Ollawa +Ndubuisi Uchenna Ollawa Adelakun Wasiu Olaiya Israel Ademola Oladeji Adeshina From 04ce7e0bfe3c498368724ce4c5b2f316cf1c7a64 Mon Sep 17 00:00:00 2001 From: Daniel_Madaki Date: Thu, 25 Aug 2022 19:58:51 +0100 Subject: [PATCH 052/115] Add to the list of names --- names.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/names.txt b/names.txt index 3f0f0c74..61ad738a 100644 --- a/names.txt +++ b/names.txt @@ -276,7 +276,6 @@ Kofoworola Oyinlola Cole Glory Yusuf Olutayo Babem Alabi Ololade -Daniel Kennie Madaki Mbah Victor Somtochukwu Abdulrazzaq Fahd Achebe Okechukwu Peter From b7f2160c3843ef2129fd8d9543832ea2371e5b8d Mon Sep 17 00:00:00 2001 From: bash Date: Thu, 25 Aug 2022 23:03:05 +0100 Subject: [PATCH 053/115] Add new name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 4a84b356..6d3ade34 100644 --- a/names.txt +++ b/names.txt @@ -354,6 +354,7 @@ Kofoworola Oyinlola Cole Olagunju Oluwakolade Glory Yusuf Olutayo Babem +Bashir Yesufu Alabi Ololade Kwentua Maryann Mbah Victor Somtochukwu From c80ac30a95d7688041545a1e98db2c00e4e5cab7 Mon Sep 17 00:00:00 2001 From: Avose Peace Date: Thu, 25 Aug 2022 23:51:12 +0100 Subject: [PATCH 054/115] Added Avose Peace to the list of names :) --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fce2e8d0..292e5e96 100644 --- a/names.txt +++ b/names.txt @@ -74,6 +74,7 @@ Ayodola Otutuloro Austin Wopara Titilola Oduwole Awosise Oluwaseun +Avose Peace Adetayo Akinsanya Samuel Segun Samuel Owolabi Segun From 9e4de5e73f075eb0fd648977a3f5e2af0f9b8cb1 Mon Sep 17 00:00:00 2001 From: Azeezjim Date: Thu, 25 Aug 2022 23:33:57 -1100 Subject: [PATCH 055/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 30c38c3d..3c72d37f 100644 --- a/names.txt +++ b/names.txt @@ -391,3 +391,4 @@ Damilola Ogun Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole +GAruba Abdul Azeez \ No newline at end of file From 02562046e9d8e4977750ba8ff1a7c46a653fe9fa Mon Sep 17 00:00:00 2001 From: Azeezjim Date: Thu, 25 Aug 2022 23:34:38 -1100 Subject: [PATCH 056/115] Add to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 3c72d37f..74db6349 100644 --- a/names.txt +++ b/names.txt @@ -391,4 +391,4 @@ Damilola Ogun Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole -GAruba Abdul Azeez \ No newline at end of file +GAruba Abdul Azeez. \ No newline at end of file From db3db6dd0eb450c7ad88f737c062d7f53aa09a73 Mon Sep 17 00:00:00 2001 From: tobisupreme-dev Date: Fri, 26 Aug 2022 11:55:13 +0100 Subject: [PATCH 057/115] Remove duplicate names - maxwell ahmadu - akande oladayo --- names.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/names.txt b/names.txt index c28a49c9..c46ab4e9 100644 --- a/names.txt +++ b/names.txt @@ -52,7 +52,6 @@ Gideon Anyalewechi Linda Akorfa Abotsigah Raphael Ibrahim Popoola Emmanuel -MAxwell Ahmadu Gideon Aleonogwe Elizabeth Agwa Oluwaseun Abiola @@ -213,7 +212,6 @@ Sifon Solomon Odunayo Davies Idowu Owolabi Babatunde Omoregbe Daniel -Akande Oladayo Nwabuisi Chidinma Cindy Robert Adoga Taiwo Stephen Opeyemi @@ -399,4 +397,3 @@ Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. - From 08bb496e60772dd3f981bd462374eb9a4e7dc27a Mon Sep 17 00:00:00 2001 From: Vubere Date: Fri, 26 Aug 2022 12:50:49 +0100 Subject: [PATCH 058/115] added my name to names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c46ab4e9..2f1c9390 100644 --- a/names.txt +++ b/names.txt @@ -397,3 +397,4 @@ Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. +Victor Ubere \ No newline at end of file From 504ee14031d6ca48ffd1cbf4459c73f3a68d42c1 Mon Sep 17 00:00:00 2001 From: EmmanuelOdedele Date: Fri, 26 Aug 2022 16:30:58 +0100 Subject: [PATCH 059/115] Add Emmanuel Odedele to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c46ab4e9..9ceaf732 100644 --- a/names.txt +++ b/names.txt @@ -390,6 +390,7 @@ Ayeni Olusola Jumoke light Ihechi Osita-Amaechi Precious Eseose Agboinghale Ajayi Emmanuel +Emmanuel Odedele Olumide D. Fakorede Gloria John Damilola Ogun From f35b625625635f04586bea3f923c25bdd6adb158 Mon Sep 17 00:00:00 2001 From: Ekunola John Oluwatosin Date: Fri, 26 Aug 2022 17:28:08 +0100 Subject: [PATCH 060/115] Add John Ekunola to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c46ab4e9..ece74534 100644 --- a/names.txt +++ b/names.txt @@ -123,6 +123,7 @@ Israel Zorzor Faboya Basil Korede Marliyya ubam Samson Okeji +Ekunola John Abiodun Omonijo Egu Chinedu David Nyong From a444634bffc2c7326bc8262696de81dcb7b5ac96 Mon Sep 17 00:00:00 2001 From: Ekunola John Oluwatosin Date: Fri, 26 Aug 2022 20:39:22 +0100 Subject: [PATCH 061/115] Add John Ekunola to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index ece74534..da6aff99 100644 --- a/names.txt +++ b/names.txt @@ -123,7 +123,7 @@ Israel Zorzor Faboya Basil Korede Marliyya ubam Samson Okeji -Ekunola John +John Ekunola Abiodun Omonijo Egu Chinedu David Nyong From 6646cd9158cc67508ae18e60b5d7de23d91d30ba Mon Sep 17 00:00:00 2001 From: Olajiive Date: Sat, 27 Aug 2022 05:52:47 +0200 Subject: [PATCH 062/115] Added Olatunji Muiz Olasunkanmi to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 9acbb2ad..4243ae10 100644 --- a/names.txt +++ b/names.txt @@ -198,6 +198,7 @@ Ope Kareem David Olaleye Gladys Oviawe Mary Omode +Olatunji Muiz Olasunkanmi Ayo Owolabi Japheth Olayide Jessica Noah Useghan From a26788bc9c01e408b531b6152114de295c9c0ed0 Mon Sep 17 00:00:00 2001 From: ChristIsEnough Date: Sat, 27 Aug 2022 12:18:44 +0100 Subject: [PATCH 063/115] second commit --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 9acbb2ad..7eb9f473 100644 --- a/names.txt +++ b/names.txt @@ -114,6 +114,7 @@ Taladeogo Abraham Hafiz Adeyinka Junaid Damilola Samuel Michael Abaniwo +Oluwakamiye Ayandele Mary Olawale Mustapha Ayomide Kehinde Osayamen Imarhiagbe From 594cfe51837843315f6879b43061b609932c06c2 Mon Sep 17 00:00:00 2001 From: Gregory Ogbemudia Date: Sat, 27 Aug 2022 18:35:58 +0100 Subject: [PATCH 064/115] Added 'Gregory Ogbemudia' to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 9acbb2ad..9d41f173 100644 --- a/names.txt +++ b/names.txt @@ -297,6 +297,7 @@ Noibi Abdulrasaq Olamilekan Edet Emmanuel Asuquo Nwabueze Blessing Ugochi Ayomide Joshua Fabiyi +Gregory Ogbemudia Atinuke Wale-Awe Opeyemi Ogundeyi Sikiru Rashidat From ca66bec7429872cc5bc598b74356a5cd3f4f0dfe Mon Sep 17 00:00:00 2001 From: decypher1 Date: Sat, 27 Aug 2022 18:43:06 +0100 Subject: [PATCH 065/115] Add Martins Umekwe to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 9acbb2ad..d5419e02 100644 --- a/names.txt +++ b/names.txt @@ -7,6 +7,7 @@ Adeyemi Akinyemi Nwabuwa Philip Emeka Adebanjo Abolanle Mary Ephraim Haruna Mamman +Martins Umekwe Munir Adavize Abdullahi Obiorah Ignatius Michael Chijioke Nweke From 83e3f0906b89e345f07a9e905330d7edb3d41aed Mon Sep 17 00:00:00 2001 From: Saka Abass Date: Sun, 28 Aug 2022 07:29:02 +0100 Subject: [PATCH 066/115] Add Saka Abass Olaide to the list of names --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index c28e99e5..b1a3c5d3 100644 --- a/names.txt +++ b/names.txt @@ -373,9 +373,10 @@ Omokolade Adelekan Alonge Wonuola Emmanuel Chibuzor Isu-Idam Ayeni Olusola Jumoke +Saka Abass Olaide Precious Eseose Agboinghale Ajayi Emmanuel Gloria John Damilola Ogun Habeeb Oluwagbenga Bankole -Saka Abass Olaide + From 821dd36c75f649a2fca17721a7f8083c249192ef Mon Sep 17 00:00:00 2001 From: Onyekachi Fakoya <88961671+kachifako@users.noreply.github.com> Date: Sun, 28 Aug 2022 12:52:25 +0100 Subject: [PATCH 067/115] add Onyekachi Fakoya to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 74787e2c..ad2b7a96 100644 --- a/names.txt +++ b/names.txt @@ -370,6 +370,7 @@ Kwentua Maryann Mbah Victor Somtochukwu Abdulrazzaq Fahd Achebe Okechukwu Peter +Onyekachi Fakoya George Owoh Bakare Rilwan Temitope Owhologbo Daniel Oghenemaro From 01dfe0cf8419f5024ae1424d7355b1424d539a2a Mon Sep 17 00:00:00 2001 From: Babalola Adewale Date: Sun, 28 Aug 2022 21:10:38 +0100 Subject: [PATCH 068/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 74787e2c..c592e07e 100644 --- a/names.txt +++ b/names.txt @@ -363,6 +363,7 @@ Afabor Michael Onafome Kofoworola Oyinlola Cole Olagunju Oluwakolade Glory Yusuf +Babalola Adewale Olutayo Babem Bashir Yesufu Alabi Ololade From bf0ef9755c83f13ec3a0384bdc85a98fcf0bfebe Mon Sep 17 00:00:00 2001 From: Favour Obajimi Date: Mon, 29 Aug 2022 13:50:04 -0700 Subject: [PATCH 069/115] Add Favour Obajimi to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 365f176e..6a4bcfdb 100644 --- a/names.txt +++ b/names.txt @@ -202,6 +202,7 @@ Gladys Oviawe Mary Omode Olatunji Muiz Olasunkanmi Ayo Owolabi +Favour Obajimi Japheth Olayide Jessica Noah Useghan Benjamin Edivri From 8c47a7d11d60cedba05ee7505ce190cf8abfe358 Mon Sep 17 00:00:00 2001 From: Tope-stack Date: Mon, 29 Aug 2022 23:59:48 +0100 Subject: [PATCH 070/115] Add Temitope to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c4a61ee9..7cfb5614 100644 --- a/names.txt +++ b/names.txt @@ -409,3 +409,4 @@ Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere +Temitope Yusuff \ No newline at end of file From 0725c417be9b9b63bce6116a0f28c9873ecb01c8 Mon Sep 17 00:00:00 2001 From: mediat-100 Date: Tue, 30 Aug 2022 00:22:44 +0100 Subject: [PATCH 071/115] Add Mediat Yusuff to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c4a61ee9..83e87b02 100644 --- a/names.txt +++ b/names.txt @@ -409,3 +409,4 @@ Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere +Mediat Yusuff \ No newline at end of file From 5049bd1ed08fef67b6a0035e4e87fa433d54be16 Mon Sep 17 00:00:00 2001 From: Samuel Warrie Date: Tue, 30 Aug 2022 16:56:17 +0100 Subject: [PATCH 072/115] Added to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1063fb38..d0d355d5 100644 --- a/names.txt +++ b/names.txt @@ -172,6 +172,7 @@ Abdulkareem Babatunde Bukola Testimony mbanugo franklyn Motunrayo Ilawole +Samuel Warrie Nonso Ugbodu Ekpa Daniel Egwoke Olarotimi Adamson From f5bd225f048c014edd95ae90e3bd78266199b050 Mon Sep 17 00:00:00 2001 From: Peter Ademiju Date: Tue, 30 Aug 2022 17:51:31 +0100 Subject: [PATCH 073/115] new commit --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1063fb38..fd0393d7 100644 --- a/names.txt +++ b/names.txt @@ -15,6 +15,7 @@ Lawal Ayobami Ozuem Eugene Gbemisola Oduwaiye Oluwasetemi Ojo +Peter Ademiju Muhammad Ibrahim Adekola Oluwatoniloba Emmanuel Onyegbuchunam Julian Ifesiokwu From 1fec60efafe61f4224b0b2cd8b95d0fa1c822e7e Mon Sep 17 00:00:00 2001 From: Olabode Adetula Date: Wed, 31 Aug 2022 03:26:17 +0100 Subject: [PATCH 074/115] Olabode Adetula added name, better late than never --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 1063fb38..23bdfa2c 100644 --- a/names.txt +++ b/names.txt @@ -410,4 +410,5 @@ Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere -Temitope Yusuff \ No newline at end of file +Temitope Yusuff +Olabode Adetula \ No newline at end of file From bdddc1268e43dcd2132e7c4ed859cae17acf0c1a Mon Sep 17 00:00:00 2001 From: Ememekong Date: Thu, 1 Sep 2022 11:07:48 +0100 Subject: [PATCH 075/115] Added Emem Moses Ekong to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..b6721322 100644 --- a/names.txt +++ b/names.txt @@ -380,6 +380,7 @@ George Owoh Bakare Rilwan Temitope Owhologbo Daniel Oghenemaro Oritsedere Precious Oghenerukevwe +Emem Moses Ekong Abdullahi Kwapke Chindo Nmesoma Olivia Akabogu Aniekan Sunday Edet From d8fb52faf96a43a7dff99c6faffdb1c64c9fc63d Mon Sep 17 00:00:00 2001 From: Peter Ademiju Date: Thu, 1 Sep 2022 14:58:07 +0100 Subject: [PATCH 076/115] Add Ademiju Peter to thr list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index fd0393d7..a373d362 100644 --- a/names.txt +++ b/names.txt @@ -15,7 +15,6 @@ Lawal Ayobami Ozuem Eugene Gbemisola Oduwaiye Oluwasetemi Ojo -Peter Ademiju Muhammad Ibrahim Adekola Oluwatoniloba Emmanuel Onyegbuchunam Julian Ifesiokwu @@ -52,6 +51,7 @@ Ayoola Paul Omitogun Olamide Gideon Anyalewechi Linda Akorfa Abotsigah +Ademiju Peter Raphael Ibrahim Popoola Emmanuel Gideon Aleonogwe From b4a123bbe806f3b4ef3fbbb2b1eadde78061eb99 Mon Sep 17 00:00:00 2001 From: Oyediran Michael Date: Thu, 1 Sep 2022 22:54:50 +0100 Subject: [PATCH 077/115] Added Oyediran Michael --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..6a201766 100644 --- a/names.txt +++ b/names.txt @@ -4,6 +4,7 @@ TechMomma Okonkwo Abdulhameed Busari Tatyana Effa Adeyemi Akinyemi +Oyediran Michael A. Nwabuwa Philip Emeka Adebanjo Abolanle Mary Ephraim Haruna Mamman From 639945a56f2f2b38b30f49b31d0d4823f54b7427 Mon Sep 17 00:00:00 2001 From: Ekene Ikogbwe Date: Fri, 2 Sep 2022 03:43:32 +0000 Subject: [PATCH 078/115] Add Ekene Ikogbwe to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..1496bc02 100644 --- a/names.txt +++ b/names.txt @@ -1,5 +1,6 @@ Osariemen Aibueku Olayinka Daniel +Ekene Ikogbwe TechMomma Okonkwo Abdulhameed Busari Tatyana Effa From 6e0cb15247bb7d76cf64a0d7627a72a6a48cec8f Mon Sep 17 00:00:00 2001 From: Kamal Mustapha Date: Fri, 2 Sep 2022 13:26:06 +0100 Subject: [PATCH 079/115] Add kamal Mustapha to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..ed0233c0 100644 --- a/names.txt +++ b/names.txt @@ -12,6 +12,7 @@ Munir Adavize Abdullahi Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami +Kamal Mustapha Ozuem Eugene Gbemisola Oduwaiye Oluwasetemi Ojo From b203b7e3daee6d851c40b8f49aab110e8790e3f0 Mon Sep 17 00:00:00 2001 From: Emmanuel Nwaji Date: Fri, 2 Sep 2022 15:08:31 +0100 Subject: [PATCH 080/115] added new user name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..ece43b79 100644 --- a/names.txt +++ b/names.txt @@ -13,6 +13,7 @@ Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami Ozuem Eugene +Emmanuel Nwaji Gbemisola Oduwaiye Oluwasetemi Ojo Muhammad Ibrahim From 372f6ab2ae633055f44ae6b7b102363084860d0f Mon Sep 17 00:00:00 2001 From: Peter-TMK Date: Sun, 4 Sep 2022 00:13:29 +0100 Subject: [PATCH 081/115] I added my name - Tunde Wey --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..f8aec6c3 100644 --- a/names.txt +++ b/names.txt @@ -420,4 +420,5 @@ Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere Temitope Yusuff +Tunde Wey Mediat Yusuff From 8b376d0505fbb38e6392309c19155d7ee13dff13 Mon Sep 17 00:00:00 2001 From: Oluwatoyin Date: Sun, 4 Sep 2022 18:24:07 -0800 Subject: [PATCH 082/115] Add Oluwatoyin Jolaoso to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..26c3064e 100644 --- a/names.txt +++ b/names.txt @@ -23,6 +23,7 @@ Muhammad Ibrahim Adekola Oluwatoniloba Emmanuel Onyegbuchunam Julian Ifesiokwu Sonde Omobolaji Hameen +Oluwatoyin Jolaoso Sharafdeen Quadri Yaqub Olawale Olanrewaju Kabiru From 96bbfd8ec5de3d53be7ec3449c798ee6f19ac987 Mon Sep 17 00:00:00 2001 From: Oluchukwu Edeh Date: Tue, 6 Sep 2022 16:42:01 +0100 Subject: [PATCH 083/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index fb555f8e..b6284bf5 100644 --- a/names.txt +++ b/names.txt @@ -98,6 +98,7 @@ Adeniyi Olanrewaju Mark Anob Takon Raji Risikat Yewande Shittu Saheed Adewale +Oluchukwu Edeh Maxwell Emmanuel Jamilu Jibrilla Olaegbe Abdul-Rahmon From fe8bdec5f386b8e23697135e3aeacc719fff4dd4 Mon Sep 17 00:00:00 2001 From: Ayodeji Okulaja Date: Tue, 6 Sep 2022 20:31:52 +0100 Subject: [PATCH 084/115] Add Ayodeji Temidayo Okulaja to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..67c28b3a 100644 --- a/names.txt +++ b/names.txt @@ -164,6 +164,7 @@ Emmanuel kabari Tanimu Haruna Nnah Ifeoma Goodness Uwaoma Cyrus +Ayodeji Temidayo Okulaja Blessing Peter Faruq Adelodun Esther Ibom From 21d732c62b1c34184b07df2f552b890bf42ded00 Mon Sep 17 00:00:00 2001 From: Adebesin Adedayo Date: Tue, 6 Sep 2022 20:38:41 +0100 Subject: [PATCH 085/115] Added --- names.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/names.txt b/names.txt index 1c78896a..20e46414 100644 --- a/names.txt +++ b/names.txt @@ -420,4 +420,6 @@ Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere Temitope Yusuff +Adebesin Adedayo Mediat Yusuff + From aab336aec60c7d0c4793ef8c2e346ee78678dd70 Mon Sep 17 00:00:00 2001 From: "idowu98official@gmail.com" Date: Wed, 7 Sep 2022 10:52:55 +0100 Subject: [PATCH 086/115] Bukola Idowu --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..60dbff51 100644 --- a/names.txt +++ b/names.txt @@ -15,6 +15,7 @@ Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami Kamal Mustapha +Bukola Idowu Ozuem Eugene Emmanuel Nwaji Gbemisola Oduwaiye From b077e53f99c8f9c808761f98b6db4695f7a4dab4 Mon Sep 17 00:00:00 2001 From: obioma Date: Wed, 7 Sep 2022 19:15:42 +0100 Subject: [PATCH 087/115] Added to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..2e1bedf1 100644 --- a/names.txt +++ b/names.txt @@ -421,3 +421,4 @@ GAruba Abdul Azeez. Victor Ubere Temitope Yusuff Mediat Yusuff +Obijiaku Obioma Chukwuma From a3bcbc4f311aec5a0cf4c21d9e967ccaf0771382 Mon Sep 17 00:00:00 2001 From: kaywone Date: Wed, 7 Sep 2022 19:27:42 +0100 Subject: [PATCH 088/115] Add Idowu-Olakunle to the list --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..aae3a248 100644 --- a/names.txt +++ b/names.txt @@ -411,6 +411,7 @@ Precious Eseose Agboinghale Ajayi Emmanuel Emmanuel Odedele Olumide D. Fakorede +Idowu Olakunle Gloria John Damilola Ogun chukwuebuka gerard okolie From bb216609209f5f757c48b83d40d9d00215a22ae7 Mon Sep 17 00:00:00 2001 From: Olabode Adetula Date: Thu, 8 Sep 2022 01:41:47 +0100 Subject: [PATCH 089/115] Add Olabode Adetula to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 73f2126e..2ef0e5bf 100644 --- a/names.txt +++ b/names.txt @@ -410,9 +410,9 @@ Damilola Ogun chukwuebuka gerard okolie Akinlolu Gbemisola John Okesanjo Quamarudeen Okedayo +Olabode Adetula Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere Temitope Yusuff Mediat Yusuff -Olabode Adetula \ No newline at end of file From 32814b1dcf9b4c89fc3efe286e421e669180cb9b Mon Sep 17 00:00:00 2001 From: Seyihero Date: Fri, 9 Sep 2022 12:36:02 +0100 Subject: [PATCH 090/115] Add Akindana Akinbayowa to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..5e2ed693 100644 --- a/names.txt +++ b/names.txt @@ -421,3 +421,4 @@ GAruba Abdul Azeez. Victor Ubere Temitope Yusuff Mediat Yusuff +Akindana Akinbayowa \ No newline at end of file From ff68b8e946df49160f9a831a8674eee7449dfc72 Mon Sep 17 00:00:00 2001 From: Kofoworola Date: Fri, 9 Sep 2022 22:08:08 +0100 Subject: [PATCH 091/115] Add Adenrele-Onikosi Kofoworola to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..3d38eab3 100644 --- a/names.txt +++ b/names.txt @@ -136,6 +136,7 @@ Egu Chinedu David Nyong James Uyi Yusuf Salim +Adenrele-Onikosi Kofoworola Adisa Barakat Adekemi Mgbemena Chimaobi Ephraim Lucky Abiom From 124d0a0154d3c992c915c99b00d90c1ecb3372b1 Mon Sep 17 00:00:00 2001 From: Victor Abolarin Date: Sat, 10 Sep 2022 23:41:21 +0100 Subject: [PATCH 092/115] Add Victor Abolarin to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..9c854934 100644 --- a/names.txt +++ b/names.txt @@ -419,5 +419,6 @@ Okesanjo Quamarudeen Okedayo Habeeb Oluwagbenga Bankole GAruba Abdul Azeez. Victor Ubere +Victor Abolarin Temitope Yusuff Mediat Yusuff From af548e71ae4662484018a4ad4cb85cd1b1673764 Mon Sep 17 00:00:00 2001 From: Isaac Imonivwerha Date: Sun, 11 Sep 2022 12:58:37 +0100 Subject: [PATCH 093/115] Add Isaac Imonivwerha to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..f9b48d6e 100644 --- a/names.txt +++ b/names.txt @@ -120,6 +120,7 @@ Taladeogo Abraham Hafiz Adeyinka Junaid Damilola Samuel Michael Abaniwo +Isaac Imonisweet Oluwakamiye Ayandele Mary Olawale Mustapha Ayomide Kehinde From 8ea38d24db8ec40355a821f1fc58b63098f336c7 Mon Sep 17 00:00:00 2001 From: Isaac Imonivwerha Date: Sun, 11 Sep 2022 14:08:55 +0100 Subject: [PATCH 094/115] Add Isaac Imonivwerha to the list of names --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index f9b48d6e..9a88aea6 100644 --- a/names.txt +++ b/names.txt @@ -120,7 +120,7 @@ Taladeogo Abraham Hafiz Adeyinka Junaid Damilola Samuel Michael Abaniwo -Isaac Imonisweet +Isaac Imonivwerha Oluwakamiye Ayandele Mary Olawale Mustapha Ayomide Kehinde From f26e7a6cf336e632ac04a84e226b80246f2a5a3f Mon Sep 17 00:00:00 2001 From: David Martin Date: Mon, 12 Sep 2022 01:11:32 +0100 Subject: [PATCH 095/115] Added my name --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 1c78896a..0744b554 100644 --- a/names.txt +++ b/names.txt @@ -421,3 +421,4 @@ GAruba Abdul Azeez. Victor Ubere Temitope Yusuff Mediat Yusuff +David Martin \ No newline at end of file From 7e1deb90bd866d397e1607039aa07e603971a8d5 Mon Sep 17 00:00:00 2001 From: Gideonwarrie Date: Mon, 12 Sep 2022 17:22:01 +0100 Subject: [PATCH 096/115] add Gideon Victor Warrie to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 2f42f31e..733f39bc 100644 --- a/names.txt +++ b/names.txt @@ -433,3 +433,4 @@ Mediat Yusuff David Martin Akindana Akinbayowa Obijiaku Obioma Chukwuma +Gideon Victor Warrie From 830a5dcd118884cc15b65ad552a6c0eb3db09f9b Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 13 Sep 2022 13:55:01 +0100 Subject: [PATCH 097/115] Add Alexander Oweka to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 2f42f31e..f92e3312 100644 --- a/names.txt +++ b/names.txt @@ -221,6 +221,7 @@ Jonah C. Uka Sarah Daniel Madamori Joyce Akinsulere Olajobi +Alexander Oweka Olumide Gbadegesin Oluwatosin Lasisi Sifon Solomon From 42c1db0efd514e231987d3162c916dd783f32a19 Mon Sep 17 00:00:00 2001 From: Bright-Osita Date: Tue, 13 Sep 2022 20:43:38 +0100 Subject: [PATCH 098/115] I added Osita Bright Amaechi to the file --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 2f42f31e..8906a998 100644 --- a/names.txt +++ b/names.txt @@ -430,6 +430,7 @@ Temitope Yusuff Adebesin Adedayo Tunde Wey Mediat Yusuff +Osita Bright Amaechi David Martin Akindana Akinbayowa Obijiaku Obioma Chukwuma From 8733dc1a334e39c58357383b1a70b125578d7327 Mon Sep 17 00:00:00 2001 From: Bright-Osita Date: Tue, 13 Sep 2022 21:48:18 +0100 Subject: [PATCH 099/115] Added Osita Amaechi --- names.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/names.txt b/names.txt index 8906a998..f6f17c5f 100644 --- a/names.txt +++ b/names.txt @@ -430,7 +430,7 @@ Temitope Yusuff Adebesin Adedayo Tunde Wey Mediat Yusuff -Osita Bright Amaechi +Osita Amaechi David Martin Akindana Akinbayowa Obijiaku Obioma Chukwuma From 299ea0ee7491fbe8175a8d95ce8bd89d4bc7fbf9 Mon Sep 17 00:00:00 2001 From: softcruder Date: Wed, 14 Sep 2022 20:11:42 +0100 Subject: [PATCH 100/115] Add Nasirullah Oladipo to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 2f42f31e..9ca27525 100644 --- a/names.txt +++ b/names.txt @@ -433,3 +433,4 @@ Mediat Yusuff David Martin Akindana Akinbayowa Obijiaku Obioma Chukwuma +Nasirullah Oladipo A From 46c8b36af089fef4880a7ed39d0663cf5181c504 Mon Sep 17 00:00:00 2001 From: Ibinola Date: Mon, 19 Sep 2022 10:29:02 +0100 Subject: [PATCH 101/115] Add Michael Ibinola to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 2f42f31e..5c41fab7 100644 --- a/names.txt +++ b/names.txt @@ -413,6 +413,7 @@ Saka Abass Olaide light Ihechi Osita-Amaechi Precious Eseose Agboinghale Ajayi Emmanuel +Michael Ibinola Emmanuel Odedele Olumide D. Fakorede Idowu Olakunle From 196376caffab86fc62332b26f1441377bc73c862 Mon Sep 17 00:00:00 2001 From: Oluchi Nwankwo Date: Thu, 22 Sep 2022 00:21:32 +0100 Subject: [PATCH 102/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 8531756d..c24ab563 100644 --- a/names.txt +++ b/names.txt @@ -98,6 +98,7 @@ Nwachukwu Esther Allen Enyi Temitope Agbaje Adenuga Mary +Oluchi Nwankwo Chibuokem Egbuchulam Okhuarobo Osayuki Ayibakepreye Omusuku From 1d41dc9473b8214b4d10a0cd809720373b4b50fc Mon Sep 17 00:00:00 2001 From: ChigozieOZIRI Date: Sat, 24 Sep 2022 04:59:13 +0100 Subject: [PATCH 103/115] add Chigozie Oziri to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c24ab563..f8bc4d15 100644 --- a/names.txt +++ b/names.txt @@ -11,6 +11,7 @@ Adebanjo Abolanle Mary Ephraim Haruna Mamman Martins Umekwe Munir Adavize Abdullahi +Chigozie Oziri Obiorah Ignatius Michael Chijioke Nweke Lawal Ayobami From a92612eb70c0cb72d703851337186c6bca308a46 Mon Sep 17 00:00:00 2001 From: Davidlloyd8 Date: Sat, 24 Sep 2022 17:51:03 +0100 Subject: [PATCH 104/115] Add Nwadirioha David to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index c24ab563..711b903a 100644 --- a/names.txt +++ b/names.txt @@ -86,6 +86,7 @@ Ojerinde Joel Ayodola Otutuloro Austin Wopara Titilola Oduwole +Nwadirioha David Awosise Oluwaseun Avose Peace Adetayo Akinsanya Samuel From 9fb4cef9b040a6cd07f416ad0b7f21ffe4e676f6 Mon Sep 17 00:00:00 2001 From: Amuda Awwal <99684516+Itsmide@users.noreply.github.com> Date: Sun, 2 Oct 2022 18:25:45 +0100 Subject: [PATCH 105/115] Update names.txt --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 07fe3467..7fa2e6f3 100644 --- a/names.txt +++ b/names.txt @@ -443,3 +443,4 @@ Akindana Akinbayowa Obijiaku Obioma Chukwuma Nasirullah Oladipo A Gideon Victor Warrie +Amuda Mohammed-Awwal Ayomide From d65673274879ef8c6e9b0334f20309a5d2c91622 Mon Sep 17 00:00:00 2001 From: Duku Aghogho Mathida Date: Wed, 12 Oct 2022 02:19:26 +0100 Subject: [PATCH 106/115] Add Duku Aghogho Mathida to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 7fa2e6f3..231772d3 100644 --- a/names.txt +++ b/names.txt @@ -443,4 +443,5 @@ Akindana Akinbayowa Obijiaku Obioma Chukwuma Nasirullah Oladipo A Gideon Victor Warrie +Duku Aghogho Mathida Amuda Mohammed-Awwal Ayomide From cd9e71d71fadaa8d2102215793dc5ff395775e4d Mon Sep 17 00:00:00 2001 From: Ubong Ndoh Date: Wed, 12 Oct 2022 23:39:01 +0100 Subject: [PATCH 107/115] Add Ubong Ndoh to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 7fa2e6f3..dbc92aed 100644 --- a/names.txt +++ b/names.txt @@ -444,3 +444,4 @@ Obijiaku Obioma Chukwuma Nasirullah Oladipo A Gideon Victor Warrie Amuda Mohammed-Awwal Ayomide +Ubong Monday Ndoh \ No newline at end of file From ba5f9cd771c17c83ab47858dfc40def0c446181c Mon Sep 17 00:00:00 2001 From: Ismaila Yunusa Date: Sun, 16 Oct 2022 14:39:59 -0700 Subject: [PATCH 108/115] Add Ismaila Yunusa to the list od names --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index a159f4be..5575c872 100644 --- a/names.txt +++ b/names.txt @@ -1,6 +1,7 @@ Olayinka Daniel TechMomma Okonkwo Adeyemi Akinyemi +Ismaila Yunusa Ephraim Haruna Mamman Lawal Ayobami Oluwasetemi Ojo @@ -267,7 +268,7 @@ David Ottache Oliyide Ibrahim Owolabi Osinubi Omobayode Festus Theresa Ottah -Nnadiukwu Chidiebere Oscar +Nnadiukwu Chidiebere Oscar Ojima Grace Ohaba Oloruntobi Madamori Oyediran Paul From c3d593f5e25499340600144828ecb66979000f2f Mon Sep 17 00:00:00 2001 From: Peluboy Date: Wed, 19 Oct 2022 18:44:28 +0100 Subject: [PATCH 109/115] Add Ogunmuyiwa Oluwapelumi to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 01824187..6b7c31c6 100644 --- a/names.txt +++ b/names.txt @@ -7,6 +7,7 @@ Tatyana Effa Adeyemi Akinyemi Oyediran Michael A. Nwabuwa Philip Emeka +Ogunmuyiwa Oluwapelumi Adebanjo Abolanle Mary Ephraim Haruna Mamman Martins Umekwe From 912c7d04e4746e67d289c3b934896df71bacb099 Mon Sep 17 00:00:00 2001 From: Omage Sandra Date: Thu, 27 Oct 2022 12:52:37 +0100 Subject: [PATCH 110/115] Add Omage Sandra to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 35aa5464..05969c9e 100644 --- a/names.txt +++ b/names.txt @@ -97,6 +97,7 @@ Israel Zorzor Faboya Basil Korede Marliyya ubam Samson Okeji +Omage Sandra Abiodun Omonijo David Nyong James Uyi From 3cee4c846e16d43d3e0f74ad23fc7b8a2a2ce593 Mon Sep 17 00:00:00 2001 From: Anyi Joy Oluomachukwu Date: Fri, 28 Oct 2022 23:02:22 +0100 Subject: [PATCH 111/115] Add to the list of names --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6815e47e..ed577474 100644 --- a/names.txt +++ b/names.txt @@ -8,6 +8,7 @@ Adeyemi Akinyemi Ismaila Yunusa Oyediran Michael A. Nwabuwa Philip Emeka +Anyi Joy Oluomachukwu Ogunmuyiwa Oluwapelumi Adebanjo Abolanle Mary Ephraim Haruna Mamman From 86535b10e7910d7114b0bfe26e68d98718845c76 Mon Sep 17 00:00:00 2001 From: OJO Date: Wed, 2 Nov 2022 14:47:38 +0100 Subject: [PATCH 112/115] OJO --- names.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/names.txt b/names.txt index 6815e47e..a4ecd031 100644 --- a/names.txt +++ b/names.txt @@ -12,6 +12,7 @@ Ogunmuyiwa Oluwapelumi Adebanjo Abolanle Mary Ephraim Haruna Mamman Martins Umekwe +Ojo Stephen Munir Adavize Abdullahi Chigozie Oziri Obiorah Ignatius From 0ff9f7777b7452a8028b6efb04111f5e1035da1e Mon Sep 17 00:00:00 2001 From: Samuel Ume Date: Sun, 13 Nov 2022 14:51:01 +0100 Subject: [PATCH 113/115] Update names.txt --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index f2982f3a..70fea3bf 100644 --- a/names.txt +++ b/names.txt @@ -438,6 +438,7 @@ GAruba Abdul Azeez. Victor Ubere Victor Abolarin Temitope Yusuff +Samuel Ume Adebesin Adedayo Tunde Wey Mediat Yusuff @@ -449,4 +450,4 @@ Nasirullah Oladipo A Gideon Victor Warrie Duku Aghogho Mathida Amuda Mohammed-Awwal Ayomide -Ubong Monday Ndoh \ No newline at end of file +Ubong Monday Ndoh From 2f1c16e1c6e2d0801de6d21573b9631b116d2105 Mon Sep 17 00:00:00 2001 From: Shiba <66871507+shiba196@users.noreply.github.com> Date: Wed, 7 Jun 2023 17:26:08 +0530 Subject: [PATCH 114/115] Update names.txt Added my name --- names.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/names.txt b/names.txt index f2982f3a..97b0fc3a 100644 --- a/names.txt +++ b/names.txt @@ -62,6 +62,7 @@ Ayoola Paul Omitogun Olamide Gideon Anyalewechi Linda Akorfa Abotsigah +Shibam Acharya Ademiju Peter Raphael Ibrahim Popoola Emmanuel @@ -449,4 +450,4 @@ Nasirullah Oladipo A Gideon Victor Warrie Duku Aghogho Mathida Amuda Mohammed-Awwal Ayomide -Ubong Monday Ndoh \ No newline at end of file +Ubong Monday Ndoh From 8917e8919a1a900e31cb296dd7afdf6dd0d1680e Mon Sep 17 00:00:00 2001 From: Tobi Balogun <98078707+tobisupreme@users.noreply.github.com> Date: Wed, 11 Oct 2023 06:24:16 +0100 Subject: [PATCH 115/115] fix: remove duplicate entries --- names.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/names.txt b/names.txt index b0742429..abb440dc 100644 --- a/names.txt +++ b/names.txt @@ -279,7 +279,6 @@ Ashibuogwu Williams Victor Bernard Patrick Adeliyi Olumide Samuel Oso -Omage Sandra Yvonne Dien Anietie Akpanumoh Adaobi Chuma-Okeke @@ -318,7 +317,6 @@ Philemon Nwanne Thankgod Chimeremeze Ikekwem Adegbuyi Oluwakayode Banjo Elizabeth Ololade -Omage Sandra Courage Ujiagbe Noibi Abdulrasaq Olamilekan Edet Emmanuel Asuquo @@ -450,4 +448,4 @@ Nasirullah Oladipo A Gideon Victor Warrie Duku Aghogho Mathida Amuda Mohammed-Awwal Ayomide -Ubong Monday Ndoh \ No newline at end of file +Ubong Monday Ndoh