Django is a web framework written in python. It is good for fast web application development. In this tutorial we will learn how to make a simple web page showing “Hello World” using django templates. we will also be applying…
Author: Aman Deep
How to Install wysiwyg editor in your django project
with django-wysiwyg, you get different rich html text editors, making it easier to write article posts.It supports TinyMCE, CKEditor, Redactor, Froala, yui and more Follow the below steps to setup django-wysiwyg in your django project. 1. Install django-wysiwyg pip install…
How to Write, Compile and Run a C/C++ Program in Fedora Terminal
In this tutorial we will see how to how to write, compile and run a C or C++ program in fedora terminal itself i.e writing, compiling and execution of the program will be done within the terminal itself. For writing…
Run Python SimpleHttpServer on Amazon AWS EC2
With Python’s SimpleHTTPServer you can quickly setup a webserver without any hassle. In order to use it, you don’t need to install or configure anything.. you just need to have python installed on your server. Step 1: Open up your…
Ubuntu Installer does not show existing Partitions but free space [fixed]
If during ubuntu installation you don’t see your existing partitions but all free space then there might be two possibility. 1. You have both GPT and MBR partition tables present on your hard disk.. It is generally caused when you…
Code Syntax Highlighting in django with Pygments
Syntax Highlighting is a very much useful if you put code on your website. This can be easily achived with django-pygments. over 300 languages are supported. List of supported Languages: http://pygments.org/languages/ django-pygments is the implementation of the pygments syntax highlighter for…
How to Change your django Project name
It’s possible to rename a project in django. you just have to replace your existing project name in the following places with the new one. Your django project structure Rename your project directory (ProjectName) and the following inside your project directory.…
How to Loop or Repeat a Youtube Video without any third-party website
Now, its possible to loop a video in youtube without the use of any third-party website/software. All you need to do is Right Click on the current playing video and select the Loop option. That’s it!!
How To Create Torrent Files & Seed/Share Them Using Transmission on Linux/Mac
You would have downloaded files via torrent many times but have you ever uploaded one? I am using Ubuntu but the process will be same for any Linux distro or Mac OS Let’s get started, first open up Transmission and…
How to Comment and Uncomment Multiple Lines in Vim
There are several ways you can comment and uncomment a range of lines in vim editor. Commenting Method I (easiest) Step 1: Make sure your are in command mode by pressing Esc key Step2: Move your cusor to the start of…