Dmitry Balabka

Results 55 issues of Dmitry Balabka

I've faced the fact that it is required to create temporary variables to validate values: ```php $firstName = getParam('firstName'); $lastName = getParam('lastName'); Assert::notNull($firstName); Assert::notNull($lastName); createCustomer( $firstName, $lastName ); ``` We...

enhancement
question

- [ ] Add similar adjustments for other candidates such as `notEmpty`, `notFalse` - [ ] Cover these cases with tests.

feature

I suspect that variable `zt` should be replaced with `tt` in print: ```python zt = ztest(*raw_data, alternative='two-sided') print('Z-test p (TWO TAILED) = %.3f' % zt[1]) tt = ttest_ind(*raw_data, alternative='two-sided') print('t-test...

During investigation how JMS routing bundle works with different routing implementation I have found that it do not support ChainRouter and DynamicRouter. Talking about DynamicRouter it is hard to prepare...

It seems that the method `willImplement` is not supported ```php $mock = $this->prophesize(SomeClass::class) ->willImplement(FirstInterface::class) ->willImplement(SecondInterface::class); ``` Above code will return `$mock` variable which implements: `SomeClass::class`, `FirstInterface::class`, `SecondInterface::class`

I have reviewed paper https://arxiv.org/pdf/1511.05644.pdf and it looks like there is a typo in the [AAE example](https://github.com/bstriner/keras-adversarial/blob/master/examples/example_aae.py) `generator` and `encoder` variables names. According to the paper: > The generator of...

### Description of Feature Usually, during experiments, we can face customers who perform enormous amounts of transactions. Such outliers lead to bias and can change experiment results. To fix this...

enhancement

At first glance, the Payum library looks very attractive in terms of the number of Payment Gateways it supports. However, after I read the documentation, I found that it does...

We utilise AWS Gravitrons heavily and are looking into starting to use Dask in EKS. However, it looks like Helm chart installs x86 version of the image, and the following...