- 38
- 8 829
Johnwendy C.N
Nigeria
Приєднався 7 жов 2017
I am an instructor and a full stack developer, researcher and a Data Scientist. I love teaching and sharing Knowledge because Knowledge is free to the people who need it.
Lesson 3: Creating the Relational Database Objects using the Object Relational Mapper
This Lesson will teach the student how to create classes and objects using the Object Relational Mapper and how to migrate it to the relational database management system
Переглядів: 120
Відео
Lesson 2b:Cascading Style Sheet tutorial
Переглядів 241День тому
Applying the cascading style sheet to our Navigation Bar
Lesson 2a: Base and Extended HTML template set up
Переглядів 840День тому
Creating simple HTML Pages (Navigation Bar) Setting up the Blueprints for each Modules Introduction to Jinja Templates Creating the Master Page (Layout or Base template) Creating the Extended Pages
Lesson 2b: Loops and Control Flow
Переглядів 20514 днів тому
This lesson will teach you loops and control flow in Python
Lesson 2A: Controls and Structures
Переглядів 38914 днів тому
In this video we learn how to use the conditional control and also how to build our user defined function for conditional task
Lesson 1: Introduction to Computer Programming 1
Переглядів 31914 днів тому
This is the theoretical lesson for Computer Programming 1
Lesson 1b Running your first Flask Application
Переглядів 1 тис.14 днів тому
Running the flask application
Lesson 1a: Installations and Module Structures
Переглядів 2,5 тис.14 днів тому
Lesson 1b talks about how we can set up our flask application and our modules for the web application
Lesson 1: Introduction to Web Technology
Переглядів 78914 днів тому
This Lesson will Teach you the Introduction to Web Programming
Lesson 6 Part 2 : How to easily download a dataset from Hugging Face
Переглядів 49Місяць тому
This lesson will teach you how to download a dataset from Hugging Face
Lesson 5 : Numpy definition and Manipulation
Переглядів 6Місяць тому
This lesson will teach you basic descriptive analysis using Numpy
Lesson 4: Dictionary Data Type
Переглядів 5Місяць тому
The lesson will teach the fundamentals of dictionary Data Type
Lesson 2: Fundamentals of Data Structure : List Data Type Part 1
Переглядів 18Місяць тому
Lesson 2: Fundamentals of Data Structure : List Data Type Part 1
Lesson 1 : Introduction to Data Science
Переглядів 11Місяць тому
Lesson 1 : Introduction to Data Science
What you don't know about AI Generated Text
Переглядів 362 місяці тому
What you don't know about AI Generated Text
Lesson 12: Learn how to create insert, update, delete and select for Level module
Переглядів 352 місяці тому
Lesson 12: Learn how to create insert, update, delete and select for Level module
Lesson 11: Creating insert, update, delete and select for Program Module
Переглядів 322 місяці тому
Lesson 11: Creating insert, update, delete and select for Program Module
Create automated Table of Content, List of Tables, Figures, equations , Chapters and sub headers.
Переглядів 9522 місяці тому
Create automated Table of Content, List of Tables, Figures, equations , Chapters and sub headers.
Lesson 10: Creating insert, update, delete and select for Department Module
Переглядів 232 місяці тому
Lesson 10: Creating insert, update, delete and select for Department Module
Lesson 9: Creating the insert, update and delete function for Faculty Module
Переглядів 722 місяці тому
Lesson 9: Creating the insert, update and delete function for Faculty Module
Lesson 8: Creating the base html form and the Module html forms Part 2
Переглядів 142 місяці тому
Lesson 8: Creating the base html form and the Module html forms Part 2
Lesson 7:Creating the base html using Flask web framework
Переглядів 882 місяці тому
Lesson 7:Creating the base html using Flask web framework
Understanding the Practical Fundamentals of relational database management system
Переглядів 162 місяці тому
Understanding the Practical Fundamentals of relational database management system
One way to show how the Role Management System is done
Переглядів 562 місяці тому
One way to show how the Role Management System is done
Lesson 6: Setting up the Flask Blueprint to aid for scalability and readability
Переглядів 452 місяці тому
Lesson 6: Setting up the Flask Blueprint to aid for scalability and readability
Automatic Equation and Table numbering using the Microsoft Word
Переглядів 1462 місяці тому
Automatic Equation and Table numbering using the Microsoft Word
another great video from this upcoming youtuber. He's going places
What does the O stand for cause I know I is for the integer
It stands for Order Of
My fav upcoming youtuber.
God bless you too
Shet up😂😂
Nice
Why are the table names different? 1. "assign_role_to_user" (one_to_one) 2. "assign_modules_to_roles" (many_to_many) In the "user_privileges" table, there are column names that are reserved in SQL. I guess you shouldn't use those?
Thank you for the question. I appreciate it. Yes, in the user privileges table using MySQL for the web development and not this microsoft access used to demonstrate the assignment given, insert, update, delete, and select were not used as attribute names, and I understood why. In a real-life scenario, if you try to use them as attributes on the user_privileges object within an Object-Relational Mapper (ORM) or structured SQL, you will encounter issues because they are reserved words. The actual attribute names are can_insert, can_update, can_delete, and can_select or you can give it any name you want. In a real-world scenario using a MySQL database, the modules are automatically generated based on the module registration within the application. But for the purpose of this class we just stored them in the module table. As for your question about why the tables are different, let me explain. The assign_role_to_user table keeps track of users and their associated roles, while the assign_modules_to_roles table keeps track of the application's modules and their associated roles. Now, let me tell you why this distinction is important and to correct the one-to-one It's very possible for two users to be assigned the same role, but one person cannot have multiple roles. These are validations that need to be considered when developing the application. The reason for this is that even if two or more people have the same roles, it does not necessarily mean they will have the same privileges. I hope I answered your question. Thanks for the observation.