SlideShare uma empresa Scribd logo
1 de 29
Version Control
With
/Khorshed.RS
MD. KHORSHED
ALAM
CEO & Founder
/in/Khorshedrs
/Khorshed.RS
Everyday Workflow
Create a file
Save it
Edit it
Save it again
Etc …..
Everyday Workflow
Everyday Workflow
Can we automate this?
When
What
Why
Who
For each document version, we need to know
Story of Git
"I'm an egotistical bastard, so I name all my
projects after myself. First Linux, now Git”
Linus Torvalds, PC World. 2012-07-14
Story of Git
Linus needed a new source code revision
manager for
Linux, and none of the available options in 2005
where
good enough, so he wrote his own in.
Kernel 2.6.12 was the first release managed by Git
and
What Is Git ?
Distributed Version
Control System
Directory
Tree History
Storage System
Stupid Content
Tracker
Whatever You Think About It ….
uper Cool
Distributed
1
Everyone has the
complete history
3
2
4
Everything is done
offlineExcept Push / Pull
No central authority
Except by convention
Changes can be
shared without a
server
Git popularity according to OpenHub.net
CVS
10%
GIT
38%
MERCURI
AL
2%
SUBVERSIO
N
48%
Git might feel difficult at first,
but once you learn it, you
never
want to go back to anything
less
Installing GIT
https://git-scm.com
First Time Setup
Check Version
$ git --version
Setup User
$ git config --global user.name “rssoftware”
$ git config --global user.email
”git@thersoftware.com”
$ git config --list
Init
$ cd project
$ git init
Status
$ git status
.gitignore
$ touch .gitignore
Add
$ git add <file>
or
$ git add .
Reset
$ git reset <file>
or
$ git reset .
Commit
$ git commit –m "detailed message"
Log
$ git log
Show
$ git show
or
$ git show <hash_id>
Diff
Working :
$ git diff
$ git diff <file>
Staging :
$ git diff --cached
$ git diff –-cached <file>
Branching
$git branch my-feature
One feature = One branch
Working in the Branch
$git checkout my-feature
$git commit (x2)
Merge
$git checkout master
$git diff master..my-feature
$git merge my-feature
Clean Up
$git branch -d my-feature
Thank you for your attention

Mais conteúdo relacionado

Mais procurados

How to store large binary files in git repositories
How to store large binary files in git repositoriesHow to store large binary files in git repositories
How to store large binary files in git repositoriesMatt Aunger
 
Does Cowgirl Dream of Red Swirl?
Does Cowgirl Dream of Red Swirl?Does Cowgirl Dream of Red Swirl?
Does Cowgirl Dream of Red Swirl?Hideki Yamane
 
Controle de versão com git
Controle de versão com gitControle de versão com git
Controle de versão com gitRenato Oliveira
 
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!Stennie Steneker
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Gitkhelll
 
Git for standalone use
Git for standalone useGit for standalone use
Git for standalone useIkuru Kanuma
 
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015DevOpsDays Tel Aviv
 
Local Community for Debian (2013 Taiwan miniDebConf)
Local Community for Debian (2013 Taiwan miniDebConf)Local Community for Debian (2013 Taiwan miniDebConf)
Local Community for Debian (2013 Taiwan miniDebConf)Hideki Yamane
 
8-9-10=Jessie,Stretch,Buster
8-9-10=Jessie,Stretch,Buster8-9-10=Jessie,Stretch,Buster
8-9-10=Jessie,Stretch,BusterHideki Yamane
 
Git: a tool for wizards
Git: a tool for wizardsGit: a tool for wizards
Git: a tool for wizardsresponseteam
 
Git - Drupalcamp Ireland Dublin 2010
Git - Drupalcamp Ireland Dublin 2010Git - Drupalcamp Ireland Dublin 2010
Git - Drupalcamp Ireland Dublin 2010alanburke
 
Debian Ilughyd
Debian IlughydDebian Ilughyd
Debian Ilughydpavithrans
 
Davinci git brown_bag
Davinci git brown_bagDavinci git brown_bag
Davinci git brown_bagJason Noble
 
