Skip to content

Instantly share code, notes, and snippets.

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

Uzoanya Dominic barman47

🏠
Working from home
View GitHub Profile
@barman47
barman47 / meta-tags.md
Created October 12, 2021 10:28 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@barman47
barman47 / storing and downloading binary data in mongodb
Created November 21, 2018 12:40 — forked from mdsaleemj/storing and downloading binary data in mongodb
storing and downloading binary data in mongodb without grid-fs
//The below model is used to book a travel ride.
//The uploaded file is parsed in the formidable multipart body parser and stored in req.files.fileField.
//File is read from , in my code, req.files.file
var rideModel = function(){
var rideSchema = new Schema({
email : String,
corp_id : String,
name : String,
manager: String,