1
vote
After C++ - Python or Java?
You want a rapid development cycle so definitely choose Python over Java. I have never heard anyone describe Java as a rapid development language. I do, however, know plenty of ex Java developers w …
0
votes
How would you improve this algorithm? (c string reversal)
If I was doing the interviewing I would be a bit more fussy with the quality of the solution in terms of its robustness, not just it's performance.
All of the answers submi …
1
vote
talking between python tcp server and a c++ client
client sends a PSH,ACK and then the
server sends a PSH,ACK and a
FIN,PSH,ACK
There is a FIN, so could it be that the Python version of your server is closin …
2
votes
Socket in use error when reusing sockets
The problem is being caused by sockets hanging around in the TIME_WAIT state which is entered once you close the client's socket. By default the socket will remain in this state for 4 minutes befor …
