Advertisement
Guest User

A.Y. Tech - Hire by Code

a guest
May 19th, 2016
726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.04 KB | None | 0 0
  1. import applicant;
  2. import emailclient;
  3.  
  4.  
  5. class AY_applicant(applicant):
  6.     def __init__(newcurious=True):
  7.         super(AY_applicant, self)
  8.         self.curious = newcurious
  9.  
  10.     def hasPriority(comparison):
  11.         return self.priority == comparison
  12.  
  13.     def interested(topics):
  14.         return len(set(topics) - self.interests) == 0
  15.  
  16.     def believe(values):
  17.         return len(set(values) - self.values == 0)
  18.  
  19.     def explain(subject):
  20.         return self.explanations[subject]
  21.  
  22.     def apply(address, subject):
  23.         emailclient.sendmail(address, subject, coverletter, self.resume);
  24.  
  25.  
  26. you = AY_applicant()
  27.  
  28. if (not you.isCurious) or \
  29.         (not you.hasPriority('learning new skills')) or \
  30.         (not you.hasPriority('keeping up with the cutting edge technologies')):
  31.     print('Thanks for your interest, but we are not a good fit.')
  32.     exit(1)
  33.  
  34. whowe = {"are": "A.Y. Technologies - aytech.ca"}
  35. whatwe = {"do": "Software development  with focus on web and mobile applications",
  36.           "use": ['Python', 'Django', 'ReactJS', 'React Native', 'LESS', 'Google Material Design', 'Java',
  37.                   'Objective C', 'and more'],
  38.           "build": [
  39.               'High quality applications with focus on the best user experience using the cutting edge technologies.'],
  40.           "believe": ['Flexibility for our clients', 'Delivering value to Customers',
  41.                       'Continuous Improvement', 'Automation everywhere possible'],
  42.           "partner": ['Mailograph: www.mailograph.com']
  43.           }
  44.  
  45. if you.interested(whatwe['use']) and you.interested(whatwe['build']) and you.believe(whatwe['believe']):
  46.     # >>>> IMPORTANT!!! <<<<
  47.     coverletter = [you.explain('why you think you we are a good fit'),
  48.                    you.explain('what are the technologies you are passionate about'),
  49.                    you.explain('what is the single most important goal you want to achieve in the next 2 years?')]
  50.     you.apply(address='careers@aytech.ca', subject='I am interested in joining A.Y.Tech - ref:Hire by Code')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement