Edd Barrett

Results 110 issues of Edd Barrett

I find it annoying that `run_shell_cmd` wants a string. Because, well, it shouldn't. We pass the argument straight to the `Popen` constructor. ``` class subprocess.Popen(args, bufsize=0, executable=None, ... ... args...

We should replace all assertions with exceptions (probably `RuntimeError`). Assertions will not fire if Python was invoked with `-O`.

Dmesg change should cause the process execution to be re-run. Currently gets marked as `E` in manifest yielding no data.

enhancement

Hi, I installed mdvl using pip for Python-3.6 and ran it over: https://raw.githubusercontent.com/softdevteam/krun/master/README.md ``` $ mdvl README.md ... renders document, then at the end: md error: not enough values to...

Hi, Consider this minimal example project: https://github.com/vext01/rust_link_test The project has a dependency written in C which is built by the `build.rs`. For the examples or tests to work, the shared...

C-feature-request

#### Describe the bug Initialisation fails. #### Steps to reproduce * Install from pip * run `archivebox init --setup` in a new directory. #### Screenshots or log output ``` $...

Hi, I'm trying to track down a crash in a test suite that uses lazy_static. A `Once` is being poisoned: ``` thread 'tests::exec_call_symbol_with_many_args_some_ignored' panicked at 'Once instance has previously been...

## Description As discussed [here](https://github.com/fish-shell/fish-shell/issues/7186), you can't easily change the colour of the `@` in the prompt (if present). This draft proposes a fix. ## TODOs: - [ ] Discuss...

Hi, We have a parser for a compiler IR where we use indices for the (immutable) on-disk serialisation format, and we read it in with Deku. We'd like to be...

Best explained by example: ``` struct Parent { num: usize, #[deku(count = "num")] subs: Vec } struct Sub { idx: usize, ... } ``` How can I get each `Sub::idx`...

enhancement