SlideShare a Scribd company logo
1 of 223
Download to read offline
P2P Bug Tracking with SD
                        http://syncwith.us

curl fsck.com/sd|perl;
export PATH=~/sd/bin:$PATH;
sd
                     jesse@bestpractical.com

                                Jesse Vincent
Hi!
I’m Jesse (obra)
I own a small software
      company
(Best Practical)
I’ve been making issue
  trackers since 1995
Our software
has some bugs
All software
has some bugs
(All software
is made of bugs)
I spend a lot of time
    on airplanes...
...and at conferences
     with bad wifi
I need to keep track of
our bugs and our work
I’m the boss
I have no excuse for
 not doing my work
I need to keep track of
our bugs and our work
even when I don’t have
    Internet access
I’ve tried everything
Text files
Text files in
version control
IMAP Servers
RSS Feeds
Running RT on
  my laptop
Keeping browsers open
Nothing was quite right
So we built SD
SD is a Bug Tracker
SD is a Distributed
   Bug Tracker
SD Features
Tracks bugs            P2P Sync
CLI                    Trac Sync
Web UI                 RT Sync
Scriptable             Hiveminder Sync
Works offline           GitHub Sync
Attachments            Google Code Sync
Comments               Conflict Resolution
Customizable workflow   Git integration
Custom properties      Darcs integration
Principles of distributed
       computing
The network is reliable
Latency is zero
Bandwidth is infinite
The network is secure
Transport cost is zero
The network is
homogeneous
Topology doesn't
    change
There is one
administrator
Principles of distributed
       computing
ie s
      la c
 Principles of distributed
    l
F a       computing
Those are all LIES
The network is not
      reliable
SD isn’t network-
  dependent
Latency hurts
SD runs at the edge
Bandwidth is always
    a problem
SD knows which
changesets you’ve already
          seen
The network is
  insecure
SD doesn’t depend on a
 network security layer
Topology is
unpredictable
  and fluid
SD is topology-agnostic
There is no
administrator
(But there are many
  people who think
they’re administrators)
SD lets you implement
policy in the centralized
  systems it syncs to
Transport
costs money
SD doesn’t use much
 bandwidth & can use
non-network substrates
The network is
heterogeneous
SD is designed to sync to
     foreign systems
I didn’t make those up
Bill Joy, Tom Lyon and
  James Gosling did
They missed one
Data is clean
SD doesn’t expect to be
 able to enforce data
    integrity rules
SD runs locally
SD plays well
 with others
It syncs the way you do
Clone a project’s bug
database (over HTTP)
Work offline
Pull changesets from
anyone you work with
Publish your database
  replica with rsync
Topology doesn’t matter...
Don’t worry
It won’t break
SD learns how to
resolve each conflict...
...based on how
everyone else resolves it
Using SD (CLI)
Getting Started
SD Shell

$ sd
./
Getting help

$ sd help
Creating a new project

$ sd init
Project settings

$ sd settings
Config file

$ sd config
Create a bug

$ sd ticket create
Listing bugs

$ sd ticket list
Show a bug

$ sd ticket show
Update a bug

$ sd ticket update
Log

$ sd log
Git Integration

$ git sd
Using SD (Web)
Web? Isn’t SD an
 offline tool?
Local microserver
$ sd browser
Home
Create a ticket
Search
Show a bug
Update a bug
Comments
History
Working with others
Working with others
   (Using SD)
Any topology
It doesn’t matter who
     you sync with
You get all the updates
      eventually
Cloning

$ sd clone
clone makes a replica of
    someone else’s
       database
Pulling

$ sd pull
pull imports unseen
changes from another
   database replica
Publishing

$ sd publish
publish writes out a
copy of your database
  replica for sharing
(As SD changesets
 and static HTML)
Hackathon mode
 (using Bonjour)
Publish your replica

$ sd server
Pull updates

$ sd pull --local
Working with others
(Using other systems)
But you already have a
     bug tracker?
No Problem!
I use at least
 two others.
I wrote at least
  two others.
We designed SD talk to
 foreign bug trackers
RT
(RT::Client::REST)
Hiveminder
(Net::Jifty)
Trac
(Net::Trac)
Google Code
(Net::Google::Code)
GitHub
(Net::GitHub)
Redmine
(Read-only for now)
(Net::Redmine)
Want to help with
Bugzilla, Jira, FogBugz or
   something else?
Work with
  foreign
replicas in
   a Star
Topology
X

    An SD node
    can act as a
      gateway
Clone

$ sd clone
Clone from Google Code

