SlideShare una empresa de Scribd logo
1 de 48
Descargar para leer sin conexión
Dependency managers
“a dependency manager automates the process of
using and upgrading software libraries in a
consistent manner.”
Finds the libraries you need, based on the libraries you want
A note on dependency
management
It does not have any intrinsic value
But saves some time/effort
It is not interesting (boring)
But sometime takes time (especially debugging)
Useful because it shares a decision you made
ʹI want lib A version 2ʹ
We should update our libraries more often!
So it should be easy to do
Dependency managmenet
‑ the afghan war of the JVM?
Introducing Adept
“a person who is skilled or proficient at
something.”
A dependency manager
Reliable
Fast
Knows what works with what
Only a dependency manager, nothing else
Platform independent
State = identity(time,value)
Identity: the library and the artifacts to be used (jars in junit,
spring, ...)
Value: the version to use (4.11, 3.2.5, ...)
Time: the library as it is ʹright nowʹ (lib A 5.0‑SNAPSHOT
today VS tomorrow)
State: the version of a library at a given time
Reliability
Same result every time
On the JVM, dependency managers are sort of reliable
Will state (the versions of the libraries at any given time)
never change?
Versioned meta‑data
Meta‑data: defines the data (dependencies, names, ...)
We want:
Immutable meta‑data
That is easy to change
Atomically change the entire meta‑data
In other words: Git
Distributed repositories
Download all meta‑data for each repository
Benefits
You are in control of changes (pull)
You can go back in time (checkout)
Speed
Git is supringsly good at compressing
Maven central: 150 mbs of compressed data (once)
No round trips to fetch meta‑data
No ʹinvalidʹ meta‑data cache
Parellel download of artifacts
Artifacts and meta‑data
Artifacts: represents the actual files used (jars)
When you want some libraries...
..the dependency manager looks up the meta‑data
Dependency manager finds the libraries you need...
...based on the meta‑data
The artifacts you must download are therefore...
...defined in the meta‑data ‑ RIGHT?
Artifacts ‑ mark 1
WRONG: Choosing a library in Ivy/Maven
Means a new lookup to some repository (or cache)
Artifact = file that matches the same repository pattern (or
cache)
Artifacts that can be chosen are:
The ones supposed to be used based on some repository
meta‑data
The ones that happens to cached
A new artifact, but using cached meta‑data
A cached artifact, but using new meta‑data
Artifacts ‑ mark 2
Cleanly seperated from meta‑data and repository
Meta‑data points to the SHA‑256s
Artifact lookup files: SHA‑256 and locations
This means:
New artifact means new meta‑data
New meta‑data can safely use new/old artifact
Benfits:
You are sure you got the right one
Easy to reason about
Very easy to cache
Secure
Speed
When I say ʹa8dac15ʹ...
... I do not care where it comes from
Means I can:
Use url to download jar from file server (nothing new)
Check cache if jar is in the cache (nothting new)
Use different urls to download the same jar (in pieces)
Use bittorrent to download one jar
Use bittorrent to download many jars
...
State & Adept
Summary:
You ask for the commit hash of...
The repositories you need...
And the libraries you require
Which points a stable set of SHA‑256
No changes in state:
For a given input, same artifacts every time
QED: Adept is reliable
So...
{Performance, reliabilty} does it really matter?
Why hasnʹt this been fixed before?
A killer feature?
Compatibility matrix
Dependencies maps to a compatibility matrix
Ivy/Maven
Automatically resolves to the ʹhighestʹ/ʹlatestʹ/... version
Compatiblity is not factored in
There is no... matrix
Users must know how libraries work together:
Must specify version(s) (ranges) on how libraries are
compatible
Override/exclude if there is a problem
Programs are good at this
Dos not communicate intent
Authors declares how their
libraries are compatible
Example: sbt plugins
Imagine if sbt:
In addition to ʹversionʹ (0.12.0, 0.12.1, ...)
Defines an extra attribute: ʹbinary‑versionʹ (0.12, ...)
A plugin (e.g. sbteclipse) that requires sbt specifies the
ʹbinary‑versionʹ
stcis vrin10rqie stbnr-eso 01
belpe eso . eurs b iayvrin .2
stcis vrin11rqie stbnr-eso 01
belpe eso . eurs b iayvrin .2
stcis vrin20rqie stbnr-eso 01
belpe eso . eurs b iayvrin .3

