SlideShare a Scribd company logo
1 of 30
Download to read offline
CMS/DESIGN INTEGRATION
          @RICHARDCARTER
WHAT IS THEMING?
MARK-UP
   +
 STYLE     =     THEMING
   +
SWEARING
BASE THEMES


CONVENIENCE vs OVERHEAD
BASE THEMES II

MEDIAWIKI    COMMON.CSS
WORDPRESS     ‘STARKERS’
 MAGENTO     BASE THEME
ABSTRACTION


AS LITTLE LOGIC AS POSSIBLE(?)
NAUGHTY WORDPRESS
<title>
 <?php
     global $page, $paged;
     wp_title( '|', true, 'right' );
     bloginfo( 'name' );
     $site_description = get_bloginfo(
'description', 'display' );
     if ( $site_description && (
is_home() || is_front_page() ) )
          echo " | $site_description";
     if ( $paged >= 2 || $page >= 2 )
          ...
     ?>
</title>
BETTER: MEDIAWIKI


<title>
  <?php $this->text('pagetitle') ?>
</title>
NICER MODX


<title>
  [*pagetitle*] | [(site_name)]
</title>
BETTER? JOOMLA


<head>
  <jdoc:include type="head" />
  ...
</head>
BETTER? MAGENTO


<head>
<?php echo $this->getChildHtml('head') ?>
</head>
ABSTRACTION


AS LITTLE LOGIC AS POSSIBLE
ABSTRACTION


(BUT WE WANT LOGIC CHOICE)
GRANULARITY


CONTROL WHERE IT MATTERS
MEDIAWIKI

<?php
 if ( $boxName == 'navigation' ) {
      print '<nav>';
      $this->customBox('navigation', $cont);
      print '</nav>';
 }
?>
MEDIAWIKI
<ul>

<li id="n-Home">
 <a href="...">Home</a>
</li>
<li id="n-About">
 <a href="...">About</a>
</li>

</ul>
MODX
<div id="navigation">
     [!Wayfinder?startId=‘0’!]
</div>

...

<li[+wf.classes+]>
  <a href="[+wf.link+]">
   <em>[+wf.linktext+]</em>
  </a>[+wf.wrapper+]
</li>
DRUPAL


<?php
     print render($page['navigation']);
?>
GRANULARITY

BUT WHERE DO WE
 DRAW THE LINE?

  IT’S BLURRY
CLASSTASTIC + DIVTASTIC




                @PHILSHERRY
GRANULARITY OVERLAP
<ul>
 <li class="collapsed first">
  <a href="/about">About Us</a>
 </li>
...
 <li class="leaf last">
  <a href="/contact">Contact</a>
 </li>
</ul>
GRANULARITY OVERLAP

ul li:first-of-type {
...
}

ul li:last-of-type {
...
}
THE CMS PROBLEM


WYSIWTF


            @ADACTIO
THE CMS PROBLEM
THE CMS PROBLEM
<h6>
 <span style="color: #800080;">
   ...</span>
 <span style="font-weight: normal;">...
   </span>
</h6>
PORTABILITY


NICE TO HAVE
DOCUMENTATION
DOCUMENTATION
THINGS I SKIMMED OVER

LAYOUT CONTROL
  SCALABILITY
DRUPAL NE




LAST WEDNESDAY OF THE MONTH
                       @DRUPALNE
QUESTIONS?


...OR PREFERABLY, BEER


                  @RICHARDCARTER

More Related Content

What's hot

Javascript
JavascriptJavascript
Javascripttimsplin
 
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...Al-Mamun Sarkar
 
php Slideshare
php Slidesharephp Slideshare
php SlideshareJason Liao
 
jQuery Awesomesauce
jQuery AwesomesaucejQuery Awesomesauce
jQuery AwesomesauceSean Gaffney
 
SULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN BASHA
 
