SlideShare una empresa de Scribd logo
1 de 88
Descargar para leer sin conexión
2006
That book
http://csswebdevelopment.com
“Before this book, I felt like a monkey with a clipboard.”
“Now, I feel like I have been promoted from a monkey with a clipboard
to a human.”
“Even if you don't want to learn the art of CSS and are a dairy cow farmer
that dosn't speek english, i still recomend this book!”
“I hope the royalties from the book pay for a comfortable retirement.”
“For me, the book ended too soon.”
“I bought this book in 2009, and I use it to this day to help me with CSS.”
“I appreciate Simon's approach to learning. Ok ~ time for a cuppa tea and
then back to it. Very English ~ I'm Australian so we have similar traditions
and a cuppa tea is one I'm very glad for.”
“He even tells you (often -- he's English!) when's a good time to grab a cup
of tea.”
“He also encouraged me to drink more tea.”
“Take Simon's advice when he suggests getting a cup of tea.”
“The author seems to have a thing for tea.”
"Way too many hacks/workarounds for IE 5
and other really old browsers."
Ken Mosher “Timelord”
“For a Brit his humor is NOT funny! Collison needs to
read "Eats, Shoots and Leaves" if he wants to learn
about British humor. In the meantime, just skip it;
you're not John Cleese!”
"I disagree that it's fantastic or any other superlative
that others have applied.”
4/5 stars
<div class=”block”>
<h3>Hedgehogs</h3>
<p>This is all about hedgehogs.
<a href=“paras.html”>Read more about
hedgehogs</a>.</p>
</div>
.block h3 {
targeted heading styles
}
.block p {
targeted paragraph styles
}
.block p a:link {
targeted link styles
}
.home .content_main .section .block p a:link {
very specific link styles
}
Web “pages”
2009
"We don’t design web pages. We design systems”
“What we build is rarely finished. We build systems that
flex and grow with the client, the business, the
organisation, the community, and the availability of new
devices.
“Once we have systems we understand, we can then
learn to break their rules and be truly creative. ”
“We’re beginning to think about the “systems” we use as
more holistic, made up of much more than just
mathematical foundations, but also the flexibility of
colour, type families, use of whitespace, light and shade,
form and shape.
“By better understanding the possibilities of HTML and
CSS, our ability to be creative and bold with systems
increases significantly.”
Base layer
Basic HTML files & naming conventions
PHP for basic templates prior to CMS integration.
CSS: Stylesheets, IE-specific, reset, scratch files etc.
JavaScript: jQuery, onload triggers, transparency support
Other Assets such as folders for images, Flash etc.
Allowed better collaboration within the team; the designer could
jump into the developer’s code and vice-versa.
Anyone who hadn’t even worked on a certain project could jump in
and quickly solve problems because everything was on convention.
Kept output fresh and ensured use of best practices.
Established a thoroughly connected layer of base files allowing for
swift CSS and JavaScript implementation and other assets.
Made life easier for developers and designers... and anyone really
Helped maintain quality control
Root
Root

(circa 2009)
Stylesheets
(circa 2009)
JavaScript
(circa 2009)
Assets

(circa 2009)
Pattern Libraries
Anna Debenham
24 Ways: http://24ways.org/2011/front-end-style-guides/
Her book: http://www.fivesimplesteps.com/products/front-end-style-guides
http://www.bbc.co.uk/gel/mobile/device-considerations/philosophy
http://www.starbucks.com/static/reference/styleguide/
http://ux.mailchimp.com/patterns/
http://sfdc-styleguide.herokuapp.com/
http://sfdc-styleguide.herokuapp.com/
http://sfdc-styleguide.herokuapp.com/
http://sfdc-styleguide.herokuapp.com/
Present day
Code sketches
Sass
Dan Cederholm
Sass for Web Designers
http://www.abookapart.com/products/sass-for-web-designers
http://sass-lang.com
@import "compass";
// SASS variables
$white: #fff;
$black: #000;
$grey: #ccc;
$light_grey: #eeeeee;
$mid_grey: #999;
$dark_grey: #666;
$darkest_grey: #333;
$yellow: #ffffcc;
http://compass-style.org
@include border-radius(2em);

@include box-shadow
(rgba($black_light, 0.2) 0px 1px 10px 4px);

@include box-sizing(border-box);
http://smacss.com
<div class=”block”>
<h3>Hedgehogs</h3>
<p>This is all about hedgehogs.
<a href=“paras.html”>Read more about
hedgehogs</a>.</p>
</div>
.block h3 {
targeted heading styles
}
.block p {
targeted paragraph styles
}
.block p a:link {
targeted link styles
}
<div class=“block”>
<h3 class=“block_heading”>Hedgehogs</h3>
<p class=“block_intro”>This is all about
hedgehogs. <a href=“paras.html”
class=“block_link”>Read more about
hedgehogs</a>.</p>
</div>
.block_heading {
targeted heading styles
}
.block_intro {
targeted paragraph styles
}
.block_link {
targeted link styles
}
Systems
Deliver Modules
http://daverupert.com/2013/04/responsive-deliverables
// haven / styles
@import '_base';
@import '_modules';
@import '_theme';
@import '_custom';
.box {
border: 1px solid;
padding: 10px;
}
.box {
@include border-radius(3px);
@include box-shadow(inset 0 0 7px 2px rgba($black,0.03));
border-color: $gray;
font-size: 0.9em;
padding: 15px;
}
Components

Strategy

Layouts

Flexible grid
Typography
Navigation
Accessible form controls
Carousels
Tabbed navigation
Responsive tables
Accordions
Media lists
Dropdowns
Pagination
Data tables
Buttons
Icon fonts

Responsive images
Responsive typography
Accessibility architecture
Legacy browser support
Performance budget
Interaction/Animations
Responsive advertising

Homepage layout
Subpage layout
Article index layout
Article layout
Product index layout
Product detail layout
Sign up flow
Checkout flow

http://daverupert.com/2013/04/responsive-deliverables
http://filamentgroup.com/lab/grade_components/
Patterns
http://pattern-lab.info/
Atoms
Molecules
Organisms
Templates
Pages
Language
My processes
I am a module
Two core systems
Skeletor (internal project)
Simplify the process of getting a new social
application up and running.
Standardize the assorted, non-core pages that are a
part of each app (signup, login, settings).
Treat the non-core pages like a core product and give
them the attention they deserve.
Create an implicit link between all Fictive Kin
products by virtue of a shared user experience.
Signup
Login
Settings
Logout
Purpose
People
— Following
— Followers
— Find friends
— Invite friends
Profile
Fully tested
Responsive
Browser tested
Monitored
Accessible
Optimised
@import
@import
@import
@import
@import
@import

'modules/_modules_functions';
'modules/_modules_mixins';
'modules/_base';
'modules/_core';
'modules/_forms';
‘modules/_buttons';
@mixin img-block ($url, $width, $height) {
! background: url(#{$url}) 0 0 no-repeat transparent;
! display: block;
! height: $height;
! overflow: hidden;
! text-indent: -9999px;
! vertical-align: top;
! white-space: nowrap;
! width: $width;
}
.app-logo {
! @include img-block("img/bootstrap/app_logo.png", 214px, 23px);
}
Grayskull (internal project)
Flask

Pyes

Flask-Script

Python-Dateutil

Blinker/Signals

Requests-OAuthlib

Boto 

Raven
Templating
<ul class="sidebar-nav">
<li class="sn-item" ng-repeat="(name, service) in services" ngclass="isAccountActive(name)">
<a href="/backups/[[name]]" class="sn-link"><span class="sssocial-regular ss-[[name]]">
</span>[[service.display_name]]</a>
</li>
</ul>
Data layers
"twitter": {
"name": "Twitter",
"filters": {
"collections": {
"all": {
"label": "All Tweets",
"symbolset": "inbox"
},
"tweets": {
"label": "Your Tweets",
"symbolset": "user"
},
"favorites": {
"label": "Your Favorites",
"symbolset": "star"
}
}
}
}
Modular everything
1:1

2:1

1:2

4:3
16:9
<div	
  class='asset'>	
  
	
   <div	
  class='content'>Asset	
  goes	
  here</div>	
  
</div>
.asset	
  {
	
   position:	
  relative;
	
   width:	
  25%;	
  /*	
  (row	
  of	
  four	
  assets)	
  */
}
/* Aspect ratios:
1:1 = 100%,
2:1 = 50%,
1:2 = 200%,
4:3 = 75%,
16:9 = 56.25% */
.ar-1-1 .asset:before {
content: "";
display: block;
padding-top: 100%;
}
/* Aspect ratios:
1:1 = 100%,
2:1 = 50%,
1:2 = 200%,
4:3 = 75%,
16:9 = 56.25% */
.ar-2-1 .asset:before {
content: "";
display: block;
padding-top: 50%;
}
/* Aspect ratios:
1:1 = 100%,
2:1 = 50%,
1:2 = 200%,
4:3 = 75%,
16:9 = 56.25% */
.ar-1-2 .asset:before {
content: "";
display: block;
padding-top: 200%;
}
/* Aspect ratios:
1:1 = 100%,
2:1 = 50%,
1:2 = 200%,
4:3 = 75%,
16:9 = 56.25% */
.ar-4-3 .asset:before {
content: "";
display: block;
padding-top: 75%;
}
/* Aspect ratios:
1:1 = 100%,
2:1 = 50%,
1:2 = 200%,
4:3 = 75%,
16:9 = 56.25% */
.ar-16-9 .asset:before {
content: "";
display: block;
padding-top: 56.25%;
}
.content	
  {
	
   position:	
  absolute;
	
   top:	
  0;
	
   left:	
  0;
	
   bottom:	
  0;
	
   right:	
  0;
}
Twitter
Instagram
Flickr
Gimme Bar
Pinterest
Svpply
Foursquare
last.fm
Pinboard
Delicious
Goodreads
Tumblr

image
video
text snippet
GIF
bookmark
place
status
full page
recipe
article
product
To conclude
Thanks :)
@colly
colly.com
fictivekin.com
Old Dog, New Tricks

Más contenido relacionado

La actualidad más candente

Beyond web services: supporting mashup artists at Yahoo!
Beyond web services: supporting mashup artists at Yahoo!Beyond web services: supporting mashup artists at Yahoo!
Beyond web services: supporting mashup artists at Yahoo!Chad Dickerson
 
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...Jer Clarke
 
Decoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSDecoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSJulie Cameron
 
Mozilla Developer Derby October 2012: Media Queries
Mozilla Developer Derby October 2012: Media Queries Mozilla Developer Derby October 2012: Media Queries
Mozilla Developer Derby October 2012: Media Queries themystic_ca
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)Zoe Gillenwater
 