The user/build tool:
I use/am sbt 0.12.0, what are the sbteclipse versions I can
use
(Then chose the ʹbestʹ version)
Attributes
Adept allows resolution based on:
version
binary‑version
But also:
Snapshot/prerelease
QA department ʹseal of approvalʹ
...
Any attribute is a first‑class citizen
Adept values
Ivy/Maven: ʹversionʹ is the ʹvalueʹ of the library
Adept: ʹversionʹ is a common attribute
Variant == value in Adept
Example:
sbt { version 0.12.0, binary‑version 0.12, qa‑tested false }
sbt { version 0.12.0, binary‑version 0.12, qa‑tested true }
Variants
Id

com.typesafe.play/play
Artifacts
Attributes
ʹversion = 2.2.0ʹ
ʹbinary‑version = 2.2ʹ
...
Dependencies
Id
com.typesafe.akka/akka‑actors
Constraints
ʹbinary‑version = 2.2ʹ
...
Adept resolution
3 states
Resolved (only one variant for each library)
Under‑constrained (too many variants)
Over‑constrained (conflicts, or non‑existing Id)
Naive algorithm
Grab Ids of dependencies ...
...and all constraints for Id
...for each resolved: repeat...
Resolved
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: play 2.2.1 + akka 2.2.0 + scala‑library 2.10.3
Over‑constrained
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: play 2.2.1 + akka 2.2.0 + scala‑library 2.9.3
Or: foobar 2.2.1 + akka 2.2.0 + scala‑library 2.10.3
Under‑constrained???
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka223 saa21}
ly .. eed n ak .., cl .0
!!^!!
!
!

Dependencies: akka 2.2.3 + scala‑library 2.10.3 + play (any
version)
Resolves: there is only exactly one possible play version: 2.2.1
Under‑constrained
Variants:
saalbay{..,21.,21.}
cl-irr 293 .02 .03
ak 205dpnso saa293
ka .. eed n cl ..
ak 220dpnso saa21
ka .. eed n cl .0
ak 221dpnso saa21
ka .. eed n cl .0
pa 220dpnso {ka22 saa21}
ly .. eed n ak ., cl .0
pa 221dpnso {ka22 saa21}
ly .. eed n ak ., cl .0

Dependencies: akka 2.2.1 + play 2.2.1 + any 2.10 scala‑library?
Or: akka 2.2.1 + scala‑library 2.10.3 + any 2.2 play?
Architecture: Extensions
Adept does not do much!
Ideal: I declare only binary‑versions and commit,
Build tools gives me the ʹhighestʹ versions compatible
Build tools needs Adept + some extensions
Small core = minimal changes
Different extensions, but consistent resolution
Extensions:
Conventions/attribute names and meaning
Version, binary‑version
Version ordering
Overrides
Exclusions
Imports (Ivy/Maven/...)
...
Overrides/exclusions
Need to resolve ʹbenignʹ conflicts 
(Versions differ, but not binary‑versions)
Creates a new variant with:
Different dependencies
Unique ʹoverridesʹ/ʹexcludesʹ attributes
The social dependency manager?
I can figure how my library is used
Other usecases
Snapshots #1

Use ʹprereleaseʹ/ʹsnapshotʹ/... attribute
Overwrite variant + commit new version
Update meta‑data = new snapshot
Flexible ...
...but you know exactly which artifact/meta‑data that was
used
Other usecases
Snapshots #2

CI & nightlies:
We know which version we used:
Safely update metadata after passing tests
User use same constraints (even when stable is released)
But build tool can give warning
No SNAPSHOTs after a release, and...
...no failures because a ʹversionʹ has been removed
Where are we
at?
What works
Resolution
ʹEqualityʹ constraint
binary‑version 1.0 == 1.0
Extensions:
Overrides, excludes
Version ordering
Ivy imports
Tests (test framework)
Help!
Final design!
Now is the time to set things straight
Handle libraries that defines the same interface
Attribute types & comparable constraints? (types, !=, >, <, ...)
Meta‑data is not (de)serialized
Artifacts files are not (de)serialized
More tests/use cases
Help!!
Git is not implemented
No CLI (useful for testing)
No built tool plugins (we need: sbt, gradle, SBuild, ant,
maven?)
Resolution is concise (but could even more concise?)
Resolution is fast (but could be faster?)
In other words:

We NEED you!
Exciting stuff because

We can get it right this
time!
But...

