SlideShare a Scribd company logo
DECIPHERING DEVELOPMENT TECHNOLOGIES
WEBVISIONS PORTLAND
8 MAY 2014
Phillip Kerman
@phillip
EXPECTATIONS
clientside
more breadth, less depth
test
OUTLINE
Version Control
Package Managers
JS/CSS Frameworks
Automation
TestDriven Development
Terms, perspective, tips for learning
ROI LEARNING
Assessingwhat's "essential"
Consider how itapplies to your project. (Be goaloriented.)
Learningon the fly.
Better to do less and understand itvs. doingmore with
mystery.
Advocacy
ESSENTIALS
Version Control
Package Manager
VERSION CONTROL
git(is notgithub)
~90%is just:
gitstatus
gitadd
gitcommit
gitpush
~10%is:
gitcheckout-b (branch)
gitmerge
VERSION CONTROL (DEMO)
http://www.youtube.com/watch?v=SRn2UwWK7F0
0:00 / 6:41
git demo
Learn GitBranching
VERSION CONTROL
PACKAGE MANAGERS
Installnode.js ( ), and you'llhave npm
Installbower
Discover and get
Manage and distribute
http://nodejs.org/
PACKAGE MANAGERS
Installpackages (usuallyfrom the web)
npm/bower install[package]
npm/bower update [package]
-gglobalflag
--saveflagadds dependency
PACKAGE MANAGERS
Getdependencies for aprojectviaits package.json or bower.json
file
npm/bower install
PACKAGE MANAGERS (DEMO)
http://www.youtube.com/watch?v=TztY4deEMz8
0:00 / 7:03
using npm to manage dependencies
JS LIBRARIES AND FRAMEWORKS
Libraryis acollection of utilities/functions
Libraries should work alongside other libraries (and within
frameworks)
Frameworks always have some opinion how you should build
upon them.
JS LIBRARIES
jQuery
underscore (lodash)
three.js, D3.js, and manymore
JS FRAMEWORKS
AngularJS, Backbone, Ember
binding
templating/rendering
dependency
components
routing
JS FRAMEWORKS
Learning
AngularJS tutorials:
React.js library:
egghead.io
tinyurl.com/fbreact
COMPILING
CoffeeScript
TypeScript
asm.js
The Birth &Death of JavaScripttinyurl.com/banddjs
CSS FRAMEWORKS
Bootstrap, Foundation, manyothers
Layout/style
Components
Transitions
Customization
CSS PREPROCESSORS
LESS and SASS are the language
Countless frameworks and mixins to automate
CSS gets rendered
AUTOMATION
Grunt
Gulp
Gruntvs. Gulp:
Plugins include:
minifying(uglify)
concatentation
linting
tests
Watch
tinyurl.com/gruntvgulp
AUTOMATION
Basic GruntFile.js
module.exports=function(grunt){
grunt.initConfig({
pkg:grunt.file.readJSON('package.json'),
//setupuglify
uglify:{
build:{
src:'main.js',
dest:'_dist/main.min.js'
}
},
more:{demo:"na"}
});
//intopackage.jsonvia:npminstallgrunt-contrib-uglify--save-dev
grunt.loadNpmTasks('grunt-contrib-uglify');
//registerwhattodowhenusingthedefault'grunt'command
grunt.registerTask('default',['uglify','more']);
}
AUTOMATION
Basic gulpfile.js
//npminstallgulp--save-dev
vargulp=require('gulp');
//npminstallgulp-uglify--save-dev
varuglify=require('gulp-uglify');
gulp.task('default',function(){
gulp.src('./main.js')
.pipe(uglify())
.pipe(gulp.dest('./_dist/main.min.js'));
});
//keepsrunning
gulp.watch('./main.js',['default']);
AUTOMATION (DEMO)
http://www.youtube.com/watch?v=9EL_mZjg4xk
0:00 / 7:15
demo using gulp for automation
TDD
Process
write failingtests
implementthe minimum code to pass test
repeat
TDD
Basic syntax
//spec:
describe('myAddFunction',function(){
it('shouldknowoneandoneistwo',function(){
expect(myAddFunction(1,1)).toEqual(2);
});
});
//codetotest
functionmyAddFunction(a,b){
returnnull;
}
TDD (DEMO)
http://www.youtube.com/watch?v=YyjlaSRFy00
0:00 / 9:37
tdd demo
TDD
More
describe('myAddFunction',function(){
beforeEach(function(){
//setsomeglobals
});
it('shouldknowoneandoneistwo',function(){
expect(myAddFunction(1,1)).toEqual(2);
});
});
Also, mocks for integration testingand CI
(SOME) THINGS I LEFT OUT
In browser devtools
Browserify(like Require.js)
Server side tooling
PLEASE DON'T
Justuse Yeoman
THE END
Phillip Kerman | @phillip
phillipkerman.com/wv2014

