Posts

Showing posts with the label web

Syntax Highlighting with Google code-prettify and bootstrap

Image
Google Code Prettify automatically detects your source code and highlights it accordingly. It's quite simple to setup. Read more »

How to Change your django Project name

Image
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 ProjectName/          manage.py           ProjectName/                   __init__.py                   settings.py                   urls.py                   wsgi.py Rename your project directory  (ProjectName) and the following inside your project directory. settings.py ROOT_URLCONF = 'NewProjectName.urls' WSGI_APPLICATION = 'NewProjectName.wsgi.application' wsgi.py os.environ.setdefault("DJANGO_SETTINGS_MODULE", "NewProjectName.settings") manage.py os.environ.setdefault("DJANGO_SETTINGS_MODULE", "NewProjectName.settings") There is no need to make any changes to a...

How to Loop or Repeat a Youtube Video without any third-party website

Image
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!!