Sunday, November 6, 2016

iPhone that won't turn on or charge

  1. Verify that the Sleep/Wake button functions.   If it does not function, inspect it for signs of damage.   If the button is damaged or is not functioning when pressed, seek service.
  2. Check    if the Liquid Contact Indicator (LCI) in the headset jack or dock connector is activated or there are signs of corrosion or debris. Learn more about LCIs.
  3. Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.

Monday, October 31, 2016

Wordpress Development and migration

Developing a WordPress site locally can help speed up the development process. In the past, we showed you how to install WordPress on your Windows computer using WAMP and on Mac using MAMP. Once you have finished the development on localhost, the next step is to move the site live. In this article, we will show you how to move WordPress from local server to a live site. By using this process, you would be able to migrate all of your content (posts, pages, images, etc), themes, as well as plugins from local server to a production site.
Before we start, we must let you know that you can make this migration from local server to a live site easier by using one of the two plugins: BackupBuddy orDuplicator. In this article, we will show you how to move WordPress from local server to live site manually, so you can learn the process. However to make the process easy for us, we rely on BackupBuddy when we do this on a day to day basis.

Wednesday, August 3, 2016

Java Program to Implement Gaussian Elimination Algorithm


This is a Java Program to Implement Gaussian Elimination Algorithm. Gaussian elimination (also known as row reduction) is an algorithm for solving systems of linear equations.
Here is the source code of the Java Program to Implement Gaussian Elimination Algorithm. The Java program is successfully compiled and run on a Windows system.
  1. /**
  2.  ** Java Program to Implement Gaussian Elimination Algorithm
  3.  **/
  4.  
  5. import java.util.Scanner;