gophernotes icon indicating copy to clipboard operation
gophernotes copied to clipboard

The Go kernel for Jupyter notebooks and nteract.

Results 58 gophernotes issues
Sort by recently updated
recently updated
newest added

Hi @dwhitena In finishing up my [review of your JOSS submission](https://github.com/openjournals/joss-reviews/issues/508), I have not been able to find any guidelines for community contributions in the repo. [JOSS says:](https://joss.theoj.org/about#reviewer_guidelines) > ####...

While I try to import "sync" package I get the following error ```bash Converter.Type(): unsupported types.Type: *types.TypeParam ``` I randomly tried importing other packages and it works just fine. What...

jupyter lab is the newer and more advanced way to manage notebooks, this projetc is still using old jupyter notebook when will thi sproject upgrade to using jupyter lab?!?

I meet the question that ``` reflect.Value.Convert: value of type reflect.Value cannot be converted to type http.FileSystem ``` which was seemd caused by ```go http.Handle("/js/", http.StripPrefix("/js/", http.FileServer(http.Dir("js")))) ``` by the...

I'm trying to use gophernotes to test some Cosmos SDK functionality. In particular, I would like to run in a notebook this test: https://github.com/cosmos/cosmos-sdk/blob/main/store/iavl/store_test.go#L316 but when I run the import:...

```go type Node struct { value int next *Node } func (n Node) multiply(x int) int { return n.value * x } n := Node{2, nil} n.multiply(3) ``` repl.go:11:1: not...

bug

Hello, Am trying to build a notebook with the following code snippet (compiles and works correctly as a standalone program). However, the kernel chokes and spits out the following message:...

package main import ( "fmt" ) func fibonacci(n int, c chan int) { x, y := 0, 1 for i := 0; i < n; i++ { c