SlideShare a Scribd company logo
1 of 57
Download to read offline
Hi, I’m Michael Lange.
I work at HashiCorp.
he/him
😡🧊🌧
You may know me
from the Nomad UI.
I write JavaScript for the browser
â–Ș A high-level language
â–Ș The loosest types with judicious coercion
â–Ș No memory management
â–Ș No filesystem
â–Ș Computers are an implementation detail
Copyright © 2021 HashiCorp
I just want to ship
my code.
Waypoint, Nomad, and other things.
Netlify Vercel
Just push your code and receive a website. A+ dev experience
Black box
What happens inside?
None of our business.
Black box
â–Ș Data plane (customer sites)
â–Ș Control plane
â–Ș Some sorta scheduler
â–Ș Lotsa DNS for static files
â–Ș CDN, file propagation
â–Ș Cgi-bin? Lol?
â–Ș A bunch of engineers of all
varieties
That’s just business.
What happens when you have
your own internal platform?
An extreme example
✹externalities✹
Consider the whole system
Ops
Friendly
It’s possible to go too far the
other way.
Enter Waypoint
Consistent, dev-friendly workflows decoupled
from platforms.
With Waypoint, you get a single config file
CODE EDITOR
project = "example-nodejs"
app "example-nodejs" {
labels = {
"service" = "example-nodejs",
"env" = "dev"
}
build {
use "pack" {}
registry {
use "docker" {
image = "example-nodejs"
tag = "1"
local = true
}
}
}
deploy {
use "kubernetes" {
probe_path = "/"
}
}
release {
use "kubernetes" {
}
}
}
Demo One
NodeJS + Kubernetes
What you didn’t see is what’s interesting
1. No Dockerfile or docker-compose.yml
2. No ReplicaSet
3. No Deployment
4. No Service
5. No kubectl
6. No YAML
The Power of Abstractions đŸ’Ș
Build Registry Deploy Release
package.json
*.js
*.ejs
*.png
Source Code
Buildpacks Container Image
Hub/ECR/GCR ReplicaSet
Service
kubectl apply
Deployment
Let’s Re-platform!
Nomad
Kubernetes
Before

Build Registry Deploy Release
package.json
*.js
*.ejs
*.png

After
Build Registry Deploy Release
package.json
*.js
*.ejs
*.png
HCL
Built in to
service jobs
And the Waypoint File
CODE EDITOR
project = "example-nodejs"
app "example-nodejs" {
build {
use "pack" {}
registry {
use "docker" {
image = "nodejs-example"
tag = "1"
local = true
}
}
}
deploy {
use "nomad" {
datacenter = "dc1"
}
}
}
And the Waypoint File
CODE EDITOR
project = "example-nodejs"
app "example-nodejs" {
build {
use "pack" {}
registry {
use "docker" {
image = "nodejs-example"
tag = "1"
local = true
}
}
}
deploy {
use "nomad" {
datacenter = "dc1"
}
}
}
project = "example-nodejs"
app "example-nodejs" {
labels = {
"service" = "example-nodejs",
"env" = "dev"
}
build {
use "pack" {}
registry {
use "docker" {
image = "example-nodejs"
tag = "1"
local = true
}
}
}
deploy {
use "kubernetes" {
probe_path = "/"
}
}
release {
use "kubernetes" {
}
}
}
Demo Two
NodeJS + Nomad
Takeaways
From the perspective of a product engineer
1. No workflow change!!!
1. waypoint init && waypoint up
2. Very little code change
3. Minor conceptual changes to output
4. Both Kubernetes and Nomad are built for common abstractions
Bigger Picture
Abstractions
All
The
Way
Down
Deprecated? How could this be???
Anatomy of Docker
From https://docs.docker.com/get-started/overview/
The Power of Abstractions!!
From https://docs.docker.com/get-started/overview/
Container
Runtime
Interface
Want to go deeper?
From https://containerd.io/
:)
Wait a second

