[go-nuts] Is it possible to read big xml/stream request partly using gin/fasthttp webserver

2018-12-28 Thread desaiabhijit
Is there any way to read stream of big request as or when web server receives it partly rather than ioutil.ReadAll(c.Request.Body) or GetRawData of Gin server Please help Thanks, Abhijit -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To un

[go-nuts] Re: WebAssembly: Auto-generating Go bindings for javascript/DOM from the Web Standards.

2018-12-28 Thread Agniva De Sarker
Makes sense. This has been brought up before in the #webassembly channel. Don't remember what the conclusion was. But please feel free to drop in and throw some ideas around. Demand for a proper DOM API has been growing. And I think auto-generating from WebIDL files are a great way to get start

Re: [go-nuts] Forking/transfering a repository and import paths

2018-12-28 Thread Nathan Fisher
TLDR > Is it possible to fork a repo and change the import path of the repository? Not in one step with the github “click to fork”. You need to do one of the following: 1. Create a new empty remote repo, remap imports, and push to the new remote. 2. Fork, update imports, push. 3. Assuming vanity

Re: [go-nuts] Forking/transfering a repository and import paths

2018-12-28 Thread Sotirios Mantziaris
If i understand it correctly the proposed solutions does not solve the problem of forking repos. The ideal solution would be to have a import path agnostic of the repo location so that a fork could be up and downstream compatible. On Thursday, December 13, 2018 at 12:32:11 AM UTC+2, Ian Lance Ta

[go-nuts] WebAssembly: Auto-generating Go bindings for javascript/DOM from the Web Standards.

2018-12-28 Thread Chris FractalBach
This is in the context of compiling Go to webassembly that will be used with javascript. *Currently:* We have`syscall/js` which has stuff like this: ```go js.Global().Get("document").Call("createElement", "div") ``` What it could be: ```go js.document.createElement("div") ``` *Why?* This w

[go-nuts] Re: WebP encoder

2018-12-28 Thread Jeffrey
any update? need pure go implement for webp encoder indeed > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more