Tech Support
This is a quick guide on swapping the motor direction wiring on the Anycubic Chiron and Mega S after upgrading to the TMC2208 motor driver.
Interested in making your own cross over cables? Check out the JST XH 4P connector affiliate link below:
Very quick overview on switching the blue and read wires on your motor driver outputs.
Tech Support
Lately Wordfence Two-factor authentication has been flakier than a country biscuit on my e-commerce site. The only suggestion from wordfence technical support I’ve found online is that it “might be a conflict with another plug-in”.
Here’s a quick remedy to get logged in.
FTP to your host account
goto /wp-content/plugins
rename your wordfence directory wordfence1. This will disable the plugin and allow you to log in.
Once logged in and back on your dashboard, rename your wordfence plugin back to wordfence via FTP. Reload your dashboard.
Goto Wordfence > login security and click disable two-factor.
Thanks to Metadata.mx Link
Raspberry Pi, Tech Support
Configuring a Raspberry Pi and VLC to act as a streaming audio server for your home or office is inexpensive and relatively easy to do.
The tutorial below configures your Raspberry Pi to autorun VLC on boot and play a pre-configured playlist of streaming audio sites (or any audio content you wish). You control the VLC web instance using a browser on your cell phone or home computer.
- Begin by installing VLC on your Raspberry Pi. Link to install VLC
- Download and extract this example playlist to your Pi desktop: Streaming-playlist or create one of your own.
- Open the terminal window interface in your Raspberry Pi and type in the following:
- This will tell you the local ip address of your Pi. Save it for later.
hostname -I
mkdir /home/pi/.config/autostart
nano /home/pi/.config/autostart/autovlc.desktop
- Note: the entry below should be 3 lines only. It may wrap depending on what you’re viewing this page on.
[Desktop Entry]
Type=Application
Exec=vlc -I http –http-password . –one-instance file: /home/pi/Desktop/streaming.xspf
- Hit ctrl-O then <enter> to save the autovlc.desktop file
- Hit ctrl-X to exit nano
- reboot your Raspberry Pi by typing:
sudo reboot
- Your Pi should reboot and begin playing music automatically. One thing to note however this launches VLC in the back ground with its only interface being the web interface so you wont see it come up on the desktop.
- To switch between streaming stations, you will need to connect to the VLC web instance on the Pi by entering http://<raspberry-pi’s-ip-address>:8080 in a browser on your home computer or cell phone.
A login prompt will come up. Leave the username blank and enter a “.” as the password (you can change to whatever you like). You’ll see the VLC Lua web control interface come up.

Software, Tech Support
This guide is to assist in configuring the legacy, per caller or group, custom voicemail greeting feature found in Google Voice. While Google limits custom voicemail greetings to 10, you can assign a greeting to one or many Google contacts.
Custom Voicemail greetings are routed to the intended caller or group of callers based on labels assigned in your Google Contacts. If you want a specific caller to get their own custom voicemail greeting then you would apply a custom label, ex. their name, mother, father, friend, etc, to just their contact record. For a group you would assign the label to multiple contacts.
While you can configure “some” of this guide using your android phone or tablet, certain configuration features are only possible via a browser.
Links you’ll need:
- Google Contacts: https://contacts.google.com/u/0/
- You’ll manage your google contacts labels here. Later you’ll be able to assign custom voicemail greetings you’ve recorded to these labels.
- Google Voice Settings: https://voice.google.com/u/0/settings
- You’ll record and manage your custom voicemail greetings here.
- Google Voice Legacy groups: https://www.google.com/voice/b/0#groups
- You’ll assign the custom greetings you’ve recorded to the contact label (called a group in the legacy Google Voice interface) thereby enabling a custom greeting for that contact or group of contacts. You’ll also be able to enable or disable call screening for specific contacts or groups.

Google Contacts labels
Step 1:
Visit: https://contacts.google.com/u/0/ The first step in configuring the custom greetings is to make sure you have a label assigned to anyone you want to receive a custom greeting. To create a custom label scroll to the bottom of your labels list on the left and click “Create label”. You can also edit, and delete unwanted labels here using the controls that pop up when you highlight a label.

Create as many labels as you’ll need to route the various custom voicemail greetings.
Once you’ve completed adding labels to your satisfaction, click the three little dots to the right of a contact record. This drops down settings for that contact. Click beside each label you want assigned to the contact.

Repeat this for all contacts you want to assign a custom message.
Step 2:
Visit your Google Voice Voicemail Settings: https://voice.google.com/u/0/settings Or at the top right of google voice, click Settings
.

Record up to 10 custom voicemail greetings (not shown). When you click to save a newly recorded greeting it will allow you to name it. Keep the titles relatively short. Also Keep in mind each time you record a greeting, google voice is making it the default greeting for all callers. When you’ve finished recording your greetings, click “Manage all greetings” to set the correct default greeting. Click the three little dots besides the default greeting of your choice and click “Set as active”

Step 3:
Visit Legacy Google Voice Settings > Groups: https://www.google.com/voice/b/0#groups On the left you’ll see a corresponding group for each contact label you created earlier. Click edit beside the group/label you want to assign a custom voicemail greeting to.

Select the correct custom voicemail greeting from the drop down (Play button does not work in legacy google voice). This will now override the system default greeting with the one you’ve selected. To manage this contact’s greeting from now on you will have to do it from Legacy Google Voice > settings > groups.
Select if you want to disable Google Voice call screening for this specific group or caller and click Save. Anyone with this label will now hear your selected custom voicemail greeting

styling, Tech Support, WordPress
If you’ve ever needed to remove the title header from a specific WordPress page you can do it using custom CSS. No additional plugins required. Copy and past the code below updating “.page-id-###” to reflect the ID# of your post or page.
/* Enter your remark here about why you’ve added this custom CSS */
.page-id-### .page-header {
display: none;
}