More Related Content

What's hot

Mobile patrols services in calgary
Mobile patrols services in calgaryMobile patrols services in calgary
Mobile patrols services in calgary
johnwilliamjw2114
 
CLL19 - Acceptance Tests as Monitors
CLL19 - Acceptance Tests as MonitorsCLL19 - Acceptance Tests as Monitors
CLL19 - Acceptance Tests as Monitors
Phill Barber
 
How QCLean Works? Introduction to Browser Extensions
How QCLean Works? Introduction to Browser ExtensionsHow QCLean Works? Introduction to Browser Extensions
How QCLean Works? Introduction to Browser Extensions
Qing-Cheng Li
 
PHP Conference Brazil - What can we expect about framework Laminas?
PHP Conference Brazil - What can we expect about framework Laminas?PHP Conference Brazil - What can we expect about framework Laminas?
PHP Conference Brazil - What can we expect about framework Laminas?
Flávio Lisboa
 
Make Your SEO Campaigns Successful With SEO Calgary
Make Your SEO Campaigns Successful With SEO CalgaryMake Your SEO Campaigns Successful With SEO Calgary
Make Your SEO Campaigns Successful With SEO Calgary
johnalbert672
 
Tdd presentation
Tdd presentationTdd presentation
Tdd presentation
fernando_chimicoviaki
 
Андрій Юн — Drupal contributor HOWTO
Андрій Юн — Drupal contributor HOWTOАндрій Юн — Drupal contributor HOWTO
Андрій Юн — Drupal contributor HOWTO
LEDC 2016
 
Points to Consider While Buying a Furnace
Points to Consider While Buying a FurnacePoints to Consider While Buying a Furnace
Points to Consider While Buying a Furnace
poll watson
 
Preparing for the WebGeek DevCup
Preparing for the WebGeek DevCupPreparing for the WebGeek DevCup
Preparing for the WebGeek DevCup
bryanbibat
 
Typescript kata The TDD style 2 edition
Typescript kata The TDD style 2 editionTypescript kata The TDD style 2 edition
Typescript kata The TDD style 2 edition
Ronnie Hegelund
 

What's hot (10)

Mobile patrols services in calgary
Mobile patrols services in calgaryMobile patrols services in calgary
Mobile patrols services in calgary
 
CLL19 - Acceptance Tests as Monitors
CLL19 - Acceptance Tests as MonitorsCLL19 - Acceptance Tests as Monitors
CLL19 - Acceptance Tests as Monitors
 
How QCLean Works? Introduction to Browser Extensions
How QCLean Works? Introduction to Browser ExtensionsHow QCLean Works? Introduction to Browser Extensions
How QCLean Works? Introduction to Browser Extensions
 
PHP Conference Brazil - What can we expect about framework Laminas?
PHP Conference Brazil - What can we expect about framework Laminas?PHP Conference Brazil - What can we expect about framework Laminas?
PHP Conference Brazil - What can we expect about framework Laminas?
 
Make Your SEO Campaigns Successful With SEO Calgary
Make Your SEO Campaigns Successful With SEO CalgaryMake Your SEO Campaigns Successful With SEO Calgary
Make Your SEO Campaigns Successful With SEO Calgary
 
Tdd presentation
Tdd presentationTdd presentation
Tdd presentation
 
Андрій Юн — Drupal contributor HOWTO
Андрій Юн — Drupal contributor HOWTOАндрій Юн — Drupal contributor HOWTO
Андрій Юн — Drupal contributor HOWTO
 
Points to Consider While Buying a Furnace
Points to Consider While Buying a FurnacePoints to Consider While Buying a Furnace
Points to Consider While Buying a Furnace
 
