# 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 24
# self = https://watcher.sour.is/conv/h5apy2a
It is my birthday today. Entering the last year of my 40s!
@abucci Oh! Happy Birthday!!! 🥳
@abucci Oh! Happy Birthday!!! 🥳
@prologic Thank you!
@abucci It's my birthday next Thursday too 🤣
@abucci It's my birthday next Thursday too 🤣
@prologic Happy birthday then! 🍰🎂
@abucci Tuanks!
@abucci Tuanks!
@abucci Happy 110001th birthday!
@lyse thank you! I feel exceedingly old now
@abucci I think he got the binary a tad bit wrong 🤣
@abucci I think he got the binary a tad bit wrong 🤣
Nah, you're good, @abucci. :-) Hmm, should be bang on, @prologic.
@lyse Ahh you're totally right 😂 Shows you have often I work with binary digits 😅 Off by one, forgot about the 2**0 🤦‍♂️
@lyse Ahh you're totally right 😂 Shows you have often I work with binary digits 😅 Off by one, forgot about the 2**0 🤦‍♂️
@lyse speaking as a 110,001 year old, I thank you 🙏
@abucci I don't think you use commas to separate binary digits and their place 😂
@abucci I don't think you use commas to separate binary digits and their place 😂
@abucci @prologic Haha, classic. Btw. I used good old bc to quickly convert between bases. obase=2 changes to binary output format, so then you just enter the number in decimal and out you get the presentation in base two. Inverse can be done with ibase=2. Super handy. There's just one catch with changing the input base, the new base of course has to be passed in the previously used input base. :-)
@lyse Ahh!
@lyse Ahh!
@lyse @prologic
I guess I'm old school because I still use dc


╰─ dc -e '49 2o p'                                                                                                                                                                                      
110001
@abucci Nice! I ran across dc a long time ago, but I don't think I ever used it. Completely forgot about this classic.