Skip to content

Instantly share code, notes, and snippets.

View MohiuddinAkib's full-sized avatar
🏠
Working from home

mohammad mohiuddin mostafa kamal akib MohiuddinAkib

🏠
Working from home
  • Dhaka, Bangladesh
View GitHub Profile
@MohiuddinAkib
MohiuddinAkib / deployment_guide.md
Created December 20, 2019 05:23 — forked from vicgonvt/deployment_guide.md
Deployment Guide for Ubuntu Server from Scratch with Laravel
@MohiuddinAkib
MohiuddinAkib / app.js
Created March 18, 2019 13:47 — forked from stongo/app.js
Joi validation in a Mongoose model
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');
var db = mongoose.connection;
db.on('error', function() {
return console.error.bind(console, 'connection error: ');
});