Preparing for the WebGeek DevCup
Preparing for the WebGeek DevCupPreparing for the WebGeek DevCup
Preparing for the WebGeek DevCup
 
Typescript kata The TDD style 2 edition
Typescript kata The TDD style 2 editionTypescript kata The TDD style 2 edition
Typescript kata The TDD style 2 edition
 

Viewers also liked

Sharing and reuse museum objects in learning environment
Sharing and reuse museum objects in learning environmentSharing and reuse museum objects in learning environment
Sharing and reuse museum objects in learning environment
Vincenza Ferrara
 
Authenticity vs. Inauthenticity within the Museum Space in Lebanon
Authenticity vs. Inauthenticity within the Museum Space in LebanonAuthenticity vs. Inauthenticity within the Museum Space in Lebanon
Authenticity vs. Inauthenticity within the Museum Space in Lebanon
Nano Qotb
 
Exhibition stands, display systems, booth displays
Exhibition stands, display systems, booth displaysExhibition stands, display systems, booth displays
Exhibition stands, display systems, booth displays
Allstar Displays
 
Museum objects
Museum objectsMuseum objects
Museum objects
Cathy Fahey
 
Taking Your Museum to the Next level with the Museum Assessment Program and ...
 Taking Your Museum to the Next level with the Museum Assessment Program and ... Taking Your Museum to the Next level with the Museum Assessment Program and ...
Taking Your Museum to the Next level with the Museum Assessment Program and ...
Mid-Atlantic Association of Museums (MAAM)
 
The Poetics Of Museum Display
The Poetics Of Museum DisplayThe Poetics Of Museum Display
The Poetics Of Museum Display
Clive McGoun
 
American Museums of the History of Technology
American Museums of the History of TechnologyAmerican Museums of the History of Technology
American Museums of the History of Technology
Steven Lubar
 
Consejos psicológico deportivos(psicologia)
Consejos psicológico deportivos(psicologia)Consejos psicológico deportivos(psicologia)
Consejos psicológico deportivos(psicologia)
nadia
 
Guardiola y el liderazgo inteligente (psicología)
Guardiola y el liderazgo inteligente (psicología)Guardiola y el liderazgo inteligente (psicología)
Guardiola y el liderazgo inteligente (psicología)
nadia
 
Percepcion de la carga 29 al 05 julio
Percepcion de la carga 29 al 05 julioPercepcion de la carga 29 al 05 julio
Percepcion de la carga 29 al 05 julio
nadia
 
Estructura socio afectiva_francisco_seirullo_vargas_2004
Estructura socio afectiva_francisco_seirullo_vargas_2004Estructura socio afectiva_francisco_seirullo_vargas_2004
Estructura socio afectiva_francisco_seirullo_vargas_2004
nadia
 
Preparación física de un futbolista
Preparación física de un futbolistaPreparación física de un futbolista
Preparación física de un futbolista
nadia
 
Coaching 3(psicologia)
Coaching 3(psicologia)Coaching 3(psicologia)
Coaching 3(psicologia)
nadia
 
Coaching 2(psicologia)
Coaching 2(psicologia)Coaching 2(psicologia)
Coaching 2(psicologia)
nadia
 
De un grupo a un equipo(psicologia)
De un grupo a un equipo(psicologia)De un grupo a un equipo(psicologia)
De un grupo a un equipo(psicologia)
nadia
 
Metodologia planificacion P. seirul-lo_2001
Metodologia planificacion   P. seirul-lo_2001Metodologia planificacion   P. seirul-lo_2001
Metodologia planificacion P. seirul-lo_2001
nadia
 
Atencion y concentracion en un equipo profecional(psicologia)
Atencion y concentracion en un equipo profecional(psicologia)Atencion y concentracion en un equipo profecional(psicologia)
Atencion y concentracion en un equipo profecional(psicologia)
nadia
 
Atencion y concentracion en el futbol(psicologia)
Atencion y concentracion en el futbol(psicologia)Atencion y concentracion en el futbol(psicologia)
Atencion y concentracion en el futbol(psicologia)
nadia
 
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeauEl libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
nadia
 
