How to use django with Apache-Free Django Tutorials

One of the tried and tested way to get Django into production is to deploying a django app with Apache and mod_wsgi. mod_wsgi is one of the Apache module which is used to host any python WSGI application,including django.You can find details about how to use mod_wsgi and install here: official mod_wsgi documentation. Basic configuration …

How to use django with Apache-Free Django Tutorials Read More »

File Uploading In Django-Free Django Tutorials

The file data ends up placed in request.FILES whenevar django handles a file upload.For more on the request object you can check this documentation:request and response objects .In this document you can check how files are stored on disk and in memory and how to customize the default behavior. Basic file uploads Consider a simple form which …

File Uploading In Django-Free Django Tutorials Read More »

Regular Expressions in c# – Free C# Tutorials

In this blog we will discuss in detail about what is a regular expression in c# and understand it with simple code. Regular expressions provide a powerful tool for searching and manipulating large text.A regular expression are mainly applied to the text for achieving the following tasks: To locate substrings and return them To modify …

Regular Expressions in c# – Free C# Tutorials Read More »

Conditional Operator in C- Free C programming tutorial

In this tutorial you will be familiarize with the conditional operator ( ?: ) available in C programming language.  CONDITIONAL OPERATOR (?:) IN C programming language : Conditional operator available in C programming language is defined as the operator which checks condition that is written before (?) and returns one value as a result or output …

Conditional Operator in C- Free C programming tutorial Read More »