Andžej Maciusovič

Results 51 comments of Andžej Maciusovič

I don't understand only one thing. What is the purpose of dividing minutes by 60 to get hours and then multiplying by 60 to get minutes back. Instead of ```js...

Maybe will be useful for someone. I have terraform state pointing to local file. ``` terraform { backend "local" { path = "../../vault/local/terraform.tfstate" } } ``` I'm using https://github.com/FiloSottile/age to...

For me the biggest problems seems to be default password. Even if you setup https and I connect to your network I can still access `https://0xMY_VERY_LONG_IDENTITY.webui.net` isn't it? Another problem...

@KatamariJr I agree, but user need to be able to disable this feature with a flag. I was using go2proto when I needed to migrate from swagger to grpc and...

Yep, probably a bug somewhere

I would go with some protocol "version" which is not related to node version, but is similar as in TLS. I see there are two different cases. 1. Internal protocol...

@tadaskay We don't need filtering. Consumer should be able to connect in both ways. For example in our p2p case if provider doesn't support new p2p, he still want to...

In proposal there is Contact field. ``` type Contact struct { Type string `json:"type"` Definition ContactDefinition `json:"definition"` } ``` It's used for dialog so we can actually extend it and...

Added issue for Contact field https://github.com/mysteriumnetwork/node/issues/2011

Aggregate combinators seems to solve pivot https://clickhouse.com/blog/aggregate-functions-combinators-in-clickhouse-for-arrays-maps-and-states ```sql SELECT countIf((status = 'confirmed') AND (confirm_time > (create_time + toIntervalMinute(1)))) AS num_confirmed_checked, sumIf(total_amount, (status = 'confirmed') AND (confirm_time > (create_time + toIntervalMinute(1))))...