Creating virtual host in Apache
In this tutorial you are going to lean, how you can create virtual host. 1. Create hosts file entry for domain and IP in Xampp 2. Include external virtual host config file in httpd.conf 3. Create virtual host entry 4. Restart your Apache Web Server 5. Check your website in browser 6. Introduction to Apache Web […]
Create SSL Certificate with XAMPP in Local Windows Machine
1 Introduction 2 Create SSL 3 Add domain name in hosts file 4 Create virtual host in Apache 1.Introduction▲ This document describes how to create SSL certificate in Windows Machine and deploy your local site with https. It requires two files that you can download from cert.conf make-cert.bat This example […]
Remove a Certificate (server.crt) from Local Windows Machine
1 Introduction 2 Run mmc command 3 Open the certificate folder 4 Delete a certificate 1.Introduction▲ You have installed a server.crt file in Windows 10 machine. Follow the instruction to uninstall it. 2.Run mmc command▲ It can be done in either of the following ways: 2.1.You can right click start […]
Create Virtual Private Server (EC2 Instance) in AWS
By Nutan 1 Introduction 2 Login to AWS account 3 Search EC2 in AWS Management Console 4 Create VPS 5 Convert private key .pem file to Putty Private Key .ppk file 6 Connect to VPS from your local system through Putty 1.Introduction▲ This document describes how to create virtual private […]
Machine Learning with Diamond Data – Part 1
1. Introduction 2. Load data 3. Print list of members and methods of loaded data object 4. Print details of loaded dataset 5. Find unique values of some columns 6. Change the nominal values of cut into ordinal (numeric values) 7. Change nominal values of color and clarity as well into ordinal values 8. set price as target […]
Bar Graphs Using Matplotlib
by Razkummara 1. Introduction 2. Importing matplotlib & pyplot 3. Creating the list of Strings & integers 4. Setting the figure size(length,width) 5. Set the title for the figure 6. Creating the subplot for plotting the graph 7. Executing bar graph using names & values 8. Printing the graph 9. Executing another slot and executing the bar graph 1.Introduction▲ […]
Machine Learning with Credit Card Default data – Part 1
1. Introduction 2. Load data 3. Left Blank 4. Print details of loaded dataset 5. Find unique values of some columns 6. Change the columns 7. Rename pay columns 8. Set ‘default as target and create a new dataset X by dropping this column from original dataset 9. Use RobustScaler to transform X 10. Create a dataset Y with only […]
How to install and create Django-project
1. Check python version 2. Check pip version 3. Install virtualenvwrapper 4. Create a virtual environment for your project 5. Install Django in activate environment 6. Check Django version 7. Activate your virtual environment 8. Create Django project 9. Run the Django Projects 10. Make migration if you have added […]
Plotting with Gral
1. Introduction 2. Main class 3. Call method for Simple Bar Chart 4. Create an object of GralSimpleBarPlot class 5. Extend this class to parent class that contains common things like JFrame, color, size etc 6. Extend this class to JPanel 7. Add version for serialization 8. Constructor of MainGralPanel 9. Render Graph 10. Set frame properties 11. Call render method […]
Map with Different Data Types as Values
By Akshata Dupare 1. Introduction 2. Main class and main method 3. hashMap Example 4. Adding some String, String as key and value 5. Adding int as value 6. Adding boolean as value 7. Adding String[] as value 8. print array values 9. Adding list of String as value 10. Adding list of Integer as value 1.Introduction▲ This program shows […]