Posts by Ricardo Memoria • 216 points
5 posts
-
0
votes4
answers3583
viewsA: What is the best free and online tool as an alternative to Jira?
I’ve been using the Redmine in my projects with teams of more than 15 users, and it meets my requirements very well, come: Issue tracking, identifying what is bug, improvement or new functionality…
project-managementanswered Ricardo Memoria 216 -
0
votes1
answer491
viewsA: Run command only after the end of for - Javascript
The problem is that you are feeding the chart before the data is recovered. The correct thing would be to feed the data into the graph only when the files were solved. If you are using a library of…
-
0
votes1
answer445
viewsA: Calculation of the volume of an irregular plot of land
I don’t quite understand what you want to do in line with the instruction fscanf, but if you are trying to save the result to a file, it would be best to use the instruction fputs. Take a little…
canswered Ricardo Memoria 216 -
2
votes1
answer681
viewsA: DLL active Delphi
DLLS are dynamic link libraries, i.e., they are loaded at the moment a program or other DLL references it during execution. From what I understand of the above problem, you need a program that runs…
-
8
votes3
answers2439
viewsA: What is the real advantage of using a Callback and what is thread/multithread?
Javascript is single-thread Both in the browser and outside it (nodejs), javascript runs within a single line of execution (or Thread, in English). Some languages allow you to create threads, but…