Ximin Luo

Results 107 issues of Ximin Luo

Currently for every source package we run `cargo build` as part of the tests, which means the binary runtime dependencies of the default features are needed for a given source...

On a discussion on different [latex-mathml converters](https://sourceforge.net/p/docutils/patches/197/) I found out about the following test file: https://docutils.sourceforge.io/docs/ref/rst/mathematics.txt Pandoc can parse a lot of it, but gives the following errors: ~~~~ $...

Hi Joachim! Here's a PR that converts a HeapGraph to a fgl Graph, which you can use to do More Things with it such as output to DOT format. [ghc-vis](https://github.com/def-/ghc-vis)...

Write metadata in `.json`. So you have nice info about the picture, like the title and source url, both together in the same place.

Hi, much of the current API is based on the IO monad. I wonder if it is possible to present a pure API instead, true to the Haskell spirit, that...

There are many uses of TQueue in this codebase, which is an unbounded queue. This effectively negates flow-control, as the consumer has no way to tell the producer to slow...

I was messing around with squeezing performance out of this library. ```haskell -- utility function used in the rest of the code fillOrderPart :: (Monad m, Ord a, Num a)...