Visual Studio Warning C4996

First, I would like to say that I am quite fond of compiler warnings. I invoke gcc with -Wall -Wextra. However, the MSVC warning C4996 mostly fires on completely valid code. The changes proposed in the warning text often seriously compromise the code portability, while they never substantially improve the code quality. Thus I regularly … Read more

Android Studio Warning: Using incompatible plugins for the annotation processing

Your app level gradle dependencies should include (as per butterknife website instructions): compile ‘com.jakewharton:butterknife:8.8.1’ annotationProcessor ‘com.jakewharton:butterknife-compiler:8.8.1’ You can remove the line : apply plugin: ‘com.neenbedankt.android-apt’ Annotation Processing became available in Android Gradle plugin (2.2 and later) so there is now no need to use the above plugin anymore if using this version of gradle or … Read more

Blocked loading mixed active content

Use this code to include your cdn files : Use https protocol in your url : <link rel=”stylesheet” href=”https://code.jquery.com/ui/1.8.10/themes/smoothness/jquery-ui.css” type=”text/css”> <script type=”text/javascript” src=”https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js”></script> Or this pattern : <link rel=”stylesheet” href=”https://code.jquery.com/ui/1.8.10/themes/smoothness/jquery-ui.css” type=”text/css”> <script type=”text/javascript” src=”https://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js”></script>