Blog

WordPress Tutorial : Plugin Basics
A WordPress plugin is a PHP file with a WordPress plugin header comment. It’s highly recommended that you create a directory to hold your plugin so that all of your plugin’s files are neatly organised in one place.
In this article we will discuss in detail with following steps:

Django Tutorial : Difference between Signal and Model
When I needed to implement some functionality on model saving, I always asked a question to myself – where to place it. In signal or in model method save()? Let’s see, what and when is more applicable.
When use model methods save(), delete()?

Django Tutorial : queryset count cache
Django application makes several similar queries like ‘SELECT COUNT(*) ……’.As it turns out queryset.count() has not obvious cache. Let’s discuss in detail from the very beginning.

Django Tutorial: SQL Debugging SQL Debugging SQL Debugging SQL Debugging
In django tests we can measure number of sql queries:

Django Tutorial : JSON in Django and PostgreSQL
New JSONField will be added in Django 1.9, it can be used with PostgreSQL >= 9.4. Let’s try to work with it and find out, in what situations it can be useful.

WordPress Tutorial : WordPress Site Optimization Step by Step Guide
In this article you will learn about how you can improve performance of your website.For wordpress site performance improvements you must have knowledge of wordpress, plugins, css, javascript. Now we will discuss in details about optimization.

Python : Dictionaries
In this Article you will learn about basics of python Dictionaries.
Python provides another composite data type called a dictionary, which is similar to a list in that it is a collection of objects. Continue Reading …

Python : Lists and Tuples in Python
In this article You’ll cover the important characteristics of lists and tuples.You’ll learn how to define them and how to manipulate them. When you’re finished, you should have a good feel for when and how to use these object types in a Python program.
Python Lists

Django Tutorial : How to Unapply Migrations
In this article we will discuss the ways to unapply migrations in django.

Django Tutorial : Changing Models
In this article you will know about how you can change you models as per requirement of your application.

Django Tutorial : Creating Migrations
In This Article you will learn how you can create migrations in Django Continue Reading …

Django Tutorial : Passing View data to Template (HTML templates)
Templating in Django is one of the most powerful feature.Templates allow you to specify the structure of the output document. Templates are often used to create HTML documents
Continue Reading …

Django Tutorial : Querying Data From Models (Views.py)
Django Comes with simple Data query API for the database…

Django Tutorial : Creating Django Models (models.py)
Django Models are stored in model.py. Models are basically the database structure of the application. Continue Reading …

Django Tutorial : Request handling / Writing Django Views
In this article we will teach you to write the views in django.Views are the heart of the Django applications. They are responsible for the HTTP requests and HTTP responses. In between they perform some activities like database operations, rendering HTML templates, etc..

Django Tutorial : Defining URL and Sending request to the view
urls.py is a url mapper in Django project .The mapper called as urlpatterns defines different types of url patterns and corresponding view function. Continue Reading …

Django Tutorial : Django code structure
In this article you will learn in detail the Django code Structure and features. You will learn about Django URLs, MVC pattern and Templates.

Django Tutorial : Web Development with Django
In this Tutorial you are going to learn about Django which is python framework, we will cover basics of django in detail and then we will develop django Application.

Django Blog Tutorial – Step by step beginners guide for Django blog
In This tutorial we will guide you to the step by step blog development in Django, at this tep we are assuming that you have covered the previous chapters about Django setup.

Django Tutorial For Beginners – My First Application
This article will Teach you that how can you Write your First application in Django.
First you will need to setup Python/django you can read article How to Setup Django/python. After that Follow the steps below.

How to Setup Django/python
This article will guide you to how you can setup Python django. This article also explain how you can Setup Python Environments, Virtual Environment , Installing pip , Setup Django project and run ,By Follow easy Steps.

Asp.Net core 2.1 Web application using HTTPS
Normally configuring HTTPs properly on web project is a headache, we need lots of code on different places or need to handle through different tools. But in Asp.net Core (2.0 or higher) its super easy to configure. In fact, we don’t have to configure its already there we just need to understand.

How to Setup PHP Version in IIS Manager
This article will guide you to how you can setup PHP version in IIS Manager. This article also explain how you can update your Php version from previous version or you can degrade the php version.

How to Setup PHP in IIS Manager
This article will guide you to how you can setup PHP in IIS Manager.

How to install wordpress on IIS windows server
This article will guide you to how you can install or setup wordpress on IIS Manager windows based server.
Wordpress can be installed using PHP, IIS (internet information services) Manager , Mysql (phpmyadmin or MySQL Workbench ) database.