Zoltán Zvara

Results 36 comments of Zoltán Zvara

There are several tools, one of them is Google Page Speed Optimizer I used. It provided 85 scores.

You still have to clean cache, deploy static files and set up GPSO correctly to work. I had troubles with it as well.

We have Grafana dashboards for AKKA HTTP metrics for some of our applications, but I don't know how these can be generalized.

Found the problem. It happens when the Microsoft login (`user.contains("@")`) does not align with the `live` ID, which must be `live:anything_before_@_sign_here`.

@delthas If you create a Skype account by only using your phone number, the ID will be `live:82nvhft7237hshkhj`. Even if you attach an e-mail to the account, the ID will...

I encountered the same problem. However, my case is different. I have installed and I have been upgrading my cluster with Kubespray since version 2.13. Now I attempted to upgrade...

I see, thanks for clarifying. I'll modify my test design according to this. My idea would be to specify an another seed, a "transition seed", in which consecutive "picks" from...

Encapsulate random into an Iterator, and each thread should acquire the iterator instead of accessing random directly. Iterator only needs to store NTH_CALL_FOR_T. On 2017-06-26 20:07:19, Daniela Sfregola wrote: How...

We overcome this limitation as follows: ``` abstract class Base() { def doSomething(): String = a.toString + b def a: Int def b: String } case class MyClass(override val a:...