HN user

ghostdiver

79 karma
Posts0
Comments139
View on HN
No posts found.
V8 Moving to Git 12 years ago

Sorry, but I really like Google Code source browser with its awesome features like searching for definitions, instantiations, calls, declarations etc.

GitHub is very poor on that matter.

IRIS+ 12 years ago

Flying drones without permissions(registred aircraft, pilot license etc.) is illegal in some countries already.

That's not the case. Entrepreneurial culture is there in Europe even though there are many bureaucratical barriers.

US startups have at least one very important handicap: over 300mln people speaking the same language. On

For Europeans it's a very strong growth barrier, we can easily grow within one country, but then we hit the wall.

It forces programmer to make few more steps during debugging process, using conditional breakpoints in particular.

not a big deal to put conditional breakpoint in handleStreamEvent whereever it is, but in long run it just a waste of time.

  this.setup = function () {
    this.on('tweet', this.handleStreamEvent.bind(this, 'tweet'));
    this.on('retweet', this.handleStreamEvent.bind(this, 'retweet'));
  };
This pattern will be obsolote as soon as arrow function gets implemented by all major browsers:
  this.setup = function () {
    this.on('tweet', () => this.handleStreamEvent('tweet'));
    this.on('retweet', () => this.handleStreamEvent('retweet'));
  };
Revolution in Kiev 12 years ago

From typical Ukrainian POV EU is just better place to live and it is all about long term plans. Sure, Ukraine will have difficult time during adoption of EU rules and regulation, but in the end they will have better living.

The idea of web workers as a solution for performance problem is dangerous for the web. I have 4C CPU, 6 threads max, 15 pages open in tabs, imagine each of them opening 4 web workers, because one CPU core for modern website is just not enough! madness !

"Java or C++" is such type of key phrase/statement, but there are other ones, depends on job profile you are looking for. Front end devs should rather avoid job offers, which mention some particular javascript library as an must have requirement.

Question is simple: I don't have a lot of professional experience in required language/technology, but (here goes something interesting about you), should I apply to your job offer?

There is nothing wrong in looking after other opportunities, just like as an employer you would constantly look after new candidates, welcome to 2013! Manager will assume that you have something else lineup up already anyway.

Top Coder challenges may work for you, reading some books will help in solving problems(like Cormen Introduction to Algorithms). That may help only about "theory".

In case of learning the more technical terms, open source projects are the way to go, no need to be active committer, try to understand the workflow and language they use.

You must find a way to communicate that you have computer science knowledge in your resume or during interview. Someone will ask questions, which are supposed to be difficult for a "self taught" guy, you better know the answers, lack of formal education is not an excuse, it will only prove that you are lazy enough to read some books(or just wikipedia :P)

It's bad idea to "stick to that one", no benefit, it will only decrease chances of getting some gig/contract. Since you are aiming for established bigger companies, expect to work on some outdated technologies. Ruby/nodejs is not outdated yet, it might as well cease to exist in few years, because very few businesses will manage to establish on such technologies.