tgirod

Results 18 issues of tgirod

As it is, one can add a `index` tag to a slice field, and the whole slice will be used as a key in the index - which is expected,...

If it was possible to marshal storm's matchers to JSON, it would be straightforward for a client to pass a query to storm - like what is done with the...

If I understand things correctly, calling `db.Save(&data)` will alter the record in the database, and `&data` will contain the updated version. On the other hand, if I call `db.Update(&data)`, the...

It would be convenient to be able to do that: ``` type ExoA struct { ID int `storm:"increment"` Foo int } type ExoB struct { ID int `storm:"increment"` Bar string...

discussion

Consider this: ``` type Student struct { ID int CreatedAt time.Time } func main() { s := Student{ ID: 1, CreatedAt: time.Now(), } fmt.Println("original") fmt.Println(s) // db, _ := storm.Open("my.db",...

Disclaimer: I'm throwing an idea here, no clue if it is possible / relevant... anyway: When using a DB such as storm as a persitance layer, you inevitably find yourself...

I'm trying to run an application using readline that talks to a hardware serial console (a venerable Minitel 1B), which appears as `/dev/ttyUSB0`. Here is a program that partially works....

I want a resource with an array of a sub-resource, and everything properly checked for validity. As a preamble, I found two ways of declaring a sub-resource and I fail...

enhancement
documentation

I believe there is a problem with how angle limits are calculated when a motor is in indirect orientation. Here is a sample config ``` json "base_arm":{ "id":2, "orientation":"indirect", "type":"MX-64",...

Right now (or at least the last time I looked at your code), it seems that even though `pLevel` is a float between `0.0` and `1.0`, only those two values...