I applied through an employee referral. The process took 2 days. I interviewed at Market.com (Tel Aviv-Yafo) in Jul 2013
Interview
As you get a call, probably you will get invited to the inteview with an HR for a personality test. After HR you may enter same day to the technical test with a head of development department, or get invited once again to inteview with CTO.
After this, all you have is to sign with the CTO and in about a month you will get an agreement signed by advocates, etc.
Interview questions [1]
Question 1
Most unexpected question was:
echo $name;
loop {
if( $name = 'blabla' ){
header("authorized");
}
}
appears a bug, saying "headers already sent". luckily i was experience in this field :)
Headers already sent previously by the server to output the name before loop, the all headers should be sent prior to output.
How to prevent ?
Dont echo name, or, if you can not change - use ob_start(), ob_end_flush() to buffer the outputs. THe next question came up is Why ob_*, if you can force server to push always buffered ? - Force server to always buffer is a wrong way, you not always going to need the buffer, so that OB_* making possible to buffer only when you need.