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

Confusing order of plugin installation
## Summary This is perhaps at least improvable in code, but I'm suggesting it as a documentation issue to describe the current behavior. Location of documentation issue: the GHC user's guide, The installation order of plugins is confusing and undocumented as near as I can tell. If you pass `-fplugin=Foo -fplugin=Bar` to GHC, `Bar` gets installed first, followed by `Foo`, when I would expect the opposite. I discovered this when I created an intentionally malicious plugin to try to strengthen a plugin I was working on. The behavior of the two together was the reverse of what I expected in each case. ## Proposed improvements or changes In [DynFlags](https://gitlab.haskell.org/ghc/ghc/blob/4898df1cc25132dc9e2599d4fa4e1bbc9423cda5/compiler/main/DynFlags.hs#L2681), each subsequent plugin flag that is found is added to the front of the plugin list. Either building the list in reverse or reversing the list when installing the plugins would make it more intuitive. However, for the time being, it'd be helpful if the GHC user's guide at least described the current behavior ... and also indicated when plugins installed via `addCorePlugin` get installed. It seems like [the `-fplugin` documentation](https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/extending_ghc.html#ghc-flag--fplugin=%E2%9F%A8module%E2%9F%A9) would be a good place to add this. ## Environment * GHC version used (if appropriate): 8.8.1
issue