Skip to content

Instantly share code, notes, and snippets.

@hackfrag
Last active December 20, 2015 03:18
Show Gist options
  • Save hackfrag/6062110 to your computer and use it in GitHub Desktop.
Save hackfrag/6062110 to your computer and use it in GitHub Desktop.
- (void)application {
Developer *you = [Developer new];
Job *orlyapps = [Job new];
orlyapps.location = CLLocationCoordinate2DMake(53.14284, 8.22256);
orlyapps.requirements = [NSArray arrayWithObjects:
@"PHP", @"Java", @"Objective-C", @"C++", @"C#", nil];
orlyapps.benefits = [NSArray arrayWithObjects:
@"Flexible Arbeitszeiten", @"Freies Arbeiten",
@"Spannende Projekte", @"Club-Mate", @"Kreativpausen",
@"Hochwertiges Equipment", nil];
you.gender = DeveloperGenderMale | DeveloperGenderFemale;
if([you.skills isInArray:orlyapps.requirements] >= 1) {
[you mailTo:@"jobs@orlyapps.de"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment