SlideShare ist ein Scribd-Unternehmen logo
1 von 93
Downloaden Sie, um offline zu lesen
Jay Garcia, CTO & Co-Founder, Modus Create
@ModusJesus
jay@moduscreate.com
Sencha Touch
Custom Components
Monday, July 22, 13
Agenda
• Discuss the creation of custom Touch components
• Explore some of the tricks of the trade
• Look at some code that enables custom UI
Monday, July 22, 13
About Me
• CTO & Co-Founder Modus Create
• Started with Touch in 2009
• Author of
- Ext JS in Action (3.0 & 4.0)
- Sencha Touch in Action
• Sencha Community supporter
since 2006
Monday, July 22, 13
Composite
vs
Custom
Monday, July 22, 13
Why create custom
Touch components?
Monday, July 22, 13
Custom Functionality!
• Requires us to put our thinking caps on
- Write our own DOM renderers
- Custom styles created
- DOM listeners must be applied
- Interactions must be hand-coded
- House cleaning is up to you!
Monday, July 22, 13
Swipe a list item to reveal actions underneath
Monday, July 22, 13
Custom carousel with dynamic image loader
Monday, July 22, 13
Custom audio FFT data renderer
Monday, July 22, 13
What do I need to know
to create custom
components?
Monday, July 22, 13
What you need to know
• HTML5 semantics
• CSS3
• SASS, Compass
• Touch component lifecycle basics
• Touch Class System
- Config system
- Extending
- Overriding
- Build process
Monday, July 22, 13
Choosing which
component to extend
Monday, July 22, 13
Extend Ext.Component
Monday, July 22, 13
Custom carousel with dynamic image loader
Monday, July 22, 13
Two extensions required for this one!
Monday, July 22, 13
The anatomy of a
custom component
Monday, July 22, 13
Let’s destruct this one component
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Class Name
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Superclass
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
XType
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Classes to
require
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Config block
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Applier
function
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Initialize
function
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Event
handlers
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Anatomy of a custom component
Utility
methods
Monday, July 22, 13
Anatomy of a custom component
Monday, July 22, 13
Constructing a custom
Component
Monday, July 22, 13
Custom DOM
Monday, July 22, 13
Custom DOM
JiT instance
of XTemplate
Monday, July 22, 13
Custom DOM
Monday, July 22, 13
Custom DOM
Light DOM
Monday, July 22, 13
Custom DOM
Monday, July 22, 13
Register event listeners
Monday, July 22, 13
Register event listeners
Register drag
events
Monday, July 22, 13
Register event listeners
Monday, July 22, 13
Custom animations
Monday, July 22, 13
Custom animations
Animate
elements
Monday, July 22, 13
Custom animations
Monday, July 22, 13
Cleanup
Monday, July 22, 13
Cleanup
Create post-
transition
event handler
Monday, July 22, 13
Cleanup
Monday, July 22, 13
Cleanup
Register
event handler
Monday, July 22, 13
Cleanup
Monday, July 22, 13
Cleanup
Invoke reset
animation
Monday, July 22, 13
Cleanup
Monday, July 22, 13
Cleanup
Initiate
cleanup
Monday, July 22, 13
Cleanup
Monday, July 22, 13
Cleanup part 2
Monday, July 22, 13
Cleanup part 2
Destroy
element
Monday, July 22, 13
Cleanup part 2
Monday, July 22, 13
Custom component
tasks
Monday, July 22, 13
Custom carousel with dynamic image loader
Monday, July 22, 13
App details
• Mashup of Rotten Tomatoes &
YouTube APIs
- Uses a custom proxy for data
retention
- Silk JS & Redis
• Recreates the feel of the Netflix
mobile application
Monday, July 22, 13
Problem
• All trailer images download at the
same time
• SLOW on 3G!
- Could incur data usage for users
unnecessarily
• How do we fix this?
Monday, July 22, 13
Solution
• Custom extension to Container
• Listens to scroller scroll event
- Loads images when they need to be
Monday, July 22, 13
Configure custom DOM
Monday, July 22, 13
Register event listeners
Monday, July 22, 13
Register event listeners
Scroll event
listener
Monday, July 22, 13
Register event listeners
Monday, July 22, 13
Load images on demand
Monday, July 22, 13
Load images on demand
Load
image
Monday, July 22, 13
Load images on demand
Monday, July 22, 13
DEMO
Monday, July 22, 13
Custom audio FFT data renderer
Monday, July 22, 13
App details
• Amiga Mod music Player
• Touch 2.2.1 UI
• Driven by custom PhoneGap plugin
- C++ Library wrapped with ObjC
• Renders FFT audio data
• Custom Canvas component
- Three different modes
• Really fast!!
- 20ms return cycle
Monday, July 22, 13
DEMO
Monday, July 22, 13
How this app works
LibBass
C++
LibBass
C++
Cordova Plugin
ObjectiveC
Cordova
Sencha Touch
Monday, July 22, 13
How this app works
LibBass
C++
LibBass
C++
Cordova Plugin
ObjectiveC
Cordova
Sencha Touch
• Directory contents
• Load a song
• Play a song
• Get song FFT data
Monday, July 22, 13
How this app works
LibBass
C++
LibBass
C++
Cordova Plugin
ObjectiveC
Cordova
Sencha Touch
• Directory contents
• Load a song
• Play a song
• Get song FFT data
20ms
Monday, July 22, 13
Poll Cordova for data
Monday, July 22, 13
Poll Cordova for data
Update data
on View
Monday, July 22, 13
Poll Cordova for data
Monday, July 22, 13
Render data
Monday, July 22, 13
Render data
Monday, July 22, 13
Render data
Clear canvas
Monday, July 22, 13
Render data
Monday, July 22, 13
Render data
Update
canvas
Monday, July 22, 13
Render data
Monday, July 22, 13
Resources
Monday, July 22, 13
Resources
Monday, July 22, 13
More about custom components
Friday 11:30AM
Room E2
Monday, July 22, 13
Wrapping up
• Think speed
• Light DOM
• Optimized JavaScript
• Write your own event handlers
• Clean up after yourself!
• Remove unnecessary event handlers
• Remove DOM when not needed
Monday, July 22, 13
Take the Survey!
• Session Survey
- Available on the SenchaCon
mobile app
- http://app.senchacon.com
• Be Social!
- @SenchaCon
- #SenchaCon
- @ModusJesus
- @ModusCreate
Monday, July 22, 13

