Neil Mitchell
Neil Mitchell
The starlark-rust library uses this code, specifically at https://github.com/facebookexperimental/starlark-rust/blob/13bec61a44dd2ec268403e1d6da4401ea76a3f12/starlark/src/errors/mod.rs#L205-L219. The relevant fragment is: ```rust let snippet = Snippet { title: Some(Annotation { label: Some(annotation_label), id: None, annotation_type: AnnotationType::Error, }), footer:...
In #53 I reported the issue that `__` in titles gets parsed specially. This feature isn't documented anywhere, and doing a bit of git archaeology, I get lost 4 years...
We've been using anyhow extensively, and it's worked out great. There's just one super confusing thing. I would expect: ``` println!("{}", anyhow!("My error message").context("on a file")) ``` To print at...
Currently it's missing. Should return False.
Looking at the SVG spec, and the documents produced by Inkscape, I see things like: ```svg test ``` I think that `desc` should be parsed and added to `DrawAttributes`? I...
At the moment if you run `fsatrace rwm - -- some command` twice in parallel then they end up sharing a buffer and results from both get shared. I have...
https://docs.microsoft.com/en-us/windows/win32/etw/about-event-tracing - not sure if that would be faster or slower than Kernel hooking. There's a chance it might be simpler though. See https://github.com/lowleveldesign/wtrace for an example of building it...
Given a 32bit binary, I tried with both `cat` and `sleep` from http://unxutils.sourceforge.net/, if I create `foo.bat`: ``` sleep 0s ``` Then do `fsatrace rwm - -- cmd /c foo.bat`...
Even after copying the `gcc` binary into `$TMP` doing `gcc -c main.c` doesn't trace the read of `main.c` or the write of `main.o`. My guess is because `gcc` spawns a...
As an example, given the `go` code: ```go package main import ( "fmt" "io/ioutil" "os" ) func main() { b, err := ioutil.ReadFile(os.Args[1]) if err != nil { fmt.Print(err) }...