boulderwebdev

Results 12 comments of boulderwebdev

This is a hard problem that's not within reach of this library at the moment. Check out http://openaccess.thecvf.com/content_cvpr_2018/papers/Chen_CartoonGAN_Generative_Adversarial_CVPR_2018_paper.pdf for state of the art techniques for cartoonifying an image using a...

You can create a single sharpen filter using ```js Caman.Filter.register("sharpen", function () { this.processKernel("Sharpen", [ 0, -1, 0, -1, 5, -1, 0, -1, 0 ]); }); ``` Unfortunately, you will...

Yes, that's correct.

If that case is taken, there should be an addition to the documentation so if someone searches "const" or "constant" the allowed section comes up with the suggested solution as...

Another alternative is to pass in a sqlite variable into the connect method so people can inject their own sqlite adapter if needed.

@jreese Unfortunately, there are some limitations with pysqlite over sqlite3 since not all features are present. In particular, multiple queries, multiple connections, and iterdump are not supported/implemented by pysqlite. You...

@elf-pavlik, @melvincarvalho I agree with having an implementation of ActivityPub abstracted away from the node-server, but I think it's better to build this is as a separate server and have...

@melvincarvalho The most naive approach would be to forward messages from the node-server to the ActivityPub server. So my `GET` and `POST` requests with an `application/activity+json` `Accept`/`Content-Type` header could be...

@gobengo > Ha, and I think we can think about it the other way too. There is a server that speaks ActivityPub, and it persists all incoming inbox items to...

@aesteve Well, for starters, the compiler will complain about the following line ```java withVertx(builder, vertx.getOrCreateContext()).build(); ``` with a reactivex context. I.e. if I use the imports ```java import io.vertx.reactivex.core.Context; import...