SlideShare a Scribd company logo
1 of 114
Repensando o Desenvolvimento Web com
 Ruby on Rails
Rails
Comunidade
Filosofia
DanteRegis.com
     @danteregis

Admin de Redes - TJ/SE
DanteRegis.com
                         @danteregis

                    Admin de Redes - TJ/SE




http://slideshare.net/danteregis
Você não vai aprender
  Ruby on Rails aqui
framework
David Heinemeier Hansson
                   2004
37signals
1400+
 desenvolvedores
jul/2004         0.5
     dez/2005          1.0
     mar/2006          1.1
     jan/2007          1.2
     dez/2007          2.0
     jun/2008          2.1
     nov/2008          2.2
     mar/2009          2.3
algum dia (em 2009?)   3.0
Empregos
(fonte: indeed.com)
MVC
opiniated
eXtreme Programming
TDD
REST
modularização
DRY
Convention
   over
Configuration
KISS
script/console
Model
Model
Model
Model
     id: integer

    name: string

     price: float

category_id: integer

   stock: integer

created_at: datetime

updated_at: datetime
Model
     id: integer

    name: string
                       x = Product.new
     price: float

category_id: integer

   stock: integer

created_at: datetime

updated_at: datetime
Model
     id: integer

    name: string
                       x = Product.new
     price: float       x.name = "Pão Jacó"
category_id: integer

   stock: integer

created_at: datetime

updated_at: datetime
Model
     id: integer

    name: string
                       x = Product.new
     price: float       x.name = "Pão Jacó"
category_id: integer   x.stock = "100
   stock: integer

created_at: datetime

updated_at: datetime
Model
     id: integer

    name: string
                       x = Product.new
     price: float       x.name = "Pão Jacó"
category_id: integer   x.stock = "100
   stock: integer      x.price = 0.15
created_at: datetime

updated_at: datetime
Model
     id: integer

    name: string
                       x = Product.new
     price: float       x.name = "Pão Jacó"
category_id: integer   x.stock = "100
   stock: integer      x.price = 0.15
created_at: datetime   x.save
updated_at: datetime
Model
Model



INSERT INTO `products` COLUMNS (`name`, `price`,
`stock`) VALUES ("Pão Jaco", 0.15, 100);
Model
Model

Product.first
Model

Product.first

Product.find_all_by_category_id(10)
Model

Product.first

Product.find_all_by_category_id(10)

Product.find_or_create_by_name("Margarina")
Model

Product.first

Product.find_all_by_category_id(10)

Product.find_or_create_by_name("Margarina")

Product.count
Model

Product.first

Product.find_all_by_category_id(10)

Product.find_or_create_by_name("Margarina")

Product.count

Product.average('price')
validations
associations
instance methods
Model



class Product < ActiveRecord::Base

end
Model
class Product < ActiveRecord::Base




end
Model
class Product < ActiveRecord::Base
  belongs_to :category




end
Model
class Product < ActiveRecord::Base
  belongs_to :category
  validates_presence_of :name




end
Model
class Product < ActiveRecord::Base
  belongs_to :category
  validates_presence_of :name
  validates_numericality_of :stock




end
Model
class Product < ActiveRecord::Base
  belongs_to :category
  validates_presence_of :name
  validates_numericality_of :stock


  def consume!
    stock -= 1
    save
  end


end
p = Product.new(:stock => "xxxxx")
p = Product.new(:stock => "xxxxx")
p.save
p = Product.new(:stock => "xxxxx")
p.save
#=> false
p = Product.first
p.category
p.category.name = "Mudei o nome"
p.category.save
has_many
class Category < ActiveRecord::Base
  has_many :products
end
cat.products
cat.products.new
cat.products.first
named scope
class Product < ActiveRecord::Base
  named_scope :low_stock, :conditions => ['stock <= 10']
end
Product.low_stock
#=> [.....]
Product.low_stock
#=> [.....]

category.products.low_stock
#=> [...]
SQL?
migrations
controle de versão
do banco de dados!
sem SQL!
class AddQuantityToCartProduct < ActiveRecord::Migration
class AddQuantityToCartProduct < ActiveRecord::Migration
  def self.up
    add_column :cart_products, :quantity, :integer
  end
class AddQuantityToCartProduct < ActiveRecord::Migration
  def self.up
    add_column :cart_products, :quantity, :integer
  end

  def self.down
    drop_column :cart_products, :quantity
  end
end
com SQL!
> 90%
 experiência pessoal
