
|
Speed Up Your JavaScript
Speed Up Your JavaScript
Google Tech Talk June 4, 2009 ABSTRACT Web Exponents: Speed Up Your JavaScript Presented by Nicholas C. Zakas. As an interpreted language, JavaScript is filled with hidden performance issues that conspire to slow down your code and ruin [...]
|

|
JavaScript: The Good Parts
JavaScript: The Good Parts
Google Tech Talks Web Exponents presented by Doug Crockford February 27, 2009 blog post: google-code-updates.blogspot.com JavaScript is a language with more than its share of bad parts. It went from non-existence to global adoption in an alarmingly short [...]
|

|
V8: an open source JavaScript engine
V8: an open source JavaScript engine
Google engineer, Lars Bak, explains the key engineering decisions behind, V8, the JavaScript virtual machine used in Google Chrome.
From:
Google
Views:
55813
[...]
|

|
What is JavaScript?
What is JavaScript?
ogsolution.com - In this screencast, we are going to dive into the world of a very popular scripting language called JavaScript. JavaScript is used on most major portal websites today and its major use is to make your static [...]
|

|
hackeando orkut com javascript
hackeando orkut com javascript
hackeando
From:
junior123571
Views:
123196
72
ratings
Time:
02:28 [...]
|

|
Best Practices in Javascript Library Design
Best Practices in Javascript Library Design
Google Tech Talks August 17, 2007 ABSTRACT This talk explores all the techniques used to build a robust, reusable, cross-platform JavaScript Library. We'll look at how to write a solid JavaScript API, show you how to [...]
|

|
JavaScript Tutorial 1.3: Introduction to External Input
JavaScript Tutorial 1.3: Introduction to External Input
In this tutorial, we examine one way to receive and play with data given to us from the user rather than data we explicitly include ourselves. I apologize for the lack of music in this [...]
|

|
JavaScript Tutorial 1.1: The Very Basics
JavaScript Tutorial 1.1: The Very Basics
This tutorial will cover the really basic things about JavaScript, mainly proper syntax of strings, method of script inclusion, and the commonly used alert() and document.write(). To those of a keen eye, you'll get a glimpse [...]
|

|
JavaScript tutorial 1 - Functions
JavaScript tutorial 1 - Functions
This is my first javascript tutorial, I decided to make it on functions since it's an important part of javascript.
From:
FishThatDrown
Views:
55581
[...]
|

|
JavaScript hack
JavaScript hack
Go to google.com clear out your address bar and paste in this javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5); void(0); hit enter z0mg 100k views! [...]
|