Posts

Free Course Download Links

https://freecoursesite.com https://coursedrive.org https://freetutorials.us

Django Important Stuff

Django custom user email account verification: https://stackoverflow.com/questions/24935271/django-custom-user-email-account-verification Django User Agents: A django package that allows easy identification of visitor's browser, OS and device information, including whether the visitor uses a mobile phone, tablet or a touch capable device. Under the hood, it uses  user-agents . https://github.com/selwin/django-user_agents#django-user-agents Modify Django Form in Template: https://github.com/AhmedRafikDjerah/Django-registration/blob/master/templates/account/register.html jQuery Form Plugin for Ajax call in Django http://jquery.malsup.com/form/ Save base64 image in django file field https://stackoverflow.com/questions/39576174/save-base64-image-in-django-file-field?fbclid=IwAR1jHOz7tURbaP_Mt8UZPiOfkLEeQpyRF-dKKU9C8-87wlvWfVjps9iswTI Convert Django objects to JSON format from django.core import serializers from django.shortcuts HttpResponse def ser...

Setting up Java environment on your PC to write Java codes

Image
This article shows where you will get required software for java to run on your computer. And how you will set up environment to write and run your first Java programming code. Installation : Before to write any java program need to install JDK (Java Development Kit), which is let to write java and compile it. Download JDK from the oracle site with following link: https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html After downloaded install this JDK to your PC. After finishing installation you need to set up JDK compiler to you PC. Go to C:\Program Files\Java\jdk1.8.0_121\bin from windows explorer and copy that link. After that go to My Computer or This PC and right click this and from pop up menu click the Properties tab. After that click the Advance system settings link. On Advanced section click the Environment Variables button. On the Environment Variables tab of System variables section select Path variable. Click...