My Notes

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

Mar 27, 2024

Getting interviews but not any offers

https://www.payscale.com/career-news/2019/06/7-reasons-youre-getting-interviews-but-no-job-offers

Mar 27, 2024

How do I convert a MIDI file to Arduino Tone code?

Use https://extramaster.net/tools/midiToArduino/

Mar 27, 2024

Troubleshooting 3D Printing

https://www.simplify3d.com/support/print-quality-troubleshooting/

Mar 27, 2024

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,…

Mar 27, 2024

Inkscape: Move text along a path

Shift-right-click and choose "Install for all users".

Mar 27, 2024

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…

Mar 27, 2024

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…

Mar 27, 2024

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/*…

Mar 27, 2024

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%…

Mar 27, 2024

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…

Mar 27, 2024