From https://containerd.io/
>:(
Copyright © 2021 HashiCorp
I just want to ship
my code.
Waypoint, Nomad, and other things.
What
else can be removed?
Yertle the Turtle by Dr. Seuss
What
will it take?
Yertle the Turtle by Dr. Seuss
First, why containers?
Workflows, not technologies
1. Immutability
2. Portability
3. Isolation
4. Resource limits
A look at Nomad’s
Task Driver Model
A loosely abstracted,
unopinionated, pluggable
runtime model
Ranging from raw processes to
VMs to containers.
Many are builtin, many are
community owned.
The Nomad exec driver
1. Builds a chroot
2. And a cgroup
3. Configurable resource limits
4. All on demand
Immutability
Portability
Isolation
Resource limits
Immutability
Portability
Isolation
Resource limits
How do we get immutability?
How do we get immutability?
We make a binary!
https://github.com/vercel/pkg
But what
about non-
executable
files?
Annotate your
package.json file to bake
files into your binary.
CODE EDITOR
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "12.x"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node test.js"
},
"dependencies": {
"directory-tree": "^2.2.5",
"ejs": "^2.5.6",
"express": "^4.15.2"
},
"devDependencies": {
"got": "^11.3.0",
"tape": "^4.7.0"
},
"keywords": [
"node",
"express"
],
"license": "MIT",
"bin": "index.js",
"pkg": {
"assets": [
"views/**/*",
"public/**/*"
]
}
}
Immutability
Portability
Isolation
Resource limits
File Servers are
tried and true.
Immutability
Portability
Isolation
Resource limits
Putting it all together
â–Ș Buildpacks (Dockerfile)
â–Ș Container Registry
â–Ș docker driver
pkg (binary)
File server (probably S3)
exec Driver
Demo Three
NodeJS + Pkg + Nomad
Nomad with Docker
Build Registry Deploy Release
package.json
*.js
*.ejs
*.png
HCL
Built in to
service jobs
The Power of ABSTRACTIONS!!! đŸ’Ș
Build Registry Deploy Release
package.json
*.js
*.ejs
*.png
HCL
Built in to
service jobs
pkg BIN
:)
No workflow
change.
Docker Pkg
Let’s review some stats
Build Time 55.50s
Artifact Size 1075MB
Build Time 4.67s
Artifact Size 46MB
Safety NOT
Guaranteed
â–Ș Not ready for
production
â–Ș Check out the code
though!
https://github.com/dingoeatingfuzz/waypoint-plugin-pkg
The moral of the story
1. Consider the whole system
2. Well defined interfaces help us all
3. Abstractions are all around us
4. Challenge those abstractions from time to time
Make time and space for this R&D
I Just Want to Run My Code: Waypoint, Nomad, and Other Things

More Related Content

What's hot

From Docker to Production - SunshinePHP 2017
From Docker to Production - SunshinePHP 2017From Docker to Production - SunshinePHP 2017
From Docker to Production - SunshinePHP 2017Chris Tankersley
 
Docker for PHP Developers - php[world] 2017
Docker for PHP Developers - php[world] 2017Docker for PHP Developers - php[world] 2017
Docker for PHP Developers - php[world] 2017Chris Tankersley
 
Webinar: From Development to Production with Docker and MongoDB
Webinar: From Development to Production with Docker and MongoDBWebinar: From Development to Production with Docker and MongoDB
Webinar: From Development to Production with Docker and MongoDBMongoDB
 
Deploy django apps using docker
Deploy django apps using dockerDeploy django apps using docker
Deploy django apps using dockerThomas Kremmel
 
dkr_django_slides
dkr_django_slidesdkr_django_slides
dkr_django_slidesGladson Manuel
 
性枋Appéąè‡šçš„æŒ‘æˆ°
性枋Appéąè‡šçš„æŒ‘æˆ°ć€§ćž‹Appéąè‡šçš„æŒ‘æˆ°
性枋Appéąè‡šçš„æŒ‘æˆ°Chih-Chung Lee
 
Docker in development (Story)
Docker in development (Story)Docker in development (Story)
Docker in development (Story)Quan Nguyen
 
Ferrara Linux Day 2011
Ferrara Linux Day 2011Ferrara Linux Day 2011
Ferrara Linux Day 2011Gianluca Padovani
 
Docker intro workshop: Dockerize your PHP app
Docker  intro workshop: Dockerize your PHP appDocker  intro workshop: Dockerize your PHP app
Docker intro workshop: Dockerize your PHP appAndrés Collado
 
How we dockerized a startup? #meetup #docker
How we dockerized a startup? #meetup #docker How we dockerized a startup? #meetup #docker
How we dockerized a startup? #meetup #docker Jonathan Martin
 
Docker and Windows: The State of the Union
Docker and Windows: The State of the UnionDocker and Windows: The State of the Union
Docker and Windows: The State of the UnionElton Stoneman
 
Introduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @GuidewireIntroduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @GuidewiredotCloud
 
Docker for Java Developers
Docker for Java DevelopersDocker for Java Developers
Docker for Java DevelopersNGINX, Inc.
 
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...dotCloud
 
Docker as development environment
Docker as development environmentDocker as development environment
Docker as development environmentBruno de Lima e Silva
 
Learn docker in 90 minutes
Learn docker in 90 minutesLearn docker in 90 minutes
Learn docker in 90 minutesLarry Cai
 
Introduction to Docker and all things containers, Docker Meetup at RelateIQ
Introduction to Docker and all things containers, Docker Meetup at RelateIQIntroduction to Docker and all things containers, Docker Meetup at RelateIQ
Introduction to Docker and all things containers, Docker Meetup at RelateIQdotCloud
 
