SlideShare une entreprise Scribd logo
1  sur  126
Télécharger pour lire hors ligne
SQUASHINGTHE HEISENBUGS
Trotter Cashion / Chariot CI Event 2010
http://www.flickr.com/photos/gliuoo/2539512435/sizes/z/in/photostream/
SQUASHINGTHE HEISENBUGS
Trotter Cashion / Chariot CI Event 2010
http://www.flickr.com/photos/gliuoo/2539512435/sizes/z/in/photostream/
BOHRBUGS
SQUASHINGTHE BOHRBUGS
Trotter Cashion / Chariot CI Event 2010
http://www.flickr.com/photos/gliuoo/2539512435/sizes/z/in/photostream/
THIS WILL BE ON THE INTERNET!
CO-FOUNDER
http://mashion.net
http://www.charlesheflin.com/wp-content/uploads/2010/06/fail-whale.jpg
@CASHION
http://gems.github.com/octocat.png
github.com/trotter
AGENDA
HEISENBUGS AND BOHRBUGS
THE MANUAL PROBLEM
CHEF
TYING CHEF INTO CI
QUESTIONS (AQAFT)
HEISENBUGS
http://upload.wikimedia.org/wikipedia/commons/8/84/Hindenburg_burning.jpg
OBSERVER EFFECT
EventYou
http://en.wikipedia.org/wiki/File:Bohr-atom-PAR.svg
BOHRBUGS
MANDELBUGS
SCHRÖDINBUGS
NOOBBUGS
THE MANUAL PROBLEM
http://www.dolphinsc.com/images/Dolphin.jpg
MYSQL
http://images.buycostumes.com/mgen/merchandiser/32494.jpg
POSTGRES
http://www.wallpapers-free.org/34/-/Apache_Longbow_Helicopter/
APACHE
http://www.allbestwallpapers.com/travel-kremlin_and_red_square_fireworks,_moscow,_russia_wallpapers.html
NGINX
Memcached
Memcached
Redis
Memcached
Redis
Mongodb
Memcached
Redis
Mongodb Riak
Memcached
Redis
Mongodb Riak
Cassandra
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Solaris
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Solaris
iptables
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Solaris
iptables
sshd
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Solaris
iptables
sshd
DNS Servers
Memcached
Redis
Mongodb Riak
Cassandra
ProjectVoldemort
Ubuntu
Redhat
Solaris
iptables
sshd
DNS Servers
TCP/IP internals
We Idolize the Artisan Sysadmin
... but what do we end up with?
http://www.enviro-bc.ca/wp-content/uploads/2009/04/bowlake-aval_clair-israelson.jpg
SNOWFLAKES
... that become avalanches
http://upload.wikimedia.org/wikipedia/commons/6/6d/Niels_Bohr.jpg
BOHRBUGS
http://assets.troubledteenswizard.com/uploaded/WoW/nomoney1.jpg
NO MORE MONEY!
We’re really left with two choices
Automate... or die.
Automation is not hard!
BASH
http://hackedgadgets.com/wp-content/2/LEGO_V8_Engine_1.jpg
CFENGINE
http://www.flickr.com/photos/willemvelthoven/381608678/sizes/l/
PUPPET
http://www.flickr.com/photos/venndiagram/4891510333/sizes/l/
CHEF!
http://www.opscode.com/
WRITTEN BY
http://www.prestonlee.com/wp-content/uploads/2008/09/ruby.png
WRITTEN IN
Two Delicious Flavors
http://upload.wikimedia.org/wikipedia/commons/e/e0/Google%E2%80%99s_First_Production_Server.jpg
SERVER
HOW IT WORKS
HOW IT WORKS
Your
Computer
HOW IT WORKS
Your
Computer
Box to
Provision
HOW IT WORKS
Your
Computer
Chef Server
Box to
Provision
HOW IT WORKS
Your
Computer
Chef Server
Box to
Provision
Prepare
HOW IT WORKS
Your
Computer
Chef Server
Box to
Provision
Prepare
What now?
HOW IT WORKS
Your
Computer
Chef Server
Box to
Provision
Prepare
What now?
Cookbooks
HOW IT WORKS
Your
Computer
Chef Server
Box to
Provision
Prepare
What now?
Cookbooks
Run!
http://www.pbs.org/parents/supersisters/han_solo-thumb-454x654.jpg
SOLO
HOW IT WORKS
HOW IT WORKS
Your
Computer
HOW IT WORKS
Your
Computer
Box to
Provision
HOW IT WORKS
Your
Computer
Box to
Provision
Prepare
HOW IT WORKS
Your
Computer
Box to
Provision
Cookbooks
Prepare
HOW IT WORKS
Your
Computer
Box to
Provision
Cookbooks
Prepare
Go!
Chef Structure
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
ROLES ARE REUSABLE!
config/dev.json config/db.json
roles/db.rb
http://www.flickr.com/photos/seandreilinger/959864706/sizes/o/
GETTING
GOING
WHAT YOU NEED
WHAT YOU NEED
Ruby &
Rubygems
WHAT YOU NEED
Ruby &
Rubygems
`gem install chef` Chef Gem
WHAT YOU NEED
Ruby &
Rubygems
`gem install chef` Chef Gem
`git clone http://github.com/
opscode/chef-repo.git`
Chef Repo
http://cookbooks.opscode.com/
COOKBOOKS.OPSCODE.COM
TERMINAL JUNKIES
TERMINAL JUNKIES
•spatula search mysql
TERMINAL JUNKIES
•spatula search mysql
•spatula install mysql
TERMINAL JUNKIES
•spatula search mysql
•spatula install mysql
•spatula show mysql
TERMINAL JUNKIES
•spatula search mysql
•spatula install mysql
•spatula show mysql
•... knife has similar functionality
GET THE BOX READY
spatula prepare db-one.host
ssh db-one.host “install ruby”
ssh db-one.host “install chef”
=
GO GO GO!
spatula cook db-one.host db ssh db-one.host “sudo 
chef-solo -c config/solo.rb 
-j config/db.json”
rsync repo to db-one.host
=
WITH CHEF SERVER
install dependencies
turn on client
send cookbooks to client
http://media.photobucket.com/image/minecraft/bluekabal/roma/minesofroma.jpg
DIGGING DEEPER
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
// ./config/db_one.json
{ "run_list": ["role[db]"] }
A NODE
Recipes and Roles go here
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
# ./roles/db.rb
name "database"
description "Be a DB"
run_list [ "apache2", "mysql::server" ]
A ROLE
# ./roles/db.rb
name "database"
description "Be a DB"
run_list [ "apache2", "mysql::server" ]
A ROLE
Recipes to run
# ./roles/db.rb
name "database"
description "Be a DB"
run_list [ "apache2", "mysql::server" ]
A ROLE
./cookbooks/apache2/recipes/default.rb
# ./roles/db.rb
name "database"
description "Be a DB"
run_list [ "apache2", "mysql::server" ]
A ROLE
./cookbooks/mysql/recipes/server.rb
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
# ./cookbooks/mysql/attributes/server.rb
default[:mysql][:server_debian_password] = secure_password
default[:mysql][:server_root_password] = secure_password
default[:mysql][:server_repl_password] = secure_password
default[:mysql][:bind_address] = ipaddress
default[:mysql][:datadir] = "/var/lib/mysql"
# Tunables
default[:mysql][:tunable][:key_buffer] = "250M"
default[:mysql][:tunable][:max_connections] = "800"
default[:mysql][:tunable][:wait_timeout] = "180"
ATTRIBUTES
// ./config/db.json
{ "mysql": { "server_root_password": "beefcake" },
  "recipes": [ "mysql" ] }
