Kenneth

Results 38 comments of Kenneth

[Here][fork]'s an implementation. It uses two additional environment variables `DRAW_NAME` and `DRAW_EXT` which default to `/tmp/draw` and `.txt`, respectively, but uses the appropriate procedure if it is set to `.png`,...

Cheers! It's easy to do png because that's the only option exported by the package. As it stands you'd have to decode the png again to render to other formats.

There's a few ways to do this. Perhaps the easiest is to change ```json "allowed_file_types": [ "css", "js", "json", "html", "svg" ], ``` into: ```json "allowed_file_types": { "html": [".mustace"], "js":...

This issue was caused by way the `dataPath` var was set in `joe.go`. It called `os.Getenv("HOME")`, but that's not compatible with Windows. You can fix this error by replacing that...

fwiw, The latest https://github.com/github/gitignore has `jupyternotebooks`

@ElyDantas the problem is that go doesn't know where to find the dependencies. In order to fix this you would need to `go get [package url]` for each one. However,...

[Here](https://github.com/kendfss/joe)'s a fork which implements a regex-friendly search command.

Any of these should work: ```golang l := log.New(os.Stderr, "", 0) l.Println("log msg") ``` ```golang os.Stderr.WriteString("Message") ``` ```golang fmt.Fprintf(os.Stderr, "number of foo: %d", nFoo) ``` Generally `[package name].Fprint[ln or f]`...

> The workaround is to move the module somewhere else (anywhere other than `.vmodules`, then put a link in `.vmodules` pointing to the other location. Cannot link directories on MacOS....

Your gist seems to be private. Could you make it public please? According to [this](https://tldp.org/LDP/abs/html/exitcodes.html) it's fatal error signal 11. Sorry I can't be more help, that's all I know...