rick

rick

What Is an FPV Drone?

An FPV drone—short for First Person View drone—is a type of unmanned aerial vehicle that allows the pilot to see exactly what the drone’s onboard camera sees in real time. Instead of flying by watching the drone from the ground,…

DJI Avata: First-Person Flight Made Accessible

There’s a specific sensation that happens the first time you put on FPV goggles and fly the DJI Avata. Your living room disappears. The outside world fades away. Suddenly, you’re not standing in your backyard—you’re soaring through it at 60…

How to Add Spacers to the macOS Dock

If you like to keep your macOS Dock organized, adding spacers is a simple trick that lets you group applications into logical sections. Whether you want to separate work apps from personal apps or simply make your Dock easier to…

How to Rename Any File Extension to Lowercase on macOS or Linux

If you work with files from multiple operating systems, digital cameras, Windows PCs, scanners, or network storage devices, you’ve probably encountered files with uppercase extensions like: While Windows generally ignores the case of filenames, Linux, web servers, and many automation…

Prepend a text using a temporary file

Here is simple solution using a temporary file to prepend text: echo ‘line 1’ > /tmp/newfile echo ‘line 2’ >> /tmp/newfile cat yourfile >> /tmp/newfile cp /tmp/newfile yourfile Here is one line solution: echo “text”|cat – yourfile > /tmp/out &&…