Ryan C. Thompson

Results 67 issues of Ryan C. Thompson

As far as I can tell, the two options for resuming recent videos are "never" and "ask". Is it possible to have "always" as a 3rd option?

enhancement

In the ReadTheOrg theme, the postamble is placed at the bottom of the TOC column. However, it doesn't reduce the height of the TOC itself, which means that if the...

It's safer to use Git.pm's command functionality than to use qx to execute git commands from Perl. I've already converted Import.pm in my import-improvements branch, and you can use this...

Fixes #24. However, the tests are suboptimal. When running ecukes, stdin isn't a tty, so ert-runner with `--no-win` doesn't work. I had to use `script` to trick the emacs subprocess...

I'm trying to convert my package, ido-ubiquitous, to ert-runner. My package cannot function in batch-mode, so presumably I need to use the `--no-win` or `--win` option. However, when I do...

It turns out cask already seems to have a recursive dependency walker, so I just used that instead. This should fix #49.

I use pallet in my Emacs config which is shared across multiple machines. When I uninstall a package on one machine, Pallet removes it from the cask file, which gets...

I have [previously](https://github.com/hadley/assertthat/issues/43) reported an issue about getting "bad error message", which was [fixed](https://github.com/hadley/assertthat/pull/45), but now I have run into another instance of it. Here is some code that produces...

Using load hooks, it should be possible to implement a single function that tells every parallel package that can do so (BiocParallel, foreach, ...?) to use the future backend, even...

Consider the following `dodo.py` file: ``` python #!/usr/bin/env doit -f def cat(infile, outfile): with open(infile, "r") as in_, open(outfile, "w") as out: out.writelines(in_.readlines()) def task_generate_file2_from_file1(): return { # Task reads...

enhancement