Autoconfianza, el motor del rendimiento(psicologia)
Autoconfianza, el motor del rendimiento(psicologia)Autoconfianza, el motor del rendimiento(psicologia)
Autoconfianza, el motor del rendimiento(psicologia)
nadia
 

Viewers also liked (20)

Sharing and reuse museum objects in learning environment
Sharing and reuse museum objects in learning environmentSharing and reuse museum objects in learning environment
Sharing and reuse museum objects in learning environment
 
Authenticity vs. Inauthenticity within the Museum Space in Lebanon
Authenticity vs. Inauthenticity within the Museum Space in LebanonAuthenticity vs. Inauthenticity within the Museum Space in Lebanon
Authenticity vs. Inauthenticity within the Museum Space in Lebanon
 
Exhibition stands, display systems, booth displays
Exhibition stands, display systems, booth displaysExhibition stands, display systems, booth displays
Exhibition stands, display systems, booth displays
 
Museum objects
Museum objectsMuseum objects
Museum objects
 
Taking Your Museum to the Next level with the Museum Assessment Program and ...
 Taking Your Museum to the Next level with the Museum Assessment Program and ... Taking Your Museum to the Next level with the Museum Assessment Program and ...
Taking Your Museum to the Next level with the Museum Assessment Program and ...
 
The Poetics Of Museum Display
The Poetics Of Museum DisplayThe Poetics Of Museum Display
The Poetics Of Museum Display
 
American Museums of the History of Technology
American Museums of the History of TechnologyAmerican Museums of the History of Technology
American Museums of the History of Technology
 
Consejos psicológico deportivos(psicologia)
Consejos psicológico deportivos(psicologia)Consejos psicológico deportivos(psicologia)
Consejos psicológico deportivos(psicologia)
 
Guardiola y el liderazgo inteligente (psicología)
Guardiola y el liderazgo inteligente (psicología)Guardiola y el liderazgo inteligente (psicología)
Guardiola y el liderazgo inteligente (psicología)
 
Percepcion de la carga 29 al 05 julio
Percepcion de la carga 29 al 05 julioPercepcion de la carga 29 al 05 julio
Percepcion de la carga 29 al 05 julio
 
Estructura socio afectiva_francisco_seirullo_vargas_2004
Estructura socio afectiva_francisco_seirullo_vargas_2004Estructura socio afectiva_francisco_seirullo_vargas_2004
Estructura socio afectiva_francisco_seirullo_vargas_2004
 
Preparación física de un futbolista
Preparación física de un futbolistaPreparación física de un futbolista
Preparación física de un futbolista
 
Coaching 3(psicologia)
Coaching 3(psicologia)Coaching 3(psicologia)
Coaching 3(psicologia)
 
Coaching 2(psicologia)
Coaching 2(psicologia)Coaching 2(psicologia)
Coaching 2(psicologia)
 
De un grupo a un equipo(psicologia)
De un grupo a un equipo(psicologia)De un grupo a un equipo(psicologia)
De un grupo a un equipo(psicologia)
 
Metodologia planificacion P. seirul-lo_2001
Metodologia planificacion   P. seirul-lo_2001Metodologia planificacion   P. seirul-lo_2001
Metodologia planificacion P. seirul-lo_2001
 
Atencion y concentracion en un equipo profecional(psicologia)
Atencion y concentracion en un equipo profecional(psicologia)Atencion y concentracion en un equipo profecional(psicologia)
Atencion y concentracion en un equipo profecional(psicologia)
 
Atencion y concentracion en el futbol(psicologia)
Atencion y concentracion en el futbol(psicologia)Atencion y concentracion en el futbol(psicologia)
Atencion y concentracion en el futbol(psicologia)
 
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeauEl libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
El libro negro_de_los_secretos_de_entrenamiento-christian_thibaudeau
 
Autoconfianza, el motor del rendimiento(psicologia)
Autoconfianza, el motor del rendimiento(psicologia)Autoconfianza, el motor del rendimiento(psicologia)
Autoconfianza, el motor del rendimiento(psicologia)
 

Similar to Deciphering development technologies

Alexey Kupriyanenko "Release Early, Often, Stable"
Alexey Kupriyanenko "Release Early, Often, Stable"Alexey Kupriyanenko "Release Early, Often, Stable"
Alexey Kupriyanenko "Release Early, Often, Stable"
Fwdays
 
