Skip to content

Instantly share code, notes, and snippets.

@debuggerpk
Last active December 13, 2015 21:09
Show Gist options
  • Save debuggerpk/4975667 to your computer and use it in GitHub Desktop.
Save debuggerpk/4975667 to your computer and use it in GitHub Desktop.
Wanted a JS Guru
var skill_sets = {
JavaScript : 'ninja!',
FrontEnd : ['jQuery', 'AngularJS', 'Not affriad to write plain Javascript', 'html5', 'css3'],
Technology : ['ASP MVC3'],
Education : ['BS Computer Science']
Experience : ['2+ years', 'worked on a shipped project with a team follow agile/scrum development']
Creativity : 'MUST!!!!'
};
var responsibilities = {
'a' : 'Interact with server-side developers, ensuring proper implementation of website data and functionality; implement final versions into production system.',
'b' : 'Docuemnt and Unit Test Code',
'c' : 'Performance tweak code for corss broswer combaitbilty'
}
var we_give = {
benefits : ['options', 'competitive salary', 'chance to change the world!'],
}
var you_get = {
make_a_difference : true,
work_with_top_talent : true,
close_to_customers : true
};
function apply_for_position (you) {
should_apply = true;
for ( var skill in skill_sets ) {
should_apply = should_apply && (you.skills[skill]);
}
if (should_apply && you.want === true) {
console.log ('Apply by email to jobs@smartsignin.com');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment