Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Programmer {
- public string name;
- public ProgrammerJob job;
- public Locale locale;
- public void getYourShitTogether() {
- if (!job) {
- tryToGetJob();
- if (!job) {
- writeMoreCode();
- getYourShitTogether();
- }
- }
- else {
- job.getExperience();
- }
- }
- public void writeMoreCode() {
- while (true) {
- Console.WriteLine("Write more code");
- }
- }
- public void tryToGetJob() {
- foreach (ProgrammerJob aJob in locale.getJobListing()) {
- new Thread(delegate () {
- ApplyFor(aJob);
- }).Start();
- }
- }
- public void applyFor(ProgrammerJob aJob) {
- sendResumeTo(aJob.address);
- doInterview(aJob);
- waitForResult(aJob);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment