[go-nuts] Go Boring release schedule

2021-08-27 Thread Jonathan Yu
Hey there, Go 1.17 was released last week (Aug 16th), but it appears the corresponding build of Go + Boring Crypto is not available yet (checking the Google Cloud Storage bucket as well as Docker Hub). Does anyone know if these releases typically track the main upstream Go closely, or if releases

Re: [go-nuts] Re: Is it possible to unmarshall Json by selecting the struct from a field in the Json?

2018-03-28 Thread Jonathan Yu
x27;]::jsonDeserialize($decoded); >>> >>> >>> assert($obj->label == "Lorem"); >>> >>> So the above really translates to calling the static method on a >>> concrete class, like this: >>> >>> $obj = Domain\\Model\\M

Re: [go-nuts] How to read a JSON Response body

2018-03-20 Thread Jonathan Yu
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 options, visit https://groups.google.co

Re: [go-nuts] Go Programming Language Course

2018-02-21 Thread Jonathan Yu
> 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 options, visit https://groups.g

Re: [go-nuts] can someone create an example for me of a webpage that can run a bash command ?

2018-02-14 Thread Jonathan Yu
subscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jawnsy>, Twitter <https://twitter.com/jawnsy>, GitHub <https://github.com/jawnsy>, Facebook <https://facebook.com/jawnsy> *“E

Re: [go-nuts] Selenium webdriver based testing in Go

2017-12-31 Thread Jonathan Yu
I've had a lot of success with agouti, though I don't know enough about Selenium to be sure that it's what you're asking for. I used it to do browser testing of a rich internet application, with chrome driver. On Dec 31, 2017 14:56, "Tong Sun" wrote: > Hi, > > Anyone here ever looked into doing

Re: [go-nuts] how to do numpy.fromstring in Go ?

2017-12-06 Thread Jonathan Yu
le 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 options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn &

Re: [go-nuts] Re: invitation to gophers.slack.com

2017-11-17 Thread Jonathan Yu
gle 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 options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn <

Re: [go-nuts] Golang performance benchmarks on arm64 (Qualcomm Centriq 2400)

2017-11-10 Thread Jonathan Yu
t certainly Centriq is fascinating) despite being opened up (OpenPOWER). I'm not close enough to either of these communities to speculate as to why this is so. -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jawnsy>, Twitter <https://twitter.com/jawnsy>, Git

Re: [go-nuts] http server request queue

2017-10-30 Thread Jonathan Yu
of work? > > > > -- > 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 options,

Re: [go-nuts] Handle sub domains in go.

2017-10-27 Thread Jonathan Yu
or me. > > -- > 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 options, visit https://groups.g

Re: [go-nuts] New fully featured bash completion for go - written in go

2017-05-13 Thread Jonathan Yu
gt; 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 options, visit https://groups.google.com/d

Re: [go-nuts] How to get size of http request/stream size transferred over wire?

2017-05-13 Thread Jonathan Yu
; To unsubscribe from this group and stop receiving emails from it, send an > email to golang-nuts+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jawnsy>, Twitter <http

Re: [go-nuts] gomock - why do recorder methods use interface{}?

2017-04-06 Thread Jonathan Yu
Thanks so much for your answer, Julian, that makes total sense! I guess the examples I've seen so far are missing these more "advanced" use cases :) Appreciate the quick and informative reply. On Wed, Apr 5, 2017 at 4:13 PM, Julian Phillips wrote: > On 05/04/2017 18:06,

[go-nuts] gomock - why do recorder methods use interface{}?

2017-04-05 Thread Jonathan Yu
od must be called with a string parameter, right? Jonathan -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jawnsy>, Twitter <https://twitter.com/jawnsy>, GitHub <https://github.com/jawnsy>, Facebook <https://facebook.com/jawnsy> *“Ever tried. Ever failed.

Re: [go-nuts] Looking for free, part-time, remote internship.

2017-02-12 Thread Jonathan Yu
> 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 options, visit https://groups.

[go-nuts] Building with "go install" vs "go build"

2017-02-09 Thread Jonathan Yu
Hello Gophers! There's a fair amount of documentation available[0] about how "go install" works, particularly in contrast to "go build,"[1,2] but not a lot about which one is more idiomatic/preferred. Using the standard toolchain, it seems there's three ways to build your applications: - go buil

Re: [go-nuts] Re: Basic Web Authentication Question

2017-01-04 Thread Jonathan Yu
On Wed, Jan 4, 2017, 01:28 Henry wrote: > > > On Wednesday, January 4, 2017 at 1:40:40 PM UTC+7, Jonathan Yu wrote: > > > > While I agree that client-side hashing is overkill, I think the threat > model it's intended to protect against is a compromised *server*, s

Re: [go-nuts] Re: Basic Web Authentication Question

2017-01-03 Thread Jonathan Yu
" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to golang-nuts+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jaw

Re: [go-nuts] Hosting godoc internally for private git server

2016-10-25 Thread Jonathan Yu
> "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 options, visit https://groups.google.com/d/optout. >> >> --

Re: [go-nuts] Re: Suggestions for parsing Forwarded HTTP Header (RFC 7239)

2016-10-12 Thread Jonathan Yu
is a better fit for a third-party package? >> >> Cheers! >> -Tim >> >> [1] https://tools.ietf.org/html/rfc7239 >> [2] https://golang.org/pkg/mime/#ParseMediaType >> > -- > You received this message because you are subscribed to the Google Groups > &quo

Re: [go-nuts] Determine DNS Server Responding

2016-10-11 Thread Jonathan Yu
On Tue, Oct 11, 2016 at 3:56 PM, wrote: > I'm new to Go so please forgive the newbie question. > > Is there a way with one of the Go libraries which will indicate which name > server is responding to a host lookup request ? > > I have looked at the dns and net libraries but I have not found a fun

Re: [go-nuts] Failed to cross compile go program

2016-10-09 Thread Jonathan Yu
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 options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawns

Re: [go-nuts] Listen to and redirect outgoing Http/Https requests

2016-10-07 Thread Jonathan Yu
mail to golang-nuts+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jonathan Yu / *@jawnsy* on LinkedIn <https://linkedin.com/in/jawnsy>, Twitter <https://twitter.com/jawnsy>, GitHub <https://github.com/jawnsy>, Faceboo

[go-nuts] Best way to extract hostname from "host" or "host:port" style?

2016-09-12 Thread Jonathan Yu
Hi, I tried searching Google, but didn't find anything. I'm probably just missing something obvious here, but I'm relatively new to Go - please bear with me :) In URLs (of the net/url variety), the Host field may be either a hostname or host/port combination. In the combined host/port case, w