Migrating our monolith to Python 3
Migrating our monolith to Python 3Migrating our monolith to Python 3
Migrating our monolith to Python 3Ilian Iliev
 

Mais procurados (20)

How to store large binary files in git repositories
How to store large binary files in git repositoriesHow to store large binary files in git repositories
How to store large binary files in git repositories
 
Does Cowgirl Dream of Red Swirl?
Does Cowgirl Dream of Red Swirl?Does Cowgirl Dream of Red Swirl?
Does Cowgirl Dream of Red Swirl?
 
Git hub
Git hubGit hub
Git hub
 
Controle de versão com git
Controle de versão com gitControle de versão com git
Controle de versão com git
 
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!
MongoDB World 2019 Builder's Fest - Ready, Git set ... Go!
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
Git 101
Git 101Git 101
Git 101
 
Git for standalone use
Git for standalone useGit for standalone use
Git for standalone use
 
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
Terrible Ideas in Git - Corey Quinn, FutureAdvisor - DevOpsDays Tel Aviv 2015
 
Local Community for Debian (2013 Taiwan miniDebConf)
Local Community for Debian (2013 Taiwan miniDebConf)Local Community for Debian (2013 Taiwan miniDebConf)
Local Community for Debian (2013 Taiwan miniDebConf)
 
8-9-10=Jessie,Stretch,Buster
8-9-10=Jessie,Stretch,Buster8-9-10=Jessie,Stretch,Buster
8-9-10=Jessie,Stretch,Buster
 
Git back on_your_feet
Git back on_your_feetGit back on_your_feet
Git back on_your_feet
 
Introduction into GIT
Introduction into GITIntroduction into GIT
Introduction into GIT
 
Git: a tool for wizards
Git: a tool for wizardsGit: a tool for wizards
Git: a tool for wizards
 
Git
GitGit
Git
 
Git - Drupalcamp Ireland Dublin 2010
Git - Drupalcamp Ireland Dublin 2010Git - Drupalcamp Ireland Dublin 2010
Git - Drupalcamp Ireland Dublin 2010
 
Debian Ilughyd
Debian IlughydDebian Ilughyd
Debian Ilughyd
 
Davinci git brown_bag
Davinci git brown_bagDavinci git brown_bag
Davinci git brown_bag
 
SCM Boot Camp
SCM Boot CampSCM Boot Camp
SCM Boot Camp
 
Migrating our monolith to Python 3
Migrating our monolith to Python 3Migrating our monolith to Python 3
Migrating our monolith to Python 3
 

Destaque

Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي
 Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي
Benamor.belgacemالتعامل مع غير المسلمين في العهد النبويbenamor belgacem
 
Vampiros2014..0000
Vampiros2014..0000Vampiros2014..0000
Vampiros2014..000020febrero
 
Benamor.belgacemالخوف من حكم الإسلاميين عن الدولة المدنية والحريات والمواط...
 Benamor.belgacemالخوف من حكم الإسلاميين   عن الدولة المدنية والحريات والمواط... Benamor.belgacemالخوف من حكم الإسلاميين   عن الدولة المدنية والحريات والمواط...
Benamor.belgacemالخوف من حكم الإسلاميين عن الدولة المدنية والحريات والمواط...benamor belgacem
 
التريد في اعراب كلمة التوحيد Benamor.belgacem
التريد في اعراب كلمة التوحيد Benamor.belgacemالتريد في اعراب كلمة التوحيد Benamor.belgacem
التريد في اعراب كلمة التوحيد Benamor.belgacembenamor belgacem
 
فضل العلم Benamor.belgacem
فضل العلم Benamor.belgacemفضل العلم Benamor.belgacem
فضل العلم Benamor.belgacembenamor belgacem
 
برنامه های ویدئویی المپیک 2016 رویو
برنامه های ویدئویی المپیک 2016 رویوبرنامه های ویدئویی المپیک 2016 رویو
برنامه های ویدئویی المپیک 2016 رویوmohammad shahrabi
 