ç‚ș什éșŒMethod敞超過65535會build fail?
ç‚ș什éșŒMethod敞超過65535會build fail?ç‚ș什éșŒMethod敞超過65535會build fail?
ç‚ș什éșŒMethod敞超過65535會build fail?Chih-Chung Lee
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with dockerLalatendu Mohanty
 
Architectural caching patterns for kubernetes
Architectural caching patterns for kubernetesArchitectural caching patterns for kubernetes
Architectural caching patterns for kubernetesRafaƂ Leszko
 

What's hot (20)

From Docker to Production - SunshinePHP 2017
From Docker to Production - SunshinePHP 2017From Docker to Production - SunshinePHP 2017
From Docker to Production - SunshinePHP 2017
 
Docker for PHP Developers - php[world] 2017
Docker for PHP Developers - php[world] 2017Docker for PHP Developers - php[world] 2017
Docker for PHP Developers - php[world] 2017
 
Webinar: From Development to Production with Docker and MongoDB
Webinar: From Development to Production with Docker and MongoDBWebinar: From Development to Production with Docker and MongoDB
Webinar: From Development to Production with Docker and MongoDB
 
Deploy django apps using docker
Deploy django apps using dockerDeploy django apps using docker
Deploy django apps using docker
 
dkr_django_slides
dkr_django_slidesdkr_django_slides
dkr_django_slides
 
性枋Appéąè‡šçš„æŒ‘æˆ°
性枋Appéąè‡šçš„æŒ‘æˆ°ć€§ćž‹Appéąè‡šçš„æŒ‘æˆ°
性枋Appéąè‡šçš„æŒ‘æˆ°
 
Docker in development (Story)
Docker in development (Story)Docker in development (Story)
Docker in development (Story)
 
Ferrara Linux Day 2011
Ferrara Linux Day 2011Ferrara Linux Day 2011
Ferrara Linux Day 2011
 
Docker intro workshop: Dockerize your PHP app
Docker  intro workshop: Dockerize your PHP appDocker  intro workshop: Dockerize your PHP app
Docker intro workshop: Dockerize your PHP app
 
How we dockerized a startup? #meetup #docker
How we dockerized a startup? #meetup #docker How we dockerized a startup? #meetup #docker
How we dockerized a startup? #meetup #docker
 
Docker and Windows: The State of the Union
Docker and Windows: The State of the UnionDocker and Windows: The State of the Union
Docker and Windows: The State of the Union
 
Introduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @GuidewireIntroduction to Docker at SF Peninsula Software Development Meetup @Guidewire
Introduction to Docker at SF Peninsula Software Development Meetup @Guidewire
 
Docker for Java Developers
Docker for Java DevelopersDocker for Java Developers
Docker for Java Developers
 
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
Deploying containers and managing them on multiple Docker hosts, Docker Meetu...
 
Docker as development environment
Docker as development environmentDocker as development environment
Docker as development environment
 
Learn docker in 90 minutes
Learn docker in 90 minutesLearn docker in 90 minutes
Learn docker in 90 minutes
 
Introduction to Docker and all things containers, Docker Meetup at RelateIQ
Introduction to Docker and all things containers, Docker Meetup at RelateIQIntroduction to Docker and all things containers, Docker Meetup at RelateIQ
Introduction to Docker and all things containers, Docker Meetup at RelateIQ
 
ç‚ș什éșŒMethod敞超過65535會build fail?
ç‚ș什éșŒMethod敞超過65535會build fail?ç‚ș什éșŒMethod敞超過65535會build fail?
ç‚ș什éșŒMethod敞超過65535會build fail?
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with docker
 
Architectural caching patterns for kubernetes
Architectural caching patterns for kubernetesArchitectural caching patterns for kubernetes
Architectural caching patterns for kubernetes
 

Similar to I Just Want to Run My Code: Waypoint, Nomad, and Other Things

Accelerate your development with Docker
Accelerate your development with DockerAccelerate your development with Docker
Accelerate your development with DockerAndrey Hristov
 
Accelerate your software development with Docker
Accelerate your software development with DockerAccelerate your software development with Docker
Accelerate your software development with DockerAndrey Hristov
 
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'a
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'aĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'a
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'acorehard_by
 
DevEx | there’s no place like k3s
DevEx | there’s no place like k3sDevEx | there’s no place like k3s
DevEx | there’s no place like k3sHaggai Philip Zagury
 
From development environments to production deployments with Docker, Compose,...
From development environments to production deployments with Docker, Compose,...From development environments to production deployments with Docker, Compose,...
From development environments to production deployments with Docker, Compose,...JĂ©rĂŽme Petazzoni
 
Docker 101
Docker 101 Docker 101
Docker 101 Kevin Nord
 
Docker for dev
Docker for devDocker for dev
Docker for devErik Talboom
 
Docker module 1
Docker module 1Docker module 1
Docker module 1Liang Bo
 
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinTech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinLeanIX GmbH
 
[Codelab 2017] Docker Ʞ쎈 및 활용 방안
[Codelab 2017] Docker Ʞ쎈 및 활용 방안[Codelab 2017] Docker Ʞ쎈 및 활용 방안
[Codelab 2017] Docker Ʞ쎈 및 활용 ë°©ì•ˆì–‘ìžŹë™ 윔드랩
 
Ceph, Docker, Heroku Slugs, CoreOS and Deis Overview
Ceph, Docker, Heroku Slugs, CoreOS and Deis OverviewCeph, Docker, Heroku Slugs, CoreOS and Deis Overview
Ceph, Docker, Heroku Slugs, CoreOS and Deis OverviewLeo Lorieri
 
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed AssafAhmed Assaf
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker IntroductionJeffrey Ellin
 
Docker primer and tips
Docker primer and tipsDocker primer and tips
Docker primer and tipsSamuel Chow
 
DevAssistant, Docker and You
DevAssistant, Docker and YouDevAssistant, Docker and You
DevAssistant, Docker and YouBalaBit
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker IntroductionPeng Xiao
 
ContainerDayVietnam2016: Dockerize a small business
ContainerDayVietnam2016: Dockerize a small businessContainerDayVietnam2016: Dockerize a small business
ContainerDayVietnam2016: Dockerize a small businessDocker-Hanoi
 
Practical Use of MongoDB for Node.js
Practical Use of MongoDB for Node.jsPractical Use of MongoDB for Node.js
Practical Use of MongoDB for Node.jsasync_io
 
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With ContainersHanoi MagentoMeetup
 

Similar to I Just Want to Run My Code: Waypoint, Nomad, and Other Things (20)

Accelerate your development with Docker
Accelerate your development with DockerAccelerate your development with Docker
Accelerate your development with Docker
 
Accelerate your software development with Docker
Accelerate your software development with DockerAccelerate your software development with Docker
Accelerate your software development with Docker
 
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'a
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'aĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'a
ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐ° ĐŸĐșŃ€ŃƒĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń ĐșŃ€ĐŸŃŃĐșĐŸĐŒĐżĐžĐ»ŃŃ†ĐžĐž ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸĐČ ĐœĐ° ĐŸŃĐœĐŸĐČĐ” docker'a
 
DevEx | there’s no place like k3s
DevEx | there’s no place like k3sDevEx | there’s no place like k3s
DevEx | there’s no place like k3s
 
From development environments to production deployments with Docker, Compose,...
From development environments to production deployments with Docker, Compose,...From development environments to production deployments with Docker, Compose,...
From development environments to production deployments with Docker, Compose,...
 
Docker 101
Docker 101 Docker 101
Docker 101
 
Docker for dev
Docker for devDocker for dev
Docker for dev
 
Docker module 1
Docker module 1Docker module 1
Docker module 1
 
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp BerlinTech Talk: DevOps at LeanIX @ Startup Camp Berlin
Tech Talk: DevOps at LeanIX @ Startup Camp Berlin
 
[Codelab 2017] Docker Ʞ쎈 및 활용 방안
[Codelab 2017] Docker Ʞ쎈 및 활용 방안[Codelab 2017] Docker Ʞ쎈 및 활용 방안
[Codelab 2017] Docker Ʞ쎈 및 활용 방안
 
Ceph, Docker, Heroku Slugs, CoreOS and Deis Overview
Ceph, Docker, Heroku Slugs, CoreOS and Deis OverviewCeph, Docker, Heroku Slugs, CoreOS and Deis Overview
Ceph, Docker, Heroku Slugs, CoreOS and Deis Overview
 
Nodejs
NodejsNodejs
Nodejs
 
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed Assaf
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
Docker primer and tips
Docker primer and tipsDocker primer and tips
Docker primer and tips
 
DevAssistant, Docker and You
DevAssistant, Docker and YouDevAssistant, Docker and You
DevAssistant, Docker and You
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
ContainerDayVietnam2016: Dockerize a small business
ContainerDayVietnam2016: Dockerize a small businessContainerDayVietnam2016: Dockerize a small business
ContainerDayVietnam2016: Dockerize a small business
 
Practical Use of MongoDB for Node.js
Practical Use of MongoDB for Node.jsPractical Use of MongoDB for Node.js
Practical Use of MongoDB for Node.js
 
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers
#3 Hanoi Magento Meetup - Part 2: Scalable Magento Development With Containers
 

Recently uploaded

%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile EnvironmentVictorSzoltysek
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp KrisztiĂĄn
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 

Recently uploaded (20)

%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 

I Just Want to Run My Code: Waypoint, Nomad, and Other Things