HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_rtld_global_ro

no profile record

Submissions

[untitled]

1 points·by _rtld_global_ro·hace 7 meses·0 comments

comments

_rtld_global_ro
·hace 4 años·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
·hace 4 años·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
·hace 4 años·discuss
You can use 1031 exchange to avoid that.
_rtld_global_ro
·hace 5 años·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
·hace 5 años·discuss
One of the best talk I haven't seen for quite a long time, thanks for sharing.
_rtld_global_ro
·hace 7 años·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
·hace 7 años·discuss
Thanks for the correction
_rtld_global_ro
·hace 7 años·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.