Last active
October 13, 2015 21:14
-
-
Save yeco/2487688 to your computer and use it in GitHub Desktop.
We're hiring!
This file contains hidden or 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
var skill_sets = { | |
creativity: 'Over 9000!', | |
front_end: ['JavaScript', 'Html', 'CSS preprocessors'], | |
back_end: ['Java', 'Ruby', 'PHP', 'NodeJS'] | |
}; | |
var we_give = { | |
benefits: ['Books or Courses subside', 'Beer', 'Snacks', 'Videogames', 'Yoga'], | |
laptop: { | |
'select': ['Mac Book Pro"', 'Mac Book Air"', "System 76"] | |
} | |
}; | |
var you_get = { | |
competitive_salary: true, | |
flexible_schedule: true, | |
lots_of_learning: true, | |
work_with_top_devs: true, | |
work_from_home: true, | |
insurance_package: true | |
}; | |
function apply_for_position(you) { | |
var should_apply = true; | |
for (var skill in skill_sets) { | |
should_apply = should_apply && (you.skills[skill]); | |
} | |
if (should_apply && you.want === true) { | |
location.href = "http://edify.cr/joinus" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is pretty awesome!