NA of Moles

Bits

Fun little games/challenges about control:

https://janismac.github.io/ControlChallenges/


From “Control of Machines with Friction - Brian Armstrong”

Friction is universally present in the motion of bodies in contact. The modern science of tribology seeks to explain the atomic details of friction; but the universality of friction may also be understood from a different perspective. Leonardo da Vinci, among his many investigations, studied the relationship between friction and the music of the heavens. He knew the music to be produced by the bumping and rubbing of the heavenly spheres and was concerned with the possibility of friction between these heavenly bodies:

“Had however this friction really existed, in the many centuries that these heavens have revolved they would have been consumed by their own immense speed of every day … we arrive therefore at the conclusion that the friction would have rubbed away the boundaries of each heaven, and in proportion as its movement is swifter towards the centre than toward the poles it would be more consumed in the centre than at the poles, and then there would not be friction any more, and the sound would cease, and the dancers would stop …” Leonardo da Vinci (1452-1519), The Notebooks, F 56 V

The music of the heavens being eternal, Leonardo understood that friction is absent from the state of grace. Thus confined to this mortal world, friction is a consequence of original sin.


Quanser Interactive Labs v1.0.0.5 for MATLAB 2019b:

https://quanserinc.box.com/shared/static/lhf0gilgy1zu5hedkokb9mi025gzcu19.zip

Source

Tags: #Quanser #Matlab

How to add your private keys to the native Windows SSH client:

powershell
# By default the ssh-agent service is disabled. Configure it to start automatically.
# Make sure you're running as an Administrator.
Get-Service ssh-agent | Set-Service -StartupType Automatic

# Start the service
Start-Service ssh-agent

# This should return a status of Running
Get-Service ssh-agent

# Now load your key files into ssh-agent
ssh-add $env:USERPROFILE\.ssh\id_ecdsa

Source

Tags: #SSH #Windows

Enabling OverlayFS for Raspbian

shell
sudo raspi-config nonint enable_overlayfs

reboot

To disable it:

shell
sudo raspi-config nonint disable_overlayfs

reboot

Tags: #Raspbian

How to use LibreOffice to convert in PDF all the .doc files in a folder

bash
mkdir pdfout
soffice --headless --convert-to pdf --outdir ./pdfout *.doc

It also works with .docx, .ppt, .pptx etc

Tags: #LibreOffice
bash
echo "Hello World"