HTML5 Boilerplate - Um padrão sólido para HTML5 impressionante. Tutorial: Debugging This tutorial introduces you to using Google Chrome's built-in Developer Tools to interactively debug an extension. To follow this tutorial, you need the Hello World extension that was featured in Getting Started. In this section, you'll load the extension and take a look at its information in the Extensions page. Load the Hello World extension if it isn't already running. If the extension is running, you'll see the Hello World icon to the right of your browser's address bar. If the Hello World extension isn't already running, find the extension files and load them. As long as your browser is in Developer mode, it's easy to inspect popups. Go to the Extensions page ( and make sure Developer mode is still enabled. The popup remains open as long as the Developer Tools window does. In this section, you'll follow the execution of the popup page as it adds images to itself. Use the buttons next to the play/pause button to step over, into, and out of function calls.
SWF Charts > Introduction XML/SWF Charts is a simple, yet powerful tool to create attractive charts and graphs from XML data. Create an XML source to describe a chart, then pass it to this tool's flash file to generate the chart. The XML source can be prepared manually, or generated dynamically using any scripting language (PHP, ASP, CFML, Perl, etc.) XML/SWF Charts makes the best of both the XML and SWF worlds. Features: Quick generation of charts and graphs from static or dynamic data (any scripting language) Full updates and data streaming without reloading the web page. Testimonials I just wanted to pass along how well your script worked for our stock performance page. Good work! This is amazing software. Just want to thank you for this wonderful upgrade. I purchased your product a couple days ago and first had time to sit down and work with it this morning. Wow, you are the best! Thanks for your great script. I am very excited to have found your product on "hotcripts". You are freaking amazing. THIS ROCKS!
Debugging JavaScript This document is intended to help developers writing JavaScript code in Mozilla, mainly for Mozilla itself, but it may also be useful for web developers. It should give pointers to tools, aids and tricks which make debugging your code easier. Web Console This is the first place to go when you're debugging a web page; open the Web console using the Web Console option in the Web Developer menu. This shows any JavaScript errors in your app, as well as any logging calls from the console API. Browser Console The Browser Console lets you see all JavaScript errors and logging in the browser, including from Firefox code. You can also start the Browser Console when you launch Firefox, by launching Firefox from the command line and passing --jsconsole as a flag: /path/to/firefox --jsconsole Log to the Browser Console using the standard console API after importing Console.jsm: let console = (Cu.import(" {})).console; console.log("Hello from Firefox code");
Javascript Syntax Checking From Vim | Mike Cantelon Syntax checking from vim is handy. By checking your Javascript syntax from vim, rather than the browser, you'll save time and aggravation. To do it, you'll need Spidermonkey, which allows you to run Javascript without a browser, and JsLint, a Javascript syntax-checker writter in Javascript. Installing Spidermonkey Consult the build instructions page for installation instructions for many architectures, or use the quick instructions below for Ubuntu and Centos. Quick install for Ubuntu sudo apt-get install spidermonkey-bin. Once you've installed Spidermonkey you'll be able to enter a Javascript shell by entering the command 'js' (exit with CTRL-d). Setting Up JsLint Next you'll need to download the JsLint Javascript syntax checking library. Download it and put it somewhere handy, for example: wget mv fulljslint.js /home/admin/bin/js Running JsLint For example, I could create a file called runjslint.js like this as /home/admin/bin/js/runjslint.js: cabbr js ! #!
Internet Explorer Learning - F12 Developer Tools Internet Explorer 8 fue el primer navegador en proporcionar herramientas de desarrollo integradas para ayudar a los desarrolladores en la creación rápida de prototipos, pruebas y depurar páginas Web y permitirles ver los cambios realizados por ellos, directamente en el navegador. Como novedades en Internet Explorer 9 se incluye la posibilidad de cambiar a versiones anteriores del navegador IE, un inspector de tráfico de red, un analizador de JavaScript mejorado y soporte integrado para los nuevos estándares web con Internet Explorer 9. Tutoriales Volver arriba Videos Circular Memory Leak DetectionEn este vídeo, Matt Hester discute mejoras de administración de memoria de Internet Explorer que reducirá los efectos de pérdidas de memoria creados por referencias circulares entre objetos de Microsoft Jscript y Document Object Model (DOM). Depurar JavaScriptEn este vídeo, Matt Hester muestra las herramientas integradas de Internet Explorer y cómo utilizarlos eficazmente para depurar JavaScript.
25 Handy Freelance Web Designer Tools A freelancer’s job can prove as hectic as any other profession, even more so when you consider all the documents, images, passwords, conversations, instructions etc that the freelancer must store and keep track of. Over the years keeping track of all that goes on within this profession has become somewhat easier with the introduction of a plethora of online tools. Services like Dropbox and Box have made it easier to access documents on the move, and other services such as Plaxo have given us the opportunity to merge all of our contacts from various services and access them on the go through a variety of devices. In this post you'll find a useful list of online tools that you can use to help organise and track your daily freelancing life. Also included are some websites that offer you free downloads such as PSD files, brushes and icons to help speed up the creative process of your work. Communication Tools Finance Tools Blinksale Send invoices and process payments easily with Blinksale.
JavaScriptSource.com - Free JavaScripts, Tutorials, Example Code, Reference, Resources, And Help Home JavaScript JavaScript (JS) es un lenguaje de programación ligero, interpretado, o compilado justo-a-tiempo (just-in-time) con funciones de primera clase. Si bien es más conocido como un lenguaje de scripting (secuencias de comandos) para páginas web, y es usado en muchos entornos fuera del navegador, tal como Node.js, Apache CouchDB y Adobe Acrobat JavaScript es un lenguaje de programación basada en prototipos, multiparadigma, de un solo hilo, dinámico, con soporte para programación orientada a objetos, imperativa y declarativa (por ejemplo programación funcional). Lee más en acerca de JavaScript. Esta sección está dedicada al lenguaje JavaScript en sí, y no a las partes que son específicas de las páginas web u otros entornos host. Para información acerca de APIs específicas para páginas Web, consulta APIs Web y DOM. El estándar para JavaScript es ECMAScript (ECMA-262) y la especificación de la API para la Internacionalización de ECMAScript (ECMA-402). Empieza aquí Tutoriales JavaScript asíncrono
Lucene: high-performance, full-featured text search engine Java library. Apache LuceneTM is a high-performance, full-featured text search engine library written entirely in Java. It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. Apache Lucene is an open source project available for free download. Please use the links on the right to access Lucene. Lucene offers powerful features through a simple API: Scalable, High-Performance Indexing over 150GB/hour on modern hardwaresmall RAM requirements -- only 1MB heapincremental indexing as fast as batch indexingindex size roughly 20-30% the size of text indexed Powerful, Accurate and Efficient Search Algorithms Cross-Platform Solution Available as Open Source software under the Apache License which lets you use Lucene in both commercial and Open Source programs100%-pure JavaImplementations in other programming languages available that are index-compatible The Apache Software Foundation
Referencia de JavaScript Objetos globales Valor de las propiedades Las propiedades globales regresan un valor simple. Propiedades de la Función Funciones globales retornando el resultado de una rutina específica. Sentencias For an alphabetical listing see the sidebar on the left. Control flow Block A block statement is used to group zero or more statements. break Terminates the current loop, switch, or label statement and transfers program control to the statement following the terminated statement. continue Terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration. Empty An empty statement is used to provide no statement, although the JavaScript syntax would expect one. if...else Executes a statement if a specified condition is true. switch Evaluates an expression, matching the expression's value to a case clause, and executes statements associated with that case. throw Throws a user-defined exception. try...catch Declarations var let