Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

57 total results found

Setup

Wallypub User Guide

Installation, settings, and secrets

Troubleshooting

Wallypub User Guide Setup

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

Pycharm

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

xteink4

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

xteink4

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

Hard Drives

NTFS Mounting Issues

Hard Drives NTFS

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]

EndeavorOS

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

git

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

systemd

Creating a New Service

systemd Services

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...