Back to Blog

Tagged as "software tips"

List of blog posts tagged as "software tips".

Fix Gaomon PD2200 Pen Display Not Working

Sometimes, the fix is simple.

I bought the Gaomon PD2200 pen display way back in min 2020 as a replacement/upgrade for my Artisul D13 pen display, which wasn't working quite as well with the specific software I was trying to use at the time. I was tired of the Artisul software incompatibility issues, so I sought out Gaomon as a better compatibility with most software alternative with a similar price range. Both are still great pen displays even today (in 2024), and they'll probably both stand the test of time and last quite a while. The Artisul one is now in my wife's desk space and used sparingly for signing documents and occasionally for her to doodle or make Canva designs. The Gaomon pen display is still my daily driver.

Read More

Useful Linux Command: Find File By Name, Sort By Date

The command below finds a file based on its filename and then sorts the results by oldest to newest:

find . -type f -name "*string you are looking for in filename*" -printf "%T@ %Tc %p\n" | sort -n

Read More