Fitness for Competing with Youth? No, It’s About Aging Gracefully and Staying Healthy
Ten eerste dat van Jessica Kuitenbrouwer in Trouw van vorige maand. ‘Het wordt steeds populairder om als ouder wordend iemand veel tijd en energie in je gezondheid en fitness te investeren om te kunnen wedijveren met ‘de jeugd‘.’ Is dat zo?
Kijkend naar mezelf besteed ik als 65-jarige ook meer aandacht aan voeding en beweging dan toen ik jong was. Niet om te wedijveren met ‘de jeugd‘, maar omdat je bij het klimmen der jaren spieren slinken en je meer proteïnes nodig hebt. Ouderen wedijveren met hart- en vaatziekten en diabetes type 2. Niet met ‘de jeugd’.
Kuitenbrouwer is jong en baseert zich op een vooroordeel. Hoe kijkt een ouder iemand er dan tegenaan? Op TikTok showt De Gooische Assepoester hoe zij met 62 jaar een magneet voor mannen is. Haar schoonheid is ‘33 procent genen, 33 procent lifestyle en 34 procent spirit‘ en als vrouwen in haar omgeving met licht verwijtende ondertoon stellen dat zij ‘eeuwig jong wil blijven’ weerspreekt het voormalige fotomodel dat met kracht. „Ik wil heel mooi heel oud worden, dat is wat anders”, aldus Sandra Hermann uit het Gooi.
En dat magneet voor mannen zijn? „Als je geen multimiljonair bent en niet van adel, keur ik je geen blik waardig hoor.” En o ja, niet roken, niet drinken en geen vlees eten is ook voor deze lifestyle-influencer een must. Geen man hebben, is dat soms het geheim van mooi oud worden?
Citaat nummer 3 is de afscheidsspeech die collega Klaas Mühren (1943-2016) twintig jaar geleden afstak toen hij met pensioen ging. De kortste die ik ooit hoorde en die ik in z’n geheel onthouden heb: „Het is voorbij voor je het weet.” Een levensles die me aanmoedigde, elke seconde van het leven te genieten. Laat die jeugdigheid maar zitten. Zo lang het in stijl kan, geldt: hoe ouder je wordt, hoe beter.
The term “context” in programming is used in various ways depending on the specific domain or language. Here are the key meanings based on the provided search results:
- Context in Go (Golang):
In Go, a context is used to manage cancellation signals, timeouts, and deadlines across goroutines. For example, context.WithTimeout creates a context that cancels itself after a specified duration. This is useful for controlling long-running operations. in the provided example,a context is created with a 3-second timeout,and a goroutine simulates a 4-second process. The context is forcefully canceled after 4 seconds,even though the timeout was set to 3 seconds. This demonstrates how contexts can be used to control the lifecycle of goroutines [[1]].
- Context Managers in Python:
In Python, a “context” frequently enough refers to the use of context managers, which are objects that manage resources using the with statement. Context managers ensure that resources are properly acquired and released. The contextlib.contextmanager decorator simplifies creating context managers without needing to define a full class with enter and exit methods. This is particularly useful for managing resources like file handles or database connections [[2]].
- General Concept of Context in Programming:
In a broader sense, “context” refers to the current state or environment in which a piece of code executes. For example, in graphics programming, a “graphics context” might include properties like stroke color, line thickness, and fill color. These properties define the state of the drawing environment at a given time [[3]].
“context” in programming can refer to specific language constructs like Go’s context for managing goroutines or Python’s context managers for resource management, and also the general concept of the current state or environment in which code operates.
