Re: [go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Alex Rice

On Saturday, August 25, 2018 at 2:19:30 PM UTC-6, Alex Rice wrote:
 

> https://blog.jetbrains.com/go/2018/08/24/goland-2018-2-2-is-here/
>
> Curious if anyone else is having success.
>
>
Oh, I see- in GoLand the New Project dialog has 3 choices: Go, Go Module 
(vgo), or Dep.

I was trying to use an existing Project.

 

-- 
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/optout.


Re: [go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Alex Rice


On Saturday, August 25, 2018 at 3:45:13 AM UTC-6, Aldrin Leal wrote:
>
> Goland has been supporting it for a while:
>
> https://blog.jetbrains.com/go/2018/05/18/vgo-integration-support/
>
>
> Isn't "vgo"  the older (pre- go 1.11) variant? 

I was just trying out GoLand with Go 1.11 and ran into some trouble getting 
it to use "go mod" files, even though support is mentioned in the release 
notes:

https://blog.jetbrains.com/go/2018/08/24/goland-2018-2-2-is-here/

Curious if anyone else is having success.

-- 
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/optout.


[go-nuts] Re: My views on Go and why it's better than Scripting

2018-03-03 Thread Alex Rice
Hi, thanks for sharing. I am not convinced about the reasons stated why Go 
is better than the other languages you mentioned. I am just learning Go, 
but I have 20 years of experience as a professional developer using various 
languages. I think students, beginners and professionals should use Go 
because of it's developer-first attitude. Ergonomics, I've heard it said.

* productivity
* enjoyment
* nice workflow and development tools
* unix philosophy of small chain-able tools

The lissajous example in the the gopl.io [1] book is a great example. In 
~50 lines of code, there is a generator of animated gifs of harmonic motion 
curves, which it serves up on http, or write to standard out. How many 
lines of code would the same thing be in C, or in Python? I suspect more 
LOC, and I suspect 3rd party libraries would be involved.

1. https://github.com/adonovan/gopl.io/blob/master/ch1/lissajous/main.go

Cheers,
Alex

-- 
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/optout.


[go-nuts] Re: database/sql : i have a need to use postgresql numeric column data type for currency / money value processing

2018-01-07 Thread Alex Rice
An interesting question (I am just learning Go).
Anyways I found this- maybe relevant for you:

https://github.com/shopspring/decimal


-- 
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/optout.