PiUSB – How to Make a Wifi Memory Stick Using Pi Zero W
Raspberry Pi Zero W as a Wifi-enabled USB Memory Stick! In this tutorial we create a removable drive that is shared over your network.
Raspberry Pi Zero W as a Wifi-enabled USB Memory Stick! In this tutorial we create a removable drive that is shared over your network.
Slack is a hugely popular live group chat system. While a lot of my notifications now go to Discord, as I wrote about here, Slack is still more popular with development teams, and it is what we use in …
You may have seen in the Maker Hacks Facebook Group the latest iteration of my Raspberry Pi based entertainment center. It’s now got to the point where I need a boot menu, so I thought I would …
Grove sensors are a plug and play way to add sensors, buttons, displays, and actuators to your electronics projects, without soldering. Let's take a look how well they work when paired with a …
Running commands from the shell is all well and good, but what if you don’t want to always be logging into your terminal? What if the script, or even server, crashes or needs to reboot? In this …
If you are logging in and out of a Linux machine, especially a Raspberry Pi on your local network, it can be a pain to keep entering a password. The longer and more secure your password, the more of a …
Here is a shell script that will allow you to kill a script if it is already running #!/usr/bin/env bash ps -ef | grep $1 | awk '{print $2}' | xargs kill -9 Supply the name of the script as the first …
A Discord bot that only SENDS messages is all well and good, but really we want our bots to interact. We need to make them listen and respond.
I am on a mission to declutter my email. Once you get past the unsubscribe/filter stage, the next thing is to get the important information in a different way. Once I started down this path, however, …
A common complaint from Raspberry Pi owners is when running headless (no monitor or keyboard). If the Pi reboots then you lose your login session and often the previous IP address. Using …
Unix and Linux are a lot more powerful for automation than people from other operating systems know, that power is under the hood in Macosx (via the BSD Unix foundations) and that power is making its …
When I put together my brand new Virtual Reality PC I immediately encountered a problem. Wifi dead zone.
Octopi is a fantastic system for running your 3D printers remotely, using a Raspberry Pi, including built in webcam and time lapse features. Installing Octoprint need not be a chore on Mac or Windows. …