Optimizing Your CI Pipelines
Optimizing Your CI PipelinesOptimizing Your CI Pipelines
Optimizing Your CI Pipelines
Sebastian Witowski
 
TMF2014 CI-CD Workshop Michael Palotas
TMF2014 CI-CD Workshop Michael PalotasTMF2014 CI-CD Workshop Michael Palotas
TMF2014 CI-CD Workshop Michael Palotas
KJR
 
DevOps: The New Face Of Application Development - Global Azure Bootcamp
DevOps: The New Face Of Application Development - Global Azure BootcampDevOps: The New Face Of Application Development - Global Azure Bootcamp
DevOps: The New Face Of Application Development - Global Azure Bootcamp
Richard Harbridge
 
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
Sascha Junkert
 
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
VictorSzoltysek
 
Write microservice in golang
Write microservice in golangWrite microservice in golang
Write microservice in golang
Bo-Yi Wu
 
Speeding up your team with GitOps
Speeding up your team with GitOpsSpeeding up your team with GitOps
Speeding up your team with GitOps
Brice Fernandes
 
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Agile Bodensee - Testautomation & Continuous Delivery WorkshopAgile Bodensee - Testautomation & Continuous Delivery Workshop
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Michael Palotas
 
Joomla in the cloud with Openshift
Joomla in the cloud with OpenshiftJoomla in the cloud with Openshift
Joomla in the cloud with Openshift
Edoardo Schepis
 
Simplifying and accelerating converged media with Open Visual Cloud
Simplifying and accelerating converged media with Open Visual CloudSimplifying and accelerating converged media with Open Visual Cloud
Simplifying and accelerating converged media with Open Visual Cloud
Liz Warner
 
Velocity NY 2016 - Devops: Who Does What?
Velocity NY 2016 - Devops: Who Does What?Velocity NY 2016 - Devops: Who Does What?
Velocity NY 2016 - Devops: Who Does What?
cornelia davis
 
Kim Carter (BinaryMist)
Kim Carter (BinaryMist)Kim Carter (BinaryMist)
Kim Carter (BinaryMist)
AgileNZ Conference
 
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
Sascha Junkert
 
All levels of performance testing and monitoring in web-apps
All levels of performance testing and monitoring in web-appsAll levels of performance testing and monitoring in web-apps
All levels of performance testing and monitoring in web-apps
Andrii Skrypnychenko
 
Adrian marinica continuous integration in the visual studio world
Adrian marinica   continuous integration in the visual studio worldAdrian marinica   continuous integration in the visual studio world
Adrian marinica continuous integration in the visual studio world
Codecamp Romania
 
NetDevOps Development Environments
NetDevOps Development EnvironmentsNetDevOps Development Environments
NetDevOps Development Environments
Joel W. King
 
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh VariaCloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Amazon Web Services
 
MA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
MA 2019. iOS Advanced. CI & CD. Fastlane + GitlabMA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
MA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
Maksym Savisko
 
AppSec California 2016 - Making Security Agile
AppSec California 2016 - Making Security AgileAppSec California 2016 - Making Security Agile
AppSec California 2016 - Making Security Agile
Oleg Gryb
 

Similar to Deciphering development technologies (20)

Alexey Kupriyanenko "Release Early, Often, Stable"
Alexey Kupriyanenko "Release Early, Often, Stable"Alexey Kupriyanenko "Release Early, Often, Stable"
Alexey Kupriyanenko "Release Early, Often, Stable"
 
Optimizing Your CI Pipelines
Optimizing Your CI PipelinesOptimizing Your CI Pipelines
Optimizing Your CI Pipelines
 
TMF2014 CI-CD Workshop Michael Palotas
TMF2014 CI-CD Workshop Michael PalotasTMF2014 CI-CD Workshop Michael Palotas
TMF2014 CI-CD Workshop Michael Palotas
 
DevOps: The New Face Of Application Development - Global Azure Bootcamp
DevOps: The New Face Of Application Development - Global Azure BootcampDevOps: The New Face Of Application Development - Global Azure Bootcamp
DevOps: The New Face Of Application Development - Global Azure Bootcamp
 
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
SAP Inside Track Munich 2018 - DevOps and Deployment Pipelines in ABAP Landsc...
 
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
Real-World DevOps — 20 Practical Developers Tips for Tightening Your Operatio...
 