Weitere ähnliche Inhalte

Andere mochten auch

Barcelona presentacio tampere antirumors
Barcelona presentacio tampere antirumorsBarcelona presentacio tampere antirumors
Barcelona presentacio tampere antirumorsThomas Jézéquel
 
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt ra
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt raHệ thống ngân hàng thương mại việt nam và những vấn đề đặt ra
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt raAskSock Ngô Quang Đạo
 
Audience innovation
Audience innovationAudience innovation
Audience innovationPaolo Casti
 
Charter reporting sanahuja final
Charter reporting sanahuja finalCharter reporting sanahuja final
Charter reporting sanahuja finalThomas Jézéquel
 
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore MarylandJerry's Mitsubishi
 
Javascript Performance Tricks
Javascript Performance TricksJavascript Performance Tricks
Javascript Performance TricksPatrick Sheridan
 
Oakwood Premier Mumbai
Oakwood Premier MumbaiOakwood Premier Mumbai
Oakwood Premier Mumbaianil-chavan
 
Zf mi p_98_67_mf_g2_2_semestr
Zf mi p_98_67_mf_g2_2_semestrZf mi p_98_67_mf_g2_2_semestr
Zf mi p_98_67_mf_g2_2_semestrdarekm31
 
Oakwood premier prestige bangalore
Oakwood premier prestige bangaloreOakwood premier prestige bangalore
Oakwood premier prestige bangaloreanil-chavan
 
Managing Process Improvement
Managing Process ImprovementManaging Process Improvement
Managing Process ImprovementBill Fox
 
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore MarylandJerry's Mitsubishi
 
APPtividad Física. La promoción de la Actividad física.
APPtividad Física. La promoción de la Actividad física.APPtividad Física. La promoción de la Actividad física.
APPtividad Física. La promoción de la Actividad física.Daniel Lara Cobos
 

Andere mochten auch (16)

Barcelona presentacio tampere antirumors
Barcelona presentacio tampere antirumorsBarcelona presentacio tampere antirumors
Barcelona presentacio tampere antirumors
 
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt ra
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt raHệ thống ngân hàng thương mại việt nam và những vấn đề đặt ra
Hệ thống ngân hàng thương mại việt nam và những vấn đề đặt ra
 
Teachertube
TeachertubeTeachertube
Teachertube
 
Audience innovation
Audience innovationAudience innovation
Audience innovation
 
Charter reporting sanahuja final
Charter reporting sanahuja finalCharter reporting sanahuja final
Charter reporting sanahuja final
 
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse Spyder at Jerry's Mitsubishi in Baltimore Maryland
 
Javascript Performance Tricks
Javascript Performance TricksJavascript Performance Tricks
Javascript Performance Tricks
 
HTML5 and Sencha Touch
HTML5 and Sencha TouchHTML5 and Sencha Touch
HTML5 and Sencha Touch
 
