Posts by Emanoel Vieira • 38 points
4 posts
-
0
votes2
answers62
viewsA: Load a scrip tag after another script tag has been loaded
uses script1 as a key to start script2 function script1() { //codigos que quer que seja executado primeiro return script1(true); } function script2(keyRun) { if(keyRun){ //o que quiser que execute }…
-
0
votes0
answers133
viewsQ: Simulate Login on A site
This is devs, I’m all day trying to implement a way to login to a site with Javascript, it’s my university website, and I’d like to monitor when new notes are released, so I don’t have to go to this…
-
0
votes1
answer489
viewsQ: React Native build does not update settings
I recently built a project with the name "project1" following the steps of documentation and since this project all my other projects are having the same name of this project, I change the build…
react-nativeasked Emanoel Vieira 38 -
1
votes1
answer103
viewsA: Script to detect prime numbers in Python
It is normal for it to take too long with very large numbers, if you put the number 1000 per exeplo that means it will be 1000 divisions and over a thousand comparisons with the if... you could…