Write microservice in golang
Write microservice in golangWrite microservice in golang
Write microservice in golang
 
Speeding up your team with GitOps
Speeding up your team with GitOpsSpeeding up your team with GitOps
Speeding up your team with GitOps
 
Agile Bodensee - Testautomation & Continuous Delivery Workshop
Agile Bodensee - Testautomation & Continuous Delivery WorkshopAgile Bodensee - Testautomation & Continuous Delivery Workshop
Agile Bodensee - Testautomation & Continuous Delivery Workshop
 
Joomla in the cloud with Openshift
Joomla in the cloud with OpenshiftJoomla in the cloud with Openshift
Joomla in the cloud with Openshift
 
Simplifying and accelerating converged media with Open Visual Cloud
Simplifying and accelerating converged media with Open Visual CloudSimplifying and accelerating converged media with Open Visual Cloud
Simplifying and accelerating converged media with Open Visual Cloud
 
Velocity NY 2016 - Devops: Who Does What?
Velocity NY 2016 - Devops: Who Does What?Velocity NY 2016 - Devops: Who Does What?
Velocity NY 2016 - Devops: Who Does What?
 
Kim Carter (BinaryMist)
Kim Carter (BinaryMist)Kim Carter (BinaryMist)
Kim Carter (BinaryMist)
 
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
DSAG Jahreskongress 2018 - DevOps and Deployment Pipelines in SAP ABAP Landsc...
 
All levels of performance testing and monitoring in web-apps
All levels of performance testing and monitoring in web-appsAll levels of performance testing and monitoring in web-apps
All levels of performance testing and monitoring in web-apps
 
Adrian marinica continuous integration in the visual studio world
Adrian marinica   continuous integration in the visual studio worldAdrian marinica   continuous integration in the visual studio world
Adrian marinica continuous integration in the visual studio world
 
NetDevOps Development Environments
NetDevOps Development EnvironmentsNetDevOps Development Environments
NetDevOps Development Environments
 
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh VariaCloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
 
MA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
MA 2019. iOS Advanced. CI & CD. Fastlane + GitlabMA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
MA 2019. iOS Advanced. CI & CD. Fastlane + Gitlab
 
AppSec California 2016 - Making Security Agile
AppSec California 2016 - Making Security AgileAppSec California 2016 - Making Security Agile
AppSec California 2016 - Making Security Agile
 

Recently uploaded

A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
kalichargn70th171
 
Superpower Your Apache Kafka Applications Development with Complementary Open...
Superpower Your Apache Kafka Applications Development with Complementary Open...Superpower Your Apache Kafka Applications Development with Complementary Open...
Superpower Your Apache Kafka Applications Development with Complementary Open...
Paul Brebner
 
Photoshop Tutorial for Beginners (2024 Edition)
Photoshop Tutorial for Beginners (2024 Edition)Photoshop Tutorial for Beginners (2024 Edition)
Photoshop Tutorial for Beginners (2024 Edition)
alowpalsadig
 
What is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdfWhat is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdf
kalichargn70th171
 
Folding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a seriesFolding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a series
Philip Schwarz
 
Folding Cheat Sheet #6 - sixth in a series
Folding Cheat Sheet #6 - sixth in a seriesFolding Cheat Sheet #6 - sixth in a series
Folding Cheat Sheet #6 - sixth in a series
Philip Schwarz
 
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Ortus Solutions, Corp
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
michniczscribd
 
Enhanced Screen Flows UI/UX using SLDS with Tom Kitt
Enhanced Screen Flows UI/UX using SLDS with Tom KittEnhanced Screen Flows UI/UX using SLDS with Tom Kitt
Enhanced Screen Flows UI/UX using SLDS with Tom Kitt
Peter Caitens
 
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
manji sharman06
 
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
The Third Creative Media
 
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Paul Brebner
 
ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.
Maitrey Patel
 
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery FleetStork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Vince Scalabrino
 
42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert
vaishalijagtap12
 
