CodeChrist - This is a personal blog which I write to help follow coders

If you like it, feel free to comment and appreciate the good work


Following are the some features of CodeChrist

  • Easy to navigate and use.
  • You can subscibe for emails
  • CodeChrist is beautiful on every screen size (try resizing your browser!)
by · No comments:

How to check programmatically if an application is installed or not in Android?

If the application is already installed in the device the application is open automatically.Otherwise install the particular application.     public class Example extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //Put the package name here... boolean installed = appInstalledOrNot("com.Ch.Example.pack"); if(installed) { //This...
Read More
by · No comments:

Window 8.1 Product Key

Window 8.1 Key Enter the below key without hypens. This key works only on windows 8.1 XHQ8N-C3MCJ-RQXB6-WCHYG-C9W...
Read More
by · No comments:

SPOJ 61. Brackets Solution

www.spoj.com/problems/BRCKTS/ This is another problem on Segment Trees. Although this is a basic/easy level problem. In input a string of brackets will be given. The brackets can be open brackets or close brackets. Among these words we will distinguish correct bracket expressions. These are such bracket words in which the brackets can be matched into pairs such that every pair consists of an opening bracket and a closing bracket appearing further in the bracket word for every pair the part of...
Read More
by · No comments:

Unable to scan WhatsApp QR code ?

As you know that WhatsApp has released a web-version for its android, windows and ios WhatsApp app. It is available on https://web.whatsapp.com/ .  But some users are not able to scan the QR code. So if you are one of them, you may try some of these steps - 1) Update your WhatsApp to the latest version availabe. This will most probably solve the issue. 2) Hold your phone still for some seconds. This may also be issue. So just hold your phone still for some seconds and let the QR code scanner...
Read More