python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Background a listening socket server python3
How can i run a socket server to listen on a specific port while another thread sends HTTP requests at the same time?
here is the socket server code:
class ConnectionHandlers:
def __init__(self, i...
abuqasem
Votes: 0
Answers: 0
Is it unhealthy for SSD if I write 'vital signal' to check a python code is running?
A python program that I'm building was used to die for no apparent reason. I couldn't figure out the reason, so my workaround was to add few lines that write the time to a 'vitality' file every time a...
user28936
Votes: 0
Answers: 1
Can I run cleanup code in daemon threads in python?
Suppose I have some consumer daemon threads that constantly take objects from a queue whenever the main thread puts them there and performs some long operation (a couple of seconds) with them.
The pro...

Abraham Murciano Benzadon
Votes: 0
Answers: 2
starting a linux script in deamon mode and terminating when requried
I need to start a linux script in a background in deamon mode and then kill it when requried. To that end I try the following
script.sh -daemon -p zpid
What I'm confused about the above is,
What is ...
tmp dev
Votes: 0
Answers: 1