📜 ⬆️ ⬇️

Let's program the vacancy

Suddenly, I saw an original approach here in the description of one vacancy.

In order not considered advertising - all the info about the employer sawed.

But for the job description by means of the PLO - unambiguous respect!
')
public class JediJob extends GameDevJob implements IRemoteJob { ... 

The full source did not get to Kata.

 public class JediJob extends GameDevJob implements IRemoteJob { public var company:ICompany = new XXXXXGames(); public var url:String = "http://xxxxxgames.com/xxxxxx.html"; public var email:String = "xxxxx@xxxxxgames.com"; public function apply():IGame { var currentGame:IGame = new GameNameXXXX(); currentGame.mmorgp = true; currentGame.engine3d = Engine.ALTERNATIVA_3D; currentGame.protocols = ["xml", "json", "amf3"]; currentGame.platforms = ["facebook", "kongregate", "ownSite"]; return currentGame; } public function isAvailable(skills:Skills):Boolean { var as3Skill:ISkill = skills.getSkill("as3"); return as3Skill.oop && as3Skill.years >= 3 && as3Skill.level >= DevLevel.MIDDLE; } public function getSalary():uint { return company.getInterview().result + company.getBonus(); } } 

Source: https://habr.com/ru/post/144603/


All Articles