mniip
mniip
This is to track progress on instrumenting the source for localization. - [x] src/client/Client.cpp (49) - [x] src/client/Client.h (32) - [x] src/client/GameSave.cpp (86) - [x] src/client/http/Request.cpp (80) - [x] src/common/String.cpp...
C strings sighted in: - [ ] data/Shaders.h - [ ] data/IntroText.h - [ ] src/simulation/StorageClasses.h - [ ] src/simulation/Simulation.cpp - [ ] src/Format.cpp - [ ] src/lua/socket/socket.lua.cpp - [...
## Summary Addresses https://github.com/Rapptz/discord.py/projects/3#card-60313188 We export two new types: `ResumeState` and `ShardedResumeState` that can be converted to and from `str`. `Client` methods such as `connect`, `start`, `run` accept and return...
This came up during ekmett's haskell stream: There's no nice way to do a double fold on an `All2 c xss => xss` because the type system doesn't know the...
I found myself reaching for the internals when implementing a `Crosswalk` instance for `Map`: ```hs {- cabal: build-depends: base, containers, these, semialign -} {-# LANGUAGE GHC2021, LambdaCase #-} import Data.Map...
The documentation for `Data.Map.Lazy.mergeWithKey` states: > - a nonempty subtree present only in the first map is passed to `only1` and the output is added to the result; > -...
Servant has many more combinators than are accounted for in the `IsElem` implementation. Going off of the instance list for `HasLink`, - `IsElem` is missing equations for: - `HttpVersion` -...
The docs for `EmptyAPI` state that it should act as a unit for `:`. The implementation of `Endpoints` violates this property.
I'm a big fan of using [gloss](https://hackage.haskell.org/package/gloss) for visualization because of just how straightforward it is: with a quick glance at the [Picture datatype](https://hackage.haskell.org/package/gloss/docs/Graphics-Gloss-Data-Picture.html#t:Picture) you can immediately get something on...
Would be pretty useful for writing custom `PreProc` functions. These enable you to do generic tree traversals a-la `gplate` or `uniplate`. Or even more simply, make use of any other...