🎙📺 Develpreneur Media Hub

Podcast + YouTube

Develpreneur Media Hub

Search across podcast episodes, YouTube episodes, summaries, takeaways, and transcript content from one shared Develpreneur library.

500 matching items

📅 2022-04-19

YouTube

SQL tutorial - Day 5

Notes from the tutorial: 1. More data insert into tutorial_parent(username,email,userLogin,pwd) values ('user 3','[email protected]','user3','testuser3'); insert into tutorial_parent(t_one_id,username,email,userLogin,pwd) values (1,'user 4','[email protected]','user4','testuser4'); 2. select tp.username,tp.email,tp.userLogin,t1.address_name,t1.city, t1.state,t1.zip from tutorial_parent as tp inner join tutorial_one t1 on tp.t_one_id=t1.t_one_id; select tp.username,tp.email,tp.userLogin,t1.address_name,t1.city, t1.state,t1.zip from tutorial_parent as tp,tutorial_one…
Open item → Source available

📅 2021-09-09

YouTube

Python Certification Training - Function Attributes

We start wrapping up with a review of some topics that need more discussion before taking the certification. This episode is focused on function attributes. Useful Links: https://docs.python.org/3/reference/datamodel.html https://realpython.com/documenting-python-code/ Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github…
Open item → Source available

📅 2021-09-07

YouTube

Python Certification Training - Additional Exam Notes

We start wrapping up with a review of some topics that need more discussion before taking the certification. Useful Links: https://www.mygreatlearning.com/blog/understanding-mutable-and-immutable-in-python/ https://docs.python.org/3/tutorial/controlflow.html https://docs.python.org/3/whatsnew/3.0.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-09-02

YouTube

Python Certification Training - FileIO

This episode looks into File IO (reading, writing, and appending) in Python as we continue moving through topics on the certification syllabus Useful Links: https://docs.python.org/3/library/io.html https://realpython.com/read-write-files-python/ https://medium.com/swlh/python-stringio-and-bytesio-compared-with-open-c0e99b9def31 Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for…
Open item → Source available

📅 2021-08-31

YouTube

Python Certification Training - Modules and Packages

This episode looks into modules and packages in Python as we continue moving through topics on the certification syllabus Useful Links: https://docs.python.org/3/tutorial/modules.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-08-26

YouTube

Python Certification Training - Class Helper Functions

We look at useful functions for working with classes in Python for this episode focused on getting ready for certification. Useful Links: https://www.programmersought.com/article/8963908455/ Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-08-24

YouTube

Python Certification Training - Map,Reduce,Filter,Sorted

We look at higher order functions in Python for this episode focused on getting ready for certification. Useful Links: https://www.codespeedy.com/higher-order-functions-in-python-map-filter-sorted-reduce/ Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-08-17

YouTube

Python Certification Training - Multiple Inheritance

This episode continues a series of tutorials on classes in Python. Multiple inheritance examples are covered. Useful Links: https://docs.python.org/3/tutorial/classes.html https://www.python.org/download/releases/2.3/mro/ Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-08-12

YouTube

Python Certification Training - Class Inheritance

This episode continues a series of tutorials on classes in Python. We look at inheritance and private members. Useful Links: https://docs.python.org/3/tutorial/classes.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-08-05

YouTube

Python Certification Training - Parameters

We continue our review of functions with an episode digging into parameter options including default values, variable numbers of arguments, and named parameters. Useful Links: https://www.programiz.com/python-programming/recursion https://www.programiz.com/python-programming/function-argument Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for…
Open item → Source available

📅 2021-08-03

YouTube

Python Certification Training - Functions

This episode of python certification starts the discussion of functions and return values via return or yield. Useful Links: https://realpython.com/python-keywords/#returning-keywords-return-yield Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-29

YouTube

Python Certification Training - Exceptions

This episode of python certification walks through examples of exceptions. We look at try, exception, raise, and custom exceptions. Useful Links: https://docs.python.org/3/tutorial/errors.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-27

YouTube

Python Certification Training - Dictionaries

This episode of python certification walks through examples of dictionaries and related functions. Useful Links: https://www.programiz.com/python-programming/dictionary Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-22

YouTube

Python Certification Training - List Functions Part 2

We cover the second part of two tutorials on the list functions as we look toward Python certification Useful Links: https://www.w3schools.com/python/python_ref_list.asp https://www.geeksforgeeks.org/python-string-rfind/ https://www.w3schools.com/python/ref_func_sorted.asp Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-20

YouTube

Python Certification Training - List Functions Part 1

We cover the first part of two tutorials on the list functions as we look toward Python certification Useful Links: https://www.w3schools.com/python/python_ref_list.asp Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-13

YouTube

Python Certification Training - Platform and System.Dir

We cover the Platform and System functions you are likely to see on the certification exam in this episode. Helpful links: https://docs.python.org/3/library/platform.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-08

YouTube

Python Certification Training - Math and Random Libraries

We cover some Math and Random functions that will likely be on the certification exam in this episode. Helpful links: https://docs.python.org/3/library/math.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-07-06

YouTube

Python Certification Training - While, For, else, break, continue

This episode takes a look at loops using while and for along with the else, continue and break commands. Helpful links: https://www.w3schools.com/python/python_while_loops.asp https://www.w3schools.com/python/python_for_loops.asp Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-06-29

YouTube

Python Certification Training - If,Else, Elif

The certification series covers if, if-else,if-elif, and if-elif-else in this session. Helpful links: https://www.tutorialsteacher.com/python/python-if-elif Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-06-24

YouTube

Python Certification Training - Input/Output To Console

This episode looks into console input and output. We also touch on some type conversion functions (int, str, float) to help with these. Helpful links: https://docs.python.org/3/tutorial/inputoutput.html https://docs.python.org/3/tutorial/floatingpoint.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for…
Open item → Source available

📅 2021-06-17

YouTube

Python Certification Training - Bitwise Operators Part 2 and String Operators

This episode looks into bitwise operators. We wrap up this two-part series of tutorials and move into string operators. Helpful links: https://overiq.com/python-101/numbers-in-python/ https://www.mathcs.emory.edu/~valerie/courses/fall10/155/resources/op_precedence.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-06-15

YouTube

Python Certification Training - Bitwise Operators Part 1

This episode looks into bitwise operators. More to come on this in the next episode. Helpful links: https://overiq.com/python-101/numbers-in-python/ https://www.mathcs.emory.edu/~valerie/courses/fall10/155/resources/op_precedence.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/ Github repository for code examples: https://github.com/robbroadhead/PythonCertificationSeries
Open item → Source available

📅 2021-06-10

YouTube

Python Certification Training - Literals and Order of Precedence

This episode looks into literal types and order of precedence. More to come on this in the next episode. Helpful links: https://overiq.com/python-101/numbers-in-python/ https://www.mathcs.emory.edu/~valerie/courses/fall10/155/resources/op_precedence.html Learn more about the overall certification and syllabus here: https://pythoninstitute.org/certification/pcap-certification-associate/pcap-exam-syllabus/
Open item → Source available

📅 2021-05-27

YouTube

Learn Python And Django Day 59

We wrap up our season with some free options for hosting your Django application. AWS: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-django.html OpenShift: https://docs.openshift.com/container-platform/3.4/dev_guide/migrating_applications/quickstart_examples.html PythonAnywhere: https://www.pythonanywhere.com/pricing/ Heroku: https://devcenter.heroku.com/articles/getting-started-with-python mod_wsgi: https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/modwsgi/ You can view source for today and all prior days by reviewing the code at this…
Open item → Source available