SlideShare a Scribd company logo
Measuring
Web Performance
Dave Olsen, @dmolsen
West Virginia University
RWD Summit
http://flic.kr/p/7A8xxN
slideshare.net/dmolsenwvu
introduction about me
@dmolsen
What I’ll Talk About
• Quick Intro About Why We
Should Care About Web Perf
• Tools for Measuring Web
Performance
• Setting Up a Device Lab
• Responsive Design + Server-
side Solutions
WHY SHOULD WE CARE ABOUT
WEB PERFORMANCE?
http://flic.kr/p/4JY1Yr
brad’s iceberg
© Brad Frost
© Brad Frost
The way in which CSS media
queries have been promoted for
mobile hides tough problems
and gives developers a false
promise of a simple solution for
designing for small screens.
Source: Jason Grigsby on Speakerdeck
“
”- Jason Grigsby
@grigs
brad’s iceberg
© Brad Frost© Brad Frost
© Brad Frost
The average weight of a web page today.
Source: HTTP Archive
Images JavaScript
Flash
HTML
CSS
Other
77%
1.3 MB
RWD sites whose
small screen design
weighs the same as the
large screen design.
Source: Podjarny
72%
Users expect your
mobile site to load
as quickly as your
desktop site.
71%
Source: Gomez
Bounce Rate
Conversion
Rate Cart Size PageViews
200ms - - - -1.2%
500ms -4.7% -1.9% - -5.7%
1000ms -8.3% -3.5% -2.1% -9.4%
CASE STUDY:
MOBILE PERFORMANCE EFFECT ON BUSINESS
Source: Web Performance Today
Mobile first means
performance first.
(start thinking about performance at the design stage)
Over Downloading
Download & Hide
Download & Shrink
Download & Ignore
PRIMARY PERFORMANCE ISSUES FOR RWD
Poor Networks
High Latency
Variable Bandwidth
Packet Loss
BREAKING DOWN A REQUEST
DNS (1ms)
Connecting (61ms)
Waiting (199ms)
Receiving (790ms)
MOBILE OPTIMIZATION
FOCUS
1. Reduce requests
2. Reduce asset size
3. Speed-up page
render
http://flic.kr/p/4zzKee
Best request is no request.
Worst request is one that
blocks the parser.
Source: Ilya Grigorik
“
”- Ilya Grigorik
@ilyagrigorik
Browser
cache
The simplest way to reduce requests is to make sure the
browser doesn’t need to make them. Make sure assets
are bring cached on the browser.
Concatenate
JS & CSS
Combine similar files together in one or multiple larger
files to reduce requests. May harm performance too.
Lazy load
content
Don’t make requests until necessary. Filament Group’s
AJAX Include Pattern or lazyBlock.
data: URI For small images & fonts try embedding them in your
CSS file by using the data: URI.
Conditional
loading
Use a resource loader like Modernizr.load to
conditionally include JavaScript & CSS files.
1. REDUCE REQUESTS
HTML & CSS
compression
Use mod_deflate to make sure text-based assets are
compressed for transfer.
Image
compression
Use a service like kraken.io to optimize images.
Also use CSS sprites as appropriate.
Try to avoid
images
When possible think about avoiding images.
Implement with CSS or Canvas. Or use SVG or
Progressive JPEGs.
Minification Use a minifying service to make sure text-based assets
are as small as possible. If using PHP use Minify.
MicroJS or,
even better,
Vanilla JS
Avoid using bulky frameworks if you’re using them for
simple tasks like selectors. Try microjs.com to find
libraries that may be smaller & more suitable.
JavaScript also blocks the rendering of the page.
2. REDUCE ASSET SIZE
Avoid DOM
reflows &
repaints
By using JS to modify the DOM you can cause
unnecessary reflows & repaints of your browser. They
slow down page render time as well as burn battery.
Defer
loading of
JavaScript
Use HTML5’s script defer & async attributes to delay
downloading files. Can also insert script elements into
the DOM using the onLoad event.
Lazy load
JavaScript
Comment out JavaScript that isn’t required at page load.
Uncomment & eval() when required.
Touch beats
onClick
While not directly related to page render, by making
sure your links use a Touch event rather than an onClick
event user interactions will speed up by 300ms.
Avoid SM
widgets
Try using simple links to services rather than utilizing the
JavaScript widgets. They’re performance hogs.
3. SPEED-UP PAGE RENDER
Testing Tools
toolbox, tools
WEB PERFORMANCE
TOOLS
http://flic.kr/p/4BZsQJ
Diagnostic
Tools
Automated
Tools
Diagnostic
Tools
Automated
Tools
LEARN TO LOVE THE INSPECTOR
FOLLOW ALONG BY OPENING THE
DEVELOPER TOOLS IN CHROME
SAVE YOURSELF A HEADACHE &
DISABLE CACHE WHEN TESTING
EXPLAINING THE NETWORK PANEL:
RESOURCE SIZE
transferred size
real size
re-order
EXPLAINING THE NETWORK PANEL:
LATENCY
latency + download
latency
re-order
EXPLAINING THE NETWORK PANEL:
EVENTS
domcontentloaded
onload
EXPLAINING THE NETWORK PANEL:
SAVING HAR FILES FOR COMPARISON
save HAR file locally
A narrower, shorter
waterfall is the goal.
http://flic.kr/p/bMdzZ2
Performance
http://timkadlec.com/2013/01/setting-a-performance-budget/http://flic.kr/p/7BBs6e
A guide, not a hard & fast limit.
Performance tweaks are compromises.
EXPLAINING THE TIMELINE PANEL
EXPLAINING THE PROFILES PANEL:
CSS SELECTORS
EXPLAINING THE PROFILES PANEL:
CSS SELECTORS
EXPLAINING THE AUDITS PANEL
PAGESPEED INSIGHTS EXTENSION
https://developers.google.com/speed/pagespeed/insights
REMOTE DEBUGGING
Google Analytics Site Speed
http://www.httpwatch.com
IE & FIREFOX PERFORMANCE ISSUES
Google Analytics Site Speed
GOOGLE ANALYTICS’ SITE SPEED
PERFORMANCE TESTING PROXIES
MobitestWebPagetest
Google Analytics Site Speed
http://www.slideshare.net/AndyDavies/web-page-test-beyond-the-basics
WebPagetest - BEYOND THE BASICS
Google Analytics Site Speed
CUSTOMIZING WebPagetest:
CAPTURING EVENTS AFTER ONLOAD
CUSTOMIZING WebPagetest:
BLACKHOLES FOR REQUESTS
Google Analytics Site Speed
CUSTOMIZING WebPagetest:
SCRIPTING & CUSTOM VIEWPORTS
CUSTOMIZING WebPageTest:
VIDEO COMPARISON
CUSTOMIZING WebPageTest:
VIDEO COMPARISON - SMALL VIEWPORT
mobile bookmarklet
THE ULTIMATE MOBILE
PERFORMANCE BOOKMARKLET
charlesproxy.com
SLOWING THINGS DOWN
ThrottleCharles
USING CHARLES PROXY
http://blog.cloudfour.com/using-charles-proxy-to-examine-ios-apps/
TEST & OPTIMIZE JAVASCRIPT WITH JSPERF
http://jsperf.com
W3C’s NAVIGATION TIMING
http://www.w3.org/TR/navigation-timing/
http://www.html5rocks.com/en/tutorials/webperformance/basics/
Diagnostic
Tools
Automated
Tools
mod_pagespeed AUTOMATES A LOT
http://developers.google.com/speed/pagespeed/mod
  add_head
  combine_css
   convert_jpeg_to_progressive
   convert_meta_tags
   extend_cache
   flatten_css_imports
   inline_css
   inline_import_to_link
   inline_javascript
   rewrite_css
   rewrite_images
   rewrite_javascript
   rewrite_style_attributes_with_url
Default Filters
CodeKit
CODEKIT: WEB PERF IN YOUR WORKFLOW
  Optimize Images
  Combine & Minify
Features
http://incident57.com/codekit/
DEVICES
http://flic.kr/p/cfkZhN
charlesproxy.com
EMULATING MOBILE DEVICES
EmulatorsBrowserStack
eBay
MobileKarma.com
Cellphone store leftovers
Open device labs
GET YOUR HANDS ON
REAL DEVICES
http://flic.kr/p/7972f6
OPENDEVICELAB.COM
Base on:
WiFi-capable, Analytics
Rank, OS, Screen
Dimensions, & Cost
Suggested focus:
iPod Touch, mid-level
Android, high-end Android,
a tablet, Blackberry,
Windows Phone 7
HOW TO DECIDE WHICH TO GET
iPod Touch
Samsung Fascinate +
Google Nexus +
$438
Example:
ADOBE EDGE INSPECT
(THE APP FORMERLY KNOWN AS ADOBE SHADOW)
Measuring Web Performance
RESS* can be a scalpel
for your responsive designs.
REsponsive Design + Server Side Components
http://flic.kr/p/a4VsPv
One...
URL.
Set of Mark-up.
Deployment.
WHY USE RWD
futurefriend.ly
balloons
http://flic.kr/p/h6McT
TIME TO PARTY!
http://flic.kr/p/8x6b8X
NOT SO FAST, MY FRIENDS...
Image & Video Media
3rd Party Content
One Set of Mark-up
CHALLENGES FOR RWD
STANDARDS ARE STILL DEVELOPING
What is RESS?
Responsive Web Design +
Server Side Components
(I have no idea what becomes of the W, D, or C)
- Luke Wroblewski
@lukew
http://www.lukew.com/ff/entry.asp?1392
In a nutshell, RESS combines adaptive layouts
with server side component (not full page)
optimization. So a single set of page templates
define an entire Web site for all devices but key
components within that site have device-class
specific implementations that are rendered
server side.
“
”
http://www.lukew.com/ff/entry.asp?1509
- Luke Wroblewski
@lukew
• If you want layout adjustments across devices.
• And optimization at the component level to
increase performance or tune user experience.
• You trust server-side device detection with
sensible defaults.
“
”
DESKTOPWEBM-ADVANCED
ress.dmolsen.com
MOBILEBASIC
Infancy
http://flic.kr/p/7B7uyp
RESS IS IN ITS INFANCY
ND data
http://weedygarden.net/2012/05/a-case-for-ress/
Large Screen:
136 requests @ 2.7MB
Small Screen:
23 requests @ 291K
developers and designers
http://flic.kr/p/7Ma9n
DESIGNERS + DEVELOPERS?
Two Possible Solutions
Server-side
Solutions
http://flic.kr/p/9jatna
Browser Detection#1
Server-side
Feature Detection#2
• Requires server-side
languages.
• Server-side feature detection
so it can be spoofed.
• RESS isn’t a silver bullet.
• Data needs to be separated
from layout.
CHALLENGES FOR RESS
- Jon Arnes Sæterås
@jonarnes
http://mpulp.mobi/2011/05/next-steps-of-responsive-web-design/
It is not only the design of the web site and
the layout of content that needs to be adapted
or enhanced; the idea of being responsive,
adaptive and enhancing, must be implemented
in the whole value chain.
“
”
WEB PERF TWEEPS TO FOLLOW
@ilyagrigorik
@andydavies
@souders @patmeenan
@stoyanstefanov
@joshuabixby @yoavweiss@scottjehl
just a sampling
Doug Gapinski
Strategist
mStoner
@thedougco
SPECIAL THANKS TO...
QUESTIONS?
Dave Olsen
Professional Technologist
West Virginia University
@dmolsen
THANKS FOR LISTENING

More Related Content

PPTX
Cross Site Scripting
Ali Mattash
 
KEY
Cross Site Scripting - Mozilla Security Learning Center
Michael Coates
 
PPTX
Responsive web designing ppt(1)
admecindia1
 
PPTX
Dos attack
Manjushree Mashal
 
PDF
Cross site scripting attacks and defenses
Mohammed A. Imran
 
PDF
Cookie replay attack unit wise presentation
Nilu Desai
 
PPTX
Web servers
Kuldeep Kulkarni
 
PPTX
Basics of the Web Platform
Sanjeev Verma, PhD
 
Cross Site Scripting
Ali Mattash
 
Cross Site Scripting - Mozilla Security Learning Center
Michael Coates
 
Responsive web designing ppt(1)
admecindia1
 
Dos attack
Manjushree Mashal
 
Cross site scripting attacks and defenses
Mohammed A. Imran
 
Cookie replay attack unit wise presentation
Nilu Desai
 
Web servers
Kuldeep Kulkarni
 
Basics of the Web Platform
Sanjeev Verma, PhD
 

What's hot (20)

PPT
Introduction to Web Hosting.
Cloudbells.com
 
PDF
Web Design & Development - Session 1
Shahrzad Peyman
 
PDF
WEB HOSTING
webhostingguy
 
PPTX
Content Management Systems
Anant Corporation
 
PPTX
Web Application Development Process presented by @Cygnismedia
Clark Davidson
 
PPTX
Types Of Web Hosting Explained
RutuparnaM
 
PPTX
Front-end development introduction (HTML, CSS). Part 1
Oleksii Prohonnyi
 
PPT
Web Application Security
Abdul Wahid
 
PDF
Cross site scripting
n|u - The Open Security Community
 
PPT
hosting.ppt
webhostingguy
 
PPTX
Web application attacks
hruth
 
PPTX
Deep understanding on Cross-Site Scripting and SQL Injection
Vishal Kumar
 
PPTX
Mandatory access control for information security
Ajit Dadresa
 
PPTX
Backend Programming
Ruwandi Madhunamali
 
PPTX
Web design - How the Web works?
Mustafa Kamel Mohammadi
 
PPTX
Active and Passive Network Attacks
Pradipta Poudel
 
PPTX
Planning & publishing of website
Archana Jha
 
PPTX
Web application security
Kapil Sharma
 
PDF
The Secret Life of a Bug Bounty Hunter – Frans Rosén @ Security Fest 2016
Frans Rosén
 
PPT
2.1 users & groups
Muuluu
 
Introduction to Web Hosting.
Cloudbells.com
 
Web Design & Development - Session 1
Shahrzad Peyman
 
WEB HOSTING
webhostingguy
 
Content Management Systems
Anant Corporation
 
Web Application Development Process presented by @Cygnismedia
Clark Davidson
 
Types Of Web Hosting Explained
RutuparnaM
 
Front-end development introduction (HTML, CSS). Part 1
Oleksii Prohonnyi
 
Web Application Security
Abdul Wahid
 
Cross site scripting
n|u - The Open Security Community
 
hosting.ppt
webhostingguy
 
Web application attacks
hruth
 
Deep understanding on Cross-Site Scripting and SQL Injection
Vishal Kumar
 
Mandatory access control for information security
Ajit Dadresa
 
Backend Programming
Ruwandi Madhunamali
 
Web design - How the Web works?
Mustafa Kamel Mohammadi
 
Active and Passive Network Attacks
Pradipta Poudel
 
Planning & publishing of website
Archana Jha
 
Web application security
Kapil Sharma
 
The Secret Life of a Bug Bounty Hunter – Frans Rosén @ Security Fest 2016
Frans Rosén
 
2.1 users & groups
Muuluu
 
Ad

Viewers also liked (20)

PPTX
Measuring web performance
Patrick Meenan
 
PPTX
Web performance optimization (WPO)
Mariusz Kaczmarek
 
PDF
Proxy Mobile IPv6 (PMIPv6)
Peter R. Egli
 
PPTX
Choosing A Proxy Server - Apachecon 2014
bryan_call
 
PPTX
Tips for Optimizing Web Performance
ThousandEyes
 
PPTX
Better web performance visualisations
Simon Hearne
 
PDF
Measuring Web Performance - 自己満足で終わらないためのパフォーマンス計測 -
Koji Ishimoto
 
PDF
Optimizing web performance (Fronteers edition)
Dave Olsen
 
PDF
Web performance at WDCNZ
John Clegg
 
PPTX
Measuring web performance. Velocity EU 2011
Stephen Thair
 
PDF
SEO, conversione e web analytics nell'automotive
William Sbarzaglia
 
PDF
Responsive Images
Sven Wolfermann
 
DOC
Website Pre SEO Analysis Report- Online Marketing: Search Engine Optimization
Vikesh Sanwalodia
 
PDF
SEO sample report
SEO Service Corporation
 
PDF
Understanding and measuring web performance
Bogdan Gaza
 
PPT
IAB FORUM 2008 - Web Analytics Workshop : Actionable KPI
Alessio Semoli
 
PDF
Hakin9 05 2013
Rodrigo Gomes Pires
 
PDF
Website Structure Analysis Report Sample - SEO Traffic
SEO Traffic
 
PPTX
La lista completa degli strumenti gratuiti seo
Melchiorre Schifano
 
PPTX
HCI Project Sable Presentation.
Agha Dostain
 
Measuring web performance
Patrick Meenan
 
Web performance optimization (WPO)
Mariusz Kaczmarek
 
Proxy Mobile IPv6 (PMIPv6)
Peter R. Egli
 
Choosing A Proxy Server - Apachecon 2014
bryan_call
 
Tips for Optimizing Web Performance
ThousandEyes
 
Better web performance visualisations
Simon Hearne
 
Measuring Web Performance - 自己満足で終わらないためのパフォーマンス計測 -
Koji Ishimoto
 
Optimizing web performance (Fronteers edition)
Dave Olsen
 
Web performance at WDCNZ
John Clegg
 
Measuring web performance. Velocity EU 2011
Stephen Thair
 
SEO, conversione e web analytics nell'automotive
William Sbarzaglia
 
Responsive Images
Sven Wolfermann
 
Website Pre SEO Analysis Report- Online Marketing: Search Engine Optimization
Vikesh Sanwalodia
 
SEO sample report
SEO Service Corporation
 
Understanding and measuring web performance
Bogdan Gaza
 
IAB FORUM 2008 - Web Analytics Workshop : Actionable KPI
Alessio Semoli
 
Hakin9 05 2013
Rodrigo Gomes Pires
 
Website Structure Analysis Report Sample - SEO Traffic
SEO Traffic
 
La lista completa degli strumenti gratuiti seo
Melchiorre Schifano
 
HCI Project Sable Presentation.
Agha Dostain
 
Ad

Similar to Measuring Web Performance (20)

PDF
Measuring Web Performance (HighEdWeb FL Edition)
Dave Olsen
 
PDF
Web Performance & You
Dave Olsen
 
PDF
The Server Side of Responsive Web Design
Dave Olsen
 
PDF
DrupalCampLA 2011 - Drupal frontend-optimizing
Ashok Modi
 
PDF
RESS: An Evolution of Responsive Web Design
Dave Olsen
 
PDF
Measuring Web Performance - HighEdWeb Edition
Dave Olsen
 
PDF
Asp.Net Tips
Susan Begonja
 
PDF
Introduction to Optimizing WordPress for Website Speed
Nile Flores
 
PPTX
Digibury: Getting your web presence mobile ready - David Walker
Lizzie Hodgson
 
PDF
Everything You Know is Not Quite Right Anymore: Rethinking Best Practices to ...
Dave Olsen
 
PDF
Everything You Know is Not Quite Right Anymore: Rethinking Best Web Practices...
Doug Gapinski
 
PDF
Demystifying web performance tooling and metrics
Anna Migas
 
PPTX
Drupal Frontend Performance and Scalability
Ashok Modi
 
PDF
Web Client Performance
Herea Adrian
 
PPTX
Show Me The Cache!
Andy Melichar
 
PPT
Make Drupal Run Fast - increase page load speed
Andy Kucharski
 
PDF
Website Performance at Client Level
Constantin Stan
 
PDF
Making Of PHP Based Web Application
Sachin Walvekar
 
PDF
23 Ways To Speed Up WordPress
Zero Point Development
 
PDF
Tips to improve your website performance
WebGuru Infosystems Pvt. Ltd.
 
Measuring Web Performance (HighEdWeb FL Edition)
Dave Olsen
 
Web Performance & You
Dave Olsen
 
The Server Side of Responsive Web Design
Dave Olsen
 
DrupalCampLA 2011 - Drupal frontend-optimizing
Ashok Modi
 
RESS: An Evolution of Responsive Web Design
Dave Olsen
 
Measuring Web Performance - HighEdWeb Edition
Dave Olsen
 
Asp.Net Tips
Susan Begonja
 
Introduction to Optimizing WordPress for Website Speed
Nile Flores
 
Digibury: Getting your web presence mobile ready - David Walker
Lizzie Hodgson
 
Everything You Know is Not Quite Right Anymore: Rethinking Best Practices to ...
Dave Olsen
 
Everything You Know is Not Quite Right Anymore: Rethinking Best Web Practices...
Doug Gapinski
 
Demystifying web performance tooling and metrics
Anna Migas
 
Drupal Frontend Performance and Scalability
Ashok Modi
 
Web Client Performance
Herea Adrian
 
Show Me The Cache!
Andy Melichar
 
Make Drupal Run Fast - increase page load speed
Andy Kucharski
 
Website Performance at Client Level
Constantin Stan
 
Making Of PHP Based Web Application
Sachin Walvekar
 
23 Ways To Speed Up WordPress
Zero Point Development
 
Tips to improve your website performance
WebGuru Infosystems Pvt. Ltd.
 

More from Dave Olsen (20)

PDF
Taking Your HTML Email Communications from "Ew" to "Wow"
Dave Olsen
 
PDF
The Google Marketing Workflow Workshop
Dave Olsen
 
PDF
Building an Academic Program Database and API with Contentful and Amazon Web ...
Dave Olsen
 
PDF
Reimagining Your Website: What are prospective students looking for and how a...
Dave Olsen
 
PDF
Progressive Mobile Strategy Redux: The Future Friendly Enterprise
Dave Olsen
 
PDF
Case Study: Rebuilding an Admissions Web Presence
Dave Olsen
 
PDF
Admissions Brain Dump
Dave Olsen
 
PDF
Implementing Brand Patterns
Dave Olsen
 
PDF
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
Dave Olsen
 
PDF
Case Study: Automating Outage Monitoring & Communication
Dave Olsen
 
PDF
The Death of Lorem Ipsum & Pixel Perfect Content
Dave Olsen
 
PDF
The Why and What of Pattern Lab
Dave Olsen
 
PDF
The Squishy Future of Content - HEEMAC Edition
Dave Olsen
 
PDF
The What & Why of Pattern Lab
Dave Olsen
 
PDF
The Squishy Future of Content - Key Communicators Edition
Dave Olsen
 
PDF
The Squishy Future of Content - Penn State Edition
Dave Olsen
 
PDF
The Squishy Future of Content
Dave Olsen
 
PDF
Web Performance & You - HighEdWeb Arkansas Version
Dave Olsen
 
PDF
The Future Friendly Campus (Workshop Edition)
Dave Olsen
 
KEY
Developing a Progressive Mobile Strategy (J. Boye edition)
Dave Olsen
 
Taking Your HTML Email Communications from "Ew" to "Wow"
Dave Olsen
 
The Google Marketing Workflow Workshop
Dave Olsen
 
Building an Academic Program Database and API with Contentful and Amazon Web ...
Dave Olsen
 
Reimagining Your Website: What are prospective students looking for and how a...
Dave Olsen
 
Progressive Mobile Strategy Redux: The Future Friendly Enterprise
Dave Olsen
 
Case Study: Rebuilding an Admissions Web Presence
Dave Olsen
 
Admissions Brain Dump
Dave Olsen
 
Implementing Brand Patterns
Dave Olsen
 
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
Dave Olsen
 
Case Study: Automating Outage Monitoring & Communication
Dave Olsen
 
The Death of Lorem Ipsum & Pixel Perfect Content
Dave Olsen
 
The Why and What of Pattern Lab
Dave Olsen
 
The Squishy Future of Content - HEEMAC Edition
Dave Olsen
 
The What & Why of Pattern Lab
Dave Olsen
 
The Squishy Future of Content - Key Communicators Edition
Dave Olsen
 
The Squishy Future of Content - Penn State Edition
Dave Olsen
 
The Squishy Future of Content
Dave Olsen
 
Web Performance & You - HighEdWeb Arkansas Version
Dave Olsen
 
The Future Friendly Campus (Workshop Edition)
Dave Olsen
 
Developing a Progressive Mobile Strategy (J. Boye edition)
Dave Olsen
 

Recently uploaded (20)

PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PPTX
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
PDF
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
PDF
Software Development Company | KodekX
KodekX
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PPTX
Coupa-Overview _Assumptions presentation
annapureddyn
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Doc9.....................................
SofiaCollazos
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
Beyond Automation: The Role of IoT Sensor Integration in Next-Gen Industries
Rejig Digital
 
Software Development Company | KodekX
KodekX
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Coupa-Overview _Assumptions presentation
annapureddyn
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Doc9.....................................
SofiaCollazos
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 

Measuring Web Performance