Operators in Java

There are various operators defined in Java language to carry out different operations with the Variables in Java. If you…

tgugnani

Java Primitive Data Types

All modern programming languages needs to have concept of variables. Variables are there in a programming language to store data…

tgugnani

Page Rules in CloudFlare to forward pages from non-www to www domain

If you are looking to forward non-www pages on your domain to www. Here is what you need to do.…

tgugnani

How to Select Random Radio Button Selenium WebDriver with Java

While automating a form selection with Selenium and Java, It's a good practice to randomize your form values. Here is…

tgugnani

Alter table to remove Foreign Key or add DELETE CASCADE (MySQL)

Step 1 : Get the Foreign Key Name. SHOW CREATE TABLE tableName; Note the name of Foreign key (which is…

tgugnani

Error U1077 link.EXE return code ‘0x460’ FILE NMAKE while migrating VC++ code from VS2010 to VS2015

While migrating application code from VS2010 to VS2015, I got the error U1077 related to link.exe in NMAKE file and…

Ambika Sahni

How to solve Error “Incorrect Content-Type: must be textual to extract_string, JSON to extract_json.” in c++

While I was accessing Json webservice from C++ using "C++ rest sdk" ,I came across the error "Incorrect Content-Type: must…

Ambika Sahni

Consuming JSON webservice through C++/VC++

Being a C++ developer ,It was quite difficult to start working with webservices. Believe me after setting a proper development…

Ambika Sahni

Run php , mysql commands from command-line after installing XAMPP (Linux)

Once you have installed XAMPP, You have your system ready necessary development programs like PHP, MySQL etc. But you cannot…

tgugnani

Difference between the Apache HTTP Server and Apache Tomcat?

Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your…

tgugnani