Sebastien Binet

Results 255 issues of Sebastien Binet

hi, I was trying out transpiling one last remnant of a FORTRAN dependency from CERN: CERNLIB, and more precisely its ZEBRA library.: ``` $> curl -O -L https://raw.githubusercontent.com/root-project/root/master/misc/minicern/src/zebra.f $> f4go...

add support for `map[Key]Value` where `Key` and `Value` are structs holding structs. it may be a bit more contentious as this will create a copy of the key and value...

hi, (a bit gogobject off-topic) could you push your waf's go support upstream ? (I can do it on your behalf if you want) your go-waftools are much better than...

with gomacro@30b9859a00de, using this simple program: ```go package main import ( "flag" _ "github.com/cosmos72/gomacro/fast" ) func main() { _ = flag.Bool("v", false, "verbose") flag.Parse() } ``` I get: ``` $>...

bug

I noticed the console was scheduled to be removed for the next version, because (essentially) gore wasn't a "real" REPL. has [neugram.io](https://neugram.io) been considered as a possible replacement ? (it...

enhancement

hi, I am converting a few neugram.io-based notebooks to gopherdata+gomacro. In these neugram notebooks, a `defer` would only be executed at the end of the notebook, not at the end...

limitation

with #218 merged in, we still need to have the top-level defers run before properly closing/exiting the interpreter. Right now, we get this: ```go $> ng ng> defer printf("hello\n") ng>...

using the [Jupyter Notebook file format description](https://github.com/jupyter/nbformat/blob/master/docs/format_description.rst) we should be able to import/export from/to `foo.ipynb` files to/from `foo.ng` scripts. - implement the `nbformat` data model (+ JSON (de)serialization) - provide...

the following fails in `ng`: ``` ng> type Options int32 ng> const ( ..> OptNone Options = 1 WithXErrBars // enable display of X-error bars (if available) ..> WithYErrBars //...