Henry Story

Results 422 comments of Henry Story

Yes, counterfactuals logic topologises context: it brings in a notion of closeness between worlds, and what is close depends on where you are, or what you think is close depends...

I think there are similar problem with https://github.com/w3c/banana-rdf/ . (Well I did not dig so much this time)

This may also be a problem with IDEA. Here for example I have created with gen-idea 1.0.0 the file .idea/libraries/org_w3_banana_n3_2_9_1_0_2_SNAPSHOT.xml ``` ``` When I open this in IDEA 11.1.2 (...

That probably helps in many situations. But I don't know if it helps with `java.nio.ByteBuffer`, other than having to convert that to that to an ArrayBuffer. Is there a way...

yes, no need to support ArrayBuffer as that is a JS view on something that is very similar to `java.nio.ByteBuffer`. I suppose that is why there is a transformation in...

This is my current code ``` scala import com.github.marklister.base64.Base64._ val bb = TypedArrayBuffer.wrap(sig.asInstanceOf[ArrayBuffer]) val arraybuf: Array[Byte] = new Array[Byte](bb.remaining()) bb.get(arraybuf) val hashedSig = arraybuf.toBase64 ``` `TypedArrayBuffer.wrap(sig.asInstanceOf[ArrayBuffer])` returns a `java.nio.ByteBuffer` ....

Well that would make it a pure scala-js function. `ArrayBuffer`'s full signature is `scala.scalajs.js.typedarray.ArrayBuffer`, and I don't think you need to write something that is scala-js specific like that. Libraries...

my fault. Should have included the imports. Sorry!

Got my code working! I had a bug on the server with encoding/decoding BigIntegers from hexadecimal. https://github.com/read-write-web/rww-play/commit/de8655e2b0a12d4dfe2d4c4657b06df3d9fa9a13

Thanks, that was helpful. I got it to work: Perhaps adding an image like this would be helpful so that people can see what they should expect. A link from...