Asad Saeeduddin

Results 161 comments of Asad Saeeduddin

I'm not sure where to post this exactly, but I would greatly appreciate a sensible decomposition of the tasks that cabal performs, so that some sum of parts does in...

Without having any understanding of the implications for "pure performance", but being reasonably confident it evaluates the predicate as frugally as `spanAntitone` does, here is a cargo-culted implementation of `spanAntitoneM`:...

> The issue is that the specific actions performed would depend on how the tree happens to be balanced. I would expect as much, but I can see how mileage...

Ideally this would be implemented as a more general purpose "move type into matching file" refactoring, which would create a new file matching the name of the type and place...

@cxw42 > Are you developing NPM packages that include both js and yaml files? Yes. Sometimes I have even more exotic combinations, like PowerShell in a Haskell codebase, or Dhall...

> `EDITORCONFIG_PARTIALS` I don't think this solves the problem. This would essentially be a code generator, and since many nice code generators and scaffolding tools exist apart from editorconfig, an...

@xiamx When people are going around hunting for tools like schemats to help them work with an unfamiliar database schema, it is likely they don't have control over the choice...

Wouldn't the following lens be lawful? ```js const fail = e => { throw new TypeError(e) } const lensProp = p => ({ view: o => o.hasOwnProperty(p) ? o[p] :...

@davidchambers Sweet. So basically `const lensProp = p => ({ view: S.prop(p), update: S.insert(p) })`