4º básico a semana 29 de agosto al 02 de septiembre.
4º básico a  semana  29 de agosto al 02 de septiembre.4º básico a  semana  29 de agosto al 02 de septiembre.
4º básico a semana 29 de agosto al 02 de septiembre.Colegio Camilo Henríquez
 
شرح جمل الزجاجي Benamor.belgacem
شرح جمل الزجاجي Benamor.belgacemشرح جمل الزجاجي Benamor.belgacem
شرح جمل الزجاجي Benamor.belgacembenamor belgacem
 
Ingrypinilla actividad1 2_mapac.pdf
Ingrypinilla actividad1 2_mapac.pdfIngrypinilla actividad1 2_mapac.pdf
Ingrypinilla actividad1 2_mapac.pdfINGRY PINILLA
 
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvarado
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvaradoLiderazgo y trabajo en equipo juanjui villa prado zeng rojas alvarado
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvaradozengrojas
 
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO Raul Ortega
 

Destaque (16)

Webquest
WebquestWebquest
Webquest
 
Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي
 Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي
Benamor.belgacemالتعامل مع غير المسلمين في العهد النبوي
 
4° básico b
4° básico b4° básico b
4° básico b
 
Vampiros2014..0000
Vampiros2014..0000Vampiros2014..0000
Vampiros2014..0000
 
Benamor.belgacemالخوف من حكم الإسلاميين عن الدولة المدنية والحريات والمواط...
 Benamor.belgacemالخوف من حكم الإسلاميين   عن الدولة المدنية والحريات والمواط... Benamor.belgacemالخوف من حكم الإسلاميين   عن الدولة المدنية والحريات والمواط...
Benamor.belgacemالخوف من حكم الإسلاميين عن الدولة المدنية والحريات والمواط...
 
التريد في اعراب كلمة التوحيد Benamor.belgacem
التريد في اعراب كلمة التوحيد Benamor.belgacemالتريد في اعراب كلمة التوحيد Benamor.belgacem
التريد في اعراب كلمة التوحيد Benamor.belgacem
 
Nº 24 1º basico a
Nº 24   1º basico aNº 24   1º basico a
Nº 24 1º basico a
 
2º básico a semana del 14 al 04 18
2º básico a   semana del 14 al  04 182º básico a   semana del 14 al  04 18
2º básico a semana del 14 al 04 18
 
فضل العلم Benamor.belgacem
فضل العلم Benamor.belgacemفضل العلم Benamor.belgacem
فضل العلم Benamor.belgacem
 
Jhoann familia
Jhoann familiaJhoann familia
Jhoann familia
 
برنامه های ویدئویی المپیک 2016 رویو
برنامه های ویدئویی المپیک 2016 رویوبرنامه های ویدئویی المپیک 2016 رویو
برنامه های ویدئویی المپیک 2016 رویو
 
4º básico a semana 29 de agosto al 02 de septiembre.
4º básico a  semana  29 de agosto al 02 de septiembre.4º básico a  semana  29 de agosto al 02 de septiembre.
4º básico a semana 29 de agosto al 02 de septiembre.
 
شرح جمل الزجاجي Benamor.belgacem
شرح جمل الزجاجي Benamor.belgacemشرح جمل الزجاجي Benamor.belgacem
شرح جمل الزجاجي Benamor.belgacem
 
Ingrypinilla actividad1 2_mapac.pdf
Ingrypinilla actividad1 2_mapac.pdfIngrypinilla actividad1 2_mapac.pdf
Ingrypinilla actividad1 2_mapac.pdf
 
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvarado
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvaradoLiderazgo y trabajo en equipo juanjui villa prado zeng rojas alvarado
Liderazgo y trabajo en equipo juanjui villa prado zeng rojas alvarado
 
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO
ANATOMIA E HISTOLOGIA DEL INTESTINO GRUESO
 

Semelhante a Khorshed presentation-digital world2016

Introduction to git and stash
Introduction to git and stashIntroduction to git and stash
Introduction to git and stashXpand IT
 