Gutenberg Blocks Development for Programmers with no time
Gutenberg Blocks Development for Programmers with no timeGutenberg Blocks Development for Programmers with no time
Gutenberg Blocks Development for Programmers with no timeMauricio Gelves
 
Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)Adam Štipák
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Al-Mamun Sarkar
 
Андрей Юртаев - Improve theming with (Twitter) Bootstrap
Андрей Юртаев - Improve theming with (Twitter) BootstrapАндрей Юртаев - Improve theming with (Twitter) Bootstrap
Андрей Юртаев - Improve theming with (Twitter) BootstrapDrupalSPB
 
How to work with legacy code PHPers Rzeszow #2
How to work with legacy code PHPers Rzeszow #2How to work with legacy code PHPers Rzeszow #2
How to work with legacy code PHPers Rzeszow #2Michał Kruczek
 
Evrone.ru / BEM for RoR
Evrone.ru / BEM for RoREvrone.ru / BEM for RoR
Evrone.ru / BEM for RoRDmitry KODer
 
How to work with legacy code
How to work with legacy codeHow to work with legacy code
How to work with legacy codeMichał Kruczek
 
Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016Marcel Schmitz
 

What's hot (20)

Javascript
JavascriptJavascript
Javascript
 
More of less (take 2)
More of less (take 2)More of less (take 2)
More of less (take 2)
 
TICT #13
TICT #13TICT #13
TICT #13
 
TICT #11
TICT #11 TICT #11
TICT #11
 
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
 
php Slideshare
php Slidesharephp Slideshare
php Slideshare
 
jQuery Awesomesauce
jQuery AwesomesaucejQuery Awesomesauce
jQuery Awesomesauce
 
SULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programs
 
Php if
Php ifPhp if
Php if
 
Gutenberg Blocks Development for Programmers with no time
Gutenberg Blocks Development for Programmers with no timeGutenberg Blocks Development for Programmers with no time
Gutenberg Blocks Development for Programmers with no time
 
Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)Nette framework (WebElement #27 lightning talk)
Nette framework (WebElement #27 lightning talk)
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
 
Андрей Юртаев - Improve theming with (Twitter) Bootstrap
Андрей Юртаев - Improve theming with (Twitter) BootstrapАндрей Юртаев - Improve theming with (Twitter) Bootstrap
Андрей Юртаев - Improve theming with (Twitter) Bootstrap
 
How to work with legacy code PHPers Rzeszow #2
How to work with legacy code PHPers Rzeszow #2How to work with legacy code PHPers Rzeszow #2
How to work with legacy code PHPers Rzeszow #2
 
Evrone.ru / BEM for RoR
Evrone.ru / BEM for RoREvrone.ru / BEM for RoR
Evrone.ru / BEM for RoR
 
How to work with legacy code
How to work with legacy codeHow to work with legacy code
How to work with legacy code
 
Insertcustomer
InsertcustomerInsertcustomer
Insertcustomer
 
Prograweb
PrograwebPrograweb
Prograweb
 
aman's code
aman's codeaman's code
aman's code
 
Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016
 

Viewers also liked

Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citationJudyMark
 
Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citation46griner1
 
Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citationJudyMark
 
What are clouds made from
What are clouds made fromWhat are clouds made from
What are clouds made fromJohn Garbutt
 
20 tips to make your website sell harder
20 tips to make your website sell harder20 tips to make your website sell harder
20 tips to make your website sell harderPeacock Carter Ltd
 
Introduction to Magento 2 (from Magento North East event)
Introduction to Magento 2 (from Magento North East event)Introduction to Magento 2 (from Magento North East event)
Introduction to Magento 2 (from Magento North East event)Peacock Carter Ltd
 
Design Network North: The Future of Ecommerce - Magento 2
Design Network North: The Future of Ecommerce - Magento 2Design Network North: The Future of Ecommerce - Magento 2
Design Network North: The Future of Ecommerce - Magento 2Peacock Carter Ltd
 
WordPress North East - capturing more sales from your customers - January 2016
WordPress North East - capturing more sales from your customers - January 2016WordPress North East - capturing more sales from your customers - January 2016
WordPress North East - capturing more sales from your customers - January 2016Peacock Carter Ltd
 
Tsunami warning system
Tsunami warning systemTsunami warning system
Tsunami warning systems1180052
 

Viewers also liked (10)

Eu
EuEu
Eu
 
Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citation
 
Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citation
 
Elements of an article citation
Elements of an article citationElements of an article citation
Elements of an article citation
 
What are clouds made from
What are clouds made fromWhat are clouds made from
What are clouds made from
 
20 tips to make your website sell harder
20 tips to make your website sell harder20 tips to make your website sell harder
20 tips to make your website sell harder
 
Introduction to Magento 2 (from Magento North East event)
Introduction to Magento 2 (from Magento North East event)Introduction to Magento 2 (from Magento North East event)
Introduction to Magento 2 (from Magento North East event)
 
Design Network North: The Future of Ecommerce - Magento 2
Design Network North: The Future of Ecommerce - Magento 2Design Network North: The Future of Ecommerce - Magento 2
Design Network North: The Future of Ecommerce - Magento 2
 
WordPress North East - capturing more sales from your customers - January 2016
WordPress North East - capturing more sales from your customers - January 2016WordPress North East - capturing more sales from your customers - January 2016
WordPress North East - capturing more sales from your customers - January 2016
 
Tsunami warning system
Tsunami warning systemTsunami warning system
Tsunami warning system
 

Similar to SuperMondays, July 2011

Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) ThemingPINGV
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Terry Ryan
 
Presentation html5 css3 by thibaut
Presentation html5 css3 by thibautPresentation html5 css3 by thibaut
Presentation html5 css3 by thibautThibaut Baillet
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2James Pearce
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!Coulawrence
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine DesignerMatias
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersFortySeven Media
 
How to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseHow to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseDavid Yeiser
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisPablo Garrido
 
Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckAnthony Montalbano
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference ClientDallan Quass
 
Scaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsScaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsMike Schinkel
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQueryRemy Sharp
 
Web accessibility
Web accessibilityWeb accessibility
Web accessibilityEb Styles
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 

Similar to SuperMondays, July 2011 (20)

Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Presentation html5 css3 by thibaut
Presentation html5 css3 by thibautPresentation html5 css3 by thibaut
Presentation html5 css3 by thibaut
 
Capstone Website Code
Capstone Website CodeCapstone Website Code
Capstone Website Code
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2
 
Stole16
Stole16Stole16
Stole16
 
1cst
1cst1cst
1cst
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine Designer
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for Designers
 
How to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseHow to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public Release
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
 
Your Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages SuckYour Custom WordPress Admin Pages Suck
Your Custom WordPress Admin Pages Suck
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference Client
 
Scaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsScaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise Apps
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQuery
 
Web accessibility
Web accessibilityWeb accessibility
Web accessibility
 
iWebkit
iWebkitiWebkit
iWebkit
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
P.S. I love you
P.S. I love youP.S. I love you
P.S. I love you
 

More from Peacock Carter Ltd

Best practice for WordPress theme building - WordPress North East June 2021
Best practice for WordPress theme building - WordPress North East June 2021Best practice for WordPress theme building - WordPress North East June 2021
Best practice for WordPress theme building - WordPress North East June 2021Peacock Carter Ltd
 
Introduction to ecommerce for WordPress - WordPress North East - April 2021
Introduction to ecommerce for WordPress - WordPress North East - April 2021Introduction to ecommerce for WordPress - WordPress North East - April 2021
Introduction to ecommerce for WordPress - WordPress North East - April 2021Peacock Carter Ltd
 
A WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom FieldsA WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom FieldsPeacock Carter Ltd
 
SEO basics for WordPress websites - WPNE January 2020
SEO basics for WordPress websites - WPNE January 2020SEO basics for WordPress websites - WPNE January 2020
SEO basics for WordPress websites - WPNE January 2020Peacock Carter Ltd
 
SEO basics for WordPress websites
SEO basics for WordPress websitesSEO basics for WordPress websites
SEO basics for WordPress websitesPeacock Carter Ltd
 
StartUps In North East 2017 - 20 ways to make your website sell harder
StartUps In North East 2017 - 20 ways to make your website sell harderStartUps In North East 2017 - 20 ways to make your website sell harder
StartUps In North East 2017 - 20 ways to make your website sell harderPeacock Carter Ltd
 
Advanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastAdvanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastPeacock Carter Ltd
 
Drupal North East - Drupal 6 to 7 migration case study
Drupal North East - Drupal 6 to 7 migration case studyDrupal North East - Drupal 6 to 7 migration case study
Drupal North East - Drupal 6 to 7 migration case studyPeacock Carter Ltd
 
Magento vs WooCommerce - October 2016, Ecommerce North East
Magento vs WooCommerce - October 2016, Ecommerce North EastMagento vs WooCommerce - October 2016, Ecommerce North East
Magento vs WooCommerce - October 2016, Ecommerce North EastPeacock Carter Ltd
 
Magento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoinMagento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoinPeacock Carter Ltd
 
Introduction to Magento at Ecommerce North East
Introduction to Magento at Ecommerce North EastIntroduction to Magento at Ecommerce North East
Introduction to Magento at Ecommerce North EastPeacock Carter Ltd
 
A responsive workflow for WordPress
A responsive workflow for WordPressA responsive workflow for WordPress
A responsive workflow for WordPressPeacock Carter Ltd
 

More from Peacock Carter Ltd (12)

Best practice for WordPress theme building - WordPress North East June 2021
Best practice for WordPress theme building - WordPress North East June 2021Best practice for WordPress theme building - WordPress North East June 2021
Best practice for WordPress theme building - WordPress North East June 2021
 
Introduction to ecommerce for WordPress - WordPress North East - April 2021
Introduction to ecommerce for WordPress - WordPress North East - April 2021Introduction to ecommerce for WordPress - WordPress North East - April 2021
Introduction to ecommerce for WordPress - WordPress North East - April 2021
 
A WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom FieldsA WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom Fields
 
SEO basics for WordPress websites - WPNE January 2020
SEO basics for WordPress websites - WPNE January 2020SEO basics for WordPress websites - WPNE January 2020
SEO basics for WordPress websites - WPNE January 2020
 
SEO basics for WordPress websites
SEO basics for WordPress websitesSEO basics for WordPress websites
SEO basics for WordPress websites
 
StartUps In North East 2017 - 20 ways to make your website sell harder
StartUps In North East 2017 - 20 ways to make your website sell harderStartUps In North East 2017 - 20 ways to make your website sell harder
StartUps In North East 2017 - 20 ways to make your website sell harder
 
Advanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastAdvanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North East
 
Drupal North East - Drupal 6 to 7 migration case study
Drupal North East - Drupal 6 to 7 migration case studyDrupal North East - Drupal 6 to 7 migration case study
Drupal North East - Drupal 6 to 7 migration case study
 
Magento vs WooCommerce - October 2016, Ecommerce North East
Magento vs WooCommerce - October 2016, Ecommerce North EastMagento vs WooCommerce - October 2016, Ecommerce North East
Magento vs WooCommerce - October 2016, Ecommerce North East
 
Magento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoinMagento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoin
 
Introduction to Magento at Ecommerce North East
Introduction to Magento at Ecommerce North EastIntroduction to Magento at Ecommerce North East
Introduction to Magento at Ecommerce North East
 
A responsive workflow for WordPress
A responsive workflow for WordPressA responsive workflow for WordPress
A responsive workflow for WordPress
 

Recently uploaded

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

SuperMondays, July 2011