SlideShare ist ein Scribd-Unternehmen logo
1 von 63
Downloaden Sie, um offline zu lesen
Paymill or Stripe?
Betabeers Madrid 44
Ivan Maeder
Coderswitch
@ivanmaeder
My experience
1 price point (non-
recurring)
June 2013
Multiple price points
(recurring and non-
recurring)
March 2014
$199 $199$99/month$49/month
What are Paymill and Stripe?
if (paymill == stripe)
printf("They work the same way");
else
printf("They work the same way");
Then why did you change?
Lots of little things that add up
Not all cards available to us
Cards supported > cards supported in our account
Test OK, live FAIL
Out of date documentation? No help for four days
Error in API
Error case, probably ignored by most people
Unable to debug error
Called the bank directly
Difficult to test transactions live
Blacklisted cards
Name shown on card statements
Martin Cabrera → Marsin Gabrera Diatb → Codekai
PCI documentation
Endlosschleife
Shut up and code
1. Register online
2. Download API (back-end)
3. Get token via JavaScript (Ajax)
4. Take payment (back-end)
1. Register online
2. Download API (back-end)
3. Get token via JavaScript (Ajax)
4. Take payment (back-end)
Paymill Stripe
C# ✔ Community
Go ✘ Community
Java ✔ ✔
Node.js ✔ ✔
Perl ✘ Community
PHP ✔ ✔
Python ✔ ✔
Ruby ✔ ✔
Paymill Stripe
Android ✔ ✔
iOS ✔ ✔
1. Register online
2. Download API (back-end)
3. Get token via JavaScript (Ajax)
4. Take payment (back-end)
Paymill
<form>
<input name="card-number">
<input name="card-expiry">
<input name="card-security-code">
</form>
<form>
<input name="card-number">
<input name="card-expiry">
<input name="card-security-code">
</form>
<form>
<input class="card-number">
<input class="card-expiry">
<input class="card-security-code">
</form>
<form>
<input type="hidden" name="token">
<input class="card-number">
<input class="card-expiry">
<input class="card-security-code">
</form>
<script>
var PAYMILL_PUBLIC_KEY = "<$= publicKey() ?>";
</script>
<script src="https://bridge.paymill.com/"></script>
$('form').submit(function() {
...
if (paymill.validateCardNumber(cardNumber)) {
...
paymill.createToken({
"number": cardNumber,
...
"amount_int": 19900,
"currency": EUR
}, paymillResponseHandler);
return false;
});
function paymillResponseHandler(error, result) {
if (error) {
...
}
else {
$('input[name="token"]').val(result.token);
}
$('form').submit();
}
That was Paymill
That was Paymill
This is Sparta Stripe
<script src="https://js.stripe.com/v2/"></script>
<script>
Stripe.setPublishableKey("<$= publicKey() ?>");
</script>
<form>
<input type="hidden" name="token">
<input class="card-number">
<input class="card-expiry">
<input class="card-security-code">
</form>
<form>
<input type="hidden" name="token">
<input data-stripe="number">
<input data-stripe="exp-month">
<input data-stripe="exp-year">
<input data-stripe="cvc">
</form>
$('form').submit(function() {
...
if (Stripe.card.validateCardNumber(cardNumber)) {
...
Stripe.card.createToken($('form'), stripeResponseHandler);
return false;
});
function stripeResponseHandler(statusCode, response) {
if (statusCode != 200) {
...
}
else {
$('input[name="token"]').val(response.id);
}
$('form').submit();
}
1. Register online
2. Download API (back-end)
3. Get token via JavaScript (Ajax)
4. Take payment (back-end)
Paymill (PHP)
$obj = new Services_Paymill_Transactions(privateKey(),
"https://api.paymill.com/v2/");
$transaction = $obj->create(array("amount" => 19900,
"currency" => 'EUR',
"token" => $token
));
if ($transaction["response_code"] != 20000) {
...
}
Stripe (PHP)
Stripe::setApiKey(secretKey());
try {
$charge = Stripe_Charge::create(array(
"amount" => 19900,
"currency" => "eur",
"card" => $token
));
} catch (Stripe_CardError $e) {
...
}
1. Register online
2. Download API (back-end)
3. Get token via JavaScript (Ajax)
4. Take payment (back-end)
$
$
Testing
Recurring payments
$customer = Stripe_Customer::create(array(
"card" => $token
));
$customer->subscriptions->create(array(
"plan" => "MY_PLAN_1"
));
Changing subscriptions
$customer = Stripe_Customer::retrieve($stripe_customer_id);
$subscription = $customer->subscriptions->retrieve($stripe_subscription_id);
$subscription->plan = "MY_PLAN_2";
$subscription->save();
$invoice = Stripe_Invoice::create(array(
"customer" => $stripe_customer_id
));
$invoice->pay();
-$0 -$200
-$50
-$100
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
-$100
$200$100/month
/month $200/month
$customer = Stripe_Customer::retrieve($stripe_customer_id);
$subscription = $customer->subscriptions->retrieve($stripe_subscription_id);
$subscription->plan = "MY_PLAN_2";
$subscription->save();
$invoice = Stripe_Invoice::create(array(
"customer" => $stripe_customer_id
));
$invoice->pay();
$200$100
-$200
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
/month
/month
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
-$100 -$50
-$100
$200/month
Costs
0.28€ + 2.95%
per transaction
+2% for currency exchange
$0.30 + 2.9%
per transaction
No additional exchange
rate costs for European
currencies
Paymill Stripe
10€ 0.575€ 0.510€
100€ 3.230€ 3.120€
200€ 6.180€ 6.020€
500€ 15.030€ 14.720€
Refunds cost zero
Accepted cards
Paymill Stripe
Visa ✔ ✔
MasterCard ✔ ✔
American Express ✔ ✔
Diners Club ✔ ✘
Discovery ✔ ✘
China Union Pay ✔ ✘
JCB ✔ ✘
Paymill Stripe
Visa Electron ✔ ✘
Visa Debit ✔ ✘
Maestro ✔ ✘
MasterCard Debit ✔ ✘
And the winner is…
Paymill Stripe
Features ✔✔ ✔✔
Cards available ✔✔ ✔✔
Price ✔✔ ✔✔
Customer focus ✔✘ ✔✔
Programmability ✔✔ ✔✔
Keep in mind
30% more test cases
Validations, error-handling
Data model
Minimum: customers, products, orders
Design
Payment form, A/B test conversion, email design and copy, convey confidence
Terms of use
Money back guarantee, trial periods or free plans, how to handle returns
Pricing
Good references: “Don’t Just Roll the Dice” and “Camels and Rubber Duckies”
Administration screens
For customers to view payments and download invoices, change cards
Other stuff
Taxes, phone support
Questions?
Thank you!
Ivan Maeder
Coderswitch
@ivanmaeder

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (11)

myPOS new mobile app - make your business mobile!
myPOS new mobile app - make your business mobile!myPOS new mobile app - make your business mobile!
myPOS new mobile app - make your business mobile!
 
Play It Smart with U.S. Chip Payment Transactions
Play It Smart with U.S. Chip Payment TransactionsPlay It Smart with U.S. Chip Payment Transactions
Play It Smart with U.S. Chip Payment Transactions
 
OpenVend for vending machines
OpenVend for vending machinesOpenVend for vending machines
OpenVend for vending machines
 
INNOVITI POS CARD SWIPE MACHINE By Innoviti Payment Solutions Private Limited
INNOVITI POS CARD SWIPE MACHINE By Innoviti Payment Solutions Private LimitedINNOVITI POS CARD SWIPE MACHINE By Innoviti Payment Solutions Private Limited
INNOVITI POS CARD SWIPE MACHINE By Innoviti Payment Solutions Private Limited
 
myPOS - an innovative cashless solution
myPOS - an innovative cashless solutionmyPOS - an innovative cashless solution
myPOS - an innovative cashless solution
 
Verve eCash for Quickteller: How to Sign-up for Verve eCash
Verve eCash for Quickteller: How to Sign-up for Verve eCashVerve eCash for Quickteller: How to Sign-up for Verve eCash
Verve eCash for Quickteller: How to Sign-up for Verve eCash
 
#Selfcheckout : Are we ready for Amazon Go lookalikes?
#Selfcheckout : Are we ready for Amazon Go lookalikes?#Selfcheckout : Are we ready for Amazon Go lookalikes?
#Selfcheckout : Are we ready for Amazon Go lookalikes?
 
Verve eCash for Quickteller: How to Fund/Load Your Verve eCash
Verve eCash for Quickteller: How to Fund/Load Your Verve eCashVerve eCash for Quickteller: How to Fund/Load Your Verve eCash
Verve eCash for Quickteller: How to Fund/Load Your Verve eCash
 
myPOS - Reshaping the world of payments
myPOS - Reshaping the world of paymentsmyPOS - Reshaping the world of payments
myPOS - Reshaping the world of payments
 
Payment extensions
Payment extensionsPayment extensions
Payment extensions
 
E-Shop Expo 2015 Worldline Tim Fransen
E-Shop Expo 2015 Worldline Tim FransenE-Shop Expo 2015 Worldline Tim Fransen
E-Shop Expo 2015 Worldline Tim Fransen
 

Andere mochten auch

Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
Codemotion
 
The Evolution of Hadoop at Stripe
The Evolution of Hadoop at StripeThe Evolution of Hadoop at Stripe
The Evolution of Hadoop at Stripe
Colin Marc
 
Online learning talk
Online learning talkOnline learning talk
Online learning talk
Emily Chin
 
Entrepreneur + Developer Gangbang: Co-working
Entrepreneur + Developer Gangbang: Co-workingEntrepreneur + Developer Gangbang: Co-working
Entrepreneur + Developer Gangbang: Co-working
kamal.fariz
 

Andere mochten auch (14)

Getting started with Stripe
Getting started with StripeGetting started with Stripe
Getting started with Stripe
 
Payments using Stripe.com
Payments using Stripe.comPayments using Stripe.com
Payments using Stripe.com
 
Webinar: LinkedIn Sponsored Updates Demo Day
Webinar: LinkedIn Sponsored Updates Demo DayWebinar: LinkedIn Sponsored Updates Demo Day
Webinar: LinkedIn Sponsored Updates Demo Day
 
Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
Braintree v.zero: a modern foundation for accepting payments - Alberto Lopez ...
 
Braintree and our new v.zero SDK for iOS
Braintree and our new v.zero SDK for iOSBraintree and our new v.zero SDK for iOS
Braintree and our new v.zero SDK for iOS
 
The Evolution of Hadoop at Stripe
The Evolution of Hadoop at StripeThe Evolution of Hadoop at Stripe
The Evolution of Hadoop at Stripe
 
Django Zebra Lightning Talk
Django Zebra Lightning TalkDjango Zebra Lightning Talk
Django Zebra Lightning Talk
 
Online learning talk
Online learning talkOnline learning talk
Online learning talk
 
Machine Learning Experimentation at Sift Science
Machine Learning Experimentation at Sift ScienceMachine Learning Experimentation at Sift Science
Machine Learning Experimentation at Sift Science
 
Omise fintech研究会
Omise fintech研究会Omise fintech研究会
Omise fintech研究会
 
[daddly] Stripe勉強会 運用編 2016/11/30
[daddly] Stripe勉強会 運用編 2016/11/30[daddly] Stripe勉強会 運用編 2016/11/30
[daddly] Stripe勉強会 運用編 2016/11/30
 
Entrepreneur + Developer Gangbang: Co-working
Entrepreneur + Developer Gangbang: Co-workingEntrepreneur + Developer Gangbang: Co-working
Entrepreneur + Developer Gangbang: Co-working
 
Hiring Hacks: How Stripe Creatively Finds Candidates and Builds a Recruiting ...
Hiring Hacks: How Stripe Creatively Finds Candidates and Builds a Recruiting ...Hiring Hacks: How Stripe Creatively Finds Candidates and Builds a Recruiting ...
Hiring Hacks: How Stripe Creatively Finds Candidates and Builds a Recruiting ...
 
Bitcoin ,
Bitcoin ,Bitcoin ,
Bitcoin ,
 

Ähnlich wie Paymill vs Stripe

Innovators simply smart-integrated ver 5
Innovators   simply smart-integrated ver 5Innovators   simply smart-integrated ver 5
Innovators simply smart-integrated ver 5
walkthis
 
The DNA of Online Payments Fraud
The DNA of Online Payments FraudThe DNA of Online Payments Fraud
The DNA of Online Payments Fraud
Christopher Uriarte
 
Captchabot pay cards
Captchabot pay cardsCaptchabot pay cards
Captchabot pay cards
captchabot
 

Ähnlich wie Paymill vs Stripe (20)

Innovators simply smart-integrated ver 5
Innovators   simply smart-integrated ver 5Innovators   simply smart-integrated ver 5
Innovators simply smart-integrated ver 5
 
Hack in Cash out OWASP London
Hack in Cash out OWASP LondonHack in Cash out OWASP London
Hack in Cash out OWASP London
 
Integration of payment gateways using Paypal account
Integration of payment gateways using Paypal account Integration of payment gateways using Paypal account
Integration of payment gateways using Paypal account
 
Monetizing your apps with PayPal API:s
Monetizing your apps with PayPal API:sMonetizing your apps with PayPal API:s
Monetizing your apps with PayPal API:s
 
Conversion Optimization with Realtime Payment Analytics - 2014-11-19
Conversion Optimization with Realtime Payment Analytics - 2014-11-19Conversion Optimization with Realtime Payment Analytics - 2014-11-19
Conversion Optimization with Realtime Payment Analytics - 2014-11-19
 
Mắt kính chính hãng trả góp 0%
Mắt kính chính hãng trả góp 0%Mắt kính chính hãng trả góp 0%
Mắt kính chính hãng trả góp 0%
 
Slideshare.Heartland Presentation
Slideshare.Heartland PresentationSlideshare.Heartland Presentation
Slideshare.Heartland Presentation
 
The DNA of Online Payments Fraud
The DNA of Online Payments FraudThe DNA of Online Payments Fraud
The DNA of Online Payments Fraud
 
Go coin sales-deck-1
Go coin sales-deck-1Go coin sales-deck-1
Go coin sales-deck-1
 
Ecommerce Forum - Ogone
Ecommerce Forum - OgoneEcommerce Forum - Ogone
Ecommerce Forum - Ogone
 
Offensive Payment Security
Offensive Payment SecurityOffensive Payment Security
Offensive Payment Security
 
Invoicing Gem - Sales & Payments In Your App
Invoicing Gem - Sales & Payments In Your AppInvoicing Gem - Sales & Payments In Your App
Invoicing Gem - Sales & Payments In Your App
 
Optimising Payments for Strong Customer Authentication (SCA)
Optimising Payments for Strong Customer Authentication (SCA)Optimising Payments for Strong Customer Authentication (SCA)
Optimising Payments for Strong Customer Authentication (SCA)
 
8 Checkout optimization Lessons Based on 5+ Years of Testing
8 Checkout optimization Lessons Based on 5+ Years of Testing8 Checkout optimization Lessons Based on 5+ Years of Testing
8 Checkout optimization Lessons Based on 5+ Years of Testing
 
Get Paid! Plugins, Gateways, BitCoin: WordPress Ecommerce Project Management
Get Paid! Plugins, Gateways, BitCoin: WordPress Ecommerce Project ManagementGet Paid! Plugins, Gateways, BitCoin: WordPress Ecommerce Project Management
Get Paid! Plugins, Gateways, BitCoin: WordPress Ecommerce Project Management
 
Captchabot pay cards
Captchabot pay cardsCaptchabot pay cards
Captchabot pay cards
 
https://uii.io/ref/hmaadi
https://uii.io/ref/hmaadihttps://uii.io/ref/hmaadi
https://uii.io/ref/hmaadi
 
Fraud Detection and Neo4j
Fraud Detection and Neo4j Fraud Detection and Neo4j
Fraud Detection and Neo4j
 
The Future of Progressive Web Apps - View Source conference, Berlin 2016
The Future of Progressive Web Apps - View Source conference, Berlin 2016The Future of Progressive Web Apps - View Source conference, Berlin 2016
The Future of Progressive Web Apps - View Source conference, Berlin 2016
 
R.Grassi - P.Sardo - One integration: every wat to pay
R.Grassi - P.Sardo - One integration: every wat to payR.Grassi - P.Sardo - One integration: every wat to pay
R.Grassi - P.Sardo - One integration: every wat to pay
 

Mehr von betabeers

Mehr von betabeers (20)

IONIC, el framework para crear aplicaciones híbridas multiplataforma
IONIC, el framework para crear aplicaciones híbridas multiplataformaIONIC, el framework para crear aplicaciones híbridas multiplataforma
IONIC, el framework para crear aplicaciones híbridas multiplataforma
 
Servicios de Gestión de Datos en la Nube - Jaime Balañá (NetApp)
Servicios de Gestión de Datos en la Nube - Jaime Balañá (NetApp)Servicios de Gestión de Datos en la Nube - Jaime Balañá (NetApp)
Servicios de Gestión de Datos en la Nube - Jaime Balañá (NetApp)
 
Blockchain: la revolución industrial de internet - Oscar Lage
Blockchain: la revolución industrial de internet - Oscar LageBlockchain: la revolución industrial de internet - Oscar Lage
Blockchain: la revolución industrial de internet - Oscar Lage
 
Cloud Learning: la formación del siglo XXI - Mónica Mediavilla
Cloud Learning: la formación del siglo XXI - Mónica MediavillaCloud Learning: la formación del siglo XXI - Mónica Mediavilla
Cloud Learning: la formación del siglo XXI - Mónica Mediavilla
 
Desarrollo web en Nodejs con Pillars por Chelo Quilón
Desarrollo web en Nodejs con Pillars por Chelo QuilónDesarrollo web en Nodejs con Pillars por Chelo Quilón
Desarrollo web en Nodejs con Pillars por Chelo Quilón
 
La línea recta hacia el éxito - Jon Torrado - Betabeers Bilbao
La línea recta hacia el éxito -  Jon Torrado - Betabeers BilbaoLa línea recta hacia el éxito -  Jon Torrado - Betabeers Bilbao
La línea recta hacia el éxito - Jon Torrado - Betabeers Bilbao
 
6 errores a evitar si eres una startup móvil y quieres evolucionar tu app
6 errores a evitar si eres una startup móvil y quieres evolucionar tu app6 errores a evitar si eres una startup móvil y quieres evolucionar tu app
6 errores a evitar si eres una startup móvil y quieres evolucionar tu app
 
Dev ops.continuous delivery - Ibon Landa (Plain Concepts)
Dev ops.continuous delivery - Ibon Landa (Plain Concepts)Dev ops.continuous delivery - Ibon Landa (Plain Concepts)
Dev ops.continuous delivery - Ibon Landa (Plain Concepts)
 
Introducción a scrum - Rodrigo Corral (Plain Concepts)
Introducción a scrum - Rodrigo Corral (Plain Concepts)Introducción a scrum - Rodrigo Corral (Plain Concepts)
Introducción a scrum - Rodrigo Corral (Plain Concepts)
 
Gestión de proyectos y consorcios internacionales - Iñigo Cañadas (GFI)
Gestión de proyectos y consorcios internacionales - Iñigo Cañadas (GFI)Gestión de proyectos y consorcios internacionales - Iñigo Cañadas (GFI)
Gestión de proyectos y consorcios internacionales - Iñigo Cañadas (GFI)
 
Software de gestión Open Source - Odoo - Bakartxo Aristegi (Aizean)
Software de gestión Open Source - Odoo - Bakartxo Aristegi (Aizean)Software de gestión Open Source - Odoo - Bakartxo Aristegi (Aizean)
Software de gestión Open Source - Odoo - Bakartxo Aristegi (Aizean)
 
Elemental, querido Watson - Caso de Uso
Elemental, querido Watson - Caso de UsoElemental, querido Watson - Caso de Uso
Elemental, querido Watson - Caso de Uso
 
Seguridad en tu startup
Seguridad en tu startupSeguridad en tu startup
Seguridad en tu startup
 
Spark Java: Aplicaciones web ligeras y rápidas con Java, por Fran Paredes.
Spark Java: Aplicaciones web ligeras y rápidas con Java, por Fran Paredes.Spark Java: Aplicaciones web ligeras y rápidas con Java, por Fran Paredes.
Spark Java: Aplicaciones web ligeras y rápidas con Java, por Fran Paredes.
 
Buenas prácticas para la optimización web
Buenas prácticas para la optimización webBuenas prácticas para la optimización web
Buenas prácticas para la optimización web
 
La magia de Scrum
La magia de ScrumLa magia de Scrum
La magia de Scrum
 
Programador++ por @wottam
Programador++ por @wottamProgramador++ por @wottam
Programador++ por @wottam
 
RaspberryPi: Tu dispositivo para IoT
RaspberryPi: Tu dispositivo para IoTRaspberryPi: Tu dispositivo para IoT
RaspberryPi: Tu dispositivo para IoT
 
Introducción al Big Data - Xabier Tranche - VIII Betabeers Bilbao 27/02/2015
 Introducción al Big Data - Xabier Tranche  - VIII Betabeers Bilbao 27/02/2015 Introducción al Big Data - Xabier Tranche  - VIII Betabeers Bilbao 27/02/2015
Introducción al Big Data - Xabier Tranche - VIII Betabeers Bilbao 27/02/2015
 
PAYTPV Plataforma Integral de Cobros - VIII Betabeers Bilbao 27/02/2015
PAYTPV Plataforma Integral de Cobros - VIII Betabeers Bilbao 27/02/2015PAYTPV Plataforma Integral de Cobros - VIII Betabeers Bilbao 27/02/2015
PAYTPV Plataforma Integral de Cobros - VIII Betabeers Bilbao 27/02/2015
 

Kürzlich hochgeladen

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Krashi Coaching
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 

Kürzlich hochgeladen (20)

9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 

Paymill vs Stripe