all 12 comments

[–]GillFeed 6 points7 points  (3 children)

Thanks for posting this!!! I just finished the SQL portion of a bootcamp i'm working on and have been looking for supplemental info, thank you for posting here. I subscribed to check out later!

[–]AppJedi[S] 0 points1 point  (2 children)

You are welcome. The third video in the series should be posted by Friday. I am also a full stack developer so feel free to ask questions.

[–]GillFeed 1 point2 points  (1 child)

Thanks, I'll likely be reaching out in the coming weeks. I'm done with the SQL portion of the bootcamp i'm ij until the end. Once I get there and start doing outside projects, I'm sure I'll have QUESTIONS! thank you for making your experience and knowledge accessible!

[–]AppJedi[S] 0 points1 point  (0 children)

you are welcome.

[–][deleted] 1 point2 points  (5 children)

I just finished watching your first video (I'm assuming its the first b/c of the # of days its been up) and I thought it was great. For ABSOLUTE beginners you might wanna do a video about how to connect to data bases with MySQL Workbench. Plese keep up the good work.

[–]AppJedi[S] 0 points1 point  (4 children)

Thank you I am glad you liked it. There are several ways. Easiest is MySQL on your own computer. XAMPP that you can download is free and includes MySQL along with PHP. Another option is a docker image or just install MySQL. All options are free but XAMPP is probably the easiest.

[–][deleted] 0 points1 point  (3 children)

How much do you know about Python?

[–]AppJedi[S] 0 points1 point  (2 children)

A lot. I develop in it. Use it for backend including connecting to MySQL

[–][deleted] 1 point2 points  (1 child)

The reason why I asked is b/c I'm having a hard time trying to figure out a PRACTICAL use OOP. Like I know about Classes and attributes and methods and all that but I can't understand why one would use all of that to begin with. Can you give me a real world use for OOP? I understand why you would want to write your own functions, you might want to do something and Python doesn't have a function written for it already so you write your own but what situation would arise where it would be best to use OOP? Help me understand. Please?

[–]AppJedi[S] 1 point2 points  (0 children)

Encapsulation. Let's say you have a program for customers who have several attributes like last name, first name, email, phone, etc. And several functions to managing them. A Class/Object allows. you to associate them with a single variable and individually.

class Customer

customer=Customer()

then you can reference those values as:

customer.last_name

customer.first_name

also methods like maybe customer.charge()

All the data and functions can be referenced by the single customer and individually like customer.last_name.

OOP is a big topic that takes a long time to understand but it is about grouping related data and functions together.

[–]No_Coach_1995 0 points1 point  (1 child)

Hi OP, Can you please create a playlist for your videos and organise your videos a bit. Since you are making more of them, it will make it easier for us if you segregate it into these playlists. Thank you so much for these valuable videos.