Sebastien Binet

Results 256 issues of Sebastien Binet

The package [`golang.org/x/image/math/fixed`](https://godoc.org/golang.org/x/image/math/fixed) defines fixed point integer types such as `fixed.Int26_6` and `fixed.Int52_12` (and corresponding `Point` and `Rectangle` struct types). migrating `vg.Length` from: ``` go package vg type Length float64...

enhancement
question

it would be great (beside having regular "readline-like" capabilities like alluded to in #286) to have support for: - tab-completion - up-/down-arrow history search in [neugram](https://neugram.io), we used [github.com/peterh/liner](https://github.com/peterh/liner).

enhancement
area/cli

wrapping packages that do not export any symbols (and are such only imported for their side-effects) fails.

enhancement
area/extract

leverage new gdblib.NewGDBWithPID feature and add -p PID flag. - apply gofmt fixes.

Fixes go-python/gpython#12.

starting with Go-1.12, there's a nifty function [runtime/debug.ReadBuildInfo](https://golang.org/pkg/runtime/debug/#ReadBuildInfo) to extract build informations out of a Go binary. we could leverage this to display: ``` $> gpython Python 3.4.0 (none, unknown)...

right now, `gpython` fails with: ```python >>> import math >>> dir(math) Traceback (most recent call last): File "", line 1, in FIXME line of source goes here NameError: NameError: "name...

right now: ```python >>> import math >>> help(math) Traceback (most recent call last): File "", line 1, in FIXME line of source goes here NameError: NameError: "name 'help' is not...

hi there, lately I've found my involvement in `wagon` to dwindle. partly because my main interest in `wasm+wagon` was to be able to build an interpreter for Go, in Go,...