Tagged Questions

Go is a general-purpose language designed with systems programming in mind1, created by Google employees. It is aimed to be efficient both for development and execution. Targeted at server, web, and systems programming, with its growing libraries it can also be used for developing desktop ...

learn more… | top users | synonyms (2)

45
votes
26answers
8k views

Go examples and idioms [closed]

There's not a lot of Go code to learn the language from, and I'm sure I'm not the only one experimenting with it. So, if you found out something interesting about the language, please post an example ...
22
votes
6answers
658 views

Algorithm for finding the color between two others - in the colorspace of painted colors

When mixing blue and yellow paint, the result is some sort of green. I have two rgb colors: blue = (0, 0, 255) and yellow = (255, 255, 0) What is the algorithm for finding the rgb color that is ...
5
votes
5answers
1k views

Is Go subject to the same subtle memory-leaks that Java is?

EDIT Most comments and answer here are totally wrong and offtopic. There are definitely memory leaks in Java. The leaks I'm talking about are nicely summarized here (+200 upvotes question, answer ...
4
votes
1answer
729 views

What is Go used for?

I am interested in new language from Google, Go. I have checked the materials in the golang.com. And now want to use Go in practice. Please share any ideas whats for you are using Go. Or are there any ...
1
vote
3answers
200 views

Mutual Exclusion of Concurrent Go Routine's

In my code there are three concurrent routines. I try to give a brief overview of my code, Routine 1 { do something *Send int to Routine 2 Send int to Routine 3 Print Something Print Something* do ...
84
votes
21answers
5k views

Is assert evil?

The Go language creators write: Go doesn't provide assertions. They are undeniably convenient, but our experience has been that programmers use them as a crutch to avoid thinking about proper ...
54
votes
11answers
18k views

Can Go compiler be installed on Windows?

I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Windows, or is it ...
11
votes
10answers
3k views

What do you use to write Go [closed]

I know its a bit too early, but I've been trying out Go (Google's Programming Language) and its kindof annoying to write code in gedit. So, my question: What do you use to experiment with Go?
15
votes
5answers
2k views

Current Go Language Projects

As many of you might know Google just released it's "Go Language" (http://golang.org) as an experimental language. Does anyone know of any projects that people have been "experimenting" with? Just ...
1
vote
2answers
358 views

web.go install error

I am trying to install web.go using goinstall github.com/hoisie/web.go, and I keep getting an error about the path. goinstall: github.com/hoisie/web.go: git: no such file or directory goinstall is ...
19
votes
7answers
3k views

How to use C++ in Go?

In the new Go language, how do I call C++ code? In other words, how can I wrap my C++ classes and use them in Go?
10
votes
1answer
1k views

Interface 'go' with C libraries

How does one interface a 'go' program with a C library? I've been browsing go's source code but I still didn't figured it out. If someone has already done so, could you share, please? UPDATED: ...
26
votes
9answers
2k views

Why does Go compile quickly?

I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly ...
8
votes
2answers
341 views

Mixing python with a faster language for optimization in GAE

I'm a newbie in the Python and GAE world and I have a question. With Python the normal approach is to only optimize the code when needed, fixing the more urgent bottlenecks. And one of the ways to ...
7
votes
4answers
558 views

C++ libraries that implement Go goroutines or Go channels?

I'm working with a medium-sized C++ code base which is currently entirely single-threaded. The time has come, however, to pursue concurrency and parallelism for performance gains. I'm very interested ...
8
votes
1answer
147 views

Is it possible to make extensions to python/php/perl with Go?

I've heard Go is like C with channels and a lot of conveniences. I do very little C, but when I do it's to make small extensions to other languages. Can Go be a safe way to create extensions in other ...
1
vote
2answers
121 views

How to convert a string to a byte array which is compiled with a given charset in Go?

In java, we can use the method of String : byte[] getBytes(Charset charset) . This method Encodes a String into a sequence of bytes using the given charset, storing the result into a new byte array. ...
1
vote
2answers
77 views

Whitelist tags exempt from escaping using Go's html/template

Pass a []byte into a template as the body of a message post on a forum-style web app. In the template, call a method to convert to string and along the way, switch out all newlines for line breaks: ...
1
vote
1answer
116 views

Google App Engine Go-Python/Java hybrid application

Can one write a hybrid Go-Python/Java application and run it on Google App Engine as one application, or do they need to be split into two apps and communicate with each other through HTTP calls? Is ...
1
vote
1answer
105 views

Printing Issue with Concurrent Routines in Google's Go

