golang/dep 13170
Go dependency management tool experiment (deprecated)
golang/tour 1354
[mirror] A Tour of Go
Additional operations for the standard library big.Float type
A fuzzer that generates random Go programs
A Ruby library for the RESTful Ensembl API.
A number theory library written in pure Ruby.
Fractal Image Compression
PLIS on CUDA
dct2 su bmp
issue closedgolang/tour
tour: dead link to golang.org/search?q=Read#Global
Context: https://tour.golang.org/methods/21
Change the title above to describe your issue and add your feedback here, including code if necessary
referal to "many implementations" using this URL is a dead link
"The Go standard library contains many implementations of this interface, including files, network connections, compressors, ciphers, and others. "
closed time in 17 hours
racingmojoissue commentgolang/tour
tour: Difficult tutorial I've gone through so far.
Done and dusted
comment created time in 3 days
issue closedgolang/tour
tour: Difficult tutorial I've gone through so far.
I wan't planning to learn golang over night. It would've been nice if you could make much simpler tutorial at the same time explaining essentials concepts through much comprehensible examples and descriptions. I've had a really bad experience going through go tour compared to other go tutorials. Especially who ever tried to explain some of these concepts did a terrible job. I found they are highly difficult to understand. But if this tutorial meant for experts then its a different story.
closed time in 3 days
princeofxaneissue commentgolang/tour
Hi @ALTree. Earlier i had contributed to some of the issues on the tour repo which are not merged yet. Since tour repo is moved to golang.org/x/website/tour, should I create the issues on the new repo and fix them there only?
comment created time in 4 days
issue openedgolang/tour
tour: Broken link in Methods-21
Context: https://tour.golang.org/methods/21
The file search link pointing to https://golang.org/search?q=Read#Global with text "many implementations" results in an error page reading "open REDACTED: file does not exist".
See screenshot:

