# 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 33
# self = https://watcher.sour.is/conv/35fkjoa
ahh this is useful https://go.dev/doc/modules/managing-dependencies. the go culture doesn't typically have large dependency graphs like Ruby or JS.
@xuu With yarnd being one of the exceptions: go mod graph | wc -l results in 3540. :-D go mod graph | gomodot | dot -Tpng -o graph.png gives this piece of art:

yarnd's dependency graph

Watch out, the large version is 42.6Β MiB in size! https://lyse.isobeef.org/tmp/yarnd-dependency-graph.png
@lyse What the _actual_ fuck?! πŸ˜… Man I'd better go through and do some "dependency cleanup" πŸ€¦β€β™‚οΈ How da fuq is protobuf being pulled in again?! πŸ€”
@lyse What the _actual_ fuck?! πŸ˜… Man I'd better go through and do some "dependency cleanup" πŸ€¦β€β™‚οΈ How da fuq is protobuf being pulled in again?! πŸ€”
@lyse What the _actual_ fuck?! πŸ˜… Man I'd better go through and do some "dependency cleanup" πŸ€¦β€β™‚οΈ How da fuq is protobuf being pulled in again?! πŸ€”
@lyse What the _actual_ fuck?! πŸ˜… Man I'd better go through and do some "dependency cleanup" πŸ€¦β€β™‚οΈ How da fuq is protobuf being pulled in again?! πŸ€”
I don't get it 😒


$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)


@lyse What is go mod graph _really_ showing? πŸ€”
I don't get it 😒


$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)


@lyse What is go mod graph _really_ showing? πŸ€”
I don't get it 😒


$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)


@lyse What is go mod graph _really_ showing? πŸ€”
I don't get it 😒


$ go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)


@lyse What is go mod graph _really_ showing? πŸ€”
Oh this is interesting...


$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
Oh this is interesting...


$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
Oh this is interesting...


$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
Oh this is interesting...


$ go mod why -m github.com/golang/protobuf
# github.com/golang/protobuf
git.mills.io/yarnsocial/yarn/internal
git.mills.io/prologic/observe
github.com/prometheus/client_golang/prometheus
github.com/golang/protobuf/proto
@prologic This graph shows all transitive dependencies, but also includes test-only libraries, that don't make it into the actual productive binary. Dependency removal is always a very good thing. Btw, is anybody using this selenium crap in the _tests_ directory? That's a low hanging fruit I believe (doesn't prune whole a lot, though). Awesome, I didn't know about the why sub command, thanks! At work I wrote a script to filter the go mod graph output in order to find the path(s) how a certain package is pulled in.
@lyse I don’t think so?
@lyse I don’t think so?
@lyse I don’t think so?
@lyse I don’t think so?
@prologic Then kill it with fire. ;-) github.com/vcraescu/go-paginator pulls in several databases such as github.com/mattn/go-sqlite3, github.com/go-sql-driver/mysql, github.com/denisenkom/go-mssqldb and a few other things. Admittedly, only in its tests, but still. Probably still worth looking for a replacement or doing it completely on our own, depending on what is actually needed. Also, I just noticed that this blackfriday markdown library is included in both v1 and v2. I'm sure there are other libraries with the same issue. Gotta do some spring cleaning.
@lyse Probably will. Y think the intention was to build UI / integration tests but that has never happened πŸ˜†
@lyse Probably will. Y think the intention was to build UI / integration tests but that has never happened πŸ˜†
@lyse Probably will. Y think the intention was to build UI / integration tests but that has never happened πŸ˜†
@lyse Probably will. Y think the intention was to build UI / integration tests but that has never happened πŸ˜†
@prologic That's very laudable. However, Selenium is a piece of total shit, straight from hell. I've never seen it work reliably. So better don't have any tests than constantly failing tests where you don't know if it's just yet another random test framework glitch or a real problem with your code. Unfortunately, I don't know of an automated UI testing tool/framework/library that does not completely suck, so I believe, there just is no such thing. And it also cannot really work if you think about it. If there is a UI, there's no way to get off without manual testing. Sadly. Very sadly. :-( (Yes, one can check the generated HTML, but there's a lot more to UI testing in my mind.)
@lyse I tend to agree with you, years gone back a long time ago, I remember how badly Selenium based testing sucked too πŸ˜…
@lyse I tend to agree with you, years gone back a long time ago, I remember how badly Selenium based testing sucked too πŸ˜…
@lyse I tend to agree with you, years gone back a long time ago, I remember how badly Selenium based testing sucked too πŸ˜…
@lyse I tend to agree with you, years gone back a long time ago, I remember how badly Selenium based testing sucked too πŸ˜…
@lyse im talking like some JS projects i have seen with 1-2G node_modules dirs. though yarn is quite vast in its modules because it does a LOOOOOOT of stuff in the background.
@lyse im talking like some JS projects i have seen with 1-2G node_modules dirs. though yarn is quite vast in its modules because it does a LOOOOOOT of stuff in the background.
how install gomodot? also.. @prologic your domain has some pretty strong SEO mojo searching for install "gomodot" puts you on the google first page.
how install gomodot? also.. @prologic your domain has some pretty strong SEO mojo searching for install "gomodot" puts you on the google first page.