Tomáš Jacík
Tomáš Jacík
Since you already maintaining openssl, it would be great to add libgcrypt package. Currently GnuPG2 supports ECC, but ED25519 is only supported with latest libgcrypt, which isn't in Ubuntu. I...
I have doctrine QB which I use as model: ``` php $queryBuilder = $dao->createQueryBuilder() ->select('item, actuarial, customer') ->from(ActuarialItem::class, 'item') ->innerJoin('item.actuarial', 'actuarial') ->innerJoin('actuarial.customer', 'customer'); ``` I am creating column like this:...
I'm trying to solve recursive schema validation in [menu library](https://github.com/contributte/menu-control) when you have tree structure of menu (submenu items). Here's what I did as temporary solution: ```php final class MenuExtension...
- bug report? no - feature request? yes - version: 3.0 Few times I wanted to use own `User` implementation, bt there is no simple way how to force Nette...
In method `TButtonRenderer::applyReplacements` is used `is_scalar()` which will result in deprecation warning if `$value` is float. Version used: v6.9.2
- Allow custom implementation of confirmation dialog - Added CallbackConfirmation and StringConfirmation shortcuts - StringConfirmation: allow multiple placeholders
Doesn't work even when `$grid->setRememberState(FALSE);` is set. ```php $qb = $this->ipAddressFacade->createQueryBuilder('ip') $grid = (new DataGrid) ->setPrimaryKey('id') ->setDataSource($qb) ->setDefaultSort(['ip' => 'ASC']); $grid->addColumnText('ip', 'IP') ->setSortable() ->setSortableCallback(function (QueryBuilder $qb, array $sorting): void {...
- It would be nice to have standardized and mainly documented protocol. - Sending JSON instead of raw data won't hurt too. If New Relic can do it, why not...
Just had big problem with customer because monitoring didn't sent alert. Problem is with this line: ```bash DISKs=$(echo -ne $(df -PB1 | awk '$1 ~ /\// {print}' | awk '{...
``` Error: (HTTP code 500) server error - Cannot locate specified Dockerfile: Dockerfile ``` I have `Dockerfile` is subfolder. Is there a way how to configure this same way as...