Christiaan B van Zyl
Christiaan B van Zyl
Fixing this probably requires changing `int` to `int64` in a couple of places?
The **server** could implement a handler as below ``` func update(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, filepath.Join("path", "to", "myprogram.exe")) } ... http.HandleFunc("/update", update) ``` Given the `doUpdate` func as...
To search email synced with `gmvault` a workaround can be to `gmvault export` to maildir format and then use [mu](http://manpages.ubuntu.com/manpages/wily/man1/mu-easy.1.html) to search for email or extract attachments. That's what I've...
Why does the travis check fail? I've ran the tests myself for Go:1.11 with no issues
I managed to convert NPM package for sprinft.js to an [ESM](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) using [esh.sh](https://esm.sh) From the [deno docs](https://deno.com/[email protected]/npm_nodejs/cdns#esmsh): *"esm.sh is a CDN that was specifically designed for Deno... uses [esbuild](https://esbuild.github.io/) to...
[xo](https://github.com/xo/xo) supports SQL Server, and it seems xo is [compatible with sqlx if the templates are tweaked](https://github.com/xo/xo/issues/155)
As per the README: *"Only fields with a valid json tag will be converted to TypeScript models"* So you have to declare the list type like this ``` type GetDeviceListingsResponse...
[Type Mappings](https://www.jetbrains.com/help/go/integration-with-go-templates.html) like Goland would be a cool feature, possibly makes sense in the context of this plugin? *"To specify mapping of a type between a Go template and an...