Advanced Search
Search Results
57 total results found
Setup
Installation, settings, and secrets
Troubleshooting
Wallypub generates a debug.log file which can be found in your ~/.local/share/Wallypub/ directory If you want to see debug output in your terminal, set the log_level to 10 in your base settings.
Tutorials
One off walk throughs
Pycharm
Pycharm Graying Out the Run Button
If your run button is suddenly greyed out and no longer green, try the following: 1.) open another repository / project File > Open > select project > OK 2.) If you have the pop-up to choose "This Window or "New Window", chose "This Window" 3.) Open the...
xteink4
Flashing Firmware
The recommended tool from the github repo is https://xteink.dve.al/ Connection Issues Arch Linux (EndeavorOS) If you encounter issues connecting to web serial try the following Possible Error xteink (index):1 Uncaught (in promise) NetworkError: Failed to exec...
XTC / XTCH
XTC / XTCH is the proprietary container format that the xteink4 uses. Converting to these formats yields better results. Converter: https://x4converter.rho.sh
Hard Drives
NTFS
NTFS Mounting Issues
Linux Sometimes there is a mounting issue with NTFS drives. This command handles them a lot of the time. sudo ntfsfix /dev/{sdbNumber} fix References https://linux.die.net/man/8/ntfsfix
EndeavorOS
Tips and tricks for running this arch based distro
systemd-boot Failed to mount /efi [solved]
After a recent update using eos-update --aur I rebooted my machine and found myself only able to boot into emergency mode. For boot, my devices uses systemd-boot. I spent some time searching around figuring out what the issue could possibly be. Smoking Gun una...
git
Git Ignore Scenarios
Broadly, there are three scenarios where one might want to ignore files. Specific to personal workflow modify .git/info/exclude Specific to project secrets Scenarios like .env files for running a project locally. Here you can modifiy the repo level .gitign...
systemd
Services
Creating a New Service
If you want an application to be able to run at start up. Create your service file nano /etc/systemd/system/<application>.service Add the following information to the file with updated application info. Depending on the service you might not need specific envi...