|
|
 |
|
|
| 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++}setI
nterval('A()',5); void(0);
hit enter
z0mg 100k views! And for you guys who say
this isn't hacking: your absolutely right.
Which is why I put in the whole "1337 hacking
skillz" as a form of parody and for laughs(I
was joking). This video was made as a means
to show those who don't understand scripting
the kind of fun you can have with it. Calling
me names and insulting me doesn't make you
look any smarter and just shows some of the
jackasses that are out there. For those that
have left nice comments I thank you and I
hope you found this enjoyable. Tags : JavaScript Hack Google Amazon 1337 |
|
Affichage : 146204
Durée : 97 s |
| 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
use functional programming to create
contained, concise, code, and delve deep into
common cross browser issues that you'll have
to solve in order to have a successful
library.
John Resig is a JavaScript Evangelist,
working for the Mozilla Corporation, and the
author of the book 'Pro Javascript
Techniques.' He's also the creator and lead
developer of the jQuery JavaScript library
and the co-designer of the FUEL JavaScript
library (included in Firefox 3). He's
currently located in... Tags : google howto best practices javascript |
|
Affichage : 15024
Durée : 3683 s |
| Upcoming Changes to the JavaScript Language |
 |
Google Tech Talks
November, 14 2007
ABSTRACT
After eight years of work in the standards
committee, JavaScript will soon get an
update. We present the highlights and
rationales of the proposed changes to
JavaScript.
The fourth edition of the ECMAScript
(JavaScript) language represents a
significant evolution of the third edition
language, which was standardized in 1999. ES4
is compatible with ES3 and adds important
facilities for programming in the large
(classes, interfaces, namespaces, packages,
program units, optional type annotations, and
optional static type checking and
verification), evolutionary programming and
scripting, data structure construction,
control abstraction (proper tail calls,
iterators, and generators), and
introspection. Improved support for regular
expressions and Unicode, richer libraries,
and proper block scoping are also added.
Speaker: Waldemar Horwat
Speaker: Pascal-Louis Perez Tags : google techtalks techtalk engedu talk talks googletechtalks education |
|
Affichage : 16668
Durée : 3370 s |
| Blogger JavaScript Library Release and Blog.gears Offline |
 |
We talk to some engineers who have been
working on releasing the Blogger JavaScript
library, and some examples that use the
library. We walk through one of these
examples, Blog.gears, that shows how to
create an offline Blogger client using Google
Gears.
Developer's Guide:
http://code.google.com/apis/blogger/developer
s_guide_js.html
blog.gears sample app:
http://gdata-javascript-client.googlecode.com
/svn/trunk/samples/blogger/bloggears/bloggear
s.html
All JavaScript samples:
http://code.google.com/apis/gdata/samples.htm
l#JavaScript Tags : google blogger javascript gears |
|
Affichage : 123210
Durée : 595 s |
| Google Hacks*Tricks + Java Script Codes |
 |
COMPLETE LIST
Google Codes-
google bearshare
google loco
google gothic
google linux
google l33t
google ewmew
xx-klingon
xx-piglatin
google bsd
google easter egg
answer to life the universe and everything
google mozilla
google gizoogle
Network Cameras
inurl:"viewerframe?mode=motion" (requires
activeX)
intitle:"snc-rz30 home" (requires activeX)
intitle:"WJ-NT104 Main"
inurl:LvAppl intitle:liveapplet (great pan
and zoom)
intitle:"Live View / - AXIS" (my favorite)
inurl:indexFrame.shtml "Axis Video Server"
Un-searchable Pages
"robots.txt" "disallow:" filetype:txt
FTP PASSWORD HASHES
intitle:index of ws_ftp.ini
intitle:"index of" passwd passwd.bak
FRONT PAGE HACK
inurl:_vti_pvt "service.pwd"
PHP PHOTO ALBUMS
inurl:"phphotoalbum/upload"
VNC HACK
"vnc desktop" inurl:5800 ....all the way up
to 5806
Printer Control Panel
intext"UAA(MSB)" Lexmark -ext:pdf
inurl:"port_255" -htm
PHP ADMINS
intitle:phpMyAdmin "Welcome to phpMyAdmin
***" "running on * as root@*"
Editor
javascript:document.body.contentEditable
='true'; document.designMode='on'; void 0
for the Flow code head over to the blog at
www.kidguru-techworld.blogspot.com all will
be posted there Tags : Google haclks tricks exploits bugs passwords network cameras codes cheats javascript browser google computer technology |
|
Affichage : 35195
Durée : 555 s |
| JavaScript Tutorial 1.2: Variables |
 |
In this installment, I'll be covering
JavaScript variables and how they're used, as
well as going back and making sure you've got
a thorough understanding of strings and their
proper syntax.
I apologize for the plethora (I think there
are two, actually...) of grammatical mistakes
that take place throughout (just one "page,"
actually...) the course of this tutorial.
Bloody YouTube cuts off the last second of
the video so the "red to white and back"
effect doesn't deliver on its last promise. Tags : JavaScript coding basics tutorial variables |
|
Affichage : 10742
Durée : 600 s |
| Google I/O 2008 - JavaScript and DOM Programming in GWT |
 |
Surprisingly Rockin' JavaScript and DOM
Programming in GWT
Bruce Johnson (Google)
You may already know about GWT's nifty
JavaScript Native Interface (JSNI), which
allows you to define native Java methods with
handwritten JavaScript. In GWT 1.5, there's
an even more powerful way to program close to
the metal. You can now model arbitrary
JavaScript types directly as Java classes
(specifically, as subclasses of GWT's
JavaScriptObject class), yet there is no
overhead in size or speed. You can code
against any JavaScript object as if it were a
regular old Java object. So, what does that
buy you?
* It's never been easier to integrate with
external JS libraries; just define a Java
class that models the JS object you want to
interact with. Nice Java syntax, no overhead.
* Freely use low-level native JS data
structures (JS arrays, for example) by
exposing them with a Java-friendly API. You
can even apply Java generics to JS types!
* Superimpose strongly-typed Java classes on
JSON objects, giving you IDE code completion,
refactoring and compile-time type checking.
* GWT uses this new ability to provide a
complete cross-browser DOM class hierarchy
based on the W3C's Java HTML bindings.
Programming straight to the DOM has never
been more productive.
Come learn about this unusual and powerful
new capability that you can use to squeeze
every drop of performance and interop out of
your GWT projects. Tags : Google I/O IO2008 GWT Web Toolkit |
|
Affichage : 11837
Durée : 4256 s |
|
|
|
|
|
|
|
|
|
|
 |
| |
|