Volodymyr Osypov blog

May 17, 2008

Google interview 1

Filed under: Uncategorized — Tags: , , , — admin @ 10:09 pm

Finally it happened, after 2 unsuccesseful takes, the 3rd take of Google interview went OK.

Dylan, Engineer at Google called me yesterday evening and we had 45 minutes conversation. First he asked me to describe my usual working day.

After I was aksed about 2 different situations, we were discussing them. I told what will I do on server side and client side. So the situations were: double click on form button, especially if it’s the form of ordering something using credit card. Another one - checking if there is already such username in base by registration, using iframe instead of JSON.

Dylan also asked my about JavaScript closures. But unfortunately I had no idea about that, but read some information after and it’s really interesting, I will write about this soon :)

After that I had a chance to give my questions.

PS. my Ubuntu installation went not well, had problems with GRUB, will try again soon ;)

May 15, 2008

Code plugin and Nomore stupid machines

Filed under: News — Tags: , , , , , , , , — admin @ 10:22 am

I really hate when a computer pretends to be smarter than me, that's why I turned off visual editor in Wordpress and now I can control everything and that's great. I don't have to battle anymore with changes editor made to my code! In this way I'm like Will Smith character in 'I, Robot' movie, believe every developer is on the same part.

Other thing is that I've installed nice plugin for code and now my code will be nice-looking like:
PHP

PHP:
  1. <?
  2. $str="Hello World";
  3. echo $str;
  4. ?>

HTML

HTML:
  1. Hello World!
  2. </td>
  3. </tr>
  4. </table>

JavaScript

JAVASCRIPT:
  1. <script type="text/javascript">
  2. function sayit(str) {
  3. alert(str);
  4. }
  5.  
  6. var mystr='Hello world!';
  7. sayit(mystr);
  8. </script>

Also, Today I've got the free Ubuntu CD :)
Btw, my Google interview is rescheduled to Friday.

Powered by WordPress