This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UserSchema.pre("insertMany", async function (next, docs) { | |
if (Array.isArray(docs) && docs.length) { | |
const hashedUsers = docs.map(async (user) => { | |
return await new Promise((resolve, reject) => { | |
bcrypt.genSalt(10).then((salt) => { | |
let password = user.password.toString() | |
bcrypt.hash(password, salt).then(hash => { | |
user.password = hash | |
resolve(user) | |
}).catch(e => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nltk | |
import urllib.request | |
from bs4 import BeautifulSoup | |
from nltk.corpus import stopwords | |
response = urllib.request.urlopen('https://en.wikipedia.org/wiki/SpaceX') | |
html = response.read() | |
soup = BeautifulSoup(html,'html5lib') | |
text = soup.get_text(strip = True) | |
tokens = [t for t in text.split()] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install | |
sudo apt-get install sshfs | |
#Setup SSHFS with local folder | |
sudo sshfs [email protected]:/path/to/remote/ec2_folder /user_home_folder/local_ec2s/ec2_sh1 -o IdentityFile=~/Path/to/ssh-key.pem -o allow_other |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
someuser$ mongo | |
## Check Status and member replica sets | |
rs0:PRIMARY> rs.status() | |
{ | |
"set" : "rs0", | |
"date" : ISODate("2018-12-25T07:28:19.390Z"), | |
"myState" : 1, | |
"term" : NumberLong(136), | |
"syncingTo" : "", | |
"syncSourceHost" : "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Display system-wide information | |
>_ docker info | |
#List up Docker Images | |
>_ docker images | |
#List up docker images which are intermediary files created during build(s) | |
>_ docker images -q --filter dangling=true | |
#List and remove the intermediary files using xargs command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
laravel new $1 | |
cd $1 | |
composer install | |
yarn install | |
touch README.md | |
cp .env.example .env | |
git init | |
git add -A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Blurb Card</title> | |
<style> | |
body{ | |
background-color: #ccc; | |
} | |
p, ul, blockquote { | |
color: #333; | |
padding: 0 0 0 5px; |