ActionController
session
render
filters
class ApplicationController < ActionController::Base
  before_filter :check_login

  def check_login
    render :text => "acesso negado!"
  end
end
flash
flash[:notice] = "Você logou no sistema"
cookies
respond_to
ActionView
erb
haml
erb
form_tag
form_for
<div>
  <span><%= flash[:notice] %></span>
</div>
<div>
  <% form_tag do %>
       <p>
         Usuário: <%= text_field_tag 'username' %>
       </p>
       <p>
         Senha: <%= password_field_tag 'password' %>
       </p>
       <p>
         <%= submit_tag 'Entrar' %>
       </p>
  <% end %>
</div>
Tempo para falar mal
de certas “soluções”
Fim do tempo para
falar mal de certas
     “soluções”
Comunidade
RailsConf
http://railsconf.com
Rails Summit Latin
      America
  http://railssummit.com.br
13 e 14 de outubro
      São Paulo/SP
Aldo França
Great Blogs ‘n People
Akita on Rails
 http://akitaonrails.com
Carlos Brando
 http://nomedojogo.com
Ozéias Sant’ana
   http://railsbox.org
Bruno Miranda
 http://brunomiranda.com
Ruby Onda
http://rubyonda.com
Nando Vieira
http://simplesideias.com.br
PeepCode
http://peepcode.com
RailsCasts
http://railscasts.com
http://slideshare.net/danteregis
dante@danteregis.com

More Related Content

What's hot

Optimization in django orm
Optimization in django ormOptimization in django orm
Optimization in django ormDenys Levchenko
 
Two scoopsofdjango common patterns for forms
Two scoopsofdjango   common patterns for formsTwo scoopsofdjango   common patterns for forms
Two scoopsofdjango common patterns for formsShih-yi Wei
 
Building Better Applications with Data::Manager
Building Better Applications with Data::ManagerBuilding Better Applications with Data::Manager
Building Better Applications with Data::ManagerJay Shirley
 
PHPunit and you
PHPunit and youPHPunit and you
PHPunit and youmarkstory
 
Desenvolvendo APIs usando Rails - Guru SC 2012
Desenvolvendo APIs usando Rails - Guru SC 2012Desenvolvendo APIs usando Rails - Guru SC 2012
Desenvolvendo APIs usando Rails - Guru SC 2012Rafael Felix da Silva
 
Web осень 2012 лекция 6
Web осень 2012 лекция 6Web осень 2012 лекция 6
Web осень 2012 лекция 6Technopark
 
Web весна 2013 лекция 6
Web весна 2013 лекция 6Web весна 2013 лекция 6
Web весна 2013 лекция 6Technopark
 
Django ORM - Marcin Markiewicz
Django ORM - Marcin Markiewicz Django ORM - Marcin Markiewicz
Django ORM - Marcin Markiewicz Sunscrapers
 
PHPUnit Episode iv.iii: Return of the tests
PHPUnit Episode iv.iii: Return of the testsPHPUnit Episode iv.iii: Return of the tests
PHPUnit Episode iv.iii: Return of the testsMichelangelo van Dam
 
Two scoopsofdjango ch16 dealing with the user model
Two scoopsofdjango ch16   dealing with the user modelTwo scoopsofdjango ch16   dealing with the user model
Two scoopsofdjango ch16 dealing with the user modelShih-yi Wei
 
Optimizing Magento by Preloading Data
Optimizing Magento by Preloading DataOptimizing Magento by Preloading Data
Optimizing Magento by Preloading DataIvan Chepurnyi
 
Android HttpClient - new slide!
Android HttpClient - new slide!Android HttpClient - new slide!
Android HttpClient - new slide!Chalermchon Samana
 
Top 5 Magento Secure Coding Best Practices
Top 5 Magento Secure Coding Best PracticesTop 5 Magento Secure Coding Best Practices
Top 5 Magento Secure Coding Best PracticesOleksandr Zarichnyi
 
Javascript And J Query
Javascript And J QueryJavascript And J Query
Javascript And J Queryitsarsalan
 
Presentation of the new OpenERP API. Raphael Collet, OpenERP
Presentation of the new OpenERP API. Raphael Collet, OpenERPPresentation of the new OpenERP API. Raphael Collet, OpenERP
Presentation of the new OpenERP API. Raphael Collet, OpenERPOdoo
 

What's hot (18)

Optimization in django orm
Optimization in django ormOptimization in django orm
Optimization in django orm
 
