DJI/Ryze Tello Mini-Drone Review
DJI/Ryze Tello Mini-Drone is, as the name suggests, a new and tiny drone from the people who created my lovely DJI Mavic Pro. The important differences are, however, compelling:
DJI/Ryze Tello Mini-Drone is, as the name suggests, a new and tiny drone from the people who created my lovely DJI Mavic Pro. The important differences are, however, compelling:
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 …
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 …
The Prusa Mk2/Mk3 3d printers are renowned as top quality, but buying parts is a painfully expensive deal due to the long journey and single supplier. That just changed!
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 …
The T8 CNC is a desktop CNC kit built with aluminum extrusions, open source Arduino hardware, and GRBL software. If you were looking to learn CNC, perhaps this little $200 CNC mill could be a good …
In the previous Discord article we set up a listener, but really that was just the foundation – enough to listen for “hello” and greet the user. Now we need a real-world example.
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.