🔻NUOVO CENTRO SICUREZZA ONEPLUS🔻
#OP#OOS
In rete è comparso un nuovo sito targato OnePlus, incentrato sulla sicurezza.
Esplorando questo sito possiamo notare pagine relative a delle classifiche di utenti più attivi (si presuppone nella segnalazione di falle) e una pagina riguardante gli aggiornamenti di sicurezza.
Questa pagina contiene i dispositivi che ricevono aggiornamenti di sicurezza nell'ambito del programma Android Enterprise Recommended (che al momento include 8, 8 Pro e Nord).
Nella prima sottosezione notiamo come questi tre dispositivi siano idonei a ricevere aggiornamenti di sicurezza fino al 2023. Nella seconda vi è un elenco dettagliato di ogni falla corretta con le patch di ogni mese (cosa che già Google, Samsung e Huawei fanno).
Non si sa se anche altri dispositivi saranno inclusi in questa lista, non ci resta che attendere.
🔸OnePlus Security Response Center
Pierre
—
Il nostro canale 👉🏻@oneplusguide
I nostri gruppi 👉🏻@oneplusitcommunity
https://wiki.python.org/moin/GlobalInterpreterLock
In #CPython, the #global#interpreter lock, or #GIL, is a mutex that prevents multiple native #threads from executing Python bytecodes at once. This lock is necessary mainly because CPython's memory management is not thread-safe. (However, since the GIL exists, other features have grown to depend on the guarantees that it enforces.)
https://docs.python.org/3/library/atexit.html
The #atexit module defines #functions to #register and #unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. atexit runs these functions in the reverse order in which they were registered; if you register A, B, and C, at #interpreter#termination time they will be run in the order C, B, A.