Travis Brown
Travis Brown
Suppose we've got a case class like this: ``` scala case class Foo(i: Int, s: String, blah: Boolean) ``` It shouldn't be too hard to derive "incomplete" `DecodeJson` instances: ```...
I'm doing a review of content that's missed by the `deleted-tweets` command provided in `twcc`, and it suggests some things that could be improved. For example, `twcc` currently finds 861...
Several people have noted that the deleted tweet reports are not including some recent WBM snapshots (e.g. [here](https://web.archive.org/web/20220315211905/https://twitter.com/SeekerRaiden/status/532926099534389248)). I think this is some kind of special handling for manually archived...
The deleted tweets reporting tool currently fails with an unhelpful error message when an account has been [excluded](https://github.com/travisbrown/deleted-tweets/tree/main/data/excluded/) from the Wayback Machine (see #54). We should make the error message...
The Clap command-line argument definitions are currently a mess, with I think two primary problems: 1. I just copy-pasted stuff like `version = crate_version!()` all over the place without understanding...
It would be convenient to be able to handle scala-steward's PRs through the standard tabs in GitHub's [pull requests interface](https://github.com/pulls), and I was wondering whether other people would be interested...
In #455 the Scala.js tests in the tests module were failing on Scala 3, with some completely unhelpful messages: ``` [error] Error during tests: [error] io.iteratee.EvalIterateeTests [error] io.iteratee.TryEnumerateeTests [error] io.iteratee.IdIterateeTests...
I'm working on a new iteratee-parsing module with iteratee-powered parser combinators, and I really want to be able to parse strings as streams of characters without representing chunks as sequences...
#171 addresses the main part of #166, but I'd also like to have converters allowing us to go between the iteratee abstractions and fs2's streams. I'm not sure exactly what...