mattn

Results 893 comments of mattn

I don't mind to close this but no one explain why https://github.com/tensorflow/tensorflow/pull/26682 was reverted.

I love this since this can be great for privacy even though someone do broadcast the note.

There is no datetime type in sqlite3. Everything is treated as text on sqlite3 for unknown types. go-sqlite3 implements a special treatment that allows the text to be treated as...

See https://www.sqlite.org/datatype3.html

You can make new type which can convert integer/real to time.Time. ```go func (v *MyDateTime) Scan(value interface{}) error { // ... } func (v *MyDateTime) Value() (driver.Value, error) { //...

BTW, why you don't define epochTime as time.Time ?

Yes, I'm thinking this is useful but I want to wait @rittneje 's opinion.