Portfolio
PortfolioPortfolio
Portfolio
 
Maltrato infantil
Maltrato infantilMaltrato infantil
Maltrato infantil
 
Oakwood Premier Mumbai
Oakwood Premier MumbaiOakwood Premier Mumbai
Oakwood Premier Mumbai
 
Zf mi p_98_67_mf_g2_2_semestr
Zf mi p_98_67_mf_g2_2_semestrZf mi p_98_67_mf_g2_2_semestr
Zf mi p_98_67_mf_g2_2_semestr
 
Oakwood premier prestige bangalore
Oakwood premier prestige bangaloreOakwood premier prestige bangalore
Oakwood premier prestige bangalore
 
Managing Process Improvement
Managing Process ImprovementManaging Process Improvement
Managing Process Improvement
 
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland
2011 Mitsubishi Eclipse at Jerry's Mitsubishi in Baltimore Maryland
 
APPtividad Física. La promoción de la Actividad física.
APPtividad Física. La promoción de la Actividad física.APPtividad Física. La promoción de la Actividad física.
APPtividad Física. La promoción de la Actividad física.
 

Ähnlich wie SenchaCon: Sencha Touch Custom Components

SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch Patrick Sheridan
 
SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch Patrick Sheridan
 
From Renamer Plugin to Polyglot IDE
From Renamer Plugin to Polyglot IDEFrom Renamer Plugin to Polyglot IDE
From Renamer Plugin to Polyglot IDEintelliyole
 
Creating social features at BranchOut using MongoDB
Creating social features at BranchOut using MongoDBCreating social features at BranchOut using MongoDB
Creating social features at BranchOut using MongoDBLewis Lin 🦊
 
Mobile beneath-the-sheets
Mobile beneath-the-sheetsMobile beneath-the-sheets
Mobile beneath-the-sheetsresponseteam
 
Drupal 8 for site builders
Drupal 8 for site buildersDrupal 8 for site builders
Drupal 8 for site buildersswentel
 
Drupal: Internet Lego - What Modules Do I Use?
Drupal: Internet Lego - What Modules Do I Use?Drupal: Internet Lego - What Modules Do I Use?
Drupal: Internet Lego - What Modules Do I Use?Eric Aitala
 
Groovy & Grails eXchange 2012 - Building an e-commerce business with gr8 tec...
Groovy & Grails eXchange 2012 - Building an  e-commerce business with gr8 tec...Groovy & Grails eXchange 2012 - Building an  e-commerce business with gr8 tec...
Groovy & Grails eXchange 2012 - Building an e-commerce business with gr8 tec...Domingo Suarez Torres
 
An Introduction to DevOps with Chef
An Introduction to DevOps with ChefAn Introduction to DevOps with Chef
An Introduction to DevOps with ChefJulian Dunn
 
jQuery Mobile Deep Dive
jQuery Mobile Deep DivejQuery Mobile Deep Dive
jQuery Mobile Deep DiveTroy Miles
 
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Group
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP GroupDeveloping Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Group
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Groupminddog
 
jQuery Conference 2012 keynote
jQuery Conference 2012 keynotejQuery Conference 2012 keynote
jQuery Conference 2012 keynotedmethvin
 
PhoneGap in 60 Minutes or Less
PhoneGap in 60 Minutes or LessPhoneGap in 60 Minutes or Less
PhoneGap in 60 Minutes or LessTroy Miles
 
Responsive Design and jQuery Mobile
Responsive Design and jQuery MobileResponsive Design and jQuery Mobile
Responsive Design and jQuery MobileTroy Miles
 
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...Google Developer Relations Team
 
A tale of two technologies talk at autodesk 5-13
A tale of two technologies   talk at autodesk 5-13A tale of two technologies   talk at autodesk 5-13
A tale of two technologies talk at autodesk 5-13Jay Trimble
 
UberFire (JudCon 2013)
UberFire (JudCon 2013)UberFire (JudCon 2013)
UberFire (JudCon 2013)Mark Proctor
 

Ähnlich wie SenchaCon: Sencha Touch Custom Components (20)

SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch
 
SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch SenchaCon: DJing with Sencha Touch
SenchaCon: DJing with Sencha Touch
 
From Renamer Plugin to Polyglot IDE
From Renamer Plugin to Polyglot IDEFrom Renamer Plugin to Polyglot IDE
From Renamer Plugin to Polyglot IDE
 
Creating social features at BranchOut using MongoDB
Creating social features at BranchOut using MongoDBCreating social features at BranchOut using MongoDB
Creating social features at BranchOut using MongoDB
 
