Skip to content

Instantly share code, notes, and snippets.

View trillionclues's full-sized avatar
🏌️‍♂️
Cooking

Excel trillionclues

🏌️‍♂️
Cooking
View GitHub Profile
@ftomiiwo
ftomiiwo / NigeriaBanks
Created July 11, 2017 18:00 — forked from xcobary/NigeriaBanks
Sql List of all Banks in Nigeria
//Tis is to create a table for the bank in nigeria
CREATE TABLE `banks` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
//Inserting list of banks in Nigeria into the table create above
NSERT INTO `banks` (`id`, `name`, `created_at`, `updated_at`) VALUES
@shreyasminocha
shreyasminocha / quotes.json
Last active February 17, 2024 08:18
Quotes for freeCodeCamp Random Quote Machine
[
{
"quote": "Life isn’t about getting and having, it’s about giving and being.",
"author": "Kevin Kruse"
},
{
"quote": "Whatever the mind of man can conceive and believe, it can achieve.",
"author": "Napoleon Hill"
},
{