My Notes
Books
Recently updated
5 interview questions that will help you hire better people
https://www.linkedin.com/pulse/5-interview-questions-help-you-hire-better-people-jodie-aurelia
Getting interviews but not any offers
https://www.payscale.com/career-news/2019/06/7-reasons-youre-getting-interviews-but-no-job-offers
How do I convert a MIDI file to Arduino Tone code?
Use https://extramaster.net/tools/midiToArduino/
Troubleshooting 3D Printing
https://www.simplify3d.com/support/print-quality-troubleshooting/
Inkscape: Move text along a path
From the Inskcape Manual: http://tavmjong.free.fr/INKSCAPE/MANUAL/html/Text-Path.html: use ALT and the arrow keys. Using the XML Editor In Inkscape, open the XML Editor Ctrl+Shift+X. In the XML Editor,…
Inkscape: Move text along a path
Shift-right-click and choose "Install for all users".
How do you use (run/install) an AppImage?
AppImages do not need to be installed. They are a self-contained app that simply needs to be made executable and then run. As nothing…
How do I set permissions on all directories and files on a Linux system?
To change all the directories to 755 (drwxr-xr-x): find /opt/lampp/htdocs -type d -exec chmod 755 {} \; To change all the files to 644…
How to find a file containing a particular text string
Search all subfirectories recursively grep -r "redeem reward" /home/tom/ To display only fines names, add -H option, or $ grep -H -R vivek /etc/*…
How to batch-resize images using ImageMagick
open terminal and cd into the directory containing your photos and execute below command mkdir photos-Optimized;for photos in *.JPG;do convert -verbose "$photos" -quality 85%…
Managing Disks and Space
Disk Info df -h : displays the information of device name, total blocks, total disk space, used disk space, available disk space and mount…