Django tricks (2)
Django tricks (2)Django tricks (2)
Django tricks (2)
 
Two scoopsofdjango common patterns for forms
Two scoopsofdjango   common patterns for formsTwo scoopsofdjango   common patterns for forms
Two scoopsofdjango common patterns for forms
 
Scala on Your Phone
Scala on Your PhoneScala on Your Phone
Scala on Your Phone
 
Building Better Applications with Data::Manager
Building Better Applications with Data::ManagerBuilding Better Applications with Data::Manager
Building Better Applications with Data::Manager
 
PHPunit and you
PHPunit and youPHPunit and you
PHPunit and you
 
Desenvolvendo APIs usando Rails - Guru SC 2012
Desenvolvendo APIs usando Rails - Guru SC 2012Desenvolvendo APIs usando Rails - Guru SC 2012
Desenvolvendo APIs usando Rails - Guru SC 2012
 
Web осень 2012 лекция 6
Web осень 2012 лекция 6Web осень 2012 лекция 6
Web осень 2012 лекция 6
 
Web весна 2013 лекция 6
Web весна 2013 лекция 6Web весна 2013 лекция 6
Web весна 2013 лекция 6
 
Django ORM - Marcin Markiewicz
Django ORM - Marcin Markiewicz Django ORM - Marcin Markiewicz
Django ORM - Marcin Markiewicz
 
PHPUnit Episode iv.iii: Return of the tests
PHPUnit Episode iv.iii: Return of the testsPHPUnit Episode iv.iii: Return of the tests
PHPUnit Episode iv.iii: Return of the tests
 
Two scoopsofdjango ch16 dealing with the user model
Two scoopsofdjango ch16   dealing with the user modelTwo scoopsofdjango ch16   dealing with the user model
Two scoopsofdjango ch16 dealing with the user model
 
Optimizing Magento by Preloading Data
Optimizing Magento by Preloading DataOptimizing Magento by Preloading Data
Optimizing Magento by Preloading Data
 
Android HttpClient - new slide!
Android HttpClient - new slide!Android HttpClient - new slide!
Android HttpClient - new slide!
 
Top 5 Magento Secure Coding Best Practices
Top 5 Magento Secure Coding Best PracticesTop 5 Magento Secure Coding Best Practices
Top 5 Magento Secure Coding Best Practices
 
Javascript And J Query
Javascript And J QueryJavascript And J Query
Javascript And J Query
 
Presentation of the new OpenERP API. Raphael Collet, OpenERP
Presentation of the new OpenERP API. Raphael Collet, OpenERPPresentation of the new OpenERP API. Raphael Collet, OpenERP
Presentation of the new OpenERP API. Raphael Collet, OpenERP
 
Chainable datasource
Chainable datasourceChainable datasource
Chainable datasource
 

Viewers also liked

home depot Annual Report 1984
home depot Annual Report 1984home depot Annual Report 1984
home depot Annual Report 1984finance2
 
Tackling a lack of local OER: How international OER adoption enhanced the qua...
Tackling a lack of local OER: How international OER adoption enhanced the qua...Tackling a lack of local OER: How international OER adoption enhanced the qua...
Tackling a lack of local OER: How international OER adoption enhanced the qua...Tomohiro Nagashima
 
Presentacion will goingto
Presentacion will goingto Presentacion will goingto
Presentacion will goingto LeoMontes650422
 
Snow universe (1)
Snow universe (1)Snow universe (1)
Snow universe (1)alex280299
 
SharePoint Saturday - Hybrid O365 BI Solution
SharePoint Saturday - Hybrid O365 BI SolutionSharePoint Saturday - Hybrid O365 BI Solution
SharePoint Saturday - Hybrid O365 BI SolutionVinay Gandhi
 
Aprendizaje autonomo
Aprendizaje autonomoAprendizaje autonomo
Aprendizaje autonomovaledor69
 
Traget audience profile sheet
Traget audience profile sheetTraget audience profile sheet
Traget audience profile sheetVarshini1999
 
The Evolution of UX Challenges
The Evolution of UX ChallengesThe Evolution of UX Challenges
The Evolution of UX ChallengesZoltan Kollin
 
Paradigma de investigacion sociocritica
Paradigma de investigacion sociocriticaParadigma de investigacion sociocritica
Paradigma de investigacion sociocriticaAtef Alín Akram Adel
 
Estructuras sociales
Estructuras socialesEstructuras sociales
Estructuras socialesNeyla Jaimes
 
