Skip to content

issues Search Results · repo:gopherdata/gophernotes language:Go

Filter by

185 results
 (65 ms)

185 results

ingopherdata/gophernotes (press backspace or delete to remove)

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: repl.go:52:15: ...
  • pumoica
  • Opened 
    on Apr 8, 2024
  • #265

package main import ( fmt ) func fibonacci(n int, c chan int) { x, y := 0, 1 for i := 0; i n; i++ { c - x x, y = y, x+y } close(c) } func main() { c := make(chan int, 10) go fibonacci(cap(c), c) for ...
  • Arundas666
  • 1
  • Opened 
    on Mar 27, 2024
  • #264

While I try to import sync package I get the following error Converter.Type(): unsupported types.Type: *types.TypeParam I randomly tried importing other packages and it works just fine. What am I missing? ...
  • sudipidus
  • 1
  • Opened 
    on Jan 26, 2024
  • #263

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?!?
  • encryptblockr
  • Opened 
    on Sep 3, 2023
  • #262

Importing third party libraries works, it doesn t complain there. However, when I try to use them it will always complain saying undefined module name in module name . function name *ast.SelectorExpr . ...
compiler bug
  • ammar-elsabe
  • 5
  • Opened 
    on Jul 10, 2023
  • #261

when execute go install: compile: version go1.19.4 does not match go tool version go1.20.2 # unicode/utf16 my local go version: go version go version go1.20.2 darwin/amd64
  • Kingson4Wu
  • 2
  • Opened 
    on Mar 13, 2023
  • #259

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 http.Handle( /js/ , http.StripPrefix( /js/ , http.FileServer(http.Dir( ...
  • your-olym
  • Opened 
    on Mar 6, 2023
  • #258

Hello, I m trying to use gophernotes to test types of the following repo: https://github.com/cosmos/cosmos-sdk I import the packages import ( fmt sdk github.com/cosmos/cosmos-sdk/types ) ...
  • 0xstepit
  • 6
  • Opened 
    on Feb 8, 2023
  • #257

Hi Will it be possible to tun this in VSCode, using the following: https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter
question
  • JCzz
  • 7
  • Opened 
    on Dec 25, 2022
  • #256

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 ...
  • 0xstepit
  • Opened 
    on Nov 9, 2022
  • #255
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue search results · GitHub