Skip to content

Instantly share code, notes, and snippets.

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

Ankit Bhanderi baj9032

🏠
Working from home
View GitHub Profile
@baj9032
baj9032 / GetWeeksInMonth.js
Created August 17, 2019 16:34 — forked from markthiessen/getWeeksInMonth.js
JavaScript - get weeks in a month as array of start and end days
//note: month is 0 based, just like Dates in js
function getWeeksInMonth(month, year){
var weeks=[],
firstDate=new Date(year, month, 1),
lastDate=new Date(year, month+1, 0),
numDays= lastDate.getDate();
var start=1;
var end=7-firstDate.getDay();
while(start<=numDays){
@baj9032
baj9032 / rxjs-diagrams.md
Created July 18, 2018 04:04 — forked from PCreations/rxjs-diagrams.md
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@baj9032
baj9032 / sec_tutorial.md
Created June 15, 2017 12:07 — forked from tgrall/sec_tutorial.md
MongoDB Security Tutorial

#Simple MongoDB Security Tutorial

###1 - Start mongod without any "security option"

$ mongod --port 27017