Skip to content

Instantly share code, notes, and snippets.

View papa28x4's full-sized avatar
💭
Made for More

Ebiri-Okoro Ekeoma papa28x4

💭
Made for More
View GitHub Profile
@papa28x4
papa28x4 / regex_tutorial.sql
Last active March 14, 2023 19:22
Database Schema for Regex tutorial
CREATE SCHEMA myschooldb;
SET search_path = myschooldb;
DROP TABLE IF EXISTS students;
CREATE TABLE students(
id serial PRIMARY KEY,
first_name VARCHAR(100) NOT NULL,
last_name VARCHAR(100) NOT NULL,
middle_name VARCHAR(100) NULL,
gender VARCHAR(1) NOT NULL,
@papa28x4
papa28x4 / getUsers.js
Created February 27, 2020 17:55
An async function that receives an array of Github logins and returns an array of Github users
const tags = document.querySelector('#tags')
const search = document.querySelector('#search');
const imagesBox = document.querySelector('#imagesBox');
search.addEventListener('click', getInput)
function getInput(){
if(tags.value.length === 0){
alert("You haven't entered any username")
}else{
@papa28x4
papa28x4 / Questions.txt
Last active February 4, 2020 09:56
VGG Array Assignment Solution
QUICK SIMPLE ASSIGNMENT
1.
We have the following arrays
color = ["Blue ", "Green", "Red", "Orange", "Violet", "Indigo", "Yellow "];
o = ["th","st","nd","rd"]
Write a JavaScript program to display the colors in the following way :
"1st choice is Blue."
@papa28x4
papa28x4 / registration_prop_longhand.css
Created January 23, 2020 08:55
How to assign top, right, bottom and left properties
element{
padding-top:5px;
padding-right: 10px;
padding-bottom: 15px;
padding-left: 20px;
}
element{
padding: 5px 10px 15px 20px;
}
@papa28x4
papa28x4 / index.html
Last active January 24, 2020 01:19
Registration form
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Venture Garden Group Network - join our ever-growing tech community of interns. Signing up is easy">
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<title>VGG Network Registration</title>
@papa28x4
papa28x4 / resume.md
Last active January 2, 2020 22:13
My Resume

Ebiri-Okoro Ekeoma

Swissfair@yahoo.co.uk
07031956072, 08180186542

Professional Experience


@papa28x4
papa28x4 / mysql_cheat_sheet.md
Created November 24, 2019 13:06 — forked from bradtraversy/mysql_cheat_sheet.md
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH