Hammering Responsive Web Design Into Shape

Ken Tabor
Ken TaborPrincipal Software Architect at Sabre, Author, Speaker
Hammering Responsive
Web Design Into Shape
@KenTabor
Thursday, October 17, 13
Shared

bit.ly/KenBigD13

Thursday, October 17, 13
I’m Not Selling RWD

Assuming you already buy into
responsive, fluid, what-have-you, design

Thursday, October 17, 13
Challenge: Many Devices

Now let’s focus on the challenge of
testing a multitude of form-factors

Thursday, October 17, 13
Freedom!

Production servers are a drag for testing

Thursday, October 17, 13
Install a Web Server

Get you some Apache for starters
Lots of solid how-to tutorials online

Thursday, October 17, 13
Apache Setup

Tell Apache where to serve files from

Thursday, October 17, 13
Editing Config Files

NotePad++ on Win
TextWrangler on OSX

Thursday, October 17, 13
httpd.conf

DocumentRoot "/Users/ken/trees"
<Directory "/Users/ken/trees">

Thursday, October 17, 13
httpd-vhosts.conf

<VirtualHost *:80>
DocumentRoot "/Users/ken/trees"
ServerName localhost
</VirtualHost>

Thursday, October 17, 13
Localhost, the Best Host

Rapid turn around and total control

Thursday, October 17, 13
Laptop + Device => #Joy

Can we attach mobile devices to our
development laptop? Yes! Apache helps.

Thursday, October 17, 13
Devices + Localhost

Laptop is hard-wired to router
iPad and iPhone both on wifi router
Flat & common topology is key

Thursday, October 17, 13
System Prefs => Sharing

Thursday, October 17, 13
iPhone Calling MacBook

http://Kens-MacBook-Air.local

Thursday, October 17, 13
Browsing the File Server

Choose files as per Apache file sharing
including your website/app

Thursday, October 17, 13
iPhone Perspective?

Thursday, October 17, 13
Thursday, October 17, 13
Advanced: OSX Hotspot

Create a wireless hotspot allowing
mobile devices direct connect to laptop

Thursday, October 17, 13
Win7 Device Connect

Easy stuff, just flatten the connections

Thursday, October 17, 13
Devices + Localhost

Laptop is hard-wired to router
iPad and iPhone both on wifi router

Thursday, October 17, 13
Connection

Laptop has Apache, firewall off
Website files in VirtualHost directory
Get the ip address, iPhone and iPad hit it

Thursday, October 17, 13
Thursday, October 17, 13
Who Am I?

I’m a front-end product engineer
At Sabre Holdings building TripCase

Thursday, October 17, 13
Thursday, October 17, 13
Internet Inspirations

mediaqueri.es

Thursday, October 17, 13
Internet Resources

responsive.is

Thursday, October 17, 13
responsive.is

Thursday, October 17, 13
responsive.is

Thursday, October 17, 13
Internet Resources

screenqueri.es

Thursday, October 17, 13
screenqueri.es

Thursday, October 17, 13
screenqueri.es

Thursday, October 17, 13
Responsive Testing Repo

Easily preview your site on form factors
from a convenient localhost page

Thursday, October 17, 13
Responsive Testing Repo

github.com/mattkersley/ResponsiveDesign-Testing

Thursday, October 17, 13
Localhost Install

Thursday, October 17, 13
ResponsizerJS

Drop it into your web site helping resize
browser window when matching devices

Thursday, October 17, 13
Responsizer GitHub

github.com/KDawg/Responsizer.js

Thursday, October 17, 13
Responsizer index.html

<script src="resources/code/Responsizer.js"
type="text/javascript"></script>

Thursday, October 17, 13
Responsizer Measuring

Inject it into any site to learn from them

Thursday, October 17, 13
Injecting Responsizer

Google Chrome
View => Developer Tools => JavaScript
Console

Thursday, October 17, 13
Injecting Responsizer

