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>

Get Traceback of warnings

You can get what you want by assigning to warnings.showwarning. The warnings module documentation itself recommends that you do that, so it’s not that you’re being tempted by the dark side of the source. 🙂 You may replace this function with an alternative implementation by assigning to warnings.showwarning. You can define a new function that … Read more

How to remove the Xcode warning Apple Mach-O Linker Warning ‘Pointer not aligned at address

It probably means their binary file has non-aligned pointer when they compile their code. In those cases the alignment basically defaults to 1 byte and hypothetically might impact performance. After updating to Xcode 8.3 public release I am still seeing this error, so Google might need to compile their static library with different settings to … Read more