Paul Annekov

Results 12 issues of Paul Annekov

UI uses [rendition](https://github.com/balena-os/wifi-connect/blob/9d8b773e3bb4e6448ea39e46e4d7c0b7f7f63f77/ui/package.json#L13) library which [tries to load ](https://github.com/balena-io-modules/rendition/blob/2285c864a8311ae10bc55661c2a1b32532d823fd/src/components/Provider/index.tsx#L43) a google font. As there is no internet, you see a loader for several seconds until browser understands resource is unavailable...

`StopReceivingUpdates` method is useless for real cases. Let's take a code from README, remove non-relevant parts and add StopReceivingUpdates() to it: ``` package main import ( "os" "os/signal" "syscall" "log"...

help wanted

When plugin switches between resolutions it fires `seeked` event (one time or twice) via https://github.com/kmoskwiak/videojs-resolution-switcher/blob/master/lib/videojs-resolution-switcher.js#L181. Not a very good idea because it's [non-standard behavior of Media Element](https://dev.w3.org/html5/spec-preview/media-elements.html#event-media-seeked). `seeked` event must...

`XiaomiGatewayDiscovery.listen()` and `XiaomiGatewayDiscovery.stop_listen()` look like shouldn't be called multiple times, because `listen()` sets `self._mcastsocket` (https://github.com/Danielhiversen/PyXiaomiGateway/blob/master/xiaomi_gateway/__init__.py#L143) property and calling it for the 2nd time will overwrite this property. But from the...

I have a script which reads logs from journal in a loop: https://github.com/PaulAnnekov/log-trigger/blob/d7e55fb29584286d7cdb4170caad5c422bfda334/log_trigger.py#L189. It was working fine, until I was using ubuntu 18.04 (systemd 237). But when I upgraded to...

1. Авторизовались, видим список транзакций. 2. Ждём 5 минут, листам список, показывается окно с просьбой ввести ПИН-код, потому что сессия закончилась. 3. Вводим неправильный ПИН, видим ошибку, что ПИН неправильный....

`import { IGrantTypeRefreshToken, IGrantTypePassword, Token } from '../../types';` :man_facepalming:

Всё что unused должно подчёркиваться красным, может более жёсткие правила добавить.