Press unpress press unpress F7 during reboot.
do not press and hold F7.
“The sciences do not try to explain, they hardly even try to interpret, they mainly make models. By a model is meant a mathematical construct which with the addition of certain verbal interpretations describes observed phenomena. The justification of such a model construct is solely and precisely that it is expected to work.” John Von Neumann
Press unpress press unpress F7 during reboot.
do not press and hold F7.
https://pdxparent.com/camping/?utm_source=PDX+Parent&utm_campaign=252a4131b0-email-the-scoop-250209&utm_medium=email&utm_term=0_8816bd7281-252a4131b0-1323214470
Credit to chatGPT:
In Windows 11, you can use a simple PowerShell command to "touch" all your files, updating their timestamps so OneDrive considers them "fresh" without making actual content changes. Here's how you can do it:
Open PowerShell as Administrator:
Win + X
and select Windows Terminal (Admin) or PowerShell (Admin).Navigate to the folder you want to "touch":
powershellcd "C:\Path\To\Your\Folder"
Run the following command to update the LastWriteTime
for all files recursively:
powershellGet-ChildItem -Recurse | ForEach-Object { $_.LastWriteTime = Get-Date }
This will set the LastWriteTime
of all files to the current date and time.
Get-ChildItem
: Retrieves all files and directories in the folder.-Recurse
: Processes all subfolders and their contents.ForEach-Object
: Iterates through each item.LastWriteTime
: Updates the timestamp to Get-Date
(current date and time).Let me know if you need further assistance!
https://developers.google.com/tech-writing/two/large-docs
Pop up a level for more resources, ack to Vincent Scheib for pointing to this in a linkedin post.
The quote reads: "To laugh often and much; to win the respect of intelligent people and the affection of children; to earn the appreciation of honest critics and endure the betrayal of false friends; to appreciate beauty; to find the best in others; to leave the world a bit better, whether by a healthy child, a garden patch or a redeemed social condition; to know even one life has breathed easier because you have lived. This is to have succeeded.” [Yahoo news article on Jeff Bezos]
welp...don't want to go looking for this again:
int idx= int(payload.flip);