$ sd clone --from gcode:k9mail
Clone from RT
$ sd clone --from "rt:https://rt.cpan.org|DBI|"
Clone from Trac
$ sd clone --from trac:https://trac.parrot.org/parrot
Clone from GitHub
$ git sd clone --from github:miyagawa/remedie
SD reverse engineers a
   database history
Pull

$ sd pull
SD reverse engineers a
partial database history
Push

$ sd push
SD figures out local
 updates and sends
  them upstream
(Then it does a bunch
  of book-keeping)
So what’s that all look
like in the real world?
Google Code                 Alice’s SD                              Bob’s SD

Create some bugs



                            clone --from gcode:k9mail                                                     Alice’s SD makes a full copy of the k9mail from google code

Someone updates ticket 12

                            ticket update 13

                            ticket create

                            pull --from k9mail                                                            SD integrates upstream changes from Google Code since
                                                                                                          Alice ran the ‘clone’ command.

                            push --to k9mail                                                              SD figures out what’s changed locally since the original
                                                                                                          ‘clone’ command. SD then sends any changes that Google
                                                                                                          Code hasn’t seen upstream as ticket updates. Alice’s new
                                                                                                          ticket and her updates to ticket 13 are now part of the
                                                                                                          upstream bug database in Google Code

                            publish --to alice.com:public_html/k9                                         SD exports a full copy of Alice’s bug database and rsyncs it
                                                                                                          up to alice.com/k9. Anyone browsing alice.com/k9 can clone
                                                                                                          her SD replica. (Or see it in static HTML)

                                                                    clone --from http://alice.com/k9      Bob makes a full copy of Alice’s SD replica of the k9mail
                                                                                                          database. He’s now free to make changes to his local
                                                                                                          database replica.

                                                                    ticket update 45

                                                                    ticket create

                            ticket create

                            ticket update 45

                                                                    publish --to bob.com:public_html/k9   Bob publishes his full K9 bug database. Anyone browsing
                                                                                                          bob.com/k9 can clone Bob’s K9 replica. Anyone who already
                                                                                                          has a copy of Alice or Bob’s database can incorporate Bob’s
                                                                                                          new ticket and his changes to ticket 45.

                            pull --from http://bob.com/k9                                                 Alice’s SD pulls all previously unseen updates from Bob’s
                                                                                                          published database replica and incorporates them. If Bob's
                                                                                                          edits to ticket 45 didn't conflict, Alice's SD incorporate them.
                                                                                                          If they did conflict, Alice will be prompted to resolve the
                                                                                                          conflict.

                            push --to k9mail                                                              Alice publishes all updates her bug database has seen since
                                                                                                          she last sent updates to Google Code. Google Code now has
                                                                                                          all of Alice and Bob’s changes.
Installing SD
It’s time to get SD
   up and running
SD is in Perl
SD uses 45-90
CPAN modules
Are you afraid?
Are you afraid?
Don’t be
I have a novel idea for
   a Perl application
One-tweet install.
I’m installing #SD (http://syncwith.us)
  after seeing @obra’s talk at #OSCON!
80 bytes! I still have 60
    to work with!
I’m installing #SD (http://syncwith.us)
  after seeing @obra’s talk at #OSCON!
         curl fsck.com/sd|perl;
     export PATH=~/sd/bin:$PATH; sd
You’ll need:

curl, perl 5.8, C compiler
You won’t need:

    CPAN
You won’t need:

to answer prompts
You won’t need:

to fix dependencies
SD is in Perl
SD uses CPAN
  modules.
This is a blessing.
This is a curse.
CPAN
      =
Dependency Hell
When we first built
 SD, we used anything
we thought was useful.
(The first version of SD
 used a SVN backend)
The first ~useful
 version of SD:
123 Dependencies
...a couple hours later
54 Dependencies
Only one needs a
   compiler.
Shipwright gives us
one-command install
curl fsck.com/sd|perl
export PATH=$PATH:~/sd/bin
What’s that do?
curl
perl
$ head /Library/WebServer/Documents/sd

