Logan Hunt

Results 29 issues of Logan Hunt

Currently the `ansi_up.js` file in the root of this project is about 23KB. Providing a minified version of this file would be nice so that you don't have to vendor...

This is probably the best client-side library for rendering ANSI escape codes client-side, but one of the features that would be really nice to have is the ability to support...

I was poking around my `.venv` folder and noticed that this library includes a lot of test data in the published package, which is weird because these files aren't in...

## Type of changes - [x] Bug fix - [ ] New feature - [ ] Documentation / docstrings - [ ] Tests - [ ] Other ## Checklist -...

[Ruff](https://github.com/astral-sh/ruff) is a really great flake8 alternative that includes a very comprehensive set of linter rules. This PR doesn't remove flake8, but since Ruff is meant to be a replacement...

dependencies
maintenance
developer experience

#### What is the problem you want to solve? I want to be able to use the filesystem target in production, but since the keys are not encrypted at rest,...

community

Similar to #712 and #713. This issue applies to both lambdas and nested functions, though lambdas are typically used for what this issue is covering. Feel free to merge this...

priority-0-high
speed
area-irbuild
area-functions

I was playing around with `mypyc` and noticed that it creates `.so` files which have a lot of unused symbols. This only seems to be an "issue" with the `mypyc`...

enhancement
status-needs-discussion

I've been thinking of ways to make Mypyc programs faster, and it occurred to me that Mypyc doesn't (currently) do any recursive [tail call optimization (TCO)](https://en.wikipedia.org/wiki/Tail_call). Adding support for TCO...

speed

There is no semantic difference between `raise X()` and `raise X`, so for the few instances where you are raising an exception with no arguments you can save 2 bytes....