| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
They are shorter, more readable, and don't require temp vars.
|
| |
|
|
|
|
| |
It's useful to collect stats in low-level packages like prog,
but pkg/html/pages recursively depend on prog, so currently it's impossible.
Make pkg/stat not dependent on pkg/html/pages.
|
| |
|
|
|
|
| |
The stats page is frequently reloaded to observe live data.
Currently vertical scroll jumps to random positions after reload,
it's super inconvinient. Preserve the position.
|
| |
|
|
|
|
|
| |
Currently lines in graphs are reordered on each page reload
since use map iteration which is randomized.
This is very inconvinient. Sort lines based on creation order.
This provides stable order and gives a user some control over order.
|
|
|
Go package names should generally be singular form:
https://go.dev/blog/package-names
https://rakyll.org/style-packages
https://groups.google.com/g/golang-nuts/c/buBwLar1gNw
|