HTML
CSS
PHP
Python
Flask
Physics
Chemistry
Visual Art
Blog
more...
TEA Blog
Posted by: Benjamin Onuorah
"Anytime you try to teach the subjects without teachers who love the subject, it is doomed to failure and is a foolish thing to do."
Known as the Great Explainer, physicist Richard Feynman was famous for his easy-to-understand explanations of complex scientific concepts.
He dedicated a large part of his life to teaching physics, mostly at Caltech, and felt that teaching helped him keep up-to-date and productive.
Feynman was awarded the 1965 Nobel Prize in Physics for his work on quantum electrodynamics, including the introduction of the famous Feynman diagram.
He died on this day in 1988.
Source: https://web.facebook.com/story.php?story_fbid=1022138756614620&id=100064555159421&_rdc=1&_rdr#...
[Continue Reading]
Anytime you try to teach the subjects without teachers who love the subject, it is doomed to failure and is a foolish thing to do.
When I taught creative writing
Okebukola lauds Nigeria’s role in global AI revolution
Nigeria to open first AI university in Epe, Lagos
Amara's review of "Civilized to Death"
Tyrone Hayes: Endocrine disruption, environmental justice and the ivory tower
The Okebukola’s 20 Golder Rules in Writing Multiple-Choice Test Items
Christmas: the drunk brother
Think of philosophy not as a dusty academic pursuit
Einstein’s letter to Curie
More Blog
Lessons
Course: Chemistry with Dr. Anita
Number of topics: 10
Category: Science
Basic Organic Chemistry is essential of Organic Chemistry course and need to be understood. This compiled questions will guide you in dealing with CBT and other option questions. The reason behind the choice of answers were given to enable a student deal with similar questions.
Dr. Anita...
[Continue Reading]
Course: GST 102
Number of topics: 17
Category: Business
THE HISTORY AND METHOD OF SCIENCE...
[Continue Reading]
Course: Flask: Python Web Development
Number of topics: 16
Category: Programming
For web applications it’s crucial to react to the data a client sends to the server.
This data is often submitted through web or HTML form, for example Feedback Form, Registration/Login Form and Order Form.
In Flask this information is provided by the request object. So we have to import it from the flask module first:
from flask import request
And use it's method attribute to access client data (data transmitted in a POST or GET request).
Step 1.
Create an HTML file in the templates folder ...
[Continue Reading]
Course: GST 102
Number of topics: 17
Category: Business
LAWS OF THOUGHT, ELEMENTARY FORMAL RULES OF REASONING AND
FALLACIES IN THE THINKING PROCESS...
[Continue Reading]
Course: GST 102
Number of topics: 17
Category: Business
A SURVEY OF THE HISTORY OF PHILOSOPHY......Reading revision...
[Continue Reading]
Course: Styling (Beautify) Website
Number of topics: 2
Category: Programming
Bootstrap is a free front-end framework for faster and easier web development. It includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, image carousels and many other, as well as optional JavaScript plugins.
Bootstrap also gives you the ability to easily create responsive designs, that is; CSS design that adjusts to phones, tablets, and desktops screen or display
How to add Bootstrap to your web page
You can easily add Bootstrap framework to your web page without having to download anything, but by
including... [Continue Reading]
Course: Flask: Python Web Development
Number of topics: 16
Category: Programming
Still using the "School Grading System" example, we have been able CRUD (Create, Read, Update and Delete) students record.
However as our web application begins to take shape it will be very necessary that we begin to limit some access to some of its functionalities. For example:
1. Not everybody should be able to access our student list and edit it delete it's record at will. (This access should be limit to an admin e.g school owner)
2. ONLY Admin should be able to setup subjects and grade students.
3. Admin should be able to see ALL students grade, edit...
[Continue Reading]
Course: Flask: Python Web Development
Number of topics: 16
Category: Programming
In this first flask program we will create a web application to display "Hello, TEA Learn!" on the web browser.
Follow these steps:
Step1. Create the web application folder e.g myweb
Step 2. Start VS Code and Open the "myweb" folder in VS Code
Step 3. Create a Python file app.py in the "myweb" folder
Step 4. Have the code in Example 1 in your app.py file
Example 1
#import the Flask class from flask framework
from flask import Flask
#create the app instance from Flask class
app = Flask(__name__)
#define a route
...
[Continue Reading]
See all courses