Search: code.google.com
*HTML/CSS Font Preview - Google Font Directory
Submitted by matt 51 days ago (more from code.google.com)A nice, live editing preview tool for the Google Fonts API, which is basically a shortcut to manually using the CSS3 @font-face property. The difference is, Google will do all the hard work in getting the font to work in non-CSS3 browsers such as Internet Explorer.
*Miscellaneous diffable
Submitted by matt 62 days ago (more from code.google.com)A method for reducing page load latency by transmitting differential encodings of static files. It works by sending deltas between versions of files that reside in a browser's cache. Files such as Javascript, HTML, and CSS are often updated every week or more, but change very little between versions. This method significantly reduces the bandwidth and transmission time for these files.
*HTML/CSS Optimize browser rendering
Submitted by matt 108 days ago (more from code.google.com)Once resources have been downloaded to the client, the browser still needs to load, interpret, and render HTML, CSS, and Javascript code. By simply formatting your code and pages in ways that exploit the characteristics of current browsers, you can enhance performance on the client side. Avoiding inefficient key selectors that match large numbers of elements can speed up page rendering.
*HTML/CSS Google Font Directory
Submitted by matt 113 days ago (more from code.google.com)Browse all the fonts available via the Google Font API. All fonts in the directory are available for use on your website under an open source license and served by Google servers. You don't need to do any programming; all you have to do is add a special stylesheet link to your HTML document, then refer to the font in a CSS style.
*HTML/CSS Zen Coding — a new way of writing HTML and CSS code
Submitted by matt 129 days ago (more from code.google.com)Zen Coding is an editor plugin for high-speed HTML, XML, XSL (or any other structured code format) coding and editing. The core of this plugin is a powerful abbreviation engine which allows you to expand expressions—similar to CSS selectors—into HTML code.
*Programming minify - Combines, minifies, and caches JavaScript and CSS files on demand
Submitted by matt 216 days ago (more from code.google.com)Minify is a PHP5 app that helps you follow several of Yahoo!'s Rules for High Performance Web Sites. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers.
*Programming Closure Compiler - make JavaScript download and run faster
Submitted by matt 286 days ago (more from code.google.com)Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left.
*Programming Optimizing JavaScript code
Submitted by matt 1 year and 53 days ago (more from code.google.com)Client-side scripting can make your application dynamic and active, but the browser's interpretation of this code can itself introduce inefficiencies, and the performance of different constructs varies from client to client. Here we discuss a few tips and best practices to optimize your JavaScript code. Features: Working with strings (string concatenation), avoiding pitfalls with closures and more
*Miscellaneous Let's make the web faster
Submitted by matt 1 year and 76 days ago (more from code.google.com)There are many ways to make websites run faster. In this section, you can discover performance best practices that real web professionals employ in their everyday work. These practices have improved the user experience for millions of users and we hope they are useful for other web developers.
*Programming jsPDF - Dynamically Generic PDFs with JavaScript
Submitted by matt 1 year and 140 days ago (more from code.google.com)jsPDF generates PDF documents using nothing but Javascript. You can use it in a Firefox extension, in Server Side Javascript and with Data URIs in some browsers. It currently only supports simple text, but I’m working on images and font embedding at the moment.