valero energy Quarterly and Other SEC Reports 2008 1st
valero energy  Quarterly and Other  SEC Reports  2008  1stvalero energy  Quarterly and Other  SEC Reports  2008  1st
valero energy Quarterly and Other SEC Reports 2008 1stfinance2
 
Fiscal 2005 10-K Annual Report
Fiscal 2005 10-K Annual Report Fiscal 2005 10-K Annual Report
Fiscal 2005 10-K Annual Report finance2
 

Viewers also liked (20)

home depot Annual Report 1984
home depot Annual Report 1984home depot Annual Report 1984
home depot Annual Report 1984
 
Taller de ecg (1)
Taller de ecg (1)Taller de ecg (1)
Taller de ecg (1)
 
Tackling a lack of local OER: How international OER adoption enhanced the qua...
Tackling a lack of local OER: How international OER adoption enhanced the qua...Tackling a lack of local OER: How international OER adoption enhanced the qua...
Tackling a lack of local OER: How international OER adoption enhanced the qua...
 
سلامة
سلامةسلامة
سلامة
 
Presentacion will goingto
Presentacion will goingto Presentacion will goingto
Presentacion will goingto
 
Final proyect
Final proyectFinal proyect
Final proyect
 
Snow universe (1)
Snow universe (1)Snow universe (1)
Snow universe (1)
 
SharePoint Saturday - Hybrid O365 BI Solution
SharePoint Saturday - Hybrid O365 BI SolutionSharePoint Saturday - Hybrid O365 BI Solution
SharePoint Saturday - Hybrid O365 BI Solution
 
current cv 2015
current cv 2015current cv 2015
current cv 2015
 
Aprendizaje autonomo
Aprendizaje autonomoAprendizaje autonomo
Aprendizaje autonomo
 
Objetivo 1 epistemologia
Objetivo 1 epistemologiaObjetivo 1 epistemologia
Objetivo 1 epistemologia
 
Afijos Ingles Instrumental
Afijos Ingles InstrumentalAfijos Ingles Instrumental
Afijos Ingles Instrumental
 
Traget audience profile sheet
Traget audience profile sheetTraget audience profile sheet
Traget audience profile sheet
 
Infografia epistemologia
Infografia epistemologiaInfografia epistemologia
Infografia epistemologia
 
The Evolution of UX Challenges
The Evolution of UX ChallengesThe Evolution of UX Challenges
The Evolution of UX Challenges
 
Paradigma de investigacion sociocritica
Paradigma de investigacion sociocriticaParadigma de investigacion sociocritica
Paradigma de investigacion sociocritica
 
Zookeeper
ZookeeperZookeeper
Zookeeper
 
Estructuras sociales
Estructuras socialesEstructuras sociales
Estructuras sociales
 
valero energy Quarterly and Other SEC Reports 2008 1st
valero energy  Quarterly and Other  SEC Reports  2008  1stvalero energy  Quarterly and Other  SEC Reports  2008  1st
valero energy Quarterly and Other SEC Reports 2008 1st
 
Fiscal 2005 10-K Annual Report
Fiscal 2005 10-K Annual Report Fiscal 2005 10-K Annual Report
Fiscal 2005 10-K Annual Report
 

Similar to Repensando o Desenvolvimento Web com Ruby on Rails

The Ring programming language version 1.3 book - Part 30 of 88
The Ring programming language version 1.3 book - Part 30 of 88The Ring programming language version 1.3 book - Part 30 of 88
The Ring programming language version 1.3 book - Part 30 of 88Mahmoud Samir Fayed
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress sitereferences
 
MongoDB World 2018: Keynote
MongoDB World 2018: KeynoteMongoDB World 2018: Keynote
MongoDB World 2018: KeynoteMongoDB
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to DjangoJames Casey
 
How to optimize background processes - when Sylius meets Blackfire
How to optimize background processes - when Sylius meets BlackfireHow to optimize background processes - when Sylius meets Blackfire
How to optimize background processes - when Sylius meets BlackfireŁukasz Chruściel
 
Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011Chris Alfano
 
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...Uniface
 
The Ring programming language version 1.9 book - Part 54 of 210
The Ring programming language version 1.9 book - Part 54 of 210The Ring programming language version 1.9 book - Part 54 of 210
The Ring programming language version 1.9 book - Part 54 of 210Mahmoud Samir Fayed
 
