[go-nuts] Re: pkg-config sqlite3, Go sqlite3 code stop working after Go upgrade

2017-12-16 Thread Miki Tebeka
For some reason pkg-config doesn't know about sqlite3. It can be that sqlite3 is not installed (or not installed properly). pkg-config looks for sqlite3.pc in some pre-defined libraries (/usr/share/pkgconfig /usr/lib/pkgconfig ...) and as the error message says - you can added other

[go-nuts] pkg-config sqlite3, Go sqlite3 code stop working after Go upgrade

2017-12-16 Thread Tong Sun
I found that all my Go sqlite3 code no longer working for me now. For example, here is a simple Go sqlite3 code, go-sqlite3-test.go , that's been working fine for years. But with my current go1.9.2, it is

Re: [go-nuts] How to get nice html from godoc?

2017-12-16 Thread Justin Israel
On Sun, Dec 17, 2017 at 5:47 AM wrote: > I suspected it was something like that. I can muddle through, but HTML, > and all that is not really my wheelhouse. Can you give me any more details? > > >- Where can I find the correct "bundled css/js" files? > >

[go-nuts] Re: beginner : best way to learn go

2017-12-16 Thread Terry McKenna
The question is "what's the best way to learn Go". On Monday, January 19, 2015 at 1:57:56 PM UTC-5, akwillis wrote: > > I'd suggest trying out rust first. A true open source project. > > On Saturday, January 17, 2015 at 4:15:08 AM UTC-5, Roelof Wobben wrote: >> >> Hello, >> >> I like to learn Go

[go-nuts] [Looking for reviews] ff - server side framework

2017-12-16 Thread pmlopes
Cool, what about a crazy idea here. Try to implement a cluster manager in go. In this case you could use java and vertx where it makes sense and go where it makes sense. Since the cluster managers are the base for the eventbus it could work. -- You received this message because you are

[go-nuts] Re: beginner : best way to learn go

2017-12-16 Thread iam
This could help - https://hackr.io/tutorials/learn-golang On Saturday, January 17, 2015 at 2:45:08 PM UTC+5:30, Roelof Wobben wrote: > > Hello, > > I like to learn Go as a absolute beginner. > What is the best way to learn it. I like to have many exercises because > that is the best way I

[go-nuts] Re: Toward a capabilities-based security model for Golang

2017-12-16 Thread Jae Kwon
I've posted to here: https://github.com/golang/go/issues/23157 I will post your question and a response there. -- 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

Re: [go-nuts] How to get nice html from godoc?

2017-12-16 Thread jake6502
I suspected it was something like that. I can muddle through, but HTML, and all that is not really my wheelhouse. Can you give me any more details? - Where can I find the correct "bundled css/js" files? - Where do I put them relative to the HTML file? - Do I need to modify the HTML

[go-nuts] Re: [Looking for reviews] ff - server side framework

2017-12-16 Thread matthewjuran
Hi Michal, here's some comments: Why not a break here after true is set? https://github.com/mkorman9/ff/blob/release/clustering.go#L208 I had to resort to grep to find where Parameters was defined (context.go). Instead of: type RemoteEventEndpoint struct { clusterMember *ClusterMember

[go-nuts] Re: Toward a capabilities-based security model for Golang

2017-12-16 Thread matthewjuran
My understanding of this model is you have a group of processes interacting with each other, each with a set of capabilities. Some of these processes load untrusted plugins into their memory space and make calls into them. There's the problem of the plugin reading the key and using it for

Re: [go-nuts] Re: go and cygwin!

2017-12-16 Thread Frank Davidson
Created issue #23155 https://github.com/golang/go/issues/23155 -- 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

Re: [go-nuts] Re: go and cygwin!

2017-12-16 Thread Frank Davidson
Can you install ancillary programs like mosh and openSSH, etc, on Git Bash? I’ll open an issue, but I would think that the Go team probably doesn’t want to be chasing around every possible shell/emulator and not sure I’m a good enough programmer to create a decent pull request! Frank On Sat, Dec

[go-nuts] Re: go and cygwin!

2017-12-16 Thread Mandolyte
If not wedded to cigwin try git bash. I liked it much better personally and it gave most of the same benefits -- 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] Re: Having a Model Package

2017-12-16 Thread Uli Kunitz
> > I've been reading the other day: "having a model package, is considered a > code smell, in Go". > > 1 - Why? > Assuming you are following the Model-View-Controller you will have to export your full data model in model, so that controller and view can have access to it. But then every

Re: [go-nuts] Go Compiler How Work?!

2017-12-16 Thread Volker Dobler
On Saturday, 16 December 2017 10:21:15 UTC+1, Compiler wrote: > > Tanks you. > > ==> The technique of generating an object file directly from the compiler > Without Generate ASM Code does not have a name. > > + May be show me a sample/source/tutorial of generate object file Using C?! > This is

Re: [go-nuts] Go Compiler How Work?!

2017-12-16 Thread Compiler
Tanks you. ==> The technique of generating an object file directly from the compiler Without Generate ASM Code does not have a name. + May be show me a sample/source/tutorial of generate object file Using C?! On Saturday, December 16, 2017 at 5:03:45 AM UTC+3:30, Ian Lance Taylor wrote: > >