Maverick Woo

Results 10 issues of Maverick Woo

I am using font version 0.045, and I confirm that this is reproducible on macOS 12.5 with VS Code 1.69.2 using a minimal `settings.json` pasted below. All three versions are...

enhancement

### `brew config` output ```shell HOMEBREW_VERSION: 3.5.6 ORIGIN: https://github.com/Homebrew/brew HEAD: 0b030b74e2ac518bd0bc4158f96c449198f9957f Last commit: 7 days ago Core tap ORIGIN: https://github.com/Homebrew/homebrew-core Core tap HEAD: 48f398548302e5aef01a1202465c2831873df41d Core tap last commit: 12 hours...

bug
help wanted

I recently started noticing `gorewrite` has a non-deterministic behavior: in one project, it fails to generate the correct output often, with a failure rate of about 80% in that project;...

bug

We observe that when a Linux worker node restarts in our deployment, it will run: ```shell rsync -av /home/fluffi_linux_user/fluffi/persistent/ /home/fluffi_linux_user/fluffi/ramdisk/ ``` But, at least with our setup (our worker nodes...

bug
investigating

The present `core/makefile` depends on shell tricks to list dependencies. This is error-prone. Example: A change in `core/LocalManager/LMDatabaseManager.h` may not trigger a rebuild of the `LocalManager` binary. Specifically, https://github.com/siemens/fluffi/blob/6fd185743822c9e48973a426cecd0081ac3e3e86/core/makefile#L168 leads...

enhancement
help wanted
reproduced

At present, https://github.com/BinaryAnalysisPlatform/qira/blob/master/install.sh#L55 can (and probably does) may miss dependencies specified in bap's `apt.deps` file. P.S. I was told by a friend that this happened on his system and so...

``` diff --git a/bin/vcprompt b/bin/vcprompt index 9e1dbb6..48e45ef 100755 --- a/bin/vcprompt +++ b/bin/vcprompt @@ -572,7 +572,7 @@ def hg(options): } -@vcs([".svn/entries"]) +@vcs([".svn/entries", ".svn/wc.db"]) def svn(options): """ Subversion ```

In git, another important local status is whether there is something in the stash. Unfortunately, forgetting this status is all too easy...

I am using 652176e with asciidoctor bd8927b (both latest as of this writing). First, create two files: 1. `foo.adoc` ``` = Negative line number include::bar.adoc[] ``` 2. `bar.adoc` ``` ==...

It seems asciidoctor-latex currently parses the content of a source block. The following example shows their interaction. foo.adoc: ``` = Include Bug Demo Testing $x$, $y$. [source,perl] ---- print $_,...