Mobile beneath-the-sheets
Mobile beneath-the-sheetsMobile beneath-the-sheets
Mobile beneath-the-sheets
 
Drupal 8 for site builders
Drupal 8 for site buildersDrupal 8 for site builders
Drupal 8 for site builders
 
Html5 Apps
Html5 AppsHtml5 Apps
Html5 Apps
 
Drupal: Internet Lego - What Modules Do I Use?
Drupal: Internet Lego - What Modules Do I Use?Drupal: Internet Lego - What Modules Do I Use?
Drupal: Internet Lego - What Modules Do I Use?
 
Groovy & Grails eXchange 2012 - Building an e-commerce business with gr8 tec...
Groovy & Grails eXchange 2012 - Building an  e-commerce business with gr8 tec...Groovy & Grails eXchange 2012 - Building an  e-commerce business with gr8 tec...
Groovy & Grails eXchange 2012 - Building an e-commerce business with gr8 tec...
 
An Introduction to DevOps with Chef
An Introduction to DevOps with ChefAn Introduction to DevOps with Chef
An Introduction to DevOps with Chef
 
jQuery Mobile Deep Dive
jQuery Mobile Deep DivejQuery Mobile Deep Dive
jQuery Mobile Deep Dive
 
iBizLog - ESUG2010
iBizLog - ESUG2010iBizLog - ESUG2010
iBizLog - ESUG2010
 
Hitch yourwagon
Hitch yourwagonHitch yourwagon
Hitch yourwagon
 
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Group
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP GroupDeveloping Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Group
Developing Plugins on OpenVBX at Greater San Francisco Bay Area LAMP Group
 
jQuery Conference 2012 keynote
jQuery Conference 2012 keynotejQuery Conference 2012 keynote
jQuery Conference 2012 keynote
 
PhoneGap in 60 Minutes or Less
PhoneGap in 60 Minutes or LessPhoneGap in 60 Minutes or Less
PhoneGap in 60 Minutes or Less
 
Responsive Design and jQuery Mobile
Responsive Design and jQuery MobileResponsive Design and jQuery Mobile
Responsive Design and jQuery Mobile
 
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...
Google Developer Day 2010 Japan: Part 1: Google App Engine for Business の概要 P...
 
A tale of two technologies talk at autodesk 5-13
A tale of two technologies   talk at autodesk 5-13A tale of two technologies   talk at autodesk 5-13
A tale of two technologies talk at autodesk 5-13
 
UberFire (JudCon 2013)
UberFire (JudCon 2013)UberFire (JudCon 2013)
UberFire (JudCon 2013)
 

Mehr von Patrick Sheridan

Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...
Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...
Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...Patrick Sheridan
 
Ext JS 4.0 components and layouts
Ext JS 4.0 components and layoutsExt JS 4.0 components and layouts
Ext JS 4.0 components and layoutsPatrick Sheridan
 
Javascript classes and scoping
Javascript classes and scopingJavascript classes and scoping
Javascript classes and scopingPatrick Sheridan
 
Modus Create Corporate Capabilities
Modus Create Corporate CapabilitiesModus Create Corporate Capabilities
Modus Create Corporate CapabilitiesPatrick Sheridan
 

Mehr von Patrick Sheridan (11)

Sencha Touch in Action
Sencha Touch in Action Sencha Touch in Action
Sencha Touch in Action
 
Web audio app preso
Web audio app presoWeb audio app preso
Web audio app preso
 
Rvrsit
RvrsitRvrsit
Rvrsit
 
Discover Music
Discover MusicDiscover Music
Discover Music
 
ExtJS Forms
ExtJS FormsExtJS Forms
ExtJS Forms
 
Intro to sencha touch 2
Intro to sencha touch 2Intro to sencha touch 2
Intro to sencha touch 2
 
Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...
Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...
Using Data Visualization to Create Rich Content Experiences - MarkLogic Webin...
 
Ext JS 4.0 components and layouts
Ext JS 4.0 components and layoutsExt JS 4.0 components and layouts
Ext JS 4.0 components and layouts
 
Javascript classes and scoping
Javascript classes and scopingJavascript classes and scoping
Javascript classes and scoping
 
JavaScript Secrets
JavaScript SecretsJavaScript Secrets
JavaScript Secrets
 
Modus Create Corporate Capabilities
Modus Create Corporate CapabilitiesModus Create Corporate Capabilities
Modus Create Corporate Capabilities
 

Kürzlich hochgeladen

WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 

Kürzlich hochgeladen (20)

WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 

SenchaCon: Sencha Touch Custom Components

Hinweis der Redaktion

  1. Allow me to re-introduce myself my name is...
  2. We’ll be talking about Custom Components