Skip to content

Instantly share code, notes, and snippets.

@yeco
Last active October 13, 2015 21:14
Show Gist options
  • Save yeco/2487688 to your computer and use it in GitHub Desktop.
Save yeco/2487688 to your computer and use it in GitHub Desktop.
We're hiring!
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"
}
}
@OscarGodson
Copy link

This is pretty awesome!

@arturocr
Copy link

Nice move! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment