SlideShare a Scribd company logo
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
 
TICT #13
TICT #13TICT #13
TICT #13
azman_awan9
 
TICT #11
TICT #11 TICT #11
TICT #11
azman_awan9
 
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 Slideshare
Jason Liao
 
jQuery Awesomesauce
jQuery AwesomesaucejQuery Awesomesauce
jQuery Awesomesauce
Sean Gaffney
 
SULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programsSULTHAN's - PHP MySQL programs
SULTHAN's - PHP MySQL programs
SULTHAN 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 time
Mauricio 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) Bootstrap
DrupalSPB
 
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
Michał 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 code
Michał Kruczek
 
Insertcustomer
InsertcustomerInsertcustomer
Insertcustomer
amirthalingam m
 
Prograweb
PrograwebPrograweb
Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016Security and Mobility - WordCamp Porto 2016
Security and Mobility - WordCamp Porto 2016
Marcel 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

Eu
EuEu
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 from
John 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 harder
Peacock 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 2
Peacock 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 2016
Peacock 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) Theming
PINGV
 
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 thibaut
Thibaut 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
 
Stole16
Stole16Stole16
Stole16
rworldoffice
 
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
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for Designers
FortySeven Media
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine Designer
Matias
 
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
David 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óveis
Pablo 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 Client
Dallan Quass
 
Scaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsScaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise Apps
Mike 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 sucks
Tim Wright
 
P.S. I love you
P.S. I love youP.S. I love you
P.S. I love you
Oleksandr Strikha
 

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!
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for Designers
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine Designer
 
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 2021
Peacock 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 2021
Peacock 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 Fields
Peacock 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 2020
Peacock Carter Ltd
 
SEO basics for WordPress websites
SEO basics for WordPress websitesSEO basics for WordPress websites
SEO basics for WordPress websites
Peacock 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 harder
Peacock Carter Ltd
 
Advanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastAdvanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North East
Peacock 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 study
Peacock 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 East
Peacock Carter Ltd
 
Magento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoinMagento North East: Introduction to BitCoin
Magento North East: Introduction to BitCoin
Peacock 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 East
Peacock Carter Ltd
 
A responsive workflow for WordPress
A responsive workflow for WordPressA responsive workflow for WordPress
A responsive workflow for WordPress
Peacock 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

GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 

Recently uploaded (20)

GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 

SuperMondays, July 2011