SØG - mellem flere end 8 millioner bøger:

Søg på: Titel, forfatter, forlag - gerne i kombination.
Eller blot på isbn, hvis du kender dette.

Viser: Even Faster Web Sites - Performance Best Practices for Web Developers

Even Faster Web Sites, 1. udgave
Søgbar e-bog

Even Faster Web Sites Vital Source e-bog

Steve Souders
(2009)
O'Reilly Media, Inc
299,00 kr.
Leveres umiddelbart efter køb
Even Faster Web Sites, 1. udgave
Søgbar e-bog

Even Faster Web Sites Vital Source e-bog

Steve Souders
(2009)
O'Reilly Media, Inc
273,00 kr.
Leveres umiddelbart efter køb
Even Faster Web Sites - Performance Best Practices for Web Developers, 2. udgave

Even Faster Web Sites

Performance Best Practices for Web Developers
Steve Souders
(2009)
Sprog: Engelsk
O'Reilly Media, Incorporated
317,00 kr.
ikke på lager, Bestil nu og få den leveret
om ca. 10 hverdage

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Reflowable pages): 256 sider
  • Udgiver: O'Reilly Media, Inc (Juni 2009)
  • ISBN: 9780596555849
Performance is critical to the success of any web site, and yet today's web applications push browsers to their limits with increasing amounts of rich content and heavy use of Ajax. In this book, Steve Souders, web performance evangelist at Google and former Chief Performance Yahoo!, provides valuable techniques to help you optimize your site's performance. Souders' previous book, the bestselling High Performance Web Sites, shocked the web development world by revealing that 80% of the time it takes for a web page to load is on the client side. In Even Faster Web Sites, Souders and eight expert contributors provide best practices and pragmatic advice for improving your site's performance in three critical categories: JavaScript—Get advice for understanding Ajax performance, writing efficient JavaScript, creating responsive applications, loading scripts without blocking other components, and more. Network—Learn to share resources across multiple domains, reduce image size without loss of quality, and use chunked encoding to render pages faster. Browser—Discover alternatives to iframes, how to simplify CSS selectors, and other techniques. Speed is essential for today's rich media web sites and Web 2.0 applications. With this book, you'll learn how to shave precious seconds off your sites' load times and make them respond even faster. This book contains six guest chapters contributed by Dion Almaer, Doug Crockford, Ben Galbraith, Tony Gentilcore, Dylan Schiemann, Stoyan Stefanov, Nicole Sullivan, and Nicholas C. Zakas.
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: -1 sider kan printes ad gangen
Copy: højest -1 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Fixed pages): 256 sider
  • Udgiver: O'Reilly Media, Inc (Juni 2009)
  • ISBN: 9780596551193
Performance is critical to the success of any web site, and yet today's web applications push browsers to their limits with increasing amounts of rich content and heavy use of Ajax. In this book, Steve Souders, web performance evangelist at Google and former Chief Performance Yahoo!, provides valuable techniques to help you optimize your site's performance. Souders' previous book, the bestselling High Performance Web Sites, shocked the web development world by revealing that 80% of the time it takes for a web page to load is on the client side. In Even Faster Web Sites, Souders and eight expert contributors provide best practices and pragmatic advice for improving your site's performance in three critical categories: JavaScript—Get advice for understanding Ajax performance, writing efficient JavaScript, creating responsive applications, loading scripts without blocking other components, and more. Network—Learn to share resources across multiple domains, reduce image size without loss of quality, and use chunked encoding to render pages faster. Browser—Discover alternatives to iframes, how to simplify CSS selectors, and other techniques. Speed is essential for today's rich media web sites and Web 2.0 applications. With this book, you'll learn how to shave precious seconds off your sites' load times and make them respond even faster. This book contains six guest chapters contributed by Dion Almaer, Doug Crockford, Ben Galbraith, Tony Gentilcore, Dylan Schiemann, Stoyan Stefanov, Nicole Sullivan, and Nicholas C. Zakas.
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: 10 sider kan printes ad gangen
Copy: højest 10 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • 2. Udgave
  • Paperback: 254 sider
  • Udgiver: O'Reilly Media, Incorporated (Juni 2009)
  • ISBN: 9780596522308

Performance is critical to the success of any web site, and yet today's web applications push browsers to their limits with increasing amounts of rich content and heavy use of Ajax. In this book, Steve Souders, web performance evangelist at Google and former Chief Performance Yahoo!, provides valuable techniques to help you optimize your site's performance.

Souders' previous book, the bestselling High Performance Web Sites, shocked the web development world by revealing that 80% of the time it takes for a web page to load is on the client side. In Even Faster Web Sites, Souders and eight expert contributors provide best practices and pragmatic advice for improving your site's performance in three critical categories:

  • JavaScript--Get advice for understanding Ajax performance, writing efficient JavaScript, creating responsive applications, loading scripts without blocking other components, and more.
  • Network--Learn to share resources across multiple domains, reduce image size without loss of quality, and use chunked encoding to render pages faster.
  • Browser--Discover alternatives to iframes, how to simplify CSS selectors, and other techniques.

Speed is essential for today's rich media web sites and Web 2.0 applications. With this book, you'll learn how to shave precious seconds off your sites' load times and make them respond even faster.

This book contains six guest chapters contributed by Dion Almaer, Doug Crockford, Ben Galbraith, Tony Gentilcore, Dylan Schiemann, Stoyan Stefanov, Nicole Sullivan, and Nicholas C. Zakas.