We have to build a new
ecosystem :(
Adepthub
Ideal workflow
1.  Figure the library you want
2.  Choose only version(s) you want to be compatible with
3.  Repeat
Adepthub #1
Online resolution using Adept
Hosts meta‑data
Workflow:
1.  Go to adepthub.com
2.  Search and add new (compatible) libraries
3.  Save (creates a perma link)
4.  User/plugin/build tool downloads one file with:
Perma link, if you want to update
Locations (urls) and some human readable meta‑data
for all artifacts
Adepthub benefits
For you:
Uses Adept and hosts Adept repositories
Search across all repositories using:
Keywords on Id
Project info: github url, author, company, ...
No need to download meta‑data
However, it is possible to do it if you want
Import (meta‑data enhancement)
Resolution is done online...
...but can be consumed by maven, ivy, ...
= no plugins required
Adepthub benefits
For library authors:
Easy to publish
Github interface
Public & private repositories
Can have nice stats:
Who is using version X anyways? Now we know!
Trophies: show your awesomeness
For me:
Easier to build plugins
Read file + download artifacts
Launches:
When it is done, hopefully February/March
Feedback
Is search.maven.org good enough?
Please show support by signing up for beta:
http://adepthub.com/#beta
Interested?
https://github.com/adept‑dm/adept 
(README links to: mailing list/spec)
Thanks
freekh+adept ʹatʹ gmail.com
@ekhfre

Más contenido relacionado

Más de Skills Matter

Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applicationsSkills Matter
 
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Skills Matter
 
Cukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsCukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsSkills Matter
 
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Skills Matter
 
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Skills Matter
 
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldProgressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldSkills Matter
 
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Skills Matter
 
Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Skills Matter
 
A poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingA poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingSkills Matter
 
Russ miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveRuss miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveSkills Matter
 
Simon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSimon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSkills Matter
 
I went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tI went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tSkills Matter
 
Bootstrapping a-devops-matter
Bootstrapping a-devops-matterBootstrapping a-devops-matter
Bootstrapping a-devops-matterSkills Matter
 
Personal kanban-workshop
Personal kanban-workshopPersonal kanban-workshop
Personal kanban-workshopSkills Matter
 
Agilex retrospectives
Agilex retrospectivesAgilex retrospectives
Agilex retrospectivesSkills Matter
 

Más de Skills Matter (20)

Patterns for slick database applications
Patterns for slick database applicationsPatterns for slick database applications
Patterns for slick database applications
 
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
Progressive f# tutorials nyc dmitry mozorov & jack pappas on code quotations ...
 
Cukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.jsCukeup nyc peter bell on getting started with cucumber.js
Cukeup nyc peter bell on getting started with cucumber.js
 
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
Agile testing & bdd e xchange nyc 2013 jeffrey davidson & lav pathak & sam ho...
 
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
Progressive f# tutorials nyc rachel reese & phil trelford on try f# from zero...
 
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldProgressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source world
 
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
Agile testing & bdd e xchange nyc 2013 gojko adzic on bond villain guide to s...
 
Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#Dmitry mozorov on code quotations code as-data for f#
Dmitry mozorov on code quotations code as-data for f#
 
A poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testingA poet's guide_to_acceptance_testing
A poet's guide_to_acceptance_testing
 
Russ miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-diveRuss miles-cloudfoundry-deep-dive
Russ miles-cloudfoundry-deep-dive
 
Serendipity-neo4j
Serendipity-neo4jSerendipity-neo4j
Serendipity-neo4j
 
Simon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelismSimon Peyton Jones: Managing parallelism
Simon Peyton Jones: Managing parallelism
 
Plug 20110217
Plug   20110217Plug   20110217
Plug 20110217
 
Lug presentation
Lug presentationLug presentation
Lug presentation
 
I went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_tI went to_a_communications_workshop_and_they_t
I went to_a_communications_workshop_and_they_t
 
Plug saiku
Plug   saikuPlug   saiku
Plug saiku
 
Huguk lily
Huguk lilyHuguk lily
Huguk lily
 
Bootstrapping a-devops-matter
Bootstrapping a-devops-matterBootstrapping a-devops-matter
Bootstrapping a-devops-matter
 
Personal kanban-workshop
Personal kanban-workshopPersonal kanban-workshop
Personal kanban-workshop
 
Agilex retrospectives
Agilex retrospectivesAgilex retrospectives
Agilex retrospectives
 

Último

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
 
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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
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
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
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
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Último (20)

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
 
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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
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
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
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
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Scala e xchange. fredik ekholdt. introducing adept