Web accessibility with Ametys CMS
Web accessibility with Ametys CMSWeb accessibility with Ametys CMS
Web accessibility with Ametys CMSAmetys
 
Fosdem 2009 – improving drupal's page loading performance
Fosdem 2009 – improving drupal's page loading performanceFosdem 2009 – improving drupal's page loading performance
Fosdem 2009 – improving drupal's page loading performanceErup Enolc
 
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)Christopher Schmitt
 
Responsive Design Overview for UB CIT
Responsive Design Overview for UB CITResponsive Design Overview for UB CIT
Responsive Design Overview for UB CITAdrian Roselli
 
SEO Horror Stories
SEO Horror StoriesSEO Horror Stories
SEO Horror Storiespointit
 
Hammersmith fundamentals html fundamentals
Hammersmith fundamentals   html fundamentalsHammersmith fundamentals   html fundamentals
Hammersmith fundamentals html fundamentalsMike Bradshaw
 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...Yandex
 
[Access U 2010] HTML5 & Accessibility
[Access U 2010] HTML5 & Accessibility[Access U 2010] HTML5 & Accessibility
[Access U 2010] HTML5 & AccessibilityChristopher Schmitt
 
Atlassian Summit 2012 - How Atlassian Makes Its Wiki Sticky
Atlassian Summit 2012 - How Atlassian Makes Its Wiki StickyAtlassian Summit 2012 - How Atlassian Makes Its Wiki Sticky
Atlassian Summit 2012 - How Atlassian Makes Its Wiki StickyAtlassian
 
Intro to Drupal Slides - DrupalCampSC 2014
Intro to Drupal Slides - DrupalCampSC 2014Intro to Drupal Slides - DrupalCampSC 2014
Intro to Drupal Slides - DrupalCampSC 2014Sarah Shealy
 
Navigation in Responsive Design
Navigation in Responsive DesignNavigation in Responsive Design
Navigation in Responsive Designopenchamp
 
Intermediate Dreamweaver (2007)
Intermediate Dreamweaver (2007)Intermediate Dreamweaver (2007)
Intermediate Dreamweaver (2007)Matteo Wyllyamz
 

La actualidad más candente (18)

Beyond web services: supporting mashup artists at Yahoo!
Beyond web services: supporting mashup artists at Yahoo!Beyond web services: supporting mashup artists at Yahoo!
Beyond web services: supporting mashup artists at Yahoo!
 
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
 
Decoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSSDecoupling the Front-end with Modular CSS
Decoupling the Front-end with Modular CSS
 
Mozilla Developer Derby October 2012: Media Queries
Mozilla Developer Derby October 2012: Media Queries Mozilla Developer Derby October 2012: Media Queries
Mozilla Developer Derby October 2012: Media Queries
 
CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)CSS Lessons Learned the Hard Way (Generate Conf)
CSS Lessons Learned the Hard Way (Generate Conf)
 
