Gregory Schwartz
Gregory Schwartz
When I use `mons -m`, the secondary monitor shows the screen but the primary monitor goes blank. Should there be a `--same-as` in the mirroring command?
I'm trying to use `hvega` which outputs `vega-lite` plots. The output is a javascript block. However, when running the source block I get no output and a warning: `Warning (emacs):...
I assume that this feature has been discussed before, but it would be nice to have a simple conversion to and from data frames.
I find myself doing `fromJust . filter isJust . fmap f`, where `f :: a -> Maybe b`. Is it possible to have a `mapMaybe`-like function for this to avoid...
Resolves #354. Probably needs a better name, should avoid partial functions, and needs verification if bang patterns are needed, especially on `stream`.
`onLines :: (Text -> Text) -> Line -> Line` Like onFiles but for Line. Helps with editing lines without `stdout . join . fmap (select . textToLines . FUNCTION ....
isEmpty :: FilePath -> Bool Replacing "[ -s diff.txt ]" in bash.
In almost every program I use `cassava` with, I have this definition: ``` parse :: [Map.Map T.Text T.Text] parse xs = either error (V.toList . snd) (CSV.decodeByName xs :: Either...
Is it possible to implement the geometry as screen percents? For instance, having the width be 1/10 the screen width, centered at 5/10 of the screen width, at 1/10 the...
This should be fairly trivial (other than the Floating requirement): ``` nearZero 0 = True nearZero _ = False ```