User: psycofloyd |
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! 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 |
User: googletechtalks |
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 |
User: googletechtalks |
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 |
User: Google |
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. Tags: v8 Javascript browser. google chrome developer open source |
User: GoogleDevelopers |
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/developers_guide_js.html blog.gears sample app: http://gdata-javascript-client.googlecode.com/svn/trunk/samples/blogger/bloggears/bloggears.html All JavaScript samples: http://code.google.com/apis/gdata/samples.html#JavaScript Tags: google blogger javascript gears |
User: lakercoolman |
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 |
User: cupid |
Essentials of the DOM and JavaScript in 10 Minutes A screencast of an upcoming workshop on DOM and JavaScript explaining the elements of the DOM and how to script it in JavaScript Tags: DOM JavaScript tutorial screencast |
User: JavaScriptTeacher |
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 |
User: GoogleDevelopers |
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 |
User: Josematube |
Tutorial javascript dom programacion internet videotutorial javascript dom tutorial. programacion internet Realizado por y para http://www.tutorial-lab.com Tags: javascript videotutorial tutorial dom programacion internet |
User: JavaScriptTeacher |
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 of my recent history at 1:33, and for that I apologize. "absolutely necessity": that should be "absolute." The error message display comes courtesy of Firebug, an incredibly useful Firefox add-on. The song is Beethoven's Ninth Symphony. (Those with epilepsy should stop watching this tutorial about ten seconds before its end to be safe...) Tags: JavaScript coding basics tutorial |
User: FishThatDrown |
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. Tags: Javascript HTML Tutorial Functions computers webdesign alert explicit |
User: GoogleDevelopers |
AJAX Libraries API: A CDN for JavaScript libraries The AJAX Libraries API is a CDN for the popular open source JavaScript libraries. We are starting with jQuery, Prototype, Script.aulo.us, Dojo, and MooTools, and will expand from here. Learn more about why you should use the Google CDN to access these libraries. Tags: ajax programming ajaxlibrariesapi ajaxapi google cdn |
User: lockergnome |
How Does Your Web Browser Handle JavaScript? http://geeks.pirillo.com - http://live.pirillo.com - Google Chrome has been officially in beta for about a month now. Many of you are using it for your default browser already at this point. I wrote about Google Chrome this month for my CPU Magazine article. I want to discuss one of those points with all of you now. http://chris.pirillo.com Tags: blog browser chrome gadgets google help information java javascript pirillo video |
User: junior123571 |
hackeando orkut com javascript hackeando Tags: hackeando orkut |
User: GoogleDevelopers |
Using the JavaScript Client Library with Google Calendar Interactive JavaScript Developers Guide: http://code.google.com/apis/calendar/developers_guide_js.html Austin Chau does a short tutorial about how to use the JavaScript Client Library with the Google Calendar Data API. Calendar Data API home: http://code.google.com/apis/calendar/ Tags: google calendar javascript tutorial screencast client library walkthrough |
User: GoogleDevelopers |
Google I/O 2008 - Server-side JavaScript on the Java VM Server-side JavaScript on the Java Virtual Machine Steve Yegge (Google) After over a decade in the browser space, JavaScript is making a surprise move into the server programming space. Mozilla Rhino is turning JavaScript into a compelling option for Java programmers. Will JavaScript be the next server-side programming language? In this talk I will do a deep dive into Rhino's technology, and I'll demonstrate some of its many uses in server-side computing. Tags: Google I/O IO2008 JavaScript |
User: tutvid |
Using Dreamweaver Behaviors - JavaScript Form Validation!!! Check this video out at Hi-Res here: http://www.tutvid.com/tutorials/dreamweaver/tutorials/formValidation.php In this video we will cover form validation. Form validation is a super important aspect of forms in dreamweaver and in all of web design for that matter. Form validation insures you recieve emails with valid information(for the most part) and helps users understand when they need to submit more information about themselves when they use your web form! Have fun and please check out http://www.tutvid.com for more free training material! Tags: Adobe Dreamweaver CS3 Form Validate Validation JavaScript Java Script XHTML Web Website Design Coding Behaviors |
User: JavaScriptTeacher |
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 and subsequent tutorials; while Beethoven's almost always a good listen, adding sound to the video was drastically reducing its quality. Hey, if you feel the music helped, why not throw it on while you read? There are a few grammatical mistakes, as well as my first typing mistake (bummer...), and for these I apologize. Somewhere in there, you'll notice that JavaScript isn't the greatest handler of multiplication problems, but no worries, I'll explain why this is as well as how to alleviate the problem in a future tutorial. Tags: JavaScript coding prompt functions teach tutorial |
User: marc180292 |
Firefox 3 vs. Safari : Javascript A small benchmark test that will see which is a faster web browser (in terms of JavaScript) Guess who wins Tags: marc tatossian marc180292 mac os leopard snoe apple safari mozilla firefox 3.1 benchmark test javascript iphone fast |
User: jcherreram |
JavaOne 2008: JavaScript support in Netbeans JavaScript support in Netbeans Tags: J1 JavaOne 2008 Netbeans JavaScript |
User: waynehoggett |
AJAX 101: Introduction to Javascript (s1e02) This tutorial demonstrates how to create a HTML document. Then add some JavaScript to display text on the page. Please excuse the pauses in the video, I'm fairly new to JavaScript. Tags: ajax javascript html ajax101 |
User: googletechtalks |
Developing JavaScript with Chickenfoot Google TechTalks July 25, 2006 Rob Miller Michael Bolin ABSTRACT Chickenfoot is a Firefox extension that embeds a JavaScript programming environment in the browser's sidebar. Unlike a JavaScript shell that simply supplies access to the DOM of a webpage, Chickenfoot provides users with a high-level API, making web scripting accessible to end-user programmers as well as hackers. In this talk we will present the design and implementation of Chickenfoot; in particular, our novel technique of using keyword patterns to identify page components. We will also demonstrate how to use Chickenfoot for debugging webapps and creating rapid prototypes. In fact, we'll write a Firefox extension in under a... Tags: javascript google howto |
User: waynehoggett |
AJAX 101: Understanding JavaScript Errors (s1e04) A quick lesson on JavaScript errors. I have changed the way I presented this tutorial a little after some negative feedback, let me know what you think. Tags: ajax javascript html ajax101 |
User: GoogleDevelopers |
Google does cross domain read/write JavaScript Today is a milestone. Jun Yang and the GData team released GData JavaScript Client Library for Calendar. This is a JavaScript API that allows you to do fully authenticated, secure, read/write access from the browser. Jun took some time to introduce the concept. Samples: http://code.google.com/apis/gdata/samples.html#JavaScript Developer's Guide: http://code.google.com/apis/calendar/developers_guide_js.html Tags: google gdata api javascript crossdomain ajax |