L'ADATTAMENTO DELLE PAROLE
✍🏻😎
#scrittura#writingtips#wearewriting
⏩ L'adattamento delle parole è un fenomeno - detto "prestito" dagli esperti linguisti - secondo cui una parola che giunge da un'altra lingua si adatta alla nostra sia nel parlato che nello scritto e anche nella struttura grammaticale.
⏩ Un esempio è la parola turismo che arriva dall'inglese tourism passando per il francese tourisme.
O parole come zumare (con la u al posto della doppia o, zoom dell'inglese). 🤓
✅ La storica della lingua, Donata Schiannini, scrive come "i pedanti" giudichino orribili le derivazioni moderne (come zumare o computerizzato e non abbiano nulla da dire su quelle di derivazione antica di cui si è persa l'origine).
✅ In ogni caso, è sempre importante opera culturale quella di ricercare l'origine delle parole che usiamo tutti i giorni ed essere sempre più consapevoli della nostra lingua.
@writingway
🙌Se ti è piaciuto questo post e pensi possa interessare ad altri, inoltralo cliccando sulla freccia a destra.
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.