# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 4
# self = https://watcher.sour.is/conv/uhjnvba
@quark I reckon you need to explicitly set it in your cronjob as well. Because cronjobs don't inherit the same environment as one would expect.
@lyse I think that was it, mate! 🎉 I was calling . $HOME/.bashrc
on the cron job line, but was missing some extra LANG
ones. Let's see how it goes now.
@quark Yup, exactly. LANG
is usually not defined in cronjobs (as aren't most other environment variables neither). And then some weird fallbacks are gonna show their effects. Not sure whether LANG
or other locale-related LC_*
environment variables will be used in this case.
@quark Btw, you can just use LANG=en_US.UTF-8 jenny -f
to set environment variables for a specific command.