Google Interview Questions [closed] - javascript

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I have an interview with Google on Javascript and form verification.
I have done a lot of preparation in terms of algorithms and general data structure. But how to prepare for an interview by a javascript team?
Please share some example and resources.
Thanks

Check out Douglas Crockford's resources on JavaScript, especially his Google tech talks called JavaScript: The Good Parts.

Related

Would Python be too slow for client-side use in Browsers? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I’ve heard the statement that Python would be too slow to be of any use in browsers.
I reckon Javascript is only superior in this aspect because of companies like Google who need it fast (and made it fast) because they need it to survive, but I could be wrong.
Are there any differences in how Python and JS are designed that have an impact on how they (would) perform in browsers?
There is a project named Brython designed to replace JavaScript as the scripting language for the web.

JavaScript crypto libraries? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
What are some of the secure/reliable crypto libraries for JavaScript? For those who have used it, what are your opinion about them? Thanks.
Google Closure
Used Google's closure library quite successfully for a while
https://developers.google.com/closure/library/
Specific crypt documentation here
http://closure-library.googlecode.com/svn/docs/namespace_goog_crypt.html
phpjs.org
Occasionally for simpler tasks I have also used self-contained functions such as md5 or sha1 from phpjs.org
crypto-js
Although never used personally, I heard very good things about this library
http://code.google.com/p/crypto-js/

Is there open source chat library using websockets [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I plan to create a chat on the site for users, and was wondering if there is already open source javascript library that I can use.
You might want to have a look at node.js / jquery. Here's a tutorial on a chat (which supports web socket).
If you are using Dojo Toolkit there's something called Cometd to implement a chat room too.
Or you could use this (but no websocket).

How slow is John Resig's JavaScript Templating Engine? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
with is so bad that it is forbidden in ES5 strict mode.
Function constructor is very slow.
Yet,
John Resig's micro templating is advertised as light, uses both mentioned bad features of Javascript. (same with another light templating - underscore's, which is a fork of it)
Now a question:
How seriously should i be concerned about performance impact of using those template engines ?
Should i sacrifice their flexibility and simplicity for speed gains that other engines (like Mustache, or XTemplates) might provide ?

Stress testing of node.js services [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm building a stress testing framework for node.js services using node.js.
Do you know relevant projects which I can use / look at?
node.js projects that you've used and worked good? (latency, throughput etc..)
Any best practices on that matter?
Thanks!

Categories