Posts by Ian • 121 points
3 posts
-
1
votes4
answers17125
viewsA: net error::ERR_BLOCKED_BY_CLIENT when making Ajax request
Just to help those who are seeing this answer: Probably Adblock blocked this request because it had the word banner in the URL. Even if you pause Adblock to develop, this AJAX might not work for…
-
1
votes3
answers1392
viewsA: How to integrate Angularjs with common scripts?
The angular was developed primarily for testing. You can even insert scripts outside the angular pattern, but at the time of the tests you will have problem. But his case is similar to mine. When I…
-
0
votes7
answers7922
viewsA: Convert an array of floats to integer
For some value to be valid to transform into int, it has to be a "practically int". just separate the whole part of the decimal part: int = float - (float % 1); (I do not know how is mod in python,…