Posts by Guilherme Prado • 93 points
10 posts
-
0
votes0
answers259
viewsQ: React component rendering twice
Guys I’m having a problem where my components are rendered 2/3 times and I’m suspicious of an implementation, but I’m not sure if it’s her fault. The implementation is as follows, I have a…
-
1
votes1
answer100
viewsA: Jasmine error - Uncaught [Object Object] thrown
I found where the problem was, a teammate added these two lines to test and ended up not removing, I do not know why it generated this very generic error. The solution was just to remove them…
-
-2
votes1
answer100
viewsQ: Jasmine error - Uncaught [Object Object] thrown
When I run my test I get the following error Uncaught [object Object] thrown Every time the test is run he says the error is in a different location, I can’t understand the reason. Sometimes the…
-
1
votes1
answer80
viewsQ: Download two Zipped files in PHP
I am trying to compress two files together in PHP, but I get the following error while trying to open . zip: ! C:\Users\gpsilva\Downloads\your_name (19).zip: Final inesperado do arquivo This problem…
-
0
votes0
answers34
viewsQ: Required in PHP
I’m a beginner in PHP and I’m trying to import a plugin to my page, but I don’t know how to call it, I’m currently using the phpspreadsheet and I care about him this way: require…
-
0
votes1
answer54
viewsQ: Performance between index() and hashmap . get()
I’m having a performance issue with my application and I’m thinking it might be the various .get() that I give, this way I’m considering transforming these hashmaps for arrays and use the indexOf()…
-
0
votes2
answers162
viewsQ: Leaving the Jqery foreach
I’m having trouble getting out of a foreach when the internal if condition is met, I followed the recommendations of the official Jquery documentation that says to give a return false but still not…
-
3
votes1
answer241
viewsQ: Accessing a list/array in a JSON URL
I am sending via JSON an array of strings, how can I access this array via url? example of some of the tests: http://localhost:51746/api/Language/Getlanguagelist? key=[spool,error]…
-
2
votes0
answers39
viewsQ: Threading Problems in Windows Form
I’m trying to implement Threads in my algorithm, however when adding and running my software the Windows Form of it hangs and does not perform any action, can you see anything wrong in the code…
-
0
votes2
answers929
viewsQ: How to use async/await in void return methods?
I have a problem in my application, where due to the large volume of processing, my Form lock. During my researches I found that a method async resolves this, however the functions performed on my…