OVERRIDING ATTRIBUTES
# ./roles/db.rb
name "database"
description "Be a DB"
run_list [ "mysql::server" ]
default_attributes :mysql => { :server_root_password =>
"beefcake" }
Node
Role
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
# ./cookbooks/mysql/recipes/server.rb
include_recipe "mysql::client"
THE RECIPE... PART 1
package "mysql-server" do
action :install
end
THE RECIPE... PART 2
template "/etc/mysql/my.cnf" do
source "my.cnf.erb"
owner "root"
group "root"
mode "0644"
notifies :restart,
resources(:service => "mysql"),
:immediately
end
THE RECIPE... PART 3
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = <%= @datadir %>
bind-address = <%= @node[:mysql][:bind_address] %>
A TEMPLATE SAMPLE
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = <%= @datadir %>
bind-address = <%= @node[:mysql][:bind_address] %>
A TEMPLATE SAMPLE
OMG, ERB!!
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = <%= @datadir %>
bind-address = <%= @node[:mysql][:bind_address] %>
A TEMPLATE SAMPLE
From Attributes
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = <%= @datadir %>
bind-address = <%= @node[:mysql][:bind_address] %>
A TEMPLATE SAMPLE
FromTemplate
template "/etc/mysql/my.cnf" do
source "my.cnf.erb"
owner "root"
group "root"
mode "0644"
variables :datadir => “/var/lib/mysql”
end
ASSIGNING VARIABLES
CHEF HEIRARCHY
Node
Roles
Cookbooks
Cookbooks
Recipes Attributes Templates Definitions
define :apache_conf do
dir = node[:apache][:dir]
template "#{dir}/mods-available/#{params[:name]}.conf" do
source "mods/#{params[:name]}.conf.erb"
notifies :restart, resources(:service => "apache2")
end
end
# In your recipe
apache_conf "mod_ssl"
DEFINITIONS
TYING IT INTO CI
USE CHEFTO PROVISION CI
http://images.nationalgeographic.com/wpf/media-live/photos/000/148/custom/heart-ngk0207_14824_470x300.jpg
attribution
CHEF AS PART OF TEST SCRIPT
CONTINUOUS DEPLOYMENT
http://www.flickr.com/photos/andresthor/3946773501/sizes/l/in/photostream/
LET’S
WRAP
IT UP
http://www.flickr.com/photos/kenfagerdotcom/3409813881/
AUTOMATE EVERYTHING!!
Deploying == Provisioning
http://www.flickr.com/photos/martin_borjesson/4083726805/sizes/o/
USE CHEF!!!!!
ONTHE INTERNETS
ONTHE INTERNETS
•twitter - @cashion
ONTHE INTERNETS
•twitter - @cashion
•github - http://github.com/trotter
ONTHE INTERNETS
•twitter - @cashion
•github - http://github.com/trotter
•email - cashion on the gmailz
http://www.flickr.com/photos/dancoulter/21042744/sizes/o/
THANK YOU!
RESOURCES
RESOURCES
•http://wiki.opscode.com/display/chef/Resources
RESOURCES
•http://wiki.opscode.com/display/chef/Resources
•#chef on freenode
RESOURCES
•http://wiki.opscode.com/display/chef/Resources
•#chef on freenode
•cashion@gmail.com