Microsoft-Power-Platform-Adoption-Planning.pptx
Microsoft-Power-Platform-Adoption-Planning.pptxMicrosoft-Power-Platform-Adoption-Planning.pptx
Microsoft-Power-Platform-Adoption-Planning.pptx
jrodriguezq3110
 
How GenAI Can Improve Supplier Performance Management.pdf
How GenAI Can Improve Supplier Performance Management.pdfHow GenAI Can Improve Supplier Performance Management.pdf
How GenAI Can Improve Supplier Performance Management.pdf
Zycus
 
What’s New in VictoriaLogs - Q2 2024 Update
What’s New in VictoriaLogs - Q2 2024 UpdateWhat’s New in VictoriaLogs - Q2 2024 Update
What’s New in VictoriaLogs - Q2 2024 Update
VictoriaMetrics
 
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
kalichargn70th171
 
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Building the Ideal CI-CD Pipeline_ Achieving Visual PerfectionBuilding the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Applitools
 

Recently uploaded (20)

A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
A Comprehensive Guide on Implementing Real-World Mobile Testing Strategies fo...
 
Superpower Your Apache Kafka Applications Development with Complementary Open...
Superpower Your Apache Kafka Applications Development with Complementary Open...Superpower Your Apache Kafka Applications Development with Complementary Open...
Superpower Your Apache Kafka Applications Development with Complementary Open...
 
Photoshop Tutorial for Beginners (2024 Edition)
Photoshop Tutorial for Beginners (2024 Edition)Photoshop Tutorial for Beginners (2024 Edition)
Photoshop Tutorial for Beginners (2024 Edition)
 
What is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdfWhat is Continuous Testing in DevOps - A Definitive Guide.pdf
What is Continuous Testing in DevOps - A Definitive Guide.pdf
 
Folding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a seriesFolding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a series
 
Folding Cheat Sheet #6 - sixth in a series
Folding Cheat Sheet #6 - sixth in a seriesFolding Cheat Sheet #6 - sixth in a series
Folding Cheat Sheet #6 - sixth in a series
 
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
 
Enhanced Screen Flows UI/UX using SLDS with Tom Kitt
Enhanced Screen Flows UI/UX using SLDS with Tom KittEnhanced Screen Flows UI/UX using SLDS with Tom Kitt
Enhanced Screen Flows UI/UX using SLDS with Tom Kitt
 
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
Call Girls Bangalore🔥7023059433🔥Best Profile Escorts in Bangalore Available 24/7
 
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
Unlock the Secrets to Effortless Video Creation with Invideo: Your Ultimate G...
 
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
Why Apache Kafka Clusters Are Like Galaxies (And Other Cosmic Kafka Quandarie...
 
ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.ACE - Team 24 Wrapup event at ahmedabad.
ACE - Team 24 Wrapup event at ahmedabad.
 
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery FleetStork Product Overview: An AI-Powered Autonomous Delivery Fleet
Stork Product Overview: An AI-Powered Autonomous Delivery Fleet
 
42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert42 Ways to Generate Real Estate Leads - Sellxpert
42 Ways to Generate Real Estate Leads - Sellxpert
 
Microsoft-Power-Platform-Adoption-Planning.pptx
Microsoft-Power-Platform-Adoption-Planning.pptxMicrosoft-Power-Platform-Adoption-Planning.pptx
Microsoft-Power-Platform-Adoption-Planning.pptx
 
How GenAI Can Improve Supplier Performance Management.pdf
How GenAI Can Improve Supplier Performance Management.pdfHow GenAI Can Improve Supplier Performance Management.pdf
How GenAI Can Improve Supplier Performance Management.pdf
 
What’s New in VictoriaLogs - Q2 2024 Update
What’s New in VictoriaLogs - Q2 2024 UpdateWhat’s New in VictoriaLogs - Q2 2024 Update
What’s New in VictoriaLogs - Q2 2024 Update
 
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
The Power of Visual Regression Testing_ Why It Is Critical for Enterprise App...
 
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Building the Ideal CI-CD Pipeline_ Achieving Visual PerfectionBuilding the Ideal CI-CD Pipeline_ Achieving Visual Perfection
Building the Ideal CI-CD Pipeline_ Achieving Visual Perfection
 

Deciphering development technologies