Viewing profile — M9HF8wwiaAdZKEZ
M9HF8wwiaAdZKEZ
HN member- Joined
- Sat, Aug 06, 2022, 2:55 PM UTC
- HN karma
- 5
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About M9HF8wwiaAdZKEZ
No profile information was provided.
Recent public activity
-
comment
Comment #32368783
Anything can keep ports locked for a bit (if either side doesn't properly close the connection). That's how TCP works. Set reuseaddr on your daemon's sockets.
-
comment
Comment #32368727
> it should interrupt the current computation and let you resume your work without exiting the application That's not what Ctrl+C is meant for or used for. It's used to terminate t…
-
comment
Comment #32368685
As far as I can tell, this appears to be confusing Ctrl+C (SIGINT, which terminates a process, and is usually not restartable), with Ctrl+Z (SIGTSTP, which pauses a process, and is…