Contenu connexe

Tendances

Getting Started With Play Framework
Getting Started With Play FrameworkGetting Started With Play Framework
Getting Started With Play Framework
Treasury user10
 
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
Yasuharu Nakano
 
Continuous Integration Saves the Day
Continuous Integration Saves the DayContinuous Integration Saves the Day
Continuous Integration Saves the Day
Kurt Schrader
 

Tendances (16)

Rails Routes off the tracks
Rails Routes off the tracksRails Routes off the tracks
Rails Routes off the tracks
 
Multisite Van Dyk Walkah
Multisite Van Dyk WalkahMultisite Van Dyk Walkah
Multisite Van Dyk Walkah
 
Getting Started With Play Framework
Getting Started With Play FrameworkGetting Started With Play Framework
Getting Started With Play Framework
 
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
レッツゴーデベロッパー2011「プログラミングGroovy〜G*エコシステム編」
 
Using Buildout to Develop and Deploy Python Projects
Using Buildout to Develop and Deploy Python ProjectsUsing Buildout to Develop and Deploy Python Projects
Using Buildout to Develop and Deploy Python Projects
 
Introduction to CouchDB
Introduction to CouchDBIntroduction to CouchDB
Introduction to CouchDB
 
14 Ways to be Amazingly Productive!
14 Ways to be Amazingly Productive!14 Ways to be Amazingly Productive!
14 Ways to be Amazingly Productive!
 
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehrBeyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
Beyond HTML - Scriptsprachen, Frameworks, Templatesprachen und vieles mehr
 
Data Citation from the perspective of tracking data reuse
Data Citation from the perspective of tracking data reuseData Citation from the perspective of tracking data reuse
Data Citation from the perspective of tracking data reuse
 
Discovering ElasticSearch
Discovering ElasticSearchDiscovering ElasticSearch
Discovering ElasticSearch
 
Ipad gump
Ipad gumpIpad gump
Ipad gump
 
NantKwest Chairman & CEO Dr. Patrick Soon-Shiong to Present Vision for Next G...
NantKwest Chairman & CEO Dr. Patrick Soon-Shiong to Present Vision for Next G...NantKwest Chairman & CEO Dr. Patrick Soon-Shiong to Present Vision for Next G...
NantKwest Chairman & CEO Dr. Patrick Soon-Shiong to Present Vision for Next G...
 
How to actually use promises - Jakob Mattsson, FishBrain
How to actually use promises - Jakob Mattsson, FishBrainHow to actually use promises - Jakob Mattsson, FishBrain
How to actually use promises - Jakob Mattsson, FishBrain
 
