Category: Linux, Windows, Mac
How to configure DevExtreme with visual studio MVC application
These are the steps : 1. Install Microsoft visual studio on your machine. 2. Then we need Xpress Developer Studio. Which is available on https://js.devexpress.com/. 3. Install Xpress Developer Studio in your machine. 4. Then we need to install DevExtreme
AWS Amazon EC2 – Install php5.6 in Amazon linux
In Amazon Linux, it is not yet packaged with php5.6. When we install PHP by a standrad command: $yum install php* 1. It will install PHP version 5.3 Below are the steps to update PHP version from 5.3 to 5.6
Problems in mounting Windows NTFS drives in Ubuntu
While using dual boot system (Windows + Ubuntu) there can be problems with mounting the drives of Windows inside Ubuntu. This problem generally occurs with Windows 8 and above versions. Solution: When we shutdown our system it does not fully
Apache Tomcat | No change reflected on re-deploying war file into tomcat’s webapps folder
Issue: I had deployed latest war file of my Java project into tomcat’s webapps folder but I could not see any changes reflected while running my project. What I tried? It looked like war file must not have been uploaded properly.
Adding Google Map in web page using Javascript
How to add Google Map in your project and show markers and InfoWindows for various locations using HTML and Javascript. Google Map API is one of the most used APIs in websites and projects. We can use the API to
Linux – Get full path of a running process
2 ways that I know to get the full path of a process in linux: 1. /proc/ /exe is a symlink to the actual exe. Here’s what I get for a program eclipse running on my machine under pid 4825
Java | Some basics
How Java achieves platform independence First thing is what platform independence means? It means compiled Java code can run on any OS without change. Now the question is how Java achieves this? Java achieves this with the help of Bytecode
Selenium | how to upload a csv file with Selenium script
In this post I will give an example of how to upload a csv file with Selenium script to a webpage. Below is the screenshot of webpage: Code to automatically select a csv file and then click Submit button is
Purpose of Security.salt and Security.cipherSeed in CakePHP
cipherSeed in CakePHP cipherSeed is used in Security::cipher() function to seed rand(). Seed means to give the initial value to rand() function to start and based on that the future values by rand() function are generated. In php, before 4.2.0