open (my $tar,'|tar xz 2>/dev/null');
while (<DATA>) {
    print $tar $_;
}
close $tar;
exec("cd sd-build; bin/shipwright-builder 
       --install-base=$ENV{HOME}/sd");
__DATA__
?I?Isd-build.tar?<is?F???_1?䀌yH?"#‫{$ۿ‬U???H?eH
...
Shipwright installs a few
    Perl modules...
...in order
Scalar-List-Utils        WWW-Mechanize-GZip        Sub-Exporter
String-BufferStack       File-Slurp                Path-Dispatcher
Class-Accessor           Test-MockModule           Module-Pluggable
Class-Data-Inheritable   Net-GitHub                Time-Progress
Tree-DAG_Node            MIME-Types                Carp-Assert
Test-Simple              Class-Singleton           Proc-InvokeEditor
Sub-Uplevel              Params-Validate           Test-HTTP-Server-Simple
Test-Exception           version                   Module-Refresh
Array-Compare            ExtUtils-CBuilder         Carp-Assert-More
Test-Warn                ExtUtils-ParseXS          Test-LongString
Template-Declare         Test-Harness              Test-WWW-Mechanize
URI                      File-Temp                 Test-Script-Run
HTTP-Server-Simple       Module-Build              prophet.git
Params-Util              DateTime-TimeZone         Devel-StackTrace
Class-Inspector          List-MoreUtils            Exception-Class
File-ShareDir            DateTime-Locale           Error
DBI                      DateTime                  RT-Client-REST
DBD-SQLite               File-MMagic               Email-Address
HTML-Tagset              Net-Google-Code           YAML
HTML-Parser              Term-ReadLine-Perl        Path-Class
HTML-Tree                Digest-SHA1               Clone
Crypt-SSLeay             Digest-HMAC               Hash-Merge
JSON                     Net-IP                    UNIVERSAL-isa
YAML-Syck                Net-DNS                   UNIVERSAL-can
JSON-XS                  Net-Bonjour               Test-MockObject
JSON-DWIW                TermReadKey               Net-Jifty
JSON-Any                 Data-UUID                 Lingua-EN-Inflect
Mouse                    XML-Atom-SimpleFeed       Text-CSV
Any-Moose                Digest-SHA                Net-Trac
Compress-Raw-Zlib        Exporter-Lite             boolean
Compress-Raw-Bzip2       IPC-Run3                  Time-Piece
IO-Compress              MIME-Base64-URLSafe       Test-MockTime
libwww-perl              Data-UUID-Base64URLSafe   DateTime-Format-Natural
HTTP-Response-Encoding   Sub-Install               sd.git
WWW-Mechanize            Data-OptList
(104 dists with our
   sync plugins)
What’s wrong with SD?
$ sd clone --from http://fsck.com/~jesse/sd-bugs
Don’t want to
 install SD?
Point your browser at
http://fsck.com/~jesse/sd-bugs/html
What’s next?
Indexing
GPG-signed changesets
Actually releasing 1.0
Thanks!

      Questions?

curl fsck.com/sd | perl


  http://syncwith.us
  jesse@bestpractical.com

More Related Content

More from Jesse Vincent

Building a keyboard from scratch
Building a keyboard from scratchBuilding a keyboard from scratch
Building a keyboard from scratchJesse Vincent
 
So, I made a keyboard
So, I made a keyboardSo, I made a keyboard
So, I made a keyboardJesse Vincent
 
Dancing App Stores - Android Open 2011
Dancing App Stores - Android Open 2011Dancing App Stores - Android Open 2011
Dancing App Stores - Android Open 2011Jesse Vincent
 
Perl 5.16 and Beyond - YAPC::Asia 2011
Perl 5.16 and Beyond - YAPC::Asia 2011Perl 5.16 and Beyond - YAPC::Asia 2011
Perl 5.16 and Beyond - YAPC::Asia 2011Jesse Vincent
 
Perl 5.16 and beyond
Perl 5.16 and beyondPerl 5.16 and beyond
Perl 5.16 and beyondJesse Vincent
 
OSCON 2011 - Perl 5.16 and beyond
OSCON 2011 - Perl 5.16 and beyondOSCON 2011 - Perl 5.16 and beyond
OSCON 2011 - Perl 5.16 and beyondJesse Vincent
 
RT4 - The whole sordid story
RT4 - The whole sordid storyRT4 - The whole sordid story
RT4 - The whole sordid storyJesse Vincent
 
K-9 Mail for Android
K-9 Mail for AndroidK-9 Mail for Android
K-9 Mail for AndroidJesse Vincent
 
P2P Bug Tracking with SD
P2P Bug Tracking with SDP2P Bug Tracking with SD
P2P Bug Tracking with SDJesse Vincent
 
Hacking your Kindle (OSCON Lightning Talk)
Hacking your Kindle (OSCON Lightning Talk)Hacking your Kindle (OSCON Lightning Talk)
Hacking your Kindle (OSCON Lightning Talk)Jesse Vincent
 
Beginning Kindle Hackery
Beginning Kindle HackeryBeginning Kindle Hackery
Beginning Kindle HackeryJesse Vincent
 
SD, a P2P bug tracking system
SD, a P2P bug tracking systemSD, a P2P bug tracking system
SD, a P2P bug tracking systemJesse Vincent
 
Prophet - Beijing Perl Workshop
Prophet - Beijing Perl WorkshopProphet - Beijing Perl Workshop
Prophet - Beijing Perl WorkshopJesse Vincent
 
Beijing Perl Workshop 2008 Hiveminder Secret Sauce
Beijing Perl Workshop 2008 Hiveminder Secret SauceBeijing Perl Workshop 2008 Hiveminder Secret Sauce
Beijing Perl Workshop 2008 Hiveminder Secret SauceJesse Vincent
 
A brief introduction to RTIR
A brief introduction to RTIRA brief introduction to RTIR
A brief introduction to RTIRJesse Vincent
 
An introduction to RTIR
An introduction to RTIRAn introduction to RTIR
An introduction to RTIRJesse Vincent
 
Prophet: a path out of the Cloud
Prophet: a path out of the CloudProphet: a path out of the Cloud
Prophet: a path out of the CloudJesse Vincent
 
Web 2.0 is Sharecropping
Web 2.0 is SharecroppingWeb 2.0 is Sharecropping
Web 2.0 is SharecroppingJesse Vincent
 
Hiveminder - Everything but the Secret Sauce
Hiveminder - Everything but the Secret SauceHiveminder - Everything but the Secret Sauce
Hiveminder - Everything but the Secret SauceJesse Vincent
 

More from Jesse Vincent (20)

Building a keyboard from scratch
Building a keyboard from scratchBuilding a keyboard from scratch
Building a keyboard from scratch
 
So, I made a keyboard
So, I made a keyboardSo, I made a keyboard
So, I made a keyboard
 
Dancing App Stores - Android Open 2011
Dancing App Stores - Android Open 2011Dancing App Stores - Android Open 2011
Dancing App Stores - Android Open 2011
 
Perl 5.16 and Beyond - YAPC::Asia 2011
Perl 5.16 and Beyond - YAPC::Asia 2011Perl 5.16 and Beyond - YAPC::Asia 2011
Perl 5.16 and Beyond - YAPC::Asia 2011
 
Perl 5.16 and beyond
Perl 5.16 and beyondPerl 5.16 and beyond
Perl 5.16 and beyond
 
OSCON 2011 - Perl 5.16 and beyond
OSCON 2011 - Perl 5.16 and beyondOSCON 2011 - Perl 5.16 and beyond
OSCON 2011 - Perl 5.16 and beyond
 
RT4 - The whole sordid story
RT4 - The whole sordid storyRT4 - The whole sordid story
RT4 - The whole sordid story
 
K-9 Mail for Android
K-9 Mail for AndroidK-9 Mail for Android
K-9 Mail for Android
 
Perl 5.12.0
Perl 5.12.0Perl 5.12.0
Perl 5.12.0
 
P2P Bug Tracking with SD
P2P Bug Tracking with SDP2P Bug Tracking with SD
P2P Bug Tracking with SD
 
Hacking your Kindle (OSCON Lightning Talk)
Hacking your Kindle (OSCON Lightning Talk)Hacking your Kindle (OSCON Lightning Talk)
Hacking your Kindle (OSCON Lightning Talk)
 
Beginning Kindle Hackery
Beginning Kindle HackeryBeginning Kindle Hackery
Beginning Kindle Hackery
 
SD, a P2P bug tracking system
SD, a P2P bug tracking systemSD, a P2P bug tracking system
SD, a P2P bug tracking system
 
Prophet - Beijing Perl Workshop
Prophet - Beijing Perl WorkshopProphet - Beijing Perl Workshop
Prophet - Beijing Perl Workshop
 
Beijing Perl Workshop 2008 Hiveminder Secret Sauce
Beijing Perl Workshop 2008 Hiveminder Secret SauceBeijing Perl Workshop 2008 Hiveminder Secret Sauce
Beijing Perl Workshop 2008 Hiveminder Secret Sauce
 
A brief introduction to RTIR
A brief introduction to RTIRA brief introduction to RTIR
A brief introduction to RTIR
 
An introduction to RTIR
An introduction to RTIRAn introduction to RTIR
An introduction to RTIR
 
Prophet: a path out of the Cloud
Prophet: a path out of the CloudProphet: a path out of the Cloud
Prophet: a path out of the Cloud
 
Web 2.0 is Sharecropping
Web 2.0 is SharecroppingWeb 2.0 is Sharecropping
Web 2.0 is Sharecropping
 
Hiveminder - Everything but the Secret Sauce
Hiveminder - Everything but the Secret SauceHiveminder - Everything but the Secret Sauce
Hiveminder - Everything but the Secret Sauce
 

Recently uploaded

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
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
 
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
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
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
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
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
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
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
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 

Recently uploaded (20)

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
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
 
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
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
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
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
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
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
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
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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
 

SD - A peer to peer issue tracking system