SlideShare a Scribd company logo
1 of 62
Download to read offline
Creating Custom Shopify Themes
presented at general assembly
shopify & growth spark
ross beyeler
Growth Spark Founder
Shopify Design Ambassador
the team
Growth Spark
Some of Our Shopify Work
Tonight’s Agenda
agenda
Working with Shopify
Workshop Setup
Shopify Basics
BREAK
Customizing Shopify
Challenge 1
Challenge 2
Challenge 3
Challenge 4
Q&A
share away!
share with your friends

@shopify
@growthspark
#shopifyu
What is Shopify?
what is shopify?
Easy to use, theme based
hosted e-commerce platform
Founded in 2006
~350+ Employees
100,000+ stores
$4B+ Customer Sales
Working with
Shopify
Shopify is 100% free!
For Designers and Developers
working with shopify
working with shopify
50% of theme designers made $20k+
{many made $100k+}
Workshop
Setup
Join the Partner Program
bit.ly/sfwd-bos
workshop setup
Setup your Shopify Dummy Store
workshop setup
Download the Workshop Content
bit.ly/sfwd-stuff
workshop setup
Shopify
Basics
shopify basics
Managing Content
shopify basics
Products
Collections
Pages
Posts
Navigation
shopify basics
Managing Sales
shopify basics
Customers
Orders
Discounts
Gift Cards
Reports
shopify basics
Managing Settings
shopify basics
Themes
Apps
Settings
Break Time!
presented at general assembly
shopify & growth spark
Customizing Shopify
customizing shopify
Theme Structure
customizing shopify
HTML
CSS
JS
Liquid
Theme structure
customizing shopify
Theme structure
assets
site.css.liquid
site.js.liquid
config
layout
theme.liquid
snippets
footer.liquid
header.liquid
templates
404.liquid
article.liquid
blog.liquid
cart.liquid
collection.liquid
index.liquid
list-collections.liquid
page.liquid
product.liquid
search.liquid
customizing shopify
Theme structure
/thisisntarealurl
/blogs/<blog-name>/<article-id-handle>
/blogs/<blog-name>
/cart
/collections
/collections/<collection-handle>
/collections/<collection-handle>/<tag>
/
/pages/<page-handle>
/products
/products/<product-handle>
/search?q=<search-term>
404.liquid
article.liquid
blog.liquid
cart.liquid
list-collections.liquid
collection.liquid
collection.liquid
index.liquid
page.liquid
list-collections.liquid
product.liquid
search.liquid
customizing shopify
Liquid
customizing shopify
Output
{{ product.title }}
{{ product.description }}
{{ product.handle }}
customizing shopify
Filters
{{ product.title | upcase }}
{{ ‘logo.png’ | asset_url | img_tag: ‘Site Logo’ }}
{{ ‘capitalize me’ | capitalize }}
{{ article.published_at | date: “%a, %b %d, %y” }}
{{ ‘style.css’ | asset_url | stylesheet_tag }}
customizing shopify
Logic
{% if product.available %}
Show Add to cart button here
{% else %}
Display message!
{% endif %}
customizing shopify
Layouts
<html>
	<head>
		 {{ content_for_header }}
		 <title>{{ shop.name }} - {{ page_title }}</title>
		 {{ ‘screen.css’ | asset_url | stylesheet_tag }}
	</head>
<body>
	 {{ content_for_layout }}
</body>
</html>
Shopify Challenges
Add Quantity Box to
Product Detail Page
challenge #1
challenge #1
Adding Quantity Box to Product Detail Page
Go to http://bit.ly/add-quantity-box
In the snippets folder, locate product.liquid.
Copy/Paste snippet code from the workshop file
challenge #1
Snippet Code
<label for=”quantity”>Qty: </label>
<input min=”1” type=”number” id=”quantity”
name=”quantity” value=”1” />
<style>#quantity { padding:5px; width:35px; border:
1px solid #555; }</style>
Add a Short Description
to the Collections Page
challenge #2
challenge #2
Add Short Description to Collections Page
Resources: http://bit.ly/shopify-documents
In the snippets folder, locate product-loop.liquid.
Add the product description tag located in the
workshop folder.
	 <div class=”description”>
	 {{ product.description }}
challenge #2
Add Short Description to Collections Page
Resources: http://bit.ly/shopify-documents
Now using a filter, shorten/truncate to X number
of characters.
	 <div class=”description”>
{{ product.description | truncatewords: 50 }}
</div>
Add Text on Hover
challenge #3
challenge #3
Add Text on Hover
Go to http://bit.ly/shopify-resource
Locate the css and copy from the gist located in
the workshop folder
In the snippets folder, locate the
product-loop.liquid page
5
4
challenge #3
Adding Quantity Box to Product Detail Page
Enclose your image tag within a div with the
class of reveal.
<div class=”reveal”>IMAGE TAG</div>
What do you want to reveal on hover? Example:
product title, product price
challenge #3
Snippet Code
<div class=”hidden”>
<div class=”caption”>
<div class=”centered”>
<p>{{ product.title }}</p>
<p>{{ product.price | money }}</p>
</div><!-- end of .centered -->
</div><!-- end of .caption -->
</div><!-- end of .hidden -->
Add a Stock Level Indicator
challenge #4
challenge #4
Add a Stock Level Indicator
To see the changes, go back to the products page and track inventory.
Create a statement to show an alert when there
is only one product left in the inventory
	 {% for variant in product.variants %}
	 {% if variant.inventory_quantity == 1 %}
	 only {{variant.inventory_quantity}} left!
	 {% endif %}
	 {% endfor %}
presentation
Download our Resources Guide
http://growthspark.com/shopify/
Thank you!
ross@growthspark.com / @growthspark
any questions?
the end!

More Related Content

Viewers also liked

