Go is a general-purpose programming language designed by Google.

learn more… | top users | synonyms (2)

0
votes
0answers
4 views

panic: open templates/base.html: The system cannot find the path specified

With shadynasty.biz/blog/2012/07/30/quick-and-clean-in-go link I am Trying to Create template in go programming. My project Structure is created with the Go-SDK google app engine. ...
0
votes
0answers
10 views

How to Create Form Template in Go Programming?

How to Create Login Form (username and Password) Template in Go Programming?
1
vote
1answer
21 views

GAE Go user service login url contains %A(MISSING)

So this one's been puzzling me for a little while! Here's some code in the console: func GetLoginLinks(w *http.ResponseWriter, r *http.Request) (string, error) { c := appengine.NewContext(r) ...
2
votes
3answers
34 views

how to get json response in golang

I'm trying read json data from web, but that code returns empty result. i'm not sure what i'm doing wrong here. package main import "os" import "fmt" import "net/http" import ...
0
votes
0answers
15 views

oauth2 website on GAE

I am using https://code.google.com/p/goauth2/source/browse/oauth/example/oauthreq.go to try to access an admin only (via app.yaml) url on my site: go run main.go -code CODE runs against the Google ...
0
votes
3answers
65 views

Why does Golang enforce curly bracket to not be on the next line?

correct: if(true) { } incorrect: if(true) { } Why is this style enforced, does it have something to do with the language spec, or is it just because they prefer one style over another ?
0
votes
1answer
24 views

GDB can't debug the go program within cgo code

example files src/test.go package main import ( . "clib" ) func main() { a := "123"; b := "456"; c := "789"; println(a,b,c); Output("ABC"); } src/clib/clib.h #ifndef CLIB void ...
0
votes
0answers
34 views

How to Create and Render Basic Template in Golang?

How to Create and Render Basic Template in Golang? - Create Login Form - Save that in UserLogin struct (datastore.put and also datastore.get) type UserLogin struct{ ...
-1
votes
1answer
39 views

how to put struct data in datastore in go-lang

how to put struct data in datastore in go-lang: //Struct is created. type UserLogin struct{ userName string passWord string } //values assigned p1 := UserLogin{"poonam", "mumbai123"} p2 ...
1
vote
1answer
54 views

Templates break http HEAD method

Consider this code: when I GET http://localhost:8080/ or http://localhost:8080/foo everything works as expected. But when I use the HEAD http method, http://localhost:8080/foo works but ...
0
votes
2answers
58 views

Copy a struct content into uint64 in Go

I want to copy a strcuture's values into uint64, what's the proper method without unsafe? package main import "fmt" type T struct { id [7]byte no uint8 } func main() { t1 := ...
1
vote
1answer
54 views

golang session variables not working. what am i doing incorrectly?

I am using the gorilla/sessions package to implement sessions. the relevant code (or at least what I think is the only relevant part) is as follows: // Function handler for executing HTML code func ...
0
votes
1answer
57 views

can't get the content by golang http.Get()? why?

I can't get a site's content. it returns the 500 error, but swiths to www.google.com.hk or other sites. It's OK. why? The following is the code. package main import ( "fmt" ...
0
votes
0answers
46 views

Datastore records all zero valued in google app engine (go)

I have the following code, which is based on the tutorial, but whenever I read my values they all have zero values. I do not know why, I check the struct before the Put call and the values are fine. ...
4
votes
1answer
65 views

How to get file length in Go?

I looked up golang.org/pkg/os/#File , but still have no idea. Seems there is no way to get file length, did I miss something? How to get file length in Go?
1
vote
1answer
43 views

golang - How to check multipart.File information

When a user uploads a file, using r.FormFile("file") you get a multipart.File, a multipart.FileHeader and an error. My question is how to just obtain information about the uploaded file for example, ...
2
votes
2answers
55 views

Go structure for unmarshalling a JSON array

So I have some JSON (courtesy of the PetFinder API) that has a JSON array "pet". I want to unmarshal from it, using the "encoding/json" package, a slice of pet structs. What would this kind of ...
1
vote
1answer
71 views

Reading data from a text file with Go

I have a text file containing some text data I would like to read in. Unfortunately I can't find the way to do it. Here is an example 5 4 1 2 - Yogurt 2 0 X Chicken soup 3 1 X Cheese 4 3 X Ham ...
1
vote
2answers
113 views

OO style struct objects in Go

I'm very new to Go and I've read (from the FAQ) that Go is both OO and not. I'd like to create data structures using Structs and find myself trying to think of Structs as simple objects. My ...
0
votes
1answer
57 views

Copying data hidden by interface

I have got some TCP connection wich returns some data for me. Also I have got a structure that represents this data. type Item struct { A int32 B int32 } Item supports Unpacker interface func ...
-4
votes
0answers
52 views

Open file and add [closed]

I need to do the add in this program: var numero int soma:=0 if erro == nil{ soma=soma+numero } fmt.Printf ("Soma: %d", soma) ioutil.WriteFile("filename", contents, 0x777) } but I ...
1
vote
1answer
53 views

Is it possible to run my Windows 8 C/go/html program on a tablet

I am writing a program in Go/C for the backend and JavaScript/HTML for the front-end. It is not a web application but it runs a local server which sends data to the client(firefox). The client then ...
4
votes
1answer
251 views

Go: Declare both a new variable and overwrite a variable from a higher scope, how?

I cannot find the answer anywhere, so this is the situation: // err has not yet been declared here globalVar := "string" if globalVar == "string" { globalVar, err := doSomethingWithString() ...
0
votes
1answer
43 views

The Go code does not compile: undefined: revel.EmptyPlugin

Me and a few friends are writing a server using golang (revel) and had a database implemented just a few weeks ago. Then suddenly everything just stopped working and the go compiler can't find my ...
0
votes
1answer
46 views

How to check if the channel is still working in golang's rabbitmq client?

I'm using this library for my program. How should I make sure that the channel I'm using for consumption and/or production is still working, before re-initializing it? For example, in ruby, I could ...
0
votes
1answer
21 views

Troubles using glib through gtk in Go with gco

My understanding of C is quite poor. I can read the code, but I have no idea how to include/build/make/configure anything. This is probably why I do not manage to get the following Go code to ...
2
votes
1answer
43 views

Is this type assertion ever valid?

I am reading the source code for Go's io package and I came across a snippet I don't fully understand. Here it is func WriteString(w Writer, s string) (n int, err error) { if sw, ok := ...
0
votes
2answers
47 views

Convert SVG to image

How do I convert an svg file to an image using Go ? I found the amazing svgo library and would like to use it to generate a custom set of playing cards. The idea is to store the text and layout of a ...
0
votes
1answer
35 views

Rendering go html/templates with javascript? [closed]

Is there a javascript template engine that can render go's html/templates templates? If not, which template language is the closest one?
3
votes
3answers
43 views

Strange behaviour of goroutine and channel communication

package main import "fmt" func main() { completed := make(chan bool, 2) m := map[string]string{"a": "a", "b": "b"} for k, v := range m { go func() { fmt.Println(k, v) completed ...
1
vote
1answer
59 views

How can I refer to an interface type in Go?

I have these two types: type Routing map[string]Handler type Handler interface { Handle() } I have a type called MyHandler which satisfies the interface, and it looks like this: type ...
1
vote
1answer
64 views

Different results for N>1 goroutines (on N>1 Cpu:s). Why?

I have a test program that gives different results when executing more than one goroutine on more than one Cpu (Goroutines = Cpus). The "test" is about syncing goroutines using channels, and the ...
2
votes
1answer
31 views

Error parsing RSA public key

I'm trying to read an RSA public key from file with the following code: keyBytes, err := ioutil.ReadFile("pubkey.pem") if err != nil { log.Fatal(err) } block, _ := pem.Decode(keyBytes) ...
0
votes
1answer
57 views

Handling Go Git repositories and its non-code resources

I'm new to Go and I'm struggling to find the best way to handle Git repositories. At this moment I'm using the Go's official proposed directories structure, but I think it has many pitfalls. It's ...
0
votes
2answers
57 views

Setting up Cookies at browser : Golang

As am newbie here on Golang, trying to setup cookies at browser, have simple basic code but it doesn't working at all & did some googling & found some stackoverflow ex. but still not picking ...
4
votes
1answer
55 views

Go correct behaviour, or compiler bug?

package main type Key struct { stuff1 string stuff2 []string } type Val struct { } type MyMap struct { map1 map[Key]*Val // compiles fine! } func main() { var map2 map[Key]*Val // ...
4
votes
4answers
83 views

What is the most effective way to lock down external dependency “versions” in Golang?

By default, Go pulls imported dependencies by grabbing the latest version in master (github) or default (mercurial) if it cannot find the dependency on your GOPATH. And while this workflow is quite ...
2
votes
2answers
67 views

Array of pointers to different struct implementing same interface

What I am trying to do: I have several struct types, all implementing the same interface, which declare a method, say "Process()" type Worker interface { Process() } type obj1 struct { } func (o ...
1
vote
3answers
86 views

How can I open files using relative paths in Go?

I'm using io/ioutil to read a small text file: fileBytes, err := ioutil.ReadFile("/absolute/path/to/file.txt") And that works fine, but this isn't exactly portable. In my case, the files I want to ...
5
votes
1answer
74 views

Replace a regular expression submatch using a function

Let's say I have strings like input := `bla bla b:foo="hop" blablabla b:bar="hu?"` and I want to replace the parts between quotes in b:foo="hop" or b:bar="hu?" using a function. It's easy to ...
3
votes
1answer
82 views

golang: quickly access data of maps within maps

So I've got the following bit of JSON and I want to pull out the "$t" value under "token". Continue for Go code... { "@encoding": "iso-8859-1", "@version": "1.0", "service": { "auth": { ...
2
votes
1answer
66 views

Go and gorilla sessions in Internet Explorer

I'm making a simple web app using Go, gorilla for sessions and routing, and mustache for templates. I'm having an issue with the login involving, I believe, a problem with IE accepting the cookie. ...
3
votes
0answers
87 views

Go (golang) gotchas? [closed]

I've started using Go (golang) to build a distributed system of services (i.e. SOA / Micro Services) and I'm finding it to be a good choice so far. I've only run into: General dependency management ...
0
votes
1answer
48 views

Go: Embedded backend vs app engine

I'm one of those classic native programmers that has spent most of his past with .exe's and .jar's. As of the past year I've thrown my self into the world of web frameworks and technologies that seize ...
0
votes
0answers
34 views

Using Barrier to Implement Go's Wait Group [migrated]

I have implemented a WaitGroup class to simulate WaitGroup in Go lang. Then I've found that I can use Barrier in a different manner, to achieve the same thing. My WaitGroup has some additional ...
3
votes
1answer
56 views

How should a JSONP response be formed in Go using http.ResponseWriter?

I'm developing an API that accepts JSONP requests in Go. I can serialize a struct into JSON and return it, but wrapping the JSON in padding, or the callback function, is a little awkward, since the ...
0
votes
1answer
119 views

golang: CSV file to MS SQL does not work properly without placing fmt.Printf() towards end of for loop

I am using Go to read CSV file and save the records in a MS SQL database using go-odbc. It works great, but I have an issue where some records (about 10 records) do not get stored. This a random ...
1
vote
1answer
87 views

How to insert a multidimensional array

want to save the data of the following format {"_ibj_id":"1","url_id":'1',"url":{"0":"http://0.com","1":"http:://1.com"}} Look at my code, type db_list struct { Url_id int Url ...
1
vote
1answer
55 views

Golang: Chdir and stay there on program termination

In golang (as well as bash scripting) if I change the current working directory (with os.Chdir) it works, but when the program terminates the working directory gets reset to the location it had when ...
-2
votes
0answers
43 views

how to implement golang websocket server with the client of android cordova [closed]

Hello,Does anyone who have the ideas of making the golang websocket server for the android cordova with the html5? I had learn the golang websocket,it seem that golang had to set golang websocket ...

1 2 3 4 5 46