Skip to main content

Posts

Showing posts with the label becoming a good in programming

How to get a job in 2021? or How to get a job in IT field in esay way?

    😀    How to get a job in 2021?                                         OR                    How to get a job in the IT field in an easy way? Here...How to get a job in 2021 OR How to get a job in the IT field in an easy way? in 2021 Excellent tips to help you          make the new concepts, you are learning as a beginner to  become a Master in          any programming languages really very most important: 1.Start with the programming basics:    Learn C. Get some idea about HTML, CSS, etc.     These are the less complex areas to look into initially. Once you are done you     can start working on any Object-Oriented Language i.e C#, JAVA, etc.     You can get yourself enrolled in some institutes and learn these.     Getting some knowledge of Databases will also help.    These days I see a lot of job openings for freshers on LinkedIn too.     Build a solid profile there and search for jobs. Apply them in bulk.     Try connecting with people there and ask for a referral. Also, the Pr

How to make an assignment software with Django? OR How to make the Django project Explain step by step?

😀 How to make an assignment software with Django? OR How to make the Django project Explain step by step?😁 Here How to make an assignment software with Django? OR, How to make a Django project Explain step by step to help you make the new             concepts, you are learning to program             Languages were really very important. Prerequisites: Set up a Django development environment.  Objective: To be able to use Django's tools to start your own new website projects. Initial Set-Up To begin, navigate to a new directory on your computer. For example,  we can create a HelloWorld folder on the Desktop with the following commands. $ cd ~/Desktop $ mkdir helloworld && cd helloworld Make sure you’re not already in an existing virtual environment at this point.  If you see text in parentheses () before the dollar sign ($) then you are. To exit it, type exit and hit Return. The parentheses should disappear which means that the virtual environment is no longer active. We’l

Data Structure Problem | Logical Question | Data Structure Problem Question to become master in DS

😀 Collection of Data Structure Problems question. If you do this we will become a good Date Structure Developers. If you want this My YouTube channel then go through the below link. Youtube Channel:https://www.youtube.com/channel/UCgcpEPz_96MJAXGDtn1xmVg/videos?view_as=subscriber click hear Topic:  Problem:  Array Reverse the array Array Find the maximum and minimum element in an array Array Find the "Kth" max and min element of an array  Array Given an array that consists of only 0, 1, and 2. Sort the array without using any sorting algo Array Move all the negative elements to one side of the array  Array Find the Union and Intersection of the two sorted arrays. Array Write a program to cyclically rotate an array by one. Array find Largest sum contiguous Subarray [V. IMP] Array Minimise the maximum difference between heights [V.IMP] Array Minimum no. of Jumps to reach the end of an array Array find duplicate in an array of N+1 Integers Array Merge

What is Django core management system? | Django core management system

What is the Django core management system? I am going to explore everything about this. Here...is Django core management system          There are some excellent idea to help you make the new concepts, you are learning  management. base BaseCommand Example Code. BaseCommand is a  Django object for creating new Django admin commands that can be invoked with the manage.py script. The Django project team as usual provides fantastic documentation for creating your own commands.   #Source code for django.core.management.base #Base classes for writing management commands (named commands which can #be executed through ``Django-admin`` or ``manage.py``). from __future__ import unicode_literals import os import sys from argparse import ArgumentParser import django from django.core import checks from django.core.exceptions import ImproperlyConfigured from django.core.management.color import color_style, no_style from django.db import DEFAULT_DB_ALIAS, connections from django.db.migrations.except