created time in 6 days
pull request commentgolang/tour
tour: updated description for `if` statement in flowcontrol article
seems like the tour repo has been moved. Now, what will happen to this issues @spyros-uk. Should I create the same issue on golang/go repo with x/website tag and raise the PR with same changes as above?
comment created time in 6 days
startedALTree/microsmith
started time in 6 days
startedALTree/microsmith
started time in 7 days
issue closedgolang/tour
tour: Broken link for golang search
Context: https://tour.golang.org/methods/21
Second paragraph shows a link that redirects into golang.org/search with "Read" as query. The page that opens reads: "open REDACTED: file does not exist", showing no relevant information to the lesson.
closed time in 8 days
santiagodgissue commentgolang/tour
tour: Broken link for golang search
Duplicates #1140, oops!
comment created time in 8 days
issue openedgolang/tour
tour: Broken link for golang search
Context: https://tour.golang.org/methods/21
Second paragraph shows a link that redirects into golang.org/search with "Read" as query. The page that opens reads: "open REDACTED: file does not exist", showing no relevant information to the lesson.
created time in 8 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/list
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 8 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/basics/1
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 8 days
issue commentgolang/tour
@bencodesall This works for me to spin up the tour locally:
$ go install golang.org/x/website/tour@latest
Then
$ tour
2021/06/04 11:31:12 Serving content from /home/aurelien/godev/pkg/mod/golang.org/x/website/[email protected]
2021/06/04 11:31:12 A browser window should open. If not, please visit http://127.0.0.1:3999
2021/06/04 11:31:13 accepting connection from: 127.0.0.1:43102
But I agree with you, this is not what is shown in tour.golang.org/welcome/3 and is quite confusing for newcomers which want to run the tour locally.
comment created time in 10 days
issue commentgolang/tour
Is this no longer the case?
This tour is also available as a stand-alone program that you can use without access to the internet. It builds and runs the code samples on your own machine.
To run the tour locally, you'll need to first install Go and then run:
go get golang.org/x/tourThis will place a tour binary in your workspace's bin directory. When you run the tour program, it will open a web browser displaying your local version of the tour.
comment created time in 11 days
issue openedgolang/tour
╰─ go install golang.org/x/tour@latest
go install golang.org/x/tour@latest: module golang.org/x/tour@latest found (v0.1.0), but does not contain package golang.org/x/tour
Looking at README.md shows
╰─ cat README.md
# Go Tour
The actual web pages for
“A Tour of Go” moved to [golang.org/x/website](https://golang.org/x/website).
This repo still holds the supporting packages like
[golang.org/x/tour/pic](https://golang.org/x/tour/pic).
golang/x/website is no help since all it does is spin up the website locally. Tour link is to the live golang.org tour site. Readme and docs are not helpful in this regard for getting the tour installed and running locally.
created time in 11 days
push eventgolang/tour
commit sha 241d4738f53e9d144c5b601f4f579778859d6847
tour: delete the web pages “A Tour of Go” moved to golang.org/x/website in CL 322790. The supporting packages stay. We may also use this repo for some other tours in the future. Change-Id: Icb60bb9c1e4fe2e9b532108e3aefab24715c7c91 Reviewed-on: https://go-review.googlesource.com/c/tour/+/324309 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
push time in 11 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/concurrency/11
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 13 days
issue closedgolang/tour
modification of the value in a variable, in the handling of pointers
Context: https://tour.golang.org/moretypes/1
at what time the value of variable j is being modified?
package main
import "fmt"
func main() { i := 34 j := 1200
//declare a pointer
p := &i
fmt.Println(p, " ", *p, " ", i, " ", &i)
p = &j
fmt.Println(p, " ", *p, " ", j, " ", &j)
*p = i
sum:= *p + j
fmt.Println(*p, "+", j, "=", sum)
}
closed time in 13 days
CesarDelgadoMissue openedgolang/tour
created time in 15 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/flowcontrol/2
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 15 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/welcome/1
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 15 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/concurrency/11
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 15 days
issue closedgolang/tour
iPad with the Apple Keyboard for iPad doesn’t work properly
Trying to go through the tour and attempt to edit the code and execute, the iPad physical and virtual keyboard stops working. A few keys do work but most of the keyboard doesn't and after a few clicks here and there it starts to work again.
closed time in 17 days
jagdeepissue closedgolang/tour
Context: https://tour.golang.org/moretypes/19
Commented out: //var m map[string]Vertex
Added colon: m := make(map[string]Vertex)
package main
import "fmt"
type Vertex struct {
Lat, Long float64
}
//var m map[string]Vertex
func main() {
m := make(map[string]Vertex)
m["Bell Labs"] = Vertex{
40.68433, -74.39967,
}
fmt.Println(m["Bell Labs"])
}
closed time in 17 days
scheduleissue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/concurrency/11
Change the title above to describe your issue and add your feedback here, including code if necessary
created time in 18 days
issue openedgolang/tour
tour: [REPLACE WITH SHORT DESCRIPTION]
Context: https://tour.golang.org/methods/23
Change the title above to describe your issue and add your feedback here, including code if necessary
/prog.go:16:21: cannot use &r (type *rot13Reader) as type io.Reader in argument to io.Copy: *rot13Reader does not implement io.Reader (missing Read method)
created time in 19 days
push eventgolang/tour
commit sha fa9f4b9b72b09cbc55464f936d32179709b937cd
all: go get golang.org/x/tools@a3eb095d6ae && go mod tidy Bring in CL 293449 (and more) to remove /share playground proxy. Change-Id: I761ddb0797e3032f79ac3fd91e3f5c4bd4307eda Reviewed-on: https://go-review.googlesource.com/c/tour/+/296371 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
commit sha 3891a3eb15c053bf644848461c84facbfe1cfb34
app.yaml: remove GOLANGORG_CHECK_COUNTRY Nothing in this package or its dependencies uses this variable, after CL 293449. Change-Id: I82972cbb7abbeff6c3f4ca757c61ba966b666c19 Reviewed-on: https://go-review.googlesource.com/c/tour/+/295489 Trust: Russ Cox <[email protected]> Run-TryBot: Russ Cox <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
push time in 19 days
startedALTree/bigfloat
started time in 19 days