The High Score Resume format: How to write a resume for 2020

https://www.theladders.com/career-advice/the-high-score-resume-format-how-to-write-a-resume-for-2020

zerotier

ZeroTier’s software is open source and free to use for most purposes including personal useinternal use within a business or academic institution, and evaluation for uses that require commercial licensing.

https://www.zerotier.com/pricing/

Roberts RM33 Raspberry Pi Internet Radio (Yet Another…)

https://www.instructables.com/id/Roberts-RM33-Raspberry-Pi-Internet-Radio-Yet-Anoth

Outlook 2016 opens with “Something is wrong with one of your data files and outlook needs to close.

The solution was as follows:

  1. In regedit, go to: Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\PST
  2. Delete the following two keys: LastCorruptStore and PromptRepair
  3. Start Outlook

That’s it.

youtube-dl

You can download the best video and audio by using:

youtube-dl -f bestvideo+bestaudio "link to youtube video"

If that gives you an error, try the following instead:

youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio' --merge-output-format mp4 "link to youtube video"

Best MP3 audio

youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 5 --embed-thumbnail --add-metadata link-to-your-video

The –audio-quality 0 uses the highest encoding quality but can increase your file size unnecessarily. The default is 5 and might be a better choice depending on the source quality.

youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 5   --embed-thumbnail --add-metadata   "link to youtube video"  

If quality and file size matter to you, you should avoid re-encoding and stay with Youtube’s native music formats:

youtube-dl -f bestaudio[ext=m4a] --embed-thumbnail --add-metadata  "link to youtube video"

resulting in an m4a file

or

youtube-dl -f bestaudio --extract-audio --embed-thumbnail --add-metadata  "link to youtube video"

probably resulting in an ogg file.