[go-nuts] is ECDHE-RSA-AES256-SHA384 currently supported in Golang?

2023-03-01 Thread 'Joe Wickberg' via golang-nuts
Hello, I've been trying without success to use the result of tls.LoadX509KeyPair (with the two certs in pem files) in tls.Config to perform secure request to a server using ECDHE-RSA-AES256-SHA384 cipher. is ECDHE-RSA-AES256-SHA384 currently supported in Golang? -- The information containe

[go-nuts] HandleFunc pattern question

2023-02-17 Thread Joe McGuckin
fix and once for any URL with a suffix. How do I supply a pattern to HandleFunc that will differentiate between the two? The Docs say that a pattern of '/' will match anything, So, that's not quite what I want. Thanks. Joe -- You received this message because you are subscribed

[go-nuts] Re: Short destination error with unicode.Transform

2023-01-12 Thread Joe Schafer
Update after seeing the error again. I inlined everything, creating the transformer on every invocation, to avoid any races, but the error persists. https://gist.github.com/jschaf/bd600ce71ad3798af6c160d74904ac9c I'm unable to reproduce the error locally. My current plan is to attempt to worka

[go-nuts] Short destination error with unicode.Transform

2022-07-29 Thread Joe Schafer
I had a curious bug appear in my server logs when using a unicode Transformer: transform unicode "wind-Pa\x00\x00\x00" to ascii: transform: short destination buffer Here's the simplified code that caused the error (Gist and

Re: [go-nuts] $GOPATH/go.mod exists but should not

2021-01-10 Thread 'JOE MCGUCKIN' via golang-nuts
OK, I was doing everything in the ~/go directory. I assumed that 'go get’ would create the appropriate directories under go/src. I have not followed your example yet, but I suspect that’s my problem. Thanks! Joe > On Jan 10, 2021, at 5:24 PM, Rick wrote: > > I'm not

Re: [go-nuts] map without default values

2020-08-14 Thread Joe Marty
> > > If I know that a value exists, or am fine using the zero value (again, > that's the majority of my personal use-cases for maps at least), having to > use a statement just to discard the extra bool is annoying. > Right, so this brings me back to a nice solution to both our use cases, wh

Re: [go-nuts] map without default values

2020-08-14 Thread Joe Marty
efault where appropriate, or disabling it where it's not...) On Thursday, August 13, 2020 at 2:11:47 PM UTC-5 Michael Jones wrote: > Joe, your question is perfectly answered by Axel. > > I'll just share a few (personal) Go "style" comments: > > Go likes you to

[go-nuts] map without default values

2020-08-13 Thread Joe Marty
map that returns some default value when you access an undefined key should be a special kind of map, or a special argument to initializing the map (which Ruby does allow). In Go, is there even any way to create a map that panics when you access an undefined key? -Joe -- *Connect with us he

[go-nuts] Pointers to allocated memory objects?

2020-07-17 Thread joe mcguckin
Do pointers have to point to the beginning of a heap object or can they point to the interior of the object? Thanks, Joe -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails fro

[go-nuts] Bitstring package?

2020-06-29 Thread hardconnect . joe
ets all my needs? Is there a centralized search/lookup site for GO packages? Thanks, Joe -- 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

[go-nuts] Go, git and github questions

2020-06-27 Thread Joe McGuckin
1). When I use ‘go get’ to download some source code from github, is the src directory a regular ‘git’ directory? 2).i want to download some go code from github and make a bunch of local changes. Just ‘go get’ and start editing? Nothing else I need to do? Thanks -- You received this message b

Re: [go-nuts] chan chan question

2020-06-22 Thread joe mcguckin
Thanks! >> -- 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. To view this discussion on the web visit https://groups.go

[go-nuts] chan chan question

2020-06-22 Thread joe mcguckin
I've been playing with this example code on the playground: https://play.golang.org/p/4l57Hqw9CLJ In func 'goroutine': select { case errChan := <-requestChan: How does this work? Does a channel send its name? Is 'errChan' some sort of special symbol? -- You received this mess

Re: [go-nuts] Can you have multiple go routines waiting on a socket?

2020-06-21 Thread hardconnect . joe
ng, waiting to pick up a packet. What manner of unpredictable behavior do TCP sockets exhibit of you have multiple reading processes? Does anyone know how high performance web servers deal with this? (I'm thinking of Apache/Caddy, etc) Thanks! Joe -- You received this message because yo

[go-nuts] Can you have multiple go routines waiting on a socket?

2020-06-20 Thread hardconnect . joe
Can you have multiple go routines waiting to read from a socket, or are you limited to just one? -- 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+unsu

[go-nuts] compiler RFE

2020-06-17 Thread hardconnect . joe
out the symbol. it's package, file and line # and then where it was referenced. Thanks, Joe -- 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

Re: [go-nuts] Re: GO on multi-processor systems

2020-06-11 Thread joe mcguckin
Yes, of course they have internet connections, but I don't run virtualization software. It's my understanding that most of these bugs have to do with information leaking from one process or VM to another or with a process trying to escape from it's user process into a higher privileged one. If

Re: [go-nuts] compress/bzip2:Why is there only a decompression function, no compression function.

2020-06-10 Thread &#x27;Joe Tsai' via golang-nuts
> Why has this code called Joe Tsai never been merged? I am Joe Tsai and the reason why my bzip2 encoder implementation has not been merged is because I have not had time to do it. Though I am a contributor to the standard library, curating and improving it is not my primary responsibility.

Re: [go-nuts] Re: GO on multi-processor systems

2020-06-10 Thread joe mcguckin
Actually, I'd like to turn off all the cpu bug fixes (e.g. row hammer). It's my understanding that there is a significant performance penalty and I don't share my machines with anyone else, so I'm not concerned with information leaking between processes. Joe On Wednesday

[go-nuts] GO on multi-processor systems

2020-06-10 Thread joe mcguckin
ring minds want to know... Thanks, Joe -- 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. To view this discussio

[go-nuts] Can someone please explain http.HandlerFunc() ?

2020-04-03 Thread joe mcguckin
. If notfound() is ' func notfound(w http.ResponseWriter, r *http.Request)’, what is it being converted into? Why is this needed? Thanks, Joe -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and

[go-nuts] Sync.wait()?

2020-02-10 Thread Joe McGuckin
waiting for a bunch of goroutines to exit seems like a waste of machine cycles... Joe -- 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-nut

[go-nuts] Question about 'import' statement

2020-02-03 Thread joe mcguckin
order the files appear in the import clause? Thanks, joe -- 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. To view

[go-nuts] Channels question

2019-09-29 Thread Joe McGuckin
If i have multiple goroutines listening on the same channel, then write something to the channel, will all goroutines receive the value, or only the ‘next’ available goroutine (as determined by the scheduler) Thanks, Joe -- You received this message because you are subscribed to the Google

Re: [go-nuts] HTTP:ListenAndServe questions

2019-09-23 Thread joe mcguckin
Thanks! That clears up a couple of nagging questions I had. Joe On Monday, September 23, 2019 at 7:45:16 PM UTC-7, Ben Burwell wrote: > > On Mon Sep 23, 2019 at 5:50 PM joe mcguckin wrote: > > In ListenAndServe, I see that it calls (*Server).Serve(ln), then 'go > c.serv

[go-nuts] HTTP:ListenAndServe questions

2019-09-23 Thread joe mcguckin
uest gets handled but where do subsequent requests get handled? Thanks, Joe -- 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...@goog

[go-nuts] Is there a document that explains the inner workings of net/HTTP?

2019-09-22 Thread Joe McGuckin
I’m looking through this code, trying to understand the flow through the code starting with ListenAndServe(). Besides going through the code, is there a document that provides a concise explanation of what’s going on? Thanks, Joe -- You received this message because you are subscribed to

Re: [go-nuts] Re: How to build gollvm on arm platform

2019-09-18 Thread joe mcguckin
Ian, What's the advantage of an LLVM based compiler. GC seems to be fast and makes OK code. Is the llvm toolchain that much better? joe On Wednesday, September 18, 2019 at 5:08:16 PM UTC-7, Ian Lance Taylor wrote: > > On Wed, Sep 18, 2019 at 5:02 PM joe mcguckin > > wrote:

[go-nuts] Re: x/net/Listen behaviours

2019-09-18 Thread joe mcguckin
Is listener() a blocking operation? -- 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. To view this discussion on the web v

[go-nuts] Re: How to build gollvm on arm platform

2019-09-18 Thread joe mcguckin
What's the difference between the standard GO compiler and GOLLVM? I thought there was an llvm based compiler that was abandoned? Thanks, Joe -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and

[go-nuts] Where are the GO compiler sources?

2019-09-16 Thread joe mcguckin
Also, what does the X (e.g. /X/) in the path of various runtime libraries mean? Thanks, Joe -- 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 g

[go-nuts] Re: VS + GO plugin questions

2019-09-16 Thread joe mcguckin
Why wouldn't it have an implementation? Does one have to set a path variable (or similar) to allow VS to find all the source and add-on packages? Joe On Monday, September 16, 2019 at 11:31:14 AM UTC-7, joe mcguckin wrote: > > I installed this on my Mac. For M$, it actually looks

[go-nuts] VS + GO plugin questions

2019-09-16 Thread joe mcguckin
a completely different function. Is there something special I need to do to make it resolve symbols that reside in a different package in a different directory? Btw, just hovering over the symbol seems to work ok. Thanks, Joe -- You received this message because you are subscribed to the Google Gr

[go-nuts] Is there a preferred REDIS driver or go psckage?

2019-09-09 Thread joe mcguckin
Thanks, Joe -- 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. To view this discussion on the web vi

[go-nuts] Empty cpu profile file?

2019-08-20 Thread joe mcguckin
Using Dave Cheney's profile package to figure out the execution path of a library I'm trying to understand. The application starts, (it's a server), I hit ^c after a couple of minutes, and the console says Stopping Profiling Stopping Main() catches the console interrupt: signal.Not

Re: [go-nuts] net library

2019-08-20 Thread joe mcguckin
https://golang.org/pkg/net/ -- 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. To view this discussion on the web visit ht

[go-nuts] net library

2019-08-19 Thread joe mcguckin
functions are ordered? Thanks, Joe -- 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. To view this discussion on the

[go-nuts] functions with arguments vs. function with a receiver?

2019-08-10 Thread joe mcguckin
Is there a recommended usage for either style? Take ListenPacket for example. There a (*ListenConfig).ListenPacket version and a version that takes arguments. What's the difference and what is the desired usage of either? Thanks, Joe -- You received this message because you are subsc

[go-nuts] Go coaching in palo alto, mountain view

2019-07-28 Thread joe mcguckin
I’m looking for an experienced go developer that I can rent for an hour a week to answer questions, explain thing about the go toolchain, libraries and runtime. Thanks, Joe -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubs

[go-nuts] go question about goroutines

2019-07-24 Thread joe mcguckin
#x27;s own separate environment, with separate goroutines? If I have multiple go applications running, do they share the same runtime? Or does each one have it's own runtime and set of threads, etc. Thanks, Joe -- You received this message because you are subscribed to the Google Group

[go-nuts] mutexes, etc

2019-07-17 Thread joe mcguckin
sible to access from multiple goroutines are things allocated from the heap, as you mould have identical pointer values in multiple go threads - yes? Like they say, Inquiring minds want to know... Thanks, Joe -- You received this message because you are subscribed to the Google Groups &qu

Re: [go-nuts] Re: Time Zone changes over time & the standard library

2018-09-19 Thread joe . blubaugh
On Tuesday, September 18, 2018 at 10:18:34 AM UTC-7, Ian Lance Taylor wrote: > > > In any case the answer the original question is the same: when the > timezone files update, Go will automatically adapt. Just like any > other program on a Unix system. > > Thanks for the education - I learne

[go-nuts] Time Zone changes over time & the standard library

2018-09-18 Thread joe . blubaugh
How does Go deal with time zone evolution? It seems likely that the EU will stop changing clocks twice a year, starting next year: https://www.dw.com/en/eu-to-stop-changing-the-clocks-in-2019/a-45495680 How does Go update its time handling systems to accomodate these changes? Will releases be m

Re: [go-nuts] Re: Upcoming Go protobuf release

2018-05-04 Thread &#x27;Joe Tsai' via golang-nuts
The merge has happened on pull request #591 . JT On Thu, May 3, 2018 at 4:01 PM Tharaneedharan Vilwanathan < vdhar...@gmail.com> wrote: > Hi All, > > Can someone share some details on this code merge? Has this happened? How > can I play with it? > > T

[go-nuts] Upcoming Go protobuf release

2018-01-29 Thread &#x27;Joe Tsai' via golang-nuts
(If you don't use Go protocol buffers, you can stop reading) Hello gophers, This is an announcement that we will be merging the dev branch of github.com/golang/protobuf into master on April 30th (approximately 3 months from now). This merge will intr

[go-nuts] favicon generator

2017-09-26 Thread Joe Blue
drives me nuts making icons for web, desktop and mobiles. anyone know or a generator. prefer using golang :) -- 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 gola

[go-nuts] I am Desperatly seeking a Golang Developer to work in Edinburgh

2017-09-11 Thread joe
Hello All, I do apologise for Interrupting your Technical Group with Recruitment. However, i am seeking a GoLang developer with 5 years of commercial experience. I'll attach a job spec below. If you or you know anyone who would be interested in this role, any help you could give would be much

Re: [go-nuts] 10x latency spikes during GC alloc assist phase

2017-07-27 Thread Joe Taber
ointing to the same array. > > On Jul 27, 2017, at 10:20 AM, Joe Taber > > wrote: > > Bakul, > > You wouldn't even need to change the slicing semantics like that. > > Just concatenate all slices in the map into one master slice, then take > capacity-slices[1] o

Re: [go-nuts] 10x latency spikes during GC alloc assist phase

2017-07-27 Thread Joe Taber
BZZgAGKQ-yXK-hRKBo0Kk/pub Joe On Thursday, July 27, 2017 at 11:39:41 AM UTC-5, Bakul Shah wrote: > > You're storing millions of slices. A slice is implemented as (ptr, length, > capacity). If your maps are mostly static, may be you can use one giant > array for each value typ

Re: [go-nuts] Shiny

2017-07-16 Thread Joe Blue
Hey All gophers that want a GUI toolkit... We are doing a bring up that is planned to work on all desktops, mobile and embedded. Support the following app types:: forms, 2d surface and 3d surface. Will have: Material design components, virtual keyboard, cut and paste, audio and video capture

[go-nuts] SSA gen for FPGA

2017-06-15 Thread Joe Blue
I noticed theres some nice SSA utils. https://github.com/dominikh/go-tools/tree/master/ssa I am new to SSA, and was wondering if someone can advice me a bit on if i can use SSA to codegen ?? I am writing a FPGA generator, so that you can write golang code and have it execute on an FPGA.

Re: [go-nuts] suggestions for the best way to consume Restful services

2017-04-15 Thread Joe Blue
seems grpc-gateway does not output in the go-swagger format. I wants to publish tuff this way, but also consume it back in. On Sat, Apr 15, 2017 at 4:15 PM Joe Blue wrote: > ah i did not knwo it did consumption. gotta try it. thanks !! > > On Thu, Apr 13, 2017 at 4:35 PM Konstantin

Re: [go-nuts] suggestions for the best way to consume Restful services

2017-04-15 Thread Joe Blue
ah i did not knwo it did consumption. gotta try it. thanks !! On Thu, Apr 13, 2017 at 4:35 PM Konstantin Khomoutov < flatw...@users.sourceforge.net> wrote: > On Thu, 13 Apr 2017 05:35:57 -0700 (PDT) > Joe Blue wrote: > > > I have to consume 100's of restful services

[go-nuts] suggestions for the best way to consume Restful services

2017-04-13 Thread Joe Blue
I have to consume 100's of restful services :) So the only way is going to be some sort of parse and codegen approach. Can anyone suggest any libraries or approaches please ? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from t

[go-nuts] Compute materialised views from base records for a db

2017-04-13 Thread Joe Blue
Maybe something like this: https://github.com/chrislusf/gleam/blob/master/README.md It's generic and powerful. -- 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 g

[go-nuts] Compute materialised views from base records for a db

2017-04-13 Thread Joe Blue
I am writing a grpc code generator. It generates the normal stuff plus all database crud. The DBs are only kv ones. Like boltdb and goleveldb. Also Mino fs can be used as a kv store. You model you functions in grpc with a get and set name at the start. This allows me to see what is a read and w

[go-nuts] Re: Registering a Go app as a protocol handler under Mac OS X

2017-03-08 Thread Joe Blue
the more i looked into it the more i found he differences between OS to be huge. Please let me knwo what you think ... joe On Monday, February 20, 2017 at 6:32:08 PM UTC+1, Nathan Kerr wrote: > > I managed to get this working. > > https://gist.github.co

[go-nuts] code gen off a golang template --> a data binding struct ?? Anyone found a library that can do this..

2017-01-05 Thread Joe Blue
Hey all !! I have been googling for this, and wondering if i should try and write something to specifically do this. Here is the idea... There are lots of awesome libraries out there to help me code gen from a struct to lots of other things. But i need the ability to code gen from a standard g

[go-nuts] mobile database with sync

2016-12-22 Thread Joe Blue
Hey everyone, Have been using couchbase and couchdb. It works, but its a bit lacking and hamstrung, heavy and hidden complexities. Basically it has gotten too big for be adaptive for me at least. I knwo its works for business apps with simple needs though - and thats great.. I am thinking that

Re: [go-nuts] Should go vet catch people attempting to identify errors by inspecting err.Error()?

2016-10-20 Thread &#x27;Joe Tsai' via golang-nuts
Hi Pietro, I don't think this is a vet issue since doing that pattern is not a matter of correctness, but more about style. This lint issue (https://github.com/golang/lint/issues/232) is tracking things we may want to add to golint to alert on these types of abuse. JT On Thu, Oct 20, 2016 at 11

[go-nuts] gomobile service daemon

2016-10-18 Thread Joe Blue
Hey all, gomobile when building complete apps (not binding), compiles into a NativeActivity as i understand it. Can one of these expose http services locally and run as a daemon service ? thanks in advance -- You received this message because you are subscribed to the Google Groups "golang-

Re: [go-nuts] Re: gomobile: target=ios, getting incompatible pointer types assigning to 'GoUniverseerror *' from 'goSeqErrorWrapper *' [-Wincompatible-pointer-types]

2016-09-29 Thread Joe Blue
p from gomobile uses it to automatically generate > the aar-file during builds. > > - elias > > > On Thursday, September 29, 2016 at 9:50:17 AM UTC+2, Joe Blue wrote: > >> upgrading caused a new problem on the android side. >> >&

Re: [go-nuts] Re: gomobile: target=ios, getting incompatible pointer types assigning to 'GoUniverseerror *' from 'goSeqErrorWrapper *' [-Wincompatible-pointer-types]

2016-09-29 Thread Joe Blue
i/cli.aar')) that fixed it. It seems that when you use Android Studio > New > New Module > Import .Jar / -aar package it does not put the path in the gradle file above. little things i know.. On Thu, Sep 29, 2016 at 9:21 AM Joe Blue wrote: > i upgraded: > g

Re: [go-nuts] Re: gomobile: target=ios, getting incompatible pointer types assigning to 'GoUniverseerror *' from 'goSeqErrorWrapper *' [-Wincompatible-pointer-types]

2016-09-29 Thread Joe Blue
i upgraded: gomobile version +9640137 Tue Sep 27 16:37:51 2016 + (android,ios); androidSDK=/Users/apple/Library/Android/sdk/platforms/android-24 It fixed all the errors:) thankyou On Thu, Sep 29, 2016 at 9:13 AM Joe Blue wrote: > thank Elias. Nice > > I am on this versi

Re: [go-nuts] Re: gomobile: target=ios, getting incompatible pointer types assigning to 'GoUniverseerror *' from 'goSeqErrorWrapper *' [-Wincompatible-pointer-types]

2016-09-29 Thread Joe Blue
n Wednesday, September 28, 2016 at 2:14:30 PM UTC+2, Joe Blue wrote: >> >> >> Hey all, >> >> i am compiling code across to IOS & Android. >> >> On Android things are working ok it seems. >> >> But i get this on ios with: gomobile bind --targe

[go-nuts] gomobile: target=ios, getting incompatible pointer types assigning to 'GoUniverseerror *' from 'goSeqErrorWrapper *' [-Wincompatible-pointer-types]

2016-09-28 Thread Joe Blue
n instance of its receiver type ('goSeqErrorWrapper *') command-line-arguments write Cli.framework/Versions/A/Headers/GoCli.h write Cli.framework/Versions/A/Headers/GoUniverse.h write Cli.framework/Versions/A/Headers/Cli.h write Cli.framework/Versions/A/Modules/module.modul

[go-nuts] Re: google fuscia and golang and seem to be good mates

2016-09-27 Thread Joe Blue
https://github.com/golang/go/tree/master/src/os Does not include fuchsia yet... Hmm.. On Tuesday, September 27, 2016 at 9:17:29 AM UTC+2, Joe Blue wrote: > > > https://fuchsia.googlesource.com/third_party/go/+/ad10017bebbc65f67306a3b75d7642e14e773e80/src/os/ > > > I found thi

[go-nuts] google fuscia and golang and seem to be good mates

2016-09-27 Thread Joe Blue
https://fuchsia.googlesource.com/third_party/go/+/ad10017bebbc65f67306a3b75d7642e14e773e80/src/os/ I found this as i was playing with flutter and golang. I wonder .., but have no idea what they are up to -- You received this message because you are subscribed to the Google Groups "golang

Re: [go-nuts] go get creating strange git messages in bash. Any ideas what causes this ?

2016-09-16 Thread Joe Blue
thanks, it was a dependency of the repo. Makes sense. thanks. consider closed :) On Fri, Sep 16, 2016 at 11:27 AM Wojciech S. Czarnecki wrote: > Dnia 2016-09-16, o godz. 07:48:32 > Joe Blue napisał(a): > > > thanks again. > > > > your explanation about go get hel

Re: [go-nuts] go get creating strange git messages in bash. Any ideas what causes this ?

2016-09-16 Thread Joe Blue
25519/internal/edwards25519?go-get=1 (status code 200) get "golang.org/x/crypto/ed25519/internal/edwards25519": found meta tag main.metaImport{Prefix:"golang.org/x/crypto", VCS:"git", RepoRoot:" https://go.googlesource.com/crypto"} at https://golang.org/x/crypto/e

Re: [go-nuts] go get creating strange git messages in bash. Any ideas what causes this ?

2016-09-15 Thread Joe Blue
thanks James You lost me here. go get always pulls from master though ? On Thu, Sep 15, 2016 at 1:25 PM James Bardin wrote: > You have a few repos that aren't on a branch, so git can't pull and fast > forward. You can checkout master in those repos, or delete them altogether > and the next `

[go-nuts] go get creating strange git messages in bash. Any ideas what causes this ?

2016-09-15 Thread Joe Blue
hey all, Does anyone know why "go get" causes the follow weird git messages ? This does NOT happen with al git repos i have found. a simple example: x-MacBook-Pro:pkg apple$ go get github.com/pkg/sftp x-MacBook-Pro:pkg apple$ go get -u -v github.com/pkg/sftp github.com/pkg/sftp (d

[go-nuts] Using go mobile with Cordova

2016-08-31 Thread Joe Blue
Building html5 Cordova apps is pretty easy. But I want to put a golang web server being it that is exposing a restful json API. The HTML5 GUI can then call it. I am using the recent json patch functionality to allow the GUI layer to constantly update the db ( boltdb) with changes. What are my o

[go-nuts] Re: Go package management committee

2016-08-29 Thread Joe Blue
this looks great. in my dealing with different developers from non golang community, the package management has been a concern for them. for me, its no too bad once you find on the many, which can be mighty confusing for the new comer to golang. So, i really hope this committee ends up with th

Re: [go-nuts] Re: ANNOUNCE: renderview

2016-08-29 Thread Joe Blue
Hey everyone, That's great news. So trying this out i got stopped... seems i need gtk on OSX. i got lots trying to find out how to cleanly get gtk working on OSX. Their docs did not make sense to me. http://www.gtk.org/download/macos.php raised an issue. https://github.com/TheGrum/renderview/iss

[go-nuts] gomobile. Not able to build IOS apps.

2016-08-24 Thread Joe Blue
hey everyone, The problem is that i cant build a simple gomobile app for IOS. I can build a normal (swift) IOS project in the Simulator & IPhone. I can build the golang app for Android. The public git repo of the Test Harness project is here: https://bitbucket.org/gedw99/md-mobile-x Its ju

Re: [go-nuts] ListenAndServe without alert

2016-08-24 Thread Joe Blue
Got it. thanks On Thu, Aug 25, 2016 at 5:03 AM Matt Harden wrote: > I don't think signing has anything to do with Go itself. You sign the > binary executable file that your tool generates, regardless of the language > it was written in. > > On Wed, Aug 24, 2016 at 2:1

Re: [go-nuts] ListenAndServe without alert

2016-08-24 Thread Joe Blue
are a fair few libs out there now. So, not sure how to do signing using golang. If you know yell and i will try it. thanks ... On Wed, Aug 24, 2016 at 10:20 AM Jakob Borg wrote: > 2016-08-24 9:59 GMT+02:00 Joe Blue : > > Would be curious to know what others think. Maybe there is still

Re: [go-nuts] ListenAndServe without alert

2016-08-24 Thread Joe Blue
is still a way to make it never show the alert on Windows thanks On Wednesday, August 24, 2016 at 7:30:05 AM UTC+2, Joe Blue wrote: > > The localhost:8080 fixed it. No alert. > > Thanks :) > > On Wed, 24 Aug 2016, 01:33 Matt Harden, wrote: > >> Is this on Wi

Re: [go-nuts] ListenAndServe without alert

2016-08-23 Thread Joe Blue
s them from anywhere on the network. This change might also make your > protection software happy, stopping the alert. > > On Tue, Aug 23, 2016 at 2:44 PM Joe Blue wrote: > >> Hey everyone >> >> I am building a Desktop application with golang. >> The Frontend is E

[go-nuts] ListenAndServe without alert

2016-08-23 Thread Joe Blue
Hey everyone I am building a Desktop application with golang. The Frontend is Electron, and the Backend if Golang. They talk over http. I have managed to combine the two into a single compile & run, but i need the backend server to NOT alert when it starts at the "http.ListenAndServe(":8080", n

[go-nuts] golang winodws installer source

2016-08-22 Thread Joe Blue
anyone know where the source is that the go team use to make their windows and OSX installers ? I figure i might be able to use it for my own apps. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receivin

Re: [go-nuts] Shiny

2016-08-19 Thread Joe Blue
Danial, Piano is really impressive. The Material touch effects are very snappy too !! Boxes too. With both Piano and Boxes running Android they are still snappy in GenyMotion and on real Android device. Its allot of fun playing around with different aspects of the code. Thanks for the update abou

Re: [go-nuts] Shiny

2016-08-19 Thread Joe Blue
fair enough :) On Fri, Aug 19, 2016 at 2:46 AM Nigel Tao wrote: > On Thu, Aug 18, 2016 at 6:12 PM, Joe Blue wrote: > > Do you want anyone to help on the material design "widgets" yet ? > > It's great that there's community interest in Shiny, but as I said, &

Re: [go-nuts] Shiny

2016-08-18 Thread Joe Blue
Howard, Your summary is excellent. I went through all the same repo's and came to the same conclusions. Thanks for summarising the state if play. There is also some very impressive work by Skinner over at: https://github.com/dskinner/material The branch called mediansdf has impressive font impr

Re: [go-nuts] Shiny

2016-08-18 Thread Joe Blue
Do you want anyone to help on the material design "widgets" yet ? On Thu, Aug 18, 2016 at 8:26 AM Nigel Tao wrote: > On Wed, Aug 17, 2016 at 11:11 PM, Seb Binet wrote: > > that said, I think it is quite clear that shiny is not yet ready for > prime > > time, for all the use cases of a complete

Re: [go-nuts] Shiny

2016-08-17 Thread Joe Blue
imple implementation of material design. The only other thing is a markdown editor and viewer. Responsive reflow ? Do it by hand for now will do. On Wed, 17 Aug 2016, 15:11 Seb Binet, wrote: > On Wed, Aug 17, 2016 at 2:38 PM, Joe Blue wrote: > >> Thanks. I looked there before. &

Re: [go-nuts] Shiny

2016-08-17 Thread Joe Blue
on-internal importers seems to suggest that there's not many people > using it so far, but it's also still under x/exp, so that's not > entirely surprising. > > - Dave > > On Tue, Aug 16, 2016 at 7:35 AM, Joe Blue wrote: > > Shiny looks OK for building des

[go-nuts] Shiny

2016-08-16 Thread Joe Blue
Shiny looks OK for building desktop apps. A tone built anything useful with it ? -- 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...@googlegr

[go-nuts] xDT encoder / decoder

2016-08-13 Thread Joe Blue
There is a full implementation in js, so there is a starting point. I can also provide test data of course. https://www.npmjs.com/package/xdt -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emai

[go-nuts] xDT encoder / decoder

2016-08-13 Thread Joe Blue
https://en.m.wikipedia.org/wiki/XDT xDT is a format used in the German health system for data transfer. There are some Java open source e implementations but I need a golang one. If anyone knows of this or have an interest in writing this please contact me. Happy to pay someone to do this for m

[go-nuts] Re: [ANN] UniDoc PDF Toolkit for golang

2016-08-11 Thread Joe Blue
Hey Alf Does it have the ability to convert PDF to HTML5 (single page) ? thanks Joe On Saturday, July 16, 2016 at 5:22:00 PM UTC+2, ah...@owlglobal.io wrote: > > Hi all. > > Today we are releasing UniDoc version 1.0, a comprehensive open source PDF > toolkit written in Go.

[go-nuts] Re: Looking for part-time or full time golang programmers

2016-08-09 Thread Joe Blue
I am interested. Have been doing golang for maybe 2 years and used to work for pharmaceuticals and medical industry, which might help. I am in Germany, not shanghai. joe AT gmail DOT com cheers Joe On Monday, May 27, 2013 at 10:55:28 AM UTC+2, Vikrant Rathore wrote: > > Dear All, &g

[go-nuts] create dmg

2016-07-30 Thread Joe Blue
recommended way for a gopher to make a dmg, so my users can install my golang app ? i searched for a pure golang solution, but go nada. thanks joe -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this grou