Posts by jFRAF • 156 points
7 posts
-
0
votes2
answers579
viewsA: Two threads running the same function
The TCP/IP stack organizes sessions between servers and clients through the process PID at each end of the connection. As two threads are part of the same process, I believe they are sharing a…
-
1
votes1
answer76
viewsA: Are Function Points sufficient to consolidate a software measurement program?
Function points are too empirical a unit to be the only way to correctly measure a program. One can also consider the theme of the application, and the expected knowledge for the implementation of…
-
2
votes2
answers1634
viewsA: Why are you making a mistake when trying to compile the program with this library (IUP)?
Even after making changes to the build process, it is possible that the error persists, as compilers are optimized to change the compiled files as little as possible. Therefore, linked and object…
-
4
votes2
answers256
viewsA: Recursion in CUDA and Opencl
SIMD (single Instruction source, Multiple data sources) technologies usually do not have asynchronous task capability, as in the case of recursive functions. Typical processors have a reasonable…
-
2
votes1
answer512
viewsA: Configure Heroku with proxy
Much as in the case this question in English at this link, it is possible that the proxy through which you try to connect is blocking the TCP 22 port used for SSH on Unix systems. As such a port is…
-
3
votes3
answers176
viewsA: Is there a difference between "str(my_object)" and "my_object. __str__()" in Python?
Answering questions such as those posed: Is there any difference between the method call str (my_object.str()for str (str(my_object))? In most cases, no. However, some python implementations may…
-
2
votes1
answer3632
viewsA: What are the advantages and disadvantages of using Heroku for your application?
Your question is a little broad. Would you like to know about the advantages and disadvantages of Heroku over other Paas (Platform-as-a-Service) environments? Would you like to know the advantages…