# 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 20
# self = https://watcher.sour.is/conv/hr4b4tq
How to structure a golang project
1 points posted by madflojo ⌘ Read more
Why bother having a fucking blog if you're just going to host it on some shitty stupid site (Medium) that forces people to sign-in and have an account with Facebook or Google ?! 🤦‍♂️ Dafuq?! 🤬
Why bother having a fucking blog if you're just going to host it on some shitty stupid site (Medium) that forces people to sign-in and have an account with Facebook or Google ?! 🤦‍♂️ Dafuq?! 🤬
Try opening it in incognito mode.
@tkanos Ahh neat trick! Thanks 😂
@tkanos Ahh neat trick! Thanks 😂
Oh well wasn't worth the read anyway 🤣
Oh well wasn't worth the read anyway 🤣
@prologic Scribe bypasses this BS and all the tracking and spyware as well. The official instance is scribe.rip.
@mckinley Interesting...

Any ideas how Scribe works?

Also, we shoudln't have to create these silly frontends to work-around stupid shit like this 🤦‍♂️
@mckinley Interesting...

Any ideas how Scribe works?

Also, we shoudln't have to create these silly frontends to work-around stupid shit like this 🤦‍♂️
@prologic I dug around in the code and it looks like Medium has a GraphQL API that is used by Scribe. See /src/clients/medium_client.cr. Scribe takes the JSON returned by the API and turns it into HTML.

/src/clients/local_client.cr includes a cURL command that queries the API in a similar way to Scribe. The ID is the unique looking alphanumeric string in the URL. For this post, it's aad7095d70a.
@mckinley Ahh interesting 👌
@mckinley Ahh interesting 👌
I structure my projects according to the DDD methodology, and it's awesome.
@tkanos DDD? 🤔
@tkanos DDD? 🤔
@prologic domain-driven design?
@prologic scribe shows you how to intercept the medium call and redirect. you can do this with an extension, however there's likely some other ways to skin the cat
@prologic Domain Driven Design.