The Lives of Others: Open-Source Development Practices Elsewhere
The Lives of Others: Open-Source Development Practices ElsewhereThe Lives of Others: Open-Source Development Practices Elsewhere
The Lives of Others: Open-Source Development Practices ElsewherePeter Eisentraut
 
Git workshop 33degree 2011 krakow
Git workshop 33degree 2011 krakowGit workshop 33degree 2011 krakow
Git workshop 33degree 2011 krakowLuca Milanesio
 
Introduction to linux
Introduction to linuxIntroduction to linux
Introduction to linuxplarsen67
 
Workshop on Source control, git merge walkthroughs
Workshop on Source control, git merge walkthroughsWorkshop on Source control, git merge walkthroughs
Workshop on Source control, git merge walkthroughsDavid Lawrence
 
Presentation for git jira and linux
Presentation for git jira and linuxPresentation for git jira and linux
Presentation for git jira and linuxdkylko1
 
Puppet managed loadays
Puppet managed loadaysPuppet managed loadays
Puppet managed loadaysYankee Nemoy
 
Introduction to Git for Network Engineers (Lab Guide)
Introduction to Git for Network Engineers (Lab Guide)Introduction to Git for Network Engineers (Lab Guide)
Introduction to Git for Network Engineers (Lab Guide)Joel W. King
 
Luis atencio on_git
Luis atencio on_gitLuis atencio on_git
Luis atencio on_gitLuis Atencio
 

Semelhante a Khorshed presentation-digital world2016 (20)

Introduction to git and stash
Introduction to git and stashIntroduction to git and stash
Introduction to git and stash
 
Workshop on git
Workshop on gitWorkshop on git
Workshop on git
 
The Lives of Others: Open-Source Development Practices Elsewhere
The Lives of Others: Open-Source Development Practices ElsewhereThe Lives of Others: Open-Source Development Practices Elsewhere
The Lives of Others: Open-Source Development Practices Elsewhere
 
git presentation
git presentation git presentation
git presentation
 
Git
GitGit
Git
 
Git SCM
Git SCMGit SCM
Git SCM
 
Git (FS and DVCS)
Git (FS and DVCS)Git (FS and DVCS)
Git (FS and DVCS)
 
Git workshop 33degree 2011 krakow
Git workshop 33degree 2011 krakowGit workshop 33degree 2011 krakow
Git workshop 33degree 2011 krakow
 
Introduction to linux
Introduction to linuxIntroduction to linux
Introduction to linux
 
Workshop on Source control, git merge walkthroughs
Workshop on Source control, git merge walkthroughsWorkshop on Source control, git merge walkthroughs
Workshop on Source control, git merge walkthroughs
 
Roslyn on GitHub
Roslyn on GitHubRoslyn on GitHub
Roslyn on GitHub
 
Presentation for git jira and linux
Presentation for git jira and linuxPresentation for git jira and linux
Presentation for git jira and linux
 
Git Mastery
Git MasteryGit Mastery
Git Mastery
 
Puppet managed loadays
Puppet managed loadaysPuppet managed loadays
Puppet managed loadays
 
An Introduction To Linux
An Introduction To LinuxAn Introduction To Linux
An Introduction To Linux
 
Introduction to Git for Network Engineers (Lab Guide)
Introduction to Git for Network Engineers (Lab Guide)Introduction to Git for Network Engineers (Lab Guide)
Introduction to Git for Network Engineers (Lab Guide)
 
Luis atencio on_git
Luis atencio on_gitLuis atencio on_git
Luis atencio on_git
 
git Introduction.pptx
git Introduction.pptxgit Introduction.pptx
git Introduction.pptx
 
1-Intro to VC & GIT PDF.pptx
1-Intro to VC & GIT PDF.pptx1-Intro to VC & GIT PDF.pptx
1-Intro to VC & GIT PDF.pptx
 
Demo
DemoDemo
Demo
 

Último

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
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 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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 RobisonAnna Loughnan Colquhoun
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
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 Scriptwesley chun
 
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 2024The Digital Insurer
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
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 Processorsdebabhi2
 
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 productivityPrincipled Technologies
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 

Último (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
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
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 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
 
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
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
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
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Khorshed presentation-digital world2016