Booting a Raspberry Pi from USB 3.0 Port Plugged in Device (e.g. SSD, HDD, FlashDrive)

Booting your Raspberry Pi from the SD Card can be slow and SD Card’s aren’t the most long lasting forms of media for physical data retention. Neither are NVME SSD’s but their write speeds are really good. To set up your Raspberry Pi to boot from USB, the details can be summarized as: Prerequisites Assuming …

How to get the Temperature of a Raspberry Pi via CLI

To get the temperature of a Raspberry Pi, simply run this script in a terminal /usr/bin/vcgencmd measure_temp That’s it! Put it in a script, run it alone in the CLI, or create an alias so you’re not having to type it every time. For instance, a simple alias would be: alias pitemp = ‘/usr/bin/vcgencmd measure_temp’

Show Verbose Progress when Copying Files in Ubuntu Server via CLI

In short, I had some big files inside folders I needed to copy from one directory to another and wanted to know what the progress. This immediately took me to this article and I’m simply sharing the command here. rsync –info=progress2 -auvz /path_to_source_directory/ /somewhere/destination_directory/ This will display the progress with some information like write speed. Really helpful. …

Person Typing on a Laptop

How to learn website development starter pack

Here’s a short breakdown for you to use when looking to learn how to code (websites or use computers more technically than just opening up Chrome and surfing the web) Just something to reference if you need to go back to it. Useful Apps: Microsoft VS Code https://code.visualstudio.com/Udemy: https://www.udemy.com/This is what I learned to do websites when …

Getting Started with an Arduino Nano in Ubuntu 22.04 LTS

Hey everyone, today we’re going through the initial setup of an Arduino Nano that I had received as a gift from a friend. This is a simple tutorial where we’ll be loading up a script (built into the software) in Ubuntu in order to make an LED light fade in and out. I’m basically writing …

Very Large Array

Search for Extra Terrestrial Intelligence (SETI) using BOINC via the SETI@Home Project

[Update] SETI is in Hibernation. Per their website: We are no longer distributing tasks. The SETI@home message boards will continue to operate, and we’ll continue working on the back-end data analysis. Maybe we’ll even find ET!Thanks to everyone for your support over the years. We encourage you to keep crunching for science. https://setiathome.berkeley.edu/ Introduction The purpose of …