Credits;Preface; How This Book Is Organized; Conventions Used in This Book; Comments and Questions; Using Code Examples; Safari® Books Online; Acknowledgments;
Chapter 1: Understanding Ajax Performance;
1.1 Trade-offs;
1.2 Principles of Optimization;
1.3 Ajax;
1.4 Browser;
1.5 Wow!;
1.6 JavaScript;
1.7 Summary;
Chapter 2: Creating Responsive Web Applications;
2.1 What Is Fast Enough?;
2.2 Measuring Latency;
2.3 Threading;
2.4 Ensuring Responsiveness;
2.5 Summary;
Chapter 3: Splitting the Initial Payload;
3.1 Kitchen Sink;
3.2 Savings from Splitting;
3.3 Finding the Split;
3.4 Undefined Symbols and Race Conditions;
3.5 Case Study: Google Calendar;
Chapter 4: Loading Scripts Without Blocking;
4.1 Scripts Block;
4.2 Making Scripts Play Nice;
4.3 Browser Busy Indicators;
4.4 Ensuring (or Avoiding) Ordered Execution;
4.5 Summarizing the Results;
4.6 And the Winner Is;
Chapter 5: Coupling Asynchronous Scripts;
5.1 Code Example: menu.js;
5.2 Race Conditions;
5.3 Preserving Order Asynchronously;
5.4 Multiple External Scripts;
5.5 General Solution;
5.6 Asynchronicity in the Real World;
Chapter 6: Positioning Inline Scripts;
6.1 Inline Scripts Block;
6.2 Preserving CSS and JavaScript Order;
6.3 Danger: Stylesheet Followed by Inline Script;
Chapter 7: Writing Efficient JavaScript;
7.1 Managing Scope;
7.2 Efficient Data Access;
7.3 Flow Control;
7.4 String Optimization;
7.5 Avoid Long-Running Scripts;
7.6 Summary;
Chapter 8: Scaling with Comet;
8.1 How Comet Works;
8.2 Transport Techniques;
8.3 Cross-Domain;
8.4 Effects of Implementation on Applications;
8.5 Summary;
Chapter 9: Going Beyond Gzipping;
9.1 Why Does This Matter?;
9.2 What Causes This?;
9.3 How to Help These Users?;
Chapter 10: Optimizing Images;
10.1 Two Steps to Simplify Image Optimization;
10.2 Image Formats;
10.3 Automated Lossless Image Optimization;
10.4 Alpha Transparency: Avoid AlphaImageLoader;
10.5 Optimizing Sprites;
10.6 Other Image Optimizations;
10.7 Summary;
Chapter 11: Sharding Dominant Domains;
11.1 Critical Path;
11.2 Who's Sharding?;
11.3 Downgrading to HTTP/1.0;
11.4 Rolling Out Sharding;
Chapter 12: Flushing the Document Early;
12.1 Flush the Head;
12.2 Output Buffering;
12.3 Chunked Encoding;
12.4 Flushing and Gzip;
12.5 Other Intermediaries;
12.6 Domain Blocking During Flushing;
12.7 Browsers: The Last Hurdle;
12.8 Flushing Beyond PHP;
12.9 The Flush Checklist;
Chapter 13: Using Iframes Sparingly;
13.1 The Most Expensive DOM Element;
13.2 Iframes Block Onload;
13.3 Parallel Downloads with Iframes;
13.4 Connections per Hostname;
13.5 Summarizing the Cost of Iframes;
Chapter 14: Simplifying CSS Selectors;
14.1 Types of Selectors;
14.2 The Key to Efficient CSS Selectors;
14.3 CSS Selector Performance;
14.4 Measuring CSS Selectors in the Real World;Performance Tools; Packet Sniffers; Web Development Tools; Performance Analyzers; Miscellaneous;Colophon;
De oplyste priser er inkl. moms

Senest sete

Polyteknisk Boghandel

har gennem mere end 50 år været studieboghandlen på DTU og en af Danmarks førende specialister i faglitteratur.

 

Vi lagerfører et bredt udvalg af bøger, ikke bare inden for videnskab og teknik, men også f.eks. ledelse, IT og meget andet.

Læs mere her


Trykt eller digital bog?

Ud over trykte bøger tilbyder vi tre forskellige typer af digitale bøger:

 

Vital Source Bookshelf: En velfungerende ebogsplatform, hvor bogen downloades til din computer og/eller mobile enhed.

 

Du skal bruge den gratis Bookshelf software til at læse læse bøgerne - der er indbygget gode værktøjer til f.eks. søgning, overstregning, notetagning mv. I langt de fleste tilfælde vil du samtidig have en sideløbende 1825 dages online adgang. Læs mere om Vital Source bøger

 

Levering: I forbindelse med købet opretter du et login. Når du har installeret Bookshelf softwaren, logger du blot ind og din bog downloades automatisk.

 

 

Adobe ebog: Dette er Adobe DRM ebøger som downloades til din lokale computer eller mobil enhed.

 

For at læse bøgerne kræves særlig software, som understøtter denne type. Softwaren er gratis, men du bør sikre at du har rettigheder til installere software på den maskine du påtænker at anvende den på. Læs mere om Adobe DRM bøger

 

Levering: Et download link sendes pr email umiddelbart efter købet.

 


Ibog: Dette er en online bog som kan læses på udgiverens website. 

Der kræves ikke særlig software, bogen læses i en almindelig browser.

 

Levering: Vores medarbejder sender dig en adgangsnøgle pr email.

 

Vi gør opmærksom på at der ikke er retur/fortrydelsesret på digitale varer.