Posts

Showing posts from October, 2016

Install JavaScript & CSS Minifier in Sublime text 3

Image
This is a short guide on how to install Javascript & CSS Minifier, called Sublime-Minifier . This minifier works for both sublime text 2 and 3 and supports all platforms -  Linux, Mac OS & Windows. Read more »

How to install & use TeamViewer on ubuntu 16.04

Teamviewer is a desktop sharing and remote control application, users can remotely control the desktop of the connected computer. Follow these steps to install it on Ubuntu Linux. Read more »

How to Install and use Django Crispy Forms

Crispy forms is a third party django app that makes styling forms really simple. It makes your forms look beautiful with almost no effort from your side. It supports different template packs like uni-form, foundation, bootstrap and  bootstrap3  , that's what we will be using. Setting it up is simple as well with these few steps that I have shown below Read more »

Simple Hello World page with django 1.9 in Ubuntu / Linux Mint [Beginners] [Part - 2]

In the First part of this tutorial we created an app named helloworld and added it to the setting.py file. Now let's continue further towads our journey to make a 'Hello World' page with django. Read more »

Simple Hello World page with django 1.9 in Ubuntu / Linux Mint [Beginners] [Part - 1]

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 styling to our page with css static files, we won't be dealing with any database or any advanced stuffs here. This tutorial is aimed at beginners, So I 'll try to explain things in simple language without much technical detail. Read more »

How to Install wysiwyg editor in your django project

Image
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. Read more »

How to Write, Compile and Run a C/C++ Program in Fedora Terminal

Image
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 any program we need a console (terminal) based text editor. I 'll be using vim editor, there are many more like nano, jed, emacs... Read more »