2025-06-08 07:45:15
Recently I was trying to sync my hiking course from Garmin connect to my Garmin Forerunner 965 and found that it does not work.
2025-06-07 21:06:20
In Elasticsearch, you can use wildcard in a lot of the index operations. This is very handy, but can be dangerous sometimes, e.g., when you use wildcards when deleting indexes. You may delete unintended indexes accidentally and cause serious interruptions to your business/work.
2025-05-17 22:18:41
This post will give a quick summary on how to import GPX route into Garmin watch.
2025-05-14 00:28:20
When I try to run pytest
locally for a Python project,
I noticed that the import in those test scripts may fail if I run pytest
in different directories.
The import error usually means that your actual code modules is not in the python path,
so they can not be imported successfully by your test scripts.
This has something to do with how pytest set up the python path when you run it.