Skip to content

Instantly share code, notes, and snippets.

function (birthMonth, birthDay, birthYear) {
var todayDate = new Date(),
todayYear = todayDate.getFullYear(),
todayMonth = todayDate.getMonth(),
todayDay = todayDate.getDate(),
age = todayYear - birthYear.date;
if (todayMonth < birthMonth.date - 1) {
age--;
}
@eweader
eweader / 1902092209-nodemoduleslist.md
Last active February 12, 2019 23:04
Prep for creating an env to run those tech
@eweader
eweader / in.css
Last active December 8, 2018 07:45
diff CSS, SCSS, SASS
/*CSS
In CSS we write code as depicted bellow,
in full length.
*/
body{
width: 800px;
color: #ffffff;
}
body content{
width:750px;
@eweader
eweader / angular-setup.sh
Last active December 21, 2018 14:56
First Angular App
sudo npm install -g @angular/cli
# Create an app
ng new my-app