Stuart Rackham

Results 30 comments of Stuart Rackham

I've got an implementation working but need some input: 1. printf's `%f` renders the fractional part rounded to 6 decimal places with trailing zeros. I think a more readable default...

1. Yes, that makes sense (the devil is always in the details though). 2. I was unaware of that functionality, it's very clever. There's a lot more to Virgil's number...

Just after my last post around a month ago I dug a little deeper and realised that my "implementation" was naive to the point of embarrassment, then the World intruded...

The following patch fixes the CoffeeScript issue, and it looks from this example http://joapp.com/docs/#joDoc like the Perl version of jodoc undents and would be fine with CoffeScript outputs, but I...

Make the strip_code regexp a configuration option and jodoc should work with virtually any language with block comments.

I started on a patch but it quickly turned into a rewrite. See the [pcre2 module documentation](https://srackham.github.io/pcre2/pcre2.html) and the [Github repo](https://github.com/srackham/pcre2). The functions and methods are similar to those in...

Here's a trivial bar chart example using go-chart: ```go package main import ( "bytes" "log" "fyne.io/fyne/v2" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/canvas" "github.com/wcharczuk/go-chart/v2" ) func main() { // Create a bar chart. barChart :=...

The Go [pcre](https://pkg.go.dev/go.arsenm.dev/pcre) package does exactly this using the [ccgo](https://gitlab.com/cznic/ccgo) C to Go translator.

The error does not seem to be specific to `setup-v`, I got the same error on a Windows runner using shell commands, not `setup-v` . Fixed by moving V build...