HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_rtld_global_ro

no profile record

Submissions

[untitled]

1 points·by _rtld_global_ro·7 ay önce·0 comments

comments

_rtld_global_ro
·4 yıl önce·discuss
niche.com have public data, for example NY suburbs public school teachers' pay are pretty high[1], though I still doubt it will be the same as sr swe, then again those are totally different type of jobs, with the former being much more stable and has a pension.

[1] https://www.niche.com/k12/berry-hill-elementary-school-syoss...
_rtld_global_ro
·4 yıl önce·discuss
Given Intel's AVX extension could cause silent failures on servers (very high work load for prolonged time, compare to end user computers), I'm not sure it would be a big win for servers either: https://arxiv.org/pdf/2102.11245.pdf.
_rtld_global_ro
·4 yıl önce·discuss
You can use 1031 exchange to avoid that.
_rtld_global_ro
·5 yıl önce·discuss
Get ACA, should be a lot lower than $1200/month if AGI isn't really high (assuming unemployed), now if you want CORBA that could be a different story.
_rtld_global_ro
·5 yıl önce·discuss
One of the best talk I haven't seen for quite a long time, thanks for sharing.
_rtld_global_ro
·7 yıl önce·discuss
shared library can be expensive as well, the dynamic symbol lookup could be a lot more expensive than people would assume.
_rtld_global_ro
·7 yıl önce·discuss
Thanks for the correction
_rtld_global_ro
·7 yıl önce·discuss
It's actually quite hard to do exit cleanups, even by putting functions into `.__fini_array`. The reason is because some signals (SIGTERM, SIGKILL) cannot be masked, when a thread/process (`task_struct`) got `SIGKILL`-ed, there's no way for application to run functions (including .__fini_array). Things can get more complicated when a thread calls `exit_group`, which is also recommended, cause all other threads in the same process group receive `SIGKILL`, hence none of the other threads are able to run any code after.