Find,Mix And Show
Find,Mix And ShowFind,Mix And Show
Find,Mix And Show
 
Continuous Integration Saves the Day
Continuous Integration Saves the DayContinuous Integration Saves the Day
Continuous Integration Saves the Day
 
Default scopeの被害報告
Default scopeの被害報告Default scopeの被害報告
Default scopeの被害報告
 

En vedette (6)

2012 03-27-scrum day-sweetrupture-v1.3a
2012 03-27-scrum day-sweetrupture-v1.3a2012 03-27-scrum day-sweetrupture-v1.3a
2012 03-27-scrum day-sweetrupture-v1.3a
 
Crmtalk12
Crmtalk12Crmtalk12
Crmtalk12
 
Healthcare6 04 03
Healthcare6 04 03Healthcare6 04 03
Healthcare6 04 03
 
Siliconslides
SiliconslidesSiliconslides
Siliconslides
 
Yncomp
YncompYncomp
Yncomp
 
Enron Aa12
Enron Aa12Enron Aa12
Enron Aa12
 

Similaire à Squashing the Heisenbugs

Rails Presentation (Anton Dmitriyev)
Rails Presentation (Anton Dmitriyev)Rails Presentation (Anton Dmitriyev)
Rails Presentation (Anton Dmitriyev)
True-Vision
 
Agile Tour Shanghai December 2011
Agile Tour Shanghai December 2011Agile Tour Shanghai December 2011
Agile Tour Shanghai December 2011
Alistair McKinnell
 
Socket applications
Socket applicationsSocket applications
Socket applications
João Moura
 

Similaire à Squashing the Heisenbugs (20)

Automate or Die
Automate or DieAutomate or Die
Automate or Die
 
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
Fisl 11 - Dicas de Desenvolvimento Web com RubyFisl 11 - Dicas de Desenvolvimento Web com Ruby
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
 
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com RubyConsegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby
 
Using ArcGIS Server with Ruby on Rails
Using ArcGIS Server with Ruby on RailsUsing ArcGIS Server with Ruby on Rails
Using ArcGIS Server with Ruby on Rails
 
Rails Presentation (Anton Dmitriyev)
Rails Presentation (Anton Dmitriyev)Rails Presentation (Anton Dmitriyev)
Rails Presentation (Anton Dmitriyev)
 
Free The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own DomainFree The Enterprise With Ruby & Master Your Own Domain
Free The Enterprise With Ruby & Master Your Own Domain
 
Sprockets
SprocketsSprockets
Sprockets
 
So you want to build a Facebook app
So you want to build a Facebook appSo you want to build a Facebook app
So you want to build a Facebook app
 
Lights, Camera, Docker: Streaming Video at DramaFever
Lights, Camera, Docker: Streaming Video at DramaFeverLights, Camera, Docker: Streaming Video at DramaFever
Lights, Camera, Docker: Streaming Video at DramaFever
 
Lightweight Webservices with Sinatra and RestClient
Lightweight Webservices with Sinatra and RestClientLightweight Webservices with Sinatra and RestClient
Lightweight Webservices with Sinatra and RestClient
 
Twitter bootstrap on rails
Twitter bootstrap on railsTwitter bootstrap on rails
Twitter bootstrap on rails
 
Deploy Rails Application by Capistrano
Deploy Rails Application by CapistranoDeploy Rails Application by Capistrano
Deploy Rails Application by Capistrano
 
Reliability & Scale in AWS while letting you sleep through the night
Reliability & Scale in AWS while letting you sleep through the night Reliability & Scale in AWS while letting you sleep through the night
Reliability & Scale in AWS while letting you sleep through the night
 
Killer page load performance
Killer page load performanceKiller page load performance
Killer page load performance
 
SINATRA + HAML + TWITTER
SINATRA + HAML + TWITTERSINATRA + HAML + TWITTER
SINATRA + HAML + TWITTER
 
Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...
Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...
Strangers In The Night: Ruby, Rack y Sinatra - Herramientas potentes para con...
 
Agile Tour Shanghai December 2011
Agile Tour Shanghai December 2011Agile Tour Shanghai December 2011
Agile Tour Shanghai December 2011
 
Road to Rails
Road to RailsRoad to Rails
Road to Rails
 
Socket applications
Socket applicationsSocket applications
Socket applications
 
Integração contínua com Hudson CI
Integração contínua com Hudson CIIntegração contínua com Hudson CI
Integração contínua com Hudson CI
 

Dernier

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Dernier (20)

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
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
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Squashing the Heisenbugs