Building an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyBuilding an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyGrowth Spark
 
SEO with Shopify
SEO with ShopifySEO with Shopify
SEO with ShopifyShopify
 
Shopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTShopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTkoushik karthik
 
Growth Strategies
Growth StrategiesGrowth Strategies
Growth StrategiesShopify
 
How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]M-Connect Media
 
20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce SiteJosh Levine
 
How Shopify Scales Rails
How Shopify Scales RailsHow Shopify Scales Rails
How Shopify Scales Railsjduff
 
Shopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify
 
SEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideSEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideAdam Audette
 

Viewers also liked (10)

Building an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyBuilding an E-Commerce Business with Shopify
Building an E-Commerce Business with Shopify
 
SEO with Shopify
SEO with ShopifySEO with Shopify
SEO with Shopify
 
Shopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTShopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPT
 
Growth Strategies
Growth StrategiesGrowth Strategies
Growth Strategies
 
Shopify
ShopifyShopify
Shopify
 
How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]
 
20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site
 
How Shopify Scales Rails
How Shopify Scales RailsHow Shopify Scales Rails
How Shopify Scales Rails
 
Shopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email Marketing
 
SEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideSEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive Guide
 

Similar to Shopify Theme Development for Web Designers and Developers

Shopify Theme Building Workshop
Shopify Theme Building WorkshopShopify Theme Building Workshop
Shopify Theme Building WorkshopKeir Whitaker
 
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...Nirvana Canada
 
Awesome e commerce-shopify
Awesome e commerce-shopifyAwesome e commerce-shopify
Awesome e commerce-shopifyMichael Trang
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyDenise Jacobs
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS TroubleshootingDenise Jacobs
 
Wordpress and Your Brand
Wordpress and Your BrandWordpress and Your Brand
Wordpress and Your BrandSara Cannon
 
WordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationWordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationJoost de Valk
 
Styling WooCommerce
Styling WooCommerceStyling WooCommerce
Styling WooCommerceBecky Davis
 
Rapid application development
Rapid application developmentRapid application development
Rapid application developmentNicholas Batik
 
Complete guide for shopify seo
Complete guide for shopify seoComplete guide for shopify seo
Complete guide for shopify seoPearl Lemon
 
Writing your own WordPress themes and plugins
Writing your own WordPress themes and pluginsWriting your own WordPress themes and plugins
Writing your own WordPress themes and pluginsStephanie Wells
 
10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce SalesRodolfo Melogli
 
Alex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyAlex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyMeet Magento Italy
 
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Nguyễn Thị Thanh Huyền
 
B2C-Commerce-Developer Dumps
B2C-Commerce-Developer DumpsB2C-Commerce-Developer Dumps
B2C-Commerce-Developer Dumpsaddisonkalven
 
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessThe Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessShane Pearlman
 

Similar to Shopify Theme Development for Web Designers and Developers (20)

Shopify Theme Building Workshop
Shopify Theme Building WorkshopShopify Theme Building Workshop
Shopify Theme Building Workshop
 
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
 
Awesome e commerce-shopify
Awesome e commerce-shopifyAwesome e commerce-shopify
Awesome e commerce-shopify
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & Efficiency
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS Troubleshooting
 
Wordpress and Your Brand
Wordpress and Your BrandWordpress and Your Brand
Wordpress and Your Brand
 
WordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationWordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress Optimization
 
Styling WooCommerce
Styling WooCommerceStyling WooCommerce
Styling WooCommerce
 
Rapid application development
Rapid application developmentRapid application development
Rapid application development
 
Complete guide for shopify seo
Complete guide for shopify seoComplete guide for shopify seo
Complete guide for shopify seo
 
Writing your own WordPress themes and plugins
Writing your own WordPress themes and pluginsWriting your own WordPress themes and plugins
Writing your own WordPress themes and plugins
 
10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales
 
Alex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyAlex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easy
 
Shopify Partner Social
Shopify Partner SocialShopify Partner Social
Shopify Partner Social
 
Mẫu slide dành cho y tế
Mẫu slide dành cho y tếMẫu slide dành cho y tế
Mẫu slide dành cho y tế
 
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
 
B2C-Commerce-Developer Dumps
B2C-Commerce-Developer DumpsB2C-Commerce-Developer Dumps
B2C-Commerce-Developer Dumps
 
Faster WordPress Workflows
Faster WordPress WorkflowsFaster WordPress Workflows
Faster WordPress Workflows
 
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessThe Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
 
Custom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes OverviewCustom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes Overview
 

More from Growth Spark

Strategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsStrategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsGrowth Spark
 
Scaling Your Agency
Scaling Your AgencyScaling Your Agency
Scaling Your AgencyGrowth Spark
 
Strategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessStrategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessGrowth Spark
 
Discovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessDiscovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessGrowth Spark
 
Prototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsPrototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsGrowth Spark
 
Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Growth Spark
 
Getting Started with WordPress
Getting Started with WordPressGetting Started with WordPress
Getting Started with WordPressGrowth Spark
 
Selling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsSelling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsGrowth Spark
 

More from Growth Spark (8)

Strategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsStrategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client Projects
 
Scaling Your Agency
Scaling Your AgencyScaling Your Agency
Scaling Your Agency
 
Strategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessStrategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce Business
 
Discovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessDiscovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a Business
 
Prototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsPrototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your Assumptions
 
Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)
 
Getting Started with WordPress
Getting Started with WordPressGetting Started with WordPress
Getting Started with WordPress
 
Selling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsSelling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing Deals
 

Recently uploaded

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
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
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
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
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
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
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
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
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
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
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 

Recently uploaded (20)

The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
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
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
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
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.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
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
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
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
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
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 

Shopify Theme Development for Web Designers and Developers