Skip to content

Instantly share code, notes, and snippets.

View Debdut's full-sized avatar
πŸ’­
Chill

Debdut Karmakar Debdut

πŸ’­
Chill
View GitHub Profile
@Debdut
Debdut / gist:ec6589c22ab0c5eb22d0ed42b5e20f2c
Created June 16, 2020 00:40 — 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:
.box {
background: #fff;
box-sizing: border-box;
border: 1px solid #999;
float: left;
}
@Debdut
Debdut / Nav.css
Last active April 26, 2020 04:42
Navbar Apple Style
nav {
margin: 0;
overflow: hidden;
background: #333333;
}
.nav-content {
max-width: 1024px;
margin: 0 auto;
padding: 0 20px;
var http = require('http');
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/testdb";
var companies = [{'name' : 'Sun Pharma', 'medicine' : [1, 2]},
{'name' : 'Hello Pharma', 'medicine' : [3, 4]},
{'name' : 'Sayan Pharma Ltd.', 'medicine' : [5]}];
MongoClient.connect(url, (err, db) => {
if (err) {