Ian Denhardt

Results 143 issues of Ian Denhardt

As mentioned in #62, I'm working on table-based tests for go.sandstorm. For this to work I need pogs-style structs for basically every type in the sandstorm API. It goes without...

enhancement
help wanted

It would be nice if pogs allowed you to use insert/extract with map types, so you could use it to do things like making a generic json (or msgpack, or...

enhancement

So, I just got a basic program running that responds to a `GET /` via the normal net/http package API, but talking to the sandstorm api server. woo! but it...

enhancement
help wanted

This patch: - Relaxes the version bound on bytestring for llvm-hs-pure - Fixes a couple trivial build errors due to ambiguous symbol resoltions; bytestring 0.11 added some functions called snoc,...

I was looking at the Sandstorm app-index's implementation, and rather than using capnp rpc for submissions it uses an ad-hoc protocol, with a comment indicating that this is blocked on...

There's lots of generically useful stuff in sandstorm's [util.capnp][1] which I would like to be able to use in projects that are loosely coupled enough from sandstorm that it feels...

```capnp # testcase.capnp @0x8d8eb9e37e9bbfd9; using Json = import "/capnp/compat/json.capnp"; struct Foo { barBaz @0 :Void $Json.name("bar_baz"); } ``` ```c++ // testcase.c++ #include "testcase.capnp.h" #include #include #include int main() { capnp::MallocMessageBuilder...

I'm experimenting with implementing Sandstorm's `WebSite` interface from `web-publishing.capnp`, and am unsure how to deal with the way uploading large blobs works. See: https://github.com/sandstorm-io/sandstorm/blob/d366557c18faa085410334908a240ec88f97910b/src/sandstorm/web-publishing.capnp#L45-L46 and: https://github.com/sandstorm-io/sandstorm/blob/d366557c18faa085410334908a240ec88f97910b/src/sandstorm/web-publishing.capnp#L81-L88 The interface suggests a...

In particular, right now I'm doing some print debugging and tracing an issue I'm having in the bridge down into stuff defined in libkj. Adding a simple print statement to...

Per the readme: > Note that continuous building is the only way to do incremental builds with Ekam -- any time you run a new Ekam process, it always starts...