Hey, I’m Adon, a civil engineer turned data scientist. Coming from a non-CS background, I’ve navigated an unconventional path into the world of data science, blending analytical skills with a fresh perspective.

On this channel, we dive into data-driven strategies, tools, and insights to solve real-world problems and unlock career growth in techβ€”even if you’re starting from scratch.

If that resonates with you, consider subscribing! See you in the next video.

1 subscriber: 19 January 2025
100 subscribers: 22 January 2025
1000 subscribers: 10 April 2025


Adon Mathew

🚨 Tomorrow's the day! πŸŽ‰

The final part of our Stock Market Investment Tool project goes live tomorrow at 9:00 AM!

In this video, we'll complete the project by learning how to:

πŸ–₯️ Build a desktop application using Tkinter
βš™οΈ Convert it into a Windows (.exe) application using PyInstaller
πŸ’» Upload the complete project to GitHub

By the end of this series, you'll have a complete Python project that you can proudly add to your portfolio and showcase during interviews.

πŸ“Ί Haven't watched Parts 1 & 2 yet? Catch up before tomorrow!
πŸ‘‰ https://www.youtube.com/watch?v=MyEee...

⏰ See you tomorrow at 9:00 AM!

3 weeks ago | [YT] | 6

Adon Mathew

πŸš€ We're almost there!

Over the last two videos, we've built our Stock Market Investment Tool from scratch.

βœ… Part 01 – Built the investment logic
βœ… Part 02 – Improved it using functions & modules

Now it's time for the final transformation!

This Saturday at 9:00 AM, we'll:

πŸ–₯️ Build a desktop GUI using Tkinter
βš™οΈ Convert the project into a Windows (.exe) application
πŸ’» Upload the complete project to GitHub

By the end of this series, you'll have a complete portfolio-ready Python project that you can showcase with confidence.

πŸ“Ί Need to catch up? Watch the complete playlist here:
πŸ‘‰ https://www.youtube.com/watch?v=MyEee...

3 weeks ago | [YT] | 8

Adon Mathew

Which keyword skips the current iteration of a loop?

3 weeks ago | [YT] | 4

Adon Mathew

What will be the output?

class Student:
def __init__(self, name):
self.name = name

s1 = Student("Rahul")
print(s1.name)

1 month ago | [YT] | 1

Adon Mathew

Which function is used to display output on the screen?

1 month ago | [YT] | 0

Adon Mathew

Which of the following is NOT a valid arithmetic operator in Python?

1 month ago | [YT] | 2

Adon Mathew

What will be the output?
numbers = [10, 20, 30]

print(len(numbers))

1 month ago | [YT] | 0

Adon Mathew

Which Tkinter widget is commonly used to display text?

1 month ago | [YT] | 1

Adon Mathew

Which of the following is used to create an object of a class?

1 month ago | [YT] | 1

Adon Mathew

What will be the output?

x = 5
if x > 3:
print("Yes")
else:
print("No")

1 month ago | [YT] | 3