P.S. I love you
P.S. I love youP.S. I love you
P.S. I love you
 
Web accessibility with Ametys CMS
Web accessibility with Ametys CMSWeb accessibility with Ametys CMS
Web accessibility with Ametys CMS
 
Fosdem 2009 – improving drupal's page loading performance
Fosdem 2009 – improving drupal's page loading performanceFosdem 2009 – improving drupal's page loading performance
Fosdem 2009 – improving drupal's page loading performance
 
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
 
Responsive Design Overview for UB CIT
Responsive Design Overview for UB CITResponsive Design Overview for UB CIT
Responsive Design Overview for UB CIT
 
SEO Horror Stories
SEO Horror StoriesSEO Horror Stories
SEO Horror Stories
 
Hammersmith fundamentals html fundamentals
Hammersmith fundamentals   html fundamentalsHammersmith fundamentals   html fundamentals
Hammersmith fundamentals html fundamentals
 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
 
[Access U 2010] HTML5 & Accessibility
[Access U 2010] HTML5 & Accessibility[Access U 2010] HTML5 & Accessibility
[Access U 2010] HTML5 & Accessibility
 
Atlassian Summit 2012 - How Atlassian Makes Its Wiki Sticky
Atlassian Summit 2012 - How Atlassian Makes Its Wiki StickyAtlassian Summit 2012 - How Atlassian Makes Its Wiki Sticky
Atlassian Summit 2012 - How Atlassian Makes Its Wiki Sticky
 
Intro to Drupal Slides - DrupalCampSC 2014
Intro to Drupal Slides - DrupalCampSC 2014Intro to Drupal Slides - DrupalCampSC 2014
Intro to Drupal Slides - DrupalCampSC 2014
 
Navigation in Responsive Design
Navigation in Responsive DesignNavigation in Responsive Design
Navigation in Responsive Design
 
Intermediate Dreamweaver (2007)
Intermediate Dreamweaver (2007)Intermediate Dreamweaver (2007)
Intermediate Dreamweaver (2007)
 

Similar a Old Dog, New Tricks

CSS pattern libraries
CSS pattern librariesCSS pattern libraries
CSS pattern librariesRuss Weakley
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Clarissa Peterson
 
Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014Adrian Roselli
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
 
Web Accessibility for the 21st Century
Web Accessibility for the 21st CenturyWeb Accessibility for the 21st Century
Web Accessibility for the 21st Centurydreamwidth
 
Advanced sass/compass
Advanced sass/compassAdvanced sass/compass
Advanced sass/compassNick Cooley
 
The Why and What of Pattern Lab
The Why and What of Pattern LabThe Why and What of Pattern Lab
The Why and What of Pattern LabDave Olsen
 
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}Eric Carlisle
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12ucbdrupal
 
Graphic Design For Web
Graphic Design For WebGraphic Design For Web
Graphic Design For WebDeniz Gökçe
 
Alfresco from an agile framework perspective
Alfresco from an agile framework perspectiveAlfresco from an agile framework perspective
Alfresco from an agile framework perspectiveJeff Potts
 
10 Simple Rules for Making My Site Accessible
10 Simple Rules for Making My Site Accessible10 Simple Rules for Making My Site Accessible
10 Simple Rules for Making My Site AccessibleHelena Zubkow
 
960 grid psd
960 grid psd960 grid psd
960 grid psdRaju Nag
 
The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)Chris Mills
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSNaga Harish M
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapRapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapJosh Jeffryes
 

Similar a Old Dog, New Tricks (20)

CSS pattern libraries
CSS pattern librariesCSS pattern libraries
CSS pattern libraries
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
 
CSS for Mobile
CSS for MobileCSS for Mobile
CSS for Mobile
 
Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Web Accessibility for the 21st Century
Web Accessibility for the 21st CenturyWeb Accessibility for the 21st Century
Web Accessibility for the 21st Century
 
Advanced sass/compass
Advanced sass/compassAdvanced sass/compass
Advanced sass/compass
 
Css
CssCss
Css
 
The Why and What of Pattern Lab
The Why and What of Pattern LabThe Why and What of Pattern Lab
The Why and What of Pattern Lab
 
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12
 
Graphic Design For Web
Graphic Design For WebGraphic Design For Web
Graphic Design For Web
 
Building Webs Better
Building Webs BetterBuilding Webs Better
Building Webs Better
 
Alfresco from an agile framework perspective
Alfresco from an agile framework perspectiveAlfresco from an agile framework perspective
Alfresco from an agile framework perspective
 
10 Simple Rules for Making My Site Accessible
10 Simple Rules for Making My Site Accessible10 Simple Rules for Making My Site Accessible
10 Simple Rules for Making My Site Accessible
 
960 grid psd
960 grid psd960 grid psd
960 grid psd
 
The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JS
 
BDD, Behat & Drupal
BDD, Behat & DrupalBDD, Behat & Drupal
BDD, Behat & Drupal
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapRapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with Bootstrap
 

Más de Simon Collison

A Dialect of Our Own Design
A Dialect of Our Own DesignA Dialect of Our Own Design
A Dialect of Our Own DesignSimon Collison
 
Elegance Without Compromise
Elegance Without CompromiseElegance Without Compromise
Elegance Without CompromiseSimon Collison
 
EE: Five Years Of Quiet Revolution
EE: Five Years Of Quiet RevolutionEE: Five Years Of Quiet Revolution
EE: Five Years Of Quiet RevolutionSimon Collison
 
Developing Your Ultimate Package
Developing Your Ultimate PackageDeveloping Your Ultimate Package
Developing Your Ultimate PackageSimon Collison
 
Nailing Your Own Projects
Nailing Your Own ProjectsNailing Your Own Projects
Nailing Your Own ProjectsSimon Collison
 
High Noon Shoot Out - Design
High Noon Shoot Out - DesignHigh Noon Shoot Out - Design
High Noon Shoot Out - DesignSimon Collison
 
The Business Of Web Design
The Business Of Web DesignThe Business Of Web Design
The Business Of Web DesignSimon Collison
 

Más de Simon Collison (14)

Notes from the Edge
Notes from the EdgeNotes from the Edge
Notes from the Edge
 
A Dialect of Our Own Design
A Dialect of Our Own DesignA Dialect of Our Own Design
A Dialect of Our Own Design
 
Elegance Without Compromise
Elegance Without CompromiseElegance Without Compromise
Elegance Without Compromise
 
Adaptive Systems
Adaptive SystemsAdaptive Systems
Adaptive Systems
 
Subconscious Design
Subconscious DesignSubconscious Design
Subconscious Design
 
Design To Communicate
Design To CommunicateDesign To Communicate
Design To Communicate
 
The Pursuit of Magic
The Pursuit of MagicThe Pursuit of Magic
The Pursuit of Magic
 
EE: Five Years Of Quiet Revolution
EE: Five Years Of Quiet RevolutionEE: Five Years Of Quiet Revolution
EE: Five Years Of Quiet Revolution
 
Developing Your Ultimate Package
Developing Your Ultimate PackageDeveloping Your Ultimate Package
Developing Your Ultimate Package
 
Nailing Your Own Projects
Nailing Your Own ProjectsNailing Your Own Projects
Nailing Your Own Projects
 
The Process Toolbox
The Process ToolboxThe Process Toolbox
The Process Toolbox
 
High Noon Shoot Out - Design
High Noon Shoot Out - DesignHigh Noon Shoot Out - Design
High Noon Shoot Out - Design
 
The Business Of Web Design
The Business Of Web DesignThe Business Of Web Design
The Business Of Web Design
 
Knowing Your Audience
Knowing Your AudienceKnowing Your Audience
Knowing Your Audience
 

Último

The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfAmirYakdi
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxTusharBahuguna2
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja Nehwal
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxjeswinjees
 

Último (20)

The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
꧁❤ Hauz Khas Call Girls Service Hauz Khas Delhi ❤꧂ 9999965857 ☎️ Hard And Sex...
꧁❤ Hauz Khas Call Girls Service Hauz Khas Delhi ❤꧂ 9999965857 ☎️ Hard And Sex...꧁❤ Hauz Khas Call Girls Service Hauz Khas Delhi ❤꧂ 9999965857 ☎️ Hard And Sex...
꧁❤ Hauz Khas Call Girls Service Hauz Khas Delhi ❤꧂ 9999965857 ☎️ Hard And Sex...
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptx
 

Old Dog, New Tricks