Skip to content

Instantly share code, notes, and snippets.

View Oliver-ke's full-sized avatar
💭
-code -eat -sleep -repeat

Azorji Kelechi Oliver Oliver-ke

💭
-code -eat -sleep -repeat
View GitHub Profile
GENERATORS:
Text Content Generator - http://www.lipsum.com
Favicon Generator - http://tools.dynamicdrive.com/favicon
Data Generator - https://mockaroo.com/
Mobile Mockup Generator - https://mockuphone.com
Logo Generator - https://www.logaster.com
UUID Generator - https://www.uuidgenerator.net/
Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
IMAGE RESOURCES:
@Oliver-ke
Oliver-ke / index.html
Created November 13, 2018 05:15
Pluralsight Login Clone
<div id="wrapper">
<div id="left">
<div id="signin">
<div class="logo">
<img src="https://image.ibb.co/hW1YHq/login-logo.png" alt="Sluralpright" />
</div>
<form>
<div>
<label>Email or username</label>
<input type="text" class="text-input" />
@Oliver-ke
Oliver-ke / ssh.md
Created February 12, 2019 14:07 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@Oliver-ke
Oliver-ke / docker-help.md
Last active July 14, 2022 19:32 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@Oliver-ke
Oliver-ke / webdev_online_resources.md
Created February 12, 2019 14:11 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

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

@Oliver-ke
Oliver-ke / README-Template.md
Created May 27, 2019 08:03 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

module.exports = (answers, studentAns) => {
if (answers.length !== studentAns.length) {
return 'Arrays must be of the same length';
}
let sum = 0;
for (let i = 0; i < answers.length; i++) {
if (answers[i] === studentAns[i]) {
sum += 4;
} else if (studentAns[i] !== ' ') {
sum -= 1;
const { assert } = require('chai');
const computeResult = require('../challange/computeResult');
describe('return sum', () => {
it('Must be a function', () => {
assert.isFunction(computeResult, 'must be a function');
});
it('Return the result', () => {
const answers = [ 'a', 'b', 'a', 'c' ];
const studentAns = [ 'a', 'c', 'd', 'c' ];