Zoey Hewll

Results 34 issues of Zoey Hewll

If an incompatible file is encountered, rather than giving a warning and skipping the file, the program freezes, with an exception logged in the terminal. I encountered the following two:...

### Describe the bug Today I accidentally pressed Ctrl-Z in [`hx`](https://github.com/helix-editor/helix) in nushell and was unable to use the shell as a result. I needed to `kill -9` the suspended...

:bug: bug
signal-cancel

### Related problem I found myself wanting to update an optional column of a table, changing the value if it is present and leaving it empty when it is absent,...

enhancement
needs-triage

### Describe the bug I have a file with mixed line endings, and I want to check the line endings of each line. I have defined a simple function to...

needs-triage

### Related problem I noticed that `parse` always returns a table, even when it takes a single string as input and, as far as I can tell, the returned table...

enhancement

### Related problem I have some data interleaved with headings like this: ``` 2024-01-13 event bla event foo event bar 2024-01-14 event baz 2024-01-15 ``` And I would like to...

enhancement
needs-triage

### Related problem In my case, after a sequence of `join --outer` and `flatten` on some nested data, I had a table with some optionally-missing (not null) columns, which I...

enhancement
needs-triage

Update the sorting algorithms to let ArrayController manage the array access and comparison counts (`aa` and `comps`). Currently, each sorting algorithm manually updates the comparison and access counts. By delegating...

- Remove clutter - Make internal members private - Remove overly broad throw and catch clauses - Use consistent capitalisation - Use consistent code formatting

Reading [this comment](https://users.rust-lang.org/t/builder-pattern-in-rust-self-vs-mut-self-and-method-vs-associated-function/72892/2) on the rust internals forum got me interested in a conditional pipe method; to borrow the example from the post, it would simplify pipes with basic tests...