$('body').append('<script type="text/javascript"
src="http://localhost/Responsizer.js/
Responsizer.js>"</script>')

Thursday, October 17, 13
How Big Are Your Users?

How do we know what size devices our
customers use?

Thursday, October 17, 13
Google Analytics

If you’re using Google Analytics you have
a wealth of information to report

Thursday, October 17, 13
Analytics Dashboard

Thursday, October 17, 13
Analytics Informs

Using this data informs your interface
design with fact-based reality

Thursday, October 17, 13
Sass is CSS Done Better

sass-lang.com

Thursday, October 17, 13
Sass - What is it?

Meta language, lovely syntactic sugar,
compiles to CSS, makes dev life joyful

Thursday, October 17, 13
Sass Media Queries
.popup {
left: 25%;
position: fixed;
width: 50%;
z-index: 20;
@media screen and (max-width: 320px) {
left: 10%;
width: 80%
}
@media screen and (min-width: 1024px) {
font-size: 2em;
left: 15%;
width: 70%;
}
}

Thursday, October 17, 13
Sass Makes It Look Good

The media query nesting Sass affords
leads to organized and rational code

Thursday, October 17, 13
Fun with PhantomJS

phantomjs.org
Headless Webkit browser

Thursday, October 17, 13
Imagemagick Processing

imagemagick.org
Selection of command-line image tools

Thursday, October 17, 13
Install Both Tools

brew install phantomjs
brew install imagemagick

Thursday, October 17, 13
PhantomJS Photos

Take screenshots vs online and localhost
See what sites look like on devices

Thursday, October 17, 13
PhantomJS - screenie.js
var webpage = require('webpage');
var page;
page = webpage.create();
page.viewportSize = {width: 1024, height: 768};
page.clipRect = {top: 0, left: 0, width: 1024,
height: 768};
page.open('http://www.microsoft.com', function() {
page.render('screenie_1024_768.png');
phantom.exit();
});

phantomjs screenie.js

Thursday, October 17, 13
Imagemagick Comparing

Use it to compare two images producing
a third showing what’s different

Thursday, October 17, 13
Revealing Changes

compare image1.png image2.png
image3.png

Thursday, October 17, 13
Compare Design Drift

Thursday, October 17, 13
imagemagick insanity

Can this be automated?
Does visual history help debugging?
Can we detect design diverging?

Thursday, October 17, 13
Questions?

Thursday, October 17, 13
Thank-You

bit.ly/KenBigD13
@KenTabor
Thursday, October 17, 13
1 of 60

Recommended

Making WordPress Fly by
Making WordPress FlyMaking WordPress Fly
Making WordPress FlyEast Bay WordPress Meetup
1.7K views63 slides
Cooking an Omelette with Chef by
Cooking an Omelette with ChefCooking an Omelette with Chef
Cooking an Omelette with Chefctaintor
1.1K views54 slides
Introduction to TYPO3 Neos at Brain Camp Cologne 2014 by
Introduction to TYPO3 Neos at  Brain Camp Cologne 2014Introduction to TYPO3 Neos at  Brain Camp Cologne 2014
Introduction to TYPO3 Neos at Brain Camp Cologne 2014Hrishikesh Lele
853 views19 slides
Place X by
Place XPlace X
Place Xjoris6
132 views9 slides
WordPress Melbourne User Group May 2013 Developers Meetup by
WordPress Melbourne User Group May 2013 Developers MeetupWordPress Melbourne User Group May 2013 Developers Meetup
WordPress Melbourne User Group May 2013 Developers MeetupJames Collins
849 views12 slides
How to Enable HTTPS by
How to Enable HTTPSHow to Enable HTTPS
How to Enable HTTPSSecurity Elements
431 views13 slides

More Related Content

Viewers also liked

Archivo Pdf by
Archivo PdfArchivo Pdf
Archivo Pdfkalumba2008
645 views14 slides
BigDesign 2014 - What's Before Mobile First? by
BigDesign 2014 - What's Before Mobile First?BigDesign 2014 - What's Before Mobile First?
BigDesign 2014 - What's Before Mobile First?Ken Tabor
2.4K views90 slides
Ten Easy Ways to Improve Your Conference Talk by
Ten Easy Ways to Improve Your Conference TalkTen Easy Ways to Improve Your Conference Talk
Ten Easy Ways to Improve Your Conference TalkKen Tabor
1.5K views20 slides
Measuring the Mobile Experience at SXSW 2016 by
Measuring the Mobile Experience at SXSW 2016Measuring the Mobile Experience at SXSW 2016
Measuring the Mobile Experience at SXSW 2016Ken Tabor
1.6K views45 slides
10 Tips for a Winning Hackathon Pitch by
10 Tips for a Winning Hackathon Pitch10 Tips for a Winning Hackathon Pitch
10 Tips for a Winning Hackathon PitchKen Tabor
23.9K views14 slides
10 Things About Human UI that Will Change Forever in Self-Driving Cars by
10 Things About Human UI that Will Change Forever in Self-Driving Cars10 Things About Human UI that Will Change Forever in Self-Driving Cars
10 Things About Human UI that Will Change Forever in Self-Driving CarsKen Tabor
895 views22 slides

Viewers also liked(7)

BigDesign 2014 - What's Before Mobile First? by Ken Tabor
BigDesign 2014 - What's Before Mobile First?BigDesign 2014 - What's Before Mobile First?
BigDesign 2014 - What's Before Mobile First?
Ken Tabor2.4K views
Ten Easy Ways to Improve Your Conference Talk by Ken Tabor
Ten Easy Ways to Improve Your Conference TalkTen Easy Ways to Improve Your Conference Talk
Ten Easy Ways to Improve Your Conference Talk
Ken Tabor1.5K views
Measuring the Mobile Experience at SXSW 2016 by Ken Tabor
Measuring the Mobile Experience at SXSW 2016Measuring the Mobile Experience at SXSW 2016
Measuring the Mobile Experience at SXSW 2016
Ken Tabor1.6K views
10 Tips for a Winning Hackathon Pitch by Ken Tabor
10 Tips for a Winning Hackathon Pitch10 Tips for a Winning Hackathon Pitch
10 Tips for a Winning Hackathon Pitch
Ken Tabor23.9K views
10 Things About Human UI that Will Change Forever in Self-Driving Cars by Ken Tabor
10 Things About Human UI that Will Change Forever in Self-Driving Cars10 Things About Human UI that Will Change Forever in Self-Driving Cars
10 Things About Human UI that Will Change Forever in Self-Driving Cars
Ken Tabor895 views
Your Future HTML: The Evolution of Site Design with Web Components by Ken Tabor
Your Future HTML: The Evolution of Site Design with Web ComponentsYour Future HTML: The Evolution of Site Design with Web Components
Your Future HTML: The Evolution of Site Design with Web Components
Ken Tabor88.5K views

Similar to Hammering Responsive Web Design Into Shape

Cors michael by
Cors michaelCors michael
Cors michaelMichael Neale
2.2K views36 slides
Building a platform with Django, Docker, and Salt by
Building a platform with Django, Docker, and SaltBuilding a platform with Django, Docker, and Salt
Building a platform with Django, Docker, and Saltbaremetal
7.6K views12 slides
Calabash - Karl and Jonas by
Calabash - Karl and JonasCalabash - Karl and Jonas
Calabash - Karl and JonasXamarin
1.8K views48 slides
BBC Olympics: An accessibility case study by
BBC Olympics: An accessibility case studyBBC Olympics: An accessibility case study
BBC Olympics: An accessibility case studyAlistair Duggin
1.9K views68 slides
Building a platform with Django, Docker and Salt | Djangocon lightning talk by
Building a platform with Django, Docker and Salt | Djangocon lightning talkBuilding a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talkdotCloud
2.8K views12 slides
Building a Platform with Django, Docker and Salt by
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltDocker, Inc.
602 views12 slides

Similar to Hammering Responsive Web Design Into Shape(20)

Building a platform with Django, Docker, and Salt by baremetal
Building a platform with Django, Docker, and SaltBuilding a platform with Django, Docker, and Salt
Building a platform with Django, Docker, and Salt
baremetal7.6K views
Calabash - Karl and Jonas by Xamarin
Calabash - Karl and JonasCalabash - Karl and Jonas
Calabash - Karl and Jonas
Xamarin1.8K views
BBC Olympics: An accessibility case study by Alistair Duggin
BBC Olympics: An accessibility case studyBBC Olympics: An accessibility case study
BBC Olympics: An accessibility case study
Alistair Duggin1.9K views
Building a platform with Django, Docker and Salt | Djangocon lightning talk by dotCloud
Building a platform with Django, Docker and Salt | Djangocon lightning talkBuilding a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talk
dotCloud2.8K views
Building a Platform with Django, Docker and Salt by Docker, Inc.
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and Salt
Docker, Inc.602 views
Scaling PHP to 40 Million Uniques by Jonathan Klein
Scaling PHP to 40 Million UniquesScaling PHP to 40 Million Uniques
Scaling PHP to 40 Million Uniques
Jonathan Klein7.3K views
Servicios y Herramientas para usar en tu próximo proyecto by Orlando Del Aguila
Servicios y Herramientas para usar en tu próximo proyectoServicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyecto
Orlando Del Aguila321 views
One Page, One App -or- How to Write a Crawlable Single Page Web App by technicolorenvy
One Page, One App -or- How to Write a Crawlable Single Page Web AppOne Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web App
technicolorenvy1.5K views
[jqconatx] Adaptive Images for Responsive Web Design by Christopher Schmitt
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt31.4K views
Construindo um micro framework web em Python by Allisson Azevedo
Construindo um micro framework web em PythonConstruindo um micro framework web em Python
Construindo um micro framework web em Python
Allisson Azevedo939 views
Green Shoots in the Brownest Field: Being a Startup in Government by C4Media
Green Shoots in the Brownest Field: Being a Startup in GovernmentGreen Shoots in the Brownest Field: Being a Startup in Government
Green Shoots in the Brownest Field: Being a Startup in Government
C4Media568 views
DIY Synthetic: Private WebPagetest Magic by Jonathan Klein
DIY Synthetic: Private WebPagetest MagicDIY Synthetic: Private WebPagetest Magic
DIY Synthetic: Private WebPagetest Magic
Jonathan Klein3.1K views
Zeno rocha - HTML5 APIs para Mobile by iMasters
Zeno rocha - HTML5 APIs para MobileZeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para Mobile
iMasters3.8K views
Use Web Skills To Build Mobile Apps by Nathan Smith
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile Apps
Nathan Smith8.7K views
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013 by cordoval
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
cordoval1.6K views
Continuous Integration for IOS Apps by Allan Davis
Continuous Integration for IOS AppsContinuous Integration for IOS Apps
Continuous Integration for IOS Apps
Allan Davis989 views

More from Ken Tabor

Introduction to Coding a Webpage by
Introduction to Coding a WebpageIntroduction to Coding a Webpage
Introduction to Coding a WebpageKen Tabor
265 views16 slides
Making the Difficult, Simple(r) by
Making the Difficult, Simple(r)Making the Difficult, Simple(r)
Making the Difficult, Simple(r)Ken Tabor
983 views49 slides
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a... by
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...Ken Tabor
609 views19 slides
Demo Hard: Things Nobody Told an Introvert About Public Speaking by
Demo Hard: Things Nobody Told an Introvert About Public SpeakingDemo Hard: Things Nobody Told an Introvert About Public Speaking
Demo Hard: Things Nobody Told an Introvert About Public SpeakingKen Tabor
343 views78 slides
Machine Learning: Understanding the Invisible Force Changing Our World by
Machine Learning: Understanding the Invisible Force Changing Our WorldMachine Learning: Understanding the Invisible Force Changing Our World
Machine Learning: Understanding the Invisible Force Changing Our WorldKen Tabor
1.3K views78 slides
Measuring the Mobile Experience: The Analytics of Handheld UX by
Measuring the Mobile Experience: The Analytics of Handheld UXMeasuring the Mobile Experience: The Analytics of Handheld UX
Measuring the Mobile Experience: The Analytics of Handheld UXKen Tabor
2.2K views75 slides

More from Ken Tabor(10)

Introduction to Coding a Webpage by Ken Tabor
Introduction to Coding a WebpageIntroduction to Coding a Webpage
Introduction to Coding a Webpage
Ken Tabor265 views
Making the Difficult, Simple(r) by Ken Tabor
Making the Difficult, Simple(r)Making the Difficult, Simple(r)
Making the Difficult, Simple(r)
Ken Tabor983 views
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a... by Ken Tabor
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
Ken Tabor609 views
Demo Hard: Things Nobody Told an Introvert About Public Speaking by Ken Tabor
Demo Hard: Things Nobody Told an Introvert About Public SpeakingDemo Hard: Things Nobody Told an Introvert About Public Speaking
Demo Hard: Things Nobody Told an Introvert About Public Speaking
Ken Tabor343 views
Machine Learning: Understanding the Invisible Force Changing Our World by Ken Tabor
Machine Learning: Understanding the Invisible Force Changing Our WorldMachine Learning: Understanding the Invisible Force Changing Our World
Machine Learning: Understanding the Invisible Force Changing Our World
Ken Tabor1.3K views
Measuring the Mobile Experience: The Analytics of Handheld UX by Ken Tabor
Measuring the Mobile Experience: The Analytics of Handheld UXMeasuring the Mobile Experience: The Analytics of Handheld UX
Measuring the Mobile Experience: The Analytics of Handheld UX
Ken Tabor2.2K views
10 Leadership Lessons from the Tao Te Ching by Ken Tabor
10 Leadership Lessons from the Tao Te Ching10 Leadership Lessons from the Tao Te Ching
10 Leadership Lessons from the Tao Te Ching
Ken Tabor12K views
UXPA Dallas - Google Analytics and What's Before Mobile First by Ken Tabor
UXPA Dallas - Google Analytics and What's Before Mobile FirstUXPA Dallas - Google Analytics and What's Before Mobile First
UXPA Dallas - Google Analytics and What's Before Mobile First
Ken Tabor1.4K views
WVPDX 2014 - Hammering Responsive Web Design Into Shape by Ken Tabor
WVPDX 2014 - Hammering Responsive Web Design Into ShapeWVPDX 2014 - Hammering Responsive Web Design Into Shape
WVPDX 2014 - Hammering Responsive Web Design Into Shape
Ken Tabor2.7K views
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO... by Ken Tabor
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...
Ken Tabor2.1K views

Recently uploaded

Unit 1_Lecture 2_Physical Design of IoT.pdf by
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdfStephenTec
15 views36 slides
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...James Anderson
126 views32 slides
The Research Portal of Catalonia: Growing more (information) & more (services) by
The Research Portal of Catalonia: Growing more (information) & more (services)The Research Portal of Catalonia: Growing more (information) & more (services)
The Research Portal of Catalonia: Growing more (information) & more (services)CSUC - Consorci de Serveis Universitaris de Catalunya
115 views25 slides
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... by
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...Bernd Ruecker
48 views69 slides
STPI OctaNE CoE Brochure.pdf by
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdfmadhurjyapb
14 views1 slide
Kyo - Functional Scala 2023.pdf by
Kyo - Functional Scala 2023.pdfKyo - Functional Scala 2023.pdf
Kyo - Functional Scala 2023.pdfFlavio W. Brasil
418 views92 slides

Recently uploaded(20)

Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec15 views
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson126 views
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... by Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker48 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb14 views
The Forbidden VPN Secrets.pdf by Mariam Shaba
The Forbidden VPN Secrets.pdfThe Forbidden VPN Secrets.pdf
The Forbidden VPN Secrets.pdf
Mariam Shaba20 views
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe by Simone Puorto
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
Simone Puorto13 views
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc72 views
HTTP headers that make your website go faster - devs.gent November 2023 by Thijs Feryn
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023
Thijs Feryn26 views
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... by The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...
SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf

Hammering Responsive Web Design Into Shape