Ismail Khoffi

Results 235 comments of Ismail Khoffi

I think Jekyll is the way to go, if this supposed to look more like a blog. Gitbook seems like a better option if this is supposed to look more...

Locally it worked like a charm for me, too (using gitbook build/gitbook serve). Though linking to my fork, their webinterface created a file called SUMMARY..md instead of SUMMARY.md (maybe a...

I'm not sure if already saw it: https://www.gitbook.com/book/aminb/rust-for-c/details It is the first hit on google search: c++ programmers about rust

Hey, I had the same error openening ltxml.js from https://openxmlsdkjs.codeplex.com/ I got the error only once. But after that the symbols treeview does not update (shows symbols of previously opend...

Wow, this was fast. It works :+1: Thanks a lot!

I guess either way (where ever the integration test is spun up), there might be some changes necessary in this repo too. But you are probably right that the tendermint...

Thanks! A similar problem was noticed a while ago regarding byte slices: https://github.com/tendermint/go-amino/pull/209#discussion_r205491486 This is probably a rather simple change: we need to initialize slices differently (on decoding). Note to...

Actually, given this protobuf message: ```proto message IntSlice { repeated int64 Slice = 1; } ``` and this test: ```go func TestEmptySlicesCompat(t *testing.T) { var slin, slout p3.IntSlice // Make...

As for now, floats are supported via `amino:"unsafe"`. Maps work in JSON (if keys are strings). Binary panics with `unsupported type map`. I'll add general map support with the tags...