Rails for Beginners - Le Wagon
Rails for Beginners - Le WagonRails for Beginners - Le Wagon
Rails for Beginners - Le WagonAlex Benoit
 
Dart for Java Developers
Dart for Java DevelopersDart for Java Developers
Dart for Java DevelopersYakov Fain
 
Тестирование и Django
Тестирование и DjangoТестирование и Django
Тестирование и DjangoMoscowDjango
 
Cutting Edge Data Processing with PHP & XQuery
Cutting Edge Data Processing with PHP & XQueryCutting Edge Data Processing with PHP & XQuery
Cutting Edge Data Processing with PHP & XQueryWilliam Candillon
 
The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)David Gibbons
 
Unit testing PHP apps with PHPUnit
Unit testing PHP apps with PHPUnitUnit testing PHP apps with PHPUnit
Unit testing PHP apps with PHPUnitMichelangelo van Dam
 
CiklumJavaSat_15112011:Alex Kruk VMForce
CiklumJavaSat_15112011:Alex Kruk VMForceCiklumJavaSat_15112011:Alex Kruk VMForce
CiklumJavaSat_15112011:Alex Kruk VMForceCiklum Ukraine
 
Building Testable PHP Applications
Building Testable PHP ApplicationsBuilding Testable PHP Applications
Building Testable PHP Applicationschartjes
 
React Native - Workshop
React Native - WorkshopReact Native - Workshop
React Native - WorkshopFellipe Chagas
 
Active Record Inheritance in Rails
Active Record Inheritance in RailsActive Record Inheritance in Rails
Active Record Inheritance in RailsSandip Ransing
 

Similar to Repensando o Desenvolvimento Web com Ruby on Rails (20)

The Ring programming language version 1.3 book - Part 30 of 88
The Ring programming language version 1.3 book - Part 30 of 88The Ring programming language version 1.3 book - Part 30 of 88
The Ring programming language version 1.3 book - Part 30 of 88
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress site
 
MongoDB World 2018: Keynote
MongoDB World 2018: KeynoteMongoDB World 2018: Keynote
MongoDB World 2018: Keynote
 
The Boy Scout Rule
The Boy Scout RuleThe Boy Scout Rule
The Boy Scout Rule
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
How to optimize background processes - when Sylius meets Blackfire
How to optimize background processes - when Sylius meets BlackfireHow to optimize background processes - when Sylius meets Blackfire
How to optimize background processes - when Sylius meets Blackfire
 
Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011
 
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...
Uniface Lectures Webinar - Building Responsive Applications with Uniface: Dev...
 
The Ring programming language version 1.9 book - Part 54 of 210
The Ring programming language version 1.9 book - Part 54 of 210The Ring programming language version 1.9 book - Part 54 of 210
The Ring programming language version 1.9 book - Part 54 of 210
 
Flask – Python
Flask – PythonFlask – Python
Flask – Python
 
Rails for Beginners - Le Wagon
Rails for Beginners - Le WagonRails for Beginners - Le Wagon
Rails for Beginners - Le Wagon
 
Dart for Java Developers
Dart for Java DevelopersDart for Java Developers
Dart for Java Developers
 
Тестирование и Django
Тестирование и DjangoТестирование и Django
Тестирование и Django
 
Cutting Edge Data Processing with PHP & XQuery
Cutting Edge Data Processing with PHP & XQueryCutting Edge Data Processing with PHP & XQuery
Cutting Edge Data Processing with PHP & XQuery
 
The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)
 
Unit testing PHP apps with PHPUnit
Unit testing PHP apps with PHPUnitUnit testing PHP apps with PHPUnit
Unit testing PHP apps with PHPUnit
 
CiklumJavaSat_15112011:Alex Kruk VMForce
CiklumJavaSat_15112011:Alex Kruk VMForceCiklumJavaSat_15112011:Alex Kruk VMForce
CiklumJavaSat_15112011:Alex Kruk VMForce
 
Building Testable PHP Applications
Building Testable PHP ApplicationsBuilding Testable PHP Applications
Building Testable PHP Applications
 
React Native - Workshop
React Native - WorkshopReact Native - Workshop
React Native - Workshop
 
Active Record Inheritance in Rails
Active Record Inheritance in RailsActive Record Inheritance in Rails
Active Record Inheritance in Rails
 

Recently uploaded

2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
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
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
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
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
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
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 

Recently uploaded (20)

2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
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
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.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
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
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
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 

Repensando o Desenvolvimento Web com Ruby on Rails