Home
Categories
EXPLORE
True Crime
Comedy
Society & Culture
Business
News
Sports
TV & Film
About Us
Contact Us
Copyright
© 2024 PodJoint
Podjoint Logo
US
00:00 / 00:00
Sign in

or

Don't have an account?
Sign up
Forgot password
https://is1-ssl.mzstatic.com/image/thumb/Podcasts211/v4/27/22/91/272291f0-ef3f-3139-bd89-0e1415dcd2fe/mza_5843770019264161237.jpg/600x600bb.jpg
Automate This
Mrigank Shubham Saxena
21 episodes
1 day ago
Welcome to Automate This! 🎙️ This podcast started as a little life hack for myself—a way to skip re-reading my own blog posts and instead listen to them on the go. Crafted using NoteBookLM, it’s a personal productivity experiment that quickly evolved into something worth sharing! Born from the blog Automate This (https://medium.com/@automatethis), this podcast turns complex topics into bite-sized, fun, and interactive episodes. Whether it's mastering Java, Selenium, Appium, or GitHub—or diving into automation solutions for payment systems and fintech applications.
Show more...
Technology
RSS
All content for Automate This is the property of Mrigank Shubham Saxena and is served directly from their servers with no modification, redirects, or rehosting. The podcast is not affiliated with or endorsed by Podjoint in any way.
Welcome to Automate This! 🎙️ This podcast started as a little life hack for myself—a way to skip re-reading my own blog posts and instead listen to them on the go. Crafted using NoteBookLM, it’s a personal productivity experiment that quickly evolved into something worth sharing! Born from the blog Automate This (https://medium.com/@automatethis), this podcast turns complex topics into bite-sized, fun, and interactive episodes. Whether it's mastering Java, Selenium, Appium, or GitHub—or diving into automation solutions for payment systems and fintech applications.
Show more...
Technology
https://d3t3ozftmdmh3i.cloudfront.net/staging/podcast_uploaded_nologo/42895423/42895423-1737555507325-6682ab8cee6c4.jpg
Automate This: Chapter 14: Revisiting OOD(Payment System Design)
Automate This
17 minutes 47 seconds
9 months ago
Automate This: Chapter 14: Revisiting OOD(Payment System Design)

End of Season 1

==============================================

Welcome to Automate This! 🎙️


This podcast started as a little life hack for myself—a way to skip re-reading my own blog posts and instead listen to them on the go. Crafted using NotebookLM, it’s a personal productivity experiment that quickly evolved into something worth sharing!


Born from the blog Automate This (medium.com/@automatethis), this podcast turns complex topics into bite-sized, fun, and interactive episodes. Whether it's mastering Java, Selenium, Appium, or GitHub—or diving into automation solutions for payment systems and fintech applications—we make it sound easy (and sometimes even funny).


Tune in while driving, cooking, or juggling spreadsheets. Automate This is here to save you time, sharpen your automation skills, and make your downtime productive. Who knew staying on top of tech could be this effortless?


📌 For the best experience, check out the blog and repo links included in each post.


Grab your headphones, hit play, and let’s automate your world, one clever trick at a time! 🚀

==============================================


public class Main {
public static void main(String[] args) {
UserProfile user = new UserProfile("John Doe", "john@example.com");
PaymentService paymentService = new PaymentService();
// Process UPI Payment
PaymentProcessor upiPayment = new UpiPayments(user);
paymentService.setPaymentProcessor(upiPayment);
paymentService.processPayment(1000.50);
// Process Debit Card Payment
PaymentProcessor debitCardPayment = new DebitCardPayments(user);
paymentService.setPaymentProcessor(debitCardPayment);
paymentService.processPayment(2000.75);
// Process Credit Card Payment
PaymentProcessor creditCardPayment = new CreditCardPayments(user);
paymentService.setPaymentProcessor(creditCardPayment);
paymentService.processPayment(1500.30);
// Process PayPal Payment
PaymentProcessor paypalPayment = new PayPalPayments(user);
paymentService.setPaymentProcessor(paypalPayment);
paymentService.processPayment(500.90);
}
}

Automate This
Welcome to Automate This! 🎙️ This podcast started as a little life hack for myself—a way to skip re-reading my own blog posts and instead listen to them on the go. Crafted using NoteBookLM, it’s a personal productivity experiment that quickly evolved into something worth sharing! Born from the blog Automate This (https://medium.com/@automatethis), this podcast turns complex topics into bite-sized, fun, and interactive episodes. Whether it's mastering Java, Selenium, Appium, or GitHub—or diving into automation solutions for payment systems and fintech applications.