Skip to content

Instantly share code, notes, and snippets.

View hydeenoble's full-sized avatar
:octocat:
Write every line of code with empathy

Idowu Emehinola hydeenoble

:octocat:
Write every line of code with empathy
View GitHub Profile
@hydeenoble
hydeenoble / Node_AWS_Linux.md
Created September 4, 2018 15:31 — forked from nrollr/Node_AWS_Linux.md
Install Node.js on Amazon Linux (EC2)

Installing Node.js on Amazon Linux AMI

The following will guide you through the process of installing Node.js on an AWS EC2 instance running Amazon Linux AMI 2016.09 - Release Notes

For this process I'll be using a t2.micro EC2 instance running Amazon Linux AMI (ami-d41d58a7). Once the EC2 instance is up-and-running, connect to your server via ssh

@hydeenoble
hydeenoble / Commands.sh
Last active November 17, 2018 14:04 — forked from nrollr/Commands.sh
Install PHP and NGINX on Amazon Linux AMI
## Install NGINX
$ sudo yum install nginx -y
## Install PHP and PHP-FPM
$ sudo yum install php -y
$ sudo yum install php-fpm -y
## Configure NGINX (see below)
$ sudo nano /etc/nginx/conf.d/default.conf
@hydeenoble
hydeenoble / gist:3b988ce4c838f2e6286e42b8bf089067
Created June 25, 2018 13:06 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@hydeenoble
hydeenoble / app.js
Last active January 16, 2017 15:29
Learning Node and MongoDb
/**
* Created by hydee on 1/16/17.
*/
var Disease = require('./diseaseschema')
var disease;
var diseases = require('./getDiseases')
//saving to database.
diseases.diseaseDetails(function (diseaseData) {