Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jaiakt committed Aug 30, 2017
1 parent 9087a62 commit 1f06f58
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function validateArray(arr) {
return arr !== undefined && arr !== null && arr instanceof Array && arr.length > 0;
}

MONTH_NAMES = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep",
MONTH_NAMES = ["Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Sep",
"Oct", "Nov", "Dec"];

function render(resume) {
Expand Down Expand Up @@ -56,7 +56,7 @@ function render(resume) {

function parseDate(date) {
var d = new Date(date)
return new Handlebars.SafeString(MONTH_NAMES[d.getMonth()] + ' ' + d.getFullYear());
return new Handlebars.SafeString(MONTH_NAMES[d.getUTCMonth()] + ' ' + d.getFullYear());
}
Handlebars.registerHelper('parseDate', parseDate);

Expand Down
Binary file added latest.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"website": "",
"startDate": "2017-06",
"endDate": "2017-09",
"summary": "Built a CI distributed testing architecture for FileMaker Server using Salt, Vagrant, and Docker",
"summary": "Designed and developed a distributed testing system for continuous integration for FileMaker Server",
"highlights": [
"Built custom testing suite with javascript testing frameworks such as Mocha and Chai",
"Built a centralized test log collection server with Express"
"Developed custom testing suite with Javascript testing frameworks",
"Developed a centralized test log collection server"
]
},
{
Expand Down Expand Up @@ -70,7 +70,7 @@
{
"institution": "University of California, Los Angeles",
"area": "Computer Science and Engineering",
"studyType": "Bachelor",
"studyType": "BS",
"startDate": "2015-09",
"endDate": "2019-06",
"gpa": "3.8",
Expand Down
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ a {
}

.coursesList {
width: 28%;
width: 40%;
vertical-align: top;
display: inline-block;
}
Expand All @@ -47,6 +47,7 @@ a {
.sectionBlock {
display: flex;
width: 100%;
font-size: 14px;
}

.sectionName {
Expand Down

0 comments on commit 1f06f58

Please sign in to comment.