쌓여있는 크롬탭 정리하면서 다음 사이드 때 참고하려고 정리하는 소중한 링크들
구글링하는 시간 절대 지켜~!~!~!
[NodeJS] 한시간만에 Node.js 백엔드 기초 끝내기 (ft. API 구축) - 조코딩 유튜브
[Heroku] code=H10 desc="App crashed" status=503 Error
[Heroku] dyno를 어떤 것을 선택하면 좋을 지 고민될 때
[MongoDB] MongoDB & Node.js: Connecting & CRUD Operations (Part 1 of 4)
몽고디비에서 제공하는 공식 유튜브 강의인데 너무너무너무 설명 잘해준다.
[MongoDB] 수집한 text에서 단어 사용 빈도 확인하기
db.cards.aggregate([
{$project: {
occurences: {
$regexFindAll: {
input: '$text',
regex: /\b\[가-힣]{1,6}\b/,
}
}
}},
{$unwind: '$occurences'},
{$group: {
_id: '$occurences.match',
totalOccurences: {
$sum: 1
}
}},
{$sort: {
totalOccurences: -1
}}
]);
db.cards.aggregate([
{ $project : { receiver : { $split: ["$receiver", " "] } } },
{ $unwind : "$receiver" },
{ $group : { _id: "$receiver" , total : { "$sum" : 1 } } },
{ $sort : { total : -1 } }
]);