-Поиск по дневнику

Поиск сообщений в rss_thedaily_wtf

 -Подписка по e-mail

 

 -Постоянные читатели

 -Статистика

Статистика LiveInternet.ru: показано количество хитов и посетителей
Создан: 06.04.2008
Записей:
Комментариев:
Написано: 0


CodeSOD: Recruiting Desperation

Вторник, 19 Мая 2015 г. 13:30 + в цитатник

When hiring programmers, recruiters will often try to be clever. Sometimes, this results in a memorable trick, like EA Canadas job posting billboard.

EA Canada billboard which reads: char msg = {78,111,119,32,72,105,114,105,110,103,0};

Other times, these stunts dont go nearly as well. Andrea recently got this job posting from a recruiter. Note, theyre hiring for a PHP job.


using System;
 using Php;

namespace agency
 {
 class Senior Developer
 {
 static readonly uint THRESHOLD = 5;

     static uint Question(string text)
     {
         Console.WriteLine(text + ” [y/N]”);
         string answer = Console.ReadLine();
         return answer != null && answer.Equals(“y”) ? 1U : 0U;
     }

     static void Main()
     {
         string[] questionTexts =
             {
                 “Looking for a new challenge?”,
                 “Want to work in the heart of London?”,
                 “Do you enjoy solving hard problems efficiently and creatively in PHP?”,
                 “Would you like to work where you can make a difference?”,
                 “Want to work on building the latest interfaces with HTML, CSS & JavaScript used by millions of people?”,
                 “Would you like to know more?”
             };
         uint score = questionTexts.Aggregate(0, (current, text) => current + Question(text));
         Console.WriteLine(score > THRESHOLD
                               ? @”Contact JohnRecruiterGuy@AnonimizedEmailAddress.com today”

         Console.ReadLine();
     }
 }
}

Theres so much to hate here. Using C# code as a way to hire PHP candidates is bad enough, the fact that theyre hiring PHP developers is arguably worse (I wouldnt wish PHP on my worst enemy ), but this code wouldnt even compile.

I also have to wonder, do they think theyre being clever? Or maybe they think that theyre somehow weeding out candidates who couldnt figure out how to apply because theyve encapsulated the job posting in code, thus making it impenetrable to the normal run of man?

[Advertisement] BuildMaster is more than just an automation tool: it brings together the people, process, and practices that allow teams to deliver software rapidly, reliably, and responsibly. And it's incredibly easy to get started; download now and use the built-in tutorials and wizards to get your builds and/or deploys automated!

http://thedailywtf.com/articles/recruiting-desperation

Метки:  

 

Добавить комментарий:
Текст комментария: смайлики

Проверка орфографии: (найти ошибки)

Прикрепить картинку:

 Переводить URL в ссылку
 Подписаться на комментарии
 Подписать картинку