Thread regarding Intel Corp. layoffs

The Algo

function jobSearch(Candidate you) {
// pre-work
Goals goals = you.calculateTenYearGoals();
Compensation minimumBar = marketDataService.refresh();
List targetCompanies = searchTargetCompanies(goals, you.coreValues());

// self marketing and application prep
Resume resume = new Resume(you);
linkedIn.update(you, resume);
Website site = new Website(you, resume, linkedIn); // optional

// applications
List targetJobs = whoIsHiring(targetCompanies, goals, minimumBar);
targetJobs.addAll(linkedIn.getJobs()).addAll(hackerNews.getJobs()).addAll(...);
foreach(job in targetJobs) {
if (linkedIn.hasConnection(job)) {
applyWithEmployeeReferral(job, resume, site, new CoverLetter(job));
} else {
applyCold(job, resume, site, new CoverLetter(job));
}
}

// interviews
List interviews = Recruiters.schedule();
foreach(interview in interviews) {
applyBehavioralTemplate(interview);
applySystemDesignTemplate(interview);
if (you.leetcode()) { applyLeetcodeTemplate(interview); } // optional
}

// offers
List offers = Recruiters.loveYou();
Offer dreamJob = filterOffers(offers);
you.negotiate(dreamJob, minimumBar, goals);

// winning
you.setJob(dreamJob);
}

by
| 1745 views | | 4 replies (last ) | Reply
Post ID: @OP+1mhsziol

4 replies (most recent on top)

error: function jobSearch() returned 'null'. Your application has been terminated.

by
| | Reply
Post ID: @3jpt+1mhsziol

Undeclared variable linkedIn. Fail.

by
| | Reply
Post ID: @3jzf+1mhsziol

Impressive, you passed your HS coding class. Too bad Intel isn't a software company.

by
| | Reply
Post ID: @pmb+1mhsziol

Missing inside the interview loop:

while (badAtCoding && !passingInterviews){
LeetcodeDaily();
}

by
| | Reply
Post ID: @hpk+1mhsziol

Post a reply

: