Windows No Internet After Resume Hibernate

If you are switching between cabled and wireless internet connection you might run into this issue when hibernation in between. The wireless is disabled when hibernating when having internet cable plugged in. When you start up without internet cable the wireless won’t connect automatically and will just show a red cross, being disabled. To solve this

Read More

Android Check Internet Access

You can use the following function to check if there is internet access on Android public boolean isOnline() {     ConnectivityManager cm =         (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);     NetworkInfo netInfo = cm.getActiveNetworkInfo();     if (netInfo != null && netInfo.isConnectedOrConnecting()) {         return true;     }  

Read More