Check out from: https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server
- Tip to get only the remote URL: git config --get remote.origin.url
Comments: 0
From: https://data-flair.training/blogs/django-orm-tutorial/
Django ORM has been mentioned in all of the database & model tutorials. It is an amazing implementation to increase development speed. Yes, there are other ORMs and some people don’t even like ORMs. No worries!! If you didn’t understand what an ORM is. We will cover that in this tutorial.
The other important topic is of Querysets. These are an important part of ORMs in general. We have used Querysets many times in our tutorials. In this Django ORM tutorial, Querysets are also explained from the very basics. Let’s get started.
1. ORMs
- What is an ORM?
- The Problem Solved by an ORM
- Django ORM
2. Querysets in Django
3. Different Relationships between Fields
- One to One Relationship
- One to Many Relationships
- Many to Many Relationships
4. Conclusion
- The Problems with Django ORM

Comments: 2
Introduction
I have started an article series on
Bootstrap. Read the first part here,
In this article we will learn about Containers and then we will understand about Bootstrap Container classes by creating examples. So by using this we can easily create interactive, responsive website layouts.
Containers: In Bootstrap we can contain elements to wrap site contents.
There are two Bootstrap Container classes
- The .container class used to provide a responsive fixed width container.
- The .container-fluid class used to provide a full width container.
We have to note that we cannot put a container inside another container since it is not nestable.
Example 1: Using .container class(responsive fixed width container)
In this example we will create a simple Bootstrap page. Using ".container" class we will create fixed width container that is responsive for different devices. In this we will write some text. We will have some space on left and right side of page by writing the following code.
Comments: 0