Lorenzo Gabriele

Results 70 comments of Lorenzo Gabriele

I made a PR with Scala 2.12 support: https://github.com/densh/scala-offheap/pull/115

You can wrap Ajax requests this way: ```scala import org.scalajs.dom.ext.Ajax EventStream.fromFuture(Ajax.get(url)) ```

Then maybe there should be something to integrate things lazily but on a more general level. Integrating Ajax directly in Airstream sounds too specific to me.

I have the same exact problem... Pulled on this repo: https://github.com/lolgab/full-stack-scala

How this will work under the hood?

There is a workaround to this problem, which is to manually maintain the references of the objects in memory so the GC will not get them. ```scala object GCRoots {...

@ekrich This wasn't a complete copy-paste but I adapted the code to work with the existing code. Does the Scala.js port commit still apply? By the way, I'm making this...

`java.security.SecureRandom` is now provided by `"com.github.lolgab" %%% "scala-native-crypto" % "0.0.3"` which uses openssl underneath. It can be used to fix linking issues like: ``` [error] Found 2 missing definitions while...

@WojciechMazur Shouldn't this feature be put under a feature-flag related to multithreading? I'm interested in using SN in a single threaded fashion without paying the cost of the `@volatile` annotations...

I want to use vouch-proxy as a language agnostic authentication layer since I'm trying to bootstrap a web stack for [Scala Native](https://scala-native.readthedocs.io/en/latest) which doesn't have any library for JWT or...