Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

UsageFile can use a lot of memory
`UsageFile "/path/to/some/object/code"` is written to each interface file for each object file included in an external dependency transitively used by the module. When de-serializing these from disk, all of these paths are duplicated in memory because we use `FilePath` instead of `FastString`. Here I have a profile which allocated almost 2 GB of these constructors ![2022-12-19-081226_grab](/uploads/1ab5dda31e6fc739e82dee83e5a5beae/2022-12-19-081226_grab.png)
issue