I have three concurrent routines like this, func Routine1() { Print (value a, value b, value c) Print (value a, value b, value c) Print (value a, value b, value c) } func Routine2() { Print (value ...
1
vote
2answers
106 views

How do I retrieve file data over a socket in Go?

I've got two small programs communicating nicely over a socket where the receiving side is in Go. Everything works peachy when my messages are tiny enough to fit in the 1024 byte buffer and can be ...
1
vote
2answers
240 views

Any type and implementing generic list in go programming language

I'm trying a little of go programming language. I'm a excited about the simplicity of the if, but after playing with it I meet some troubles. I know that go doesn't support generics and ...
1
vote
4answers
178 views

Why can't I put the opening braces on the next line?

Encountered a strange error when I tried to compile following code: package main import fmt "fmt" func main() { var arr [3]int for i:=0; i<3; i++ { ...
1
vote
2answers
262 views

Import web.go error after using goinstall

With halfdans advice, I was successfully able to use goinstall github.com/hoisie/web.go without any errors after installing git first. However, now when I try to compile the sample code given, go is ...
0
votes
3answers
666 views

Why does Go not seem to recognize size_t in a C header file?

I am trying to write a go library that will act as a front-end for a C library. If one of my C structures contains a size_t, I get compilation errors. AFAIK size_t is a built-in C type, so why ...
34
votes
7answers
9k views

GO programming language book or tutorial

Is there any good and big pdf tutorial or book for GO programming language ?
28
votes
10answers
2k views

Concurrency: how does shared memory vs message passing handle large data structures?

In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing. This approach obviously alleviates the need for complex locks because there is no shared ...
29
votes
6answers
7k views

What kind of solutions is Golang (Google Go) designed for?

Seems like Go is designed as a replacement for problems you previously would have solved with C++. Is this an accurate statement? What kind of solutions is Golang (Google Go) designed for?
23
votes
1answer
1k views

Call go functions from C

I am trying to create a static object written in Go to interface with a C program (say, a kernel module or something). I have found documentation on calling C functions from Go, but I haven't found ...
57
votes
14answers
10k views

Is there an IDE for Go?

I know that Go is new and experimental, so I don't think that there already is one. But does anyone know one being worked on? I know that syntax highlighting is available for emacs, vim and xcode. But ...
19
votes
5answers
2k views

What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?

So, the big buzz in the last few days is Go, the new language from Google. Assuming you're all obsessive programming language geeks like me, you've all downloaded it, built it, and run your "Hello, ...
7
votes
5answers
860 views

How to return a function in scala

How can I return a function side-effecting lexical closure1 in Scala? For instance, I was looking at this code sample in Go: ... // fib returns a function that returns // successive Fibonacci ...
6
votes
2answers
271 views

Implementing an overflow-free system stack in ANSI C

I was just reading about how Google Go makes each thread with a reduced stack size by default, and then links to new stacks if an overflow would occur ( see page 16 in here ). I was wondering the best ...
26
votes
3answers
4k views

Emacs lisp mode for Go?

Is there a suitable Emacs lisp mode for Go? C mode doesn't work without semicolons. The best I have found is the JavaScript mode by Karl Landstrom, since JavaScript also doesn't require semicolons.
20
votes
6answers
3k views

What are the advantages and disadvantages of Go programming language?

Not so long ago Google came out with this new programming language, which was said to be fast as C and intuitive and simple as python. I will not judge this assertions, but instead ask you: What do ...
14
votes
1answer
1k views

How do I call C from Go using the “foreign function interface”

How do I use Go's "foreign function interface" to call out to a C function? This interface is mentioned on the FAQ, but I cannot see it mentioned elsewhere in the docs.
10
votes
5answers
2k views

Haskell's TypeClasses and Go's Interfaces

What are the similarities and the differences between Haskell's TypeClasses and Go's Interfaces? What are the relative merits / demerits of the two approaches?
6
votes
11answers
2k views

How to reverse a string in Go?

How can we reverse a simple string in Go? A Perl-like 'reverse' function does not seem to exist there.
5
votes
2answers
295 views

Looking for a C or C++ library providing a functionality similar to Google Go's channels

...for use in a multithreaded network server. I want to pass data around between multiple threads. Currently I'm using sockets, with the master thread blocking on select() and workers blocking on ...
30
votes
3answers
6k views

Why is go language so slow?

As we can see from The Computer Language Benchmarks Game: go is on average 10x slower than C go is 3x slower than Java !? How can this be, bearing in mind that go compiler produces native code ...
10
votes
4answers
363 views

Go code contribution: license and patent implications?

I've been reviewing the contributions documentation for Google new language, and was curious about the idea of contributing a new package. It states that this should be included at the top of ...
9
votes
4answers
1k views

what's the state of go language IDE support? [closed]

Can anyone share his experience working with go in one of the three java IDE giants -I mean eclipse, netbeans and JIdea -- there's a similar question here Is there an IDE for Go? but I think it's a ...
9
votes
4answers
2k views

Where can I find a Vim syntax file for the go language?

Has anyone created a vim syntax file for the go language?
2
votes
1answer
131 views

How to assign string to bytes array

I want to assign string to bytes array: var arr [20]byte str := "abc" for k, v := range []byte(str) { arr[k] = byte(v) } Have another method?
1
vote
2answers
104 views

undefined vector.New

From this question How do I use a (generic) vector in go? I tried to create a new vector but the compiler says it is undefined: $ 6g -V 6g version release.r60.3 9516 $ cat > vectest.go ...
1
vote
2answers
346 views

Go Channels in Ruby

In the Go programming language, you can send Messages around using a construct called "Channels". http://golang.org/doc/effective_go.html#channels I would love to use something like that in Ruby, ...
11
votes
0answers
299 views

DLL-linking via Windows cgo->gcc->ld gives “undefined-reference-to-(function)” errors

(Very detailed problem report -- tl;dr at the bottom!) I really prefer GLFW to Glut and want to get its Golang binding working under Windows 64-bit with Go 1.0.1 64-bit. Under Linux, the binding it ...
6
votes
3answers
5k views

golang: read text file into string array (and write)

The ability to read (and write) a text file into and out of a string array is I believe a fairly common requirement. It is also quite useful when starting with a language removing the need initially ...
5
votes
3answers
258 views

A better concurrent prime number sieve in go

After looking at the prime number sieve code, and seeing how the concurrent structure works, I found it to be extremely elegant. However, it's also extremely inefficient, and IIRC, equivalent to the ...
5
votes
4answers
520 views

What build systems work with Go?

I know that the Go source comes with a Makefile (It's in $GOROOT/doc) which I am using right now, but have other popular build systems added